/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e6b4c;
  --primary-light: #2d8f68;
  --accent: #e8a838;
  --accent-dark: #c98e2b;
  --bg-white: #ffffff;
  --bg-offwhite: #f8f6f0;
  --text-dark: #1e2a2f;
  --text-muted: #4a5a5f;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1120px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-offwhite);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(30, 107, 76, 0.10);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--accent-dark);
  position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #1e2a2f;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  border: none;
  box-shadow: 0 6px 18px rgba(232, 168, 56, 0.35);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  line-height: 1.4;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 168, 56, 0.45);
}

.cta-button:active {
  transform: scale(0.97);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--bg-white);
  padding: 0.75rem 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-family: var(--font-heading);
}

.header-cta {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  min-height: 40px;
  white-space: nowrap;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(145deg, #fbf8f0 0%, #f3efe4 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 168, 56, 0.20);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  align-self: flex-start;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-cta {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  align-self: flex-start;
  width: 100%;
  max-width: 380px;
}

.hero-micro {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  display: flex;
  gap: 1.5rem;
  font-size: 4rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem 2.5rem;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}

/* ============================================
   PROBLEM
   ============================================ */
.problem-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.problem-content {
  max-width: 700px;
  font-size: 1.05rem;
}

.problem-content p {
  margin-bottom: 1rem;
}

.problem-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.problem-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0ede6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.problem-list li strong {
  color: #b84a3a;
}

.problem-strong {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* ============================================
   SOLUTION
   ============================================ */
.solution-section {
  padding: 4rem 0;
  background: var(--bg-offwhite);
}

.solution-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.solution-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.solution-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.solution-card p {
  color: var(--text-muted);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.benefits-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-offwhite);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  background: #f0ebe0;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  min-width: 3rem;
}

.benefit-text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.benefit-text p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 4rem 0;
  background: var(--bg-offwhite);
}

.how-steps {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--text-muted);
}

.how-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.testimonial {
  background: var(--bg-offwhite);
  padding: 1.75rem;
  border-radius: var(--radius-sm);
  font-style: normal;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.testimonial footer {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.testimonial-placeholder {
  display: block;
  font-size: 0.75rem;
  color: #999;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* ============================================
   OFFER
   ============================================ */
.offer-section {
  padding: 4rem 0;
  background: var(--bg-offwhite);
}

.offer-box {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eae6dc;
}

.offer-grid {
  display: grid;
  gap: 2rem;
}

.offer-item {
  border-bottom: 1px solid #f0ede6;
  padding-bottom: 1.5rem;
}

.offer-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.offer-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.offer-value small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.offer-value.highlight {
  color: var(--accent-dark);
}

.offer-desc {
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.offer-bonus {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.offer-bonus li {
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.offer-urgency {
  margin: 2rem 0 1.5rem;
  padding: 1rem 1.25rem;
  background: #fdf6e8;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
}

.urgency-badge {
  font-size: 1rem;
  font-weight: 500;
}

.urgency-badge strong {
  color: #b84a3a;
}

.offer-cta {
  text-align: center;
}

.offer-cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  width: 100%;
  max-width: 400px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--bg-offwhite);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #eae6dc;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--text-dark);
  cursor: pointer;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(30, 107, 76, 0.04);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  background: var(--bg-white);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(145deg, #1e6b4c 0%, #16573d 100%);
  color: #fff;
}

.final-cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.final-cta-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.final-cta-urgency {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.10);
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  display: inline-block;
  margin-bottom: 2rem;
}

.final-cta-btn {
  background: var(--accent);
  color: #1e2a2f;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  min-height: 64px;
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.40);
}

.final-cta-btn:hover {
  background: #f0b84a;
  box-shadow: 0 12px 40px rgba(232, 168, 56, 0.55);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #14261f;
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0.25rem 0;
}

.footer-small {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE (Tablet & Desktop)
   ============================================ */
@media (min-width: 640px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-cta {
    max-width: 100%;
  }

  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }

  .offer-item {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 4rem 0 5rem;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .solution-card {
    padding: 2.5rem 2rem;
  }

  .benefit-item {
    padding: 2rem;
  }
}

/* ============================================
   ANIMATIONS (fade-in on scroll)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
  text-align: center;
}