/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #FEF7ED;
  --foreground: #1E293B;
  --card: #FFFFFF;
  --card-foreground: #1E293B;
  --primary: #334155;
  --primary-foreground: #FFFFFF;
  --muted: #FEF3E2;
  --muted-foreground: #64748B;
  --border: #E7D5C4;
  --radius: 1rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(254, 247, 237, 0.95);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo svg {
  width: 20px;
  height: 20px;
  color: var(--foreground);
}

.header-logo span {
  font-weight: 600;
  color: var(--foreground);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 144px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.discount-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.discount-badge svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.hero-content {
  width: 100%;
  padding: 48px 16px 32px;
  text-align: center;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--foreground);
}

.hero-content p {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
}

/* Steps Section */
.steps-section {
  padding: 0 16px 0;
}

.steps-container {
  max-width: 448px;
  margin: 0 auto;
}

.steps-card {
  border-radius: 24px;
  background-color: rgba(239, 219, 219, 1);
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.steps-card h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: rgba(10, 10, 10, 1);
}

.steps-list {
  margin-top: 20px;
  padding-left: 16px;
  list-style: none;
}

.steps-list li {
  margin-bottom: 14px;
  text-align: left;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}

.step-note {
  display: block;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
  padding-left: 16px;
}

/* CTA Button */
.cta-container {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  max-width: 320px;
  border-radius: 9999px;
  background-color: rgba(127, 81, 114, 1);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #1E293B;
  transform: scale(1.02);
}

.urgency-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--muted-foreground);
}

.urgency-text svg {
  width: 18px;
  height: 18px;
}

/* Trustpilot */
.trustpilot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trustpilot-logo svg {
  width: 22px;
  height: 22px;
  color: #00B67A;
}

.trustpilot-logo span {
  font-size: 18px;
  font-weight: 600;
  color: var(--foreground);
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
}

.trustpilot-star {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background-color: #00B67A;
}

.trustpilot-star svg {
  width: 18px;
  height: 18px;
  color: white;
}

.trustpilot-score {
  font-size: 15px;
  color: var(--muted-foreground);
}

.trustpilot-score span {
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 40px 16px;
}

.faq-container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--card);
  margin-bottom: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background-color: rgba(254, 243, 226, 0.3);
  padding: 32px 16px;
}

.footer-content {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
}

.footer a {
  color: var(--muted-foreground);
  text-decoration: none;
}

.footer a:hover {
  color: var(--foreground);
  text-decoration: underline;
}

.footer-divider {
  color: var(--muted-foreground);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-image {
    height: 256px;
  }
  
  .discount-badge {
    width: 80px;
    height: 80px;
  }
  
  .discount-badge svg {
    width: 40px;
    height: 40px;
  }
  
  .hero-content h1 {
    font-size: 30px;
  }
  
  .hero-content p {
    font-size: 20px;
  }
  
  .steps-card {
    padding: 32px;
  }
  
  .steps-card h2 {
    font-size: 20px;
  }
  
  .steps-list li {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .faq-section h2 {
    font-size: 30px;
  }
  
  .faq-question {
    font-size: 18px;
    padding: 20px 24px;
  }
  
  .faq-answer {
    padding: 0 24px 20px;
    font-size: 16px;
  }
}
