/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:    #f7f4ef;
  --white:    #ffffff;
  --ink:      #1a1a18;
  --ink-soft: #5a5a52;
  --ink-faint:#9a9a8e;
  --green:    #2d6a4f;
  --green-lt: #40916c;
  --green-xlt:#d8f3dc;
  --gold:     #c9a84c;
  --border:   rgba(26,26,24,.10);
  --radius:   16px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--green); background: var(--green-xlt);
  padding: 6px 14px; border-radius: 20px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px; background: var(--green);
  border-radius: 10px; display: grid; place-items: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: #fff; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; line-height: 1;
}
.logo-text span { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink-soft);
  text-decoration: none; transition: color .18s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  font-size: 14px; font-weight: 500; color: var(--ink);
  background: none; border: 1.5px solid var(--border);
  padding: 9px 22px; border-radius: 10px; cursor: pointer;
  text-decoration: none; transition: border-color .18s, background .18s;
}
.btn-ghost:hover { border-color: var(--ink-soft); background: rgba(26,26,24,.04); }
.btn-primary {
  font-size: 14px; font-weight: 600; color: #fff;
  background: var(--green); border: none;
  padding: 10px 22px; border-radius: 10px; cursor: pointer;
  text-decoration: none; transition: background .18s, transform .1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green-lt); }
.btn-primary:active { transform: scale(.98); }

/* ── Hamburger ────────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 24px; font-family: 'Cormorant Garamond', serif; color: var(--ink); text-decoration: none; }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 24px; font-size: 28px; background: none; border: none; cursor: pointer; color: var(--ink); }
.mobile-nav .btn-primary { font-size: 16px; padding: 14px 36px; border-radius: 12px; }
.mobile-nav .btn-ghost   { font-size: 16px; padding: 13px 36px; border-radius: 12px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 100px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
}
.hero-content { animation: fadeUp .8s ease both; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}
.hero-title em { color: var(--green); font-style: italic; }
.hero-title strong { font-weight: 600; }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-cta {
  font-size: 16px; font-weight: 600; color: #fff;
  background: var(--green); border: none;
  padding: 15px 32px; border-radius: 12px; cursor: pointer;
  text-decoration: none; transition: background .18s, box-shadow .18s, transform .1s;
  box-shadow: 0 4px 20px rgba(45,106,79,.28);
}
.hero-cta:hover { background: var(--green-lt); box-shadow: 0 6px 28px rgba(45,106,79,.38); }
.hero-cta:active { transform: scale(.98); }
.hero-note { font-size: 13px; color: var(--ink-faint); }
.hero-note strong { color: var(--gold); }
.hero-img-wrap {
  position: relative;
  animation: fadeUp .8s .2s ease both;
}
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}
.img-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.img-card:hover img { transform: scale(1.04); }
.img-card.tall { grid-row: span 2; border-radius: 24px; }
.wa-badge {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
}
.wa-badge-icon { width: 34px; height: 34px; background: #25d366; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.wa-badge-icon svg { width: 20px; height: 20px; fill: #fff; }
.wa-badge-text .wa-label { font-size: 11px; color: var(--ink-faint); line-height: 1; margin-bottom: 3px; }
.wa-badge-text .wa-msg   { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.floating-stat {
  position: absolute; top: -16px; right: -16px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  text-align: center;
}
.floating-stat .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--green); line-height: 1; }
.floating-stat .stat-lbl { font-size: 11px; color: var(--ink-faint); margin-top: 3px; }

/* ── Section common ───────────────────────────────────────── */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  margin-top: 14px; margin-bottom: 14px;
}
.section-header h2 em { color: var(--green); font-style: italic; }
.section-header p { font-size: 16px; color: var(--ink-soft); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── How it works ─────────────────────────────────────────── */
.how-bg { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-xlt), transparent);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-xlt); color: var(--green);
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600;
  display: grid; place-items: center; margin: 0 auto 20px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--green-xlt);
  position: relative; z-index: 1;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: #fff; border-radius: 20px; padding: 32px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.07); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-xlt); display: grid; place-items: center; margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── WhatsApp showcase ────────────────────────────────────── */
.wa-section {
  background: var(--green);
  border-radius: 32px;
  margin: 0 24px;
  padding: 80px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  overflow: hidden; position: relative;
}
.wa-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.wa-section::after {
  content: '';
  position: absolute; bottom: -60px; left: 20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.wa-content { position: relative; z-index: 1; }
.wa-content .tag { background: rgba(255,255,255,.18); color: #fff; }
.wa-content .tag::before { background: #fff; }
.wa-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 46px); font-weight: 300;
  color: #fff; line-height: 1.1; margin: 18px 0 16px;
}
.wa-content h2 em { font-style: italic; color: #a8f0c8; }
.wa-content p { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 28px; }
.btn-white {
  display: inline-block; padding: 14px 30px;
  background: #fff; color: var(--green);
  font-size: 15px; font-weight: 600; border-radius: 12px;
  text-decoration: none; transition: transform .18s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* ── Chat mockup ──────────────────────────────────────────── */
.chat-mockup {
  position: relative; z-index: 1;
  background: #ece5dd;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
.chat-header {
  background: #075e54; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: #25d366; display: grid; place-items: center; }
.chat-avatar svg { width: 22px; height: 22px; fill: #fff; }
.chat-info .chat-name { font-size: 14px; font-weight: 600; color: #fff; }
.chat-info .chat-status { font-size: 11px; color: rgba(255,255,255,.7); }
.chat-body { padding: 16px 12px; display: flex; flex-direction: column; gap: 8px; min-height: 280px; }
.bubble {
  max-width: 82%; padding: 9px 13px; border-radius: 12px;
  font-size: 13px; line-height: 1.5; position: relative;
}
.bubble.bot  { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.user { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble .time { font-size: 10px; color: #999; margin-top: 3px; text-align: right; }
.typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: #fff; border-radius: 12px; border-bottom-left-radius: 4px; align-self: flex-start; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: #aaa; animation: bounce .9s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 420px; margin: 0 auto;
}
.price-card {
  background: #fff; border-radius: 24px; padding: 36px 32px;
  border: 1.5px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.07); }
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 4px rgba(45,106,79,.10); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase; padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}
.price-name { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amount .currency { font-size: 20px; font-weight: 500; color: var(--ink-soft); }
.price-amount .amount { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; line-height: 1; color: var(--ink); }
.price-amount .period { font-size: 14px; color: var(--ink-faint); }
.price-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.5; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid #f4f4f0;
  display: flex; align-items: center; gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.check-circle { width: 20px; height: 20px; border-radius: 50%; background: var(--green-xlt); display: grid; place-items: center; flex-shrink: 0; }
.check-circle svg { width: 11px; height: 11px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.price-btn {
  display: block; width: 100%; padding: 14px; border: none; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: background .18s, box-shadow .18s;
}
.price-btn.solid { background: var(--green); color: #fff; }
.price-btn.solid:hover { background: var(--green-lt); box-shadow: 0 4px 16px rgba(45,106,79,.28); }
.price-btn.outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.price-btn.outline:hover { border-color: var(--ink-soft); background: #f7f4ef; }

/* ── Social proof ─────────────────────────────────────────── */
.proof-bg { background: #fff; }
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--cream); border-radius: 20px; padding: 28px;
  border: 1px solid var(--border);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testi-text { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  background: var(--green-xlt); display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green); font-weight: 600;
}
.testi-name  { font-size: 14px; font-weight: 600; }
.testi-meta  { font-size: 12px; color: var(--ink-faint); }

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink); border-radius: 24px; margin: 0 24px;
  padding: 48px 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600; color: #fff; line-height: 1;
  margin-bottom: 6px;
}
.stat-item .num span { color: var(--gold); }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,.5); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 500; color: var(--ink);
}
.faq-question .faq-arrow {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-xlt);
  display: grid; place-items: center; flex-shrink: 0; transition: transform .25s, background .25s;
}
.faq-question .faq-arrow svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2.5; transition: transform .25s; }
.faq-item.open .faq-arrow { background: var(--green); transform: rotate(180deg); }
.faq-item.open .faq-arrow svg { stroke: #fff; }
.faq-answer { font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding-bottom: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ── Footer CTA ───────────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, var(--green) 0%, #1b4332 100%);
  border-radius: 32px; margin: 0 24px 96px;
  padding: 80px 48px; text-align: center; position: relative; overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.footer-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 300; color: #fff;
  line-height: 1.1; margin-bottom: 16px; position: relative;
}
.footer-cta h2 em { font-style: italic; color: #a8f0c8; }
.footer-cta p { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 32px; position: relative; }
.footer-cta .actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links { display: flex; align-items: center; gap: 8px; color: var(--ink-faint); }
.footer-links a { font-size: 13px; color: var(--ink-faint); text-decoration: none; }
.footer-links a:hover { color: var(--ink-soft); }
.footer-copy { font-size: 13px; color: var(--ink-faint); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger {
    display: flex;
    margin-right: auto;
    margin-left: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-img-grid { grid-template-rows: 200px 140px; }
  .floating-stat { top: -10px; right: -10px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .wa-section { grid-template-columns: 1fr; padding: 48px 28px; margin: 0 16px; }
  .chat-mockup { max-width: 400px; margin: 0 auto; }
  .pricing-grid { max-width: 360px; }
  .testimonials { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 36px 28px; margin: 0 16px; }
  .footer-cta { margin: 0 16px 64px; padding: 56px 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .hero-img-grid { grid-template-columns: 1fr; grid-template-rows: 260px; }
  .img-card:not(.tall) { display: none; }
  .img-card.tall { grid-row: span 1; }
  .steps { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 20px; }
}
