/* ============ DONOAGRO LANDING ============ */
:root {
  --green-deep: #0F3D20;
  --green-darker: #0A2A14;
  --green: #1F6B36;
  --green-bright: #2E8B47;
  --green-soft: #EDF6EE;
  --green-mist: #F4FAF5;
  --green-pale: #A8E0B6;
  --ink: #0F2A18;
  --ink-soft: #3C5648;
  --ink-muted: #6B8278;
  --cream: #FFFFFF;
  --blue: #2E8FE0;
  --amber: #E8A33D;
  --amber-soft: #FFCB6E;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body { line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.serif { font-family: 'Fraunces', Georgia, serif; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(15,61,32,0.08);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.85; }
.nav-brand img {
  height: 52px; width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: filter 0.3s;
}
.nav.scrolled .nav-brand img {
  filter: drop-shadow(0 2px 6px rgba(15,61,32,0.12));
}
/* On dark hero, brown text is hard to read — add a soft cream halo via background */
.nav-brand-halo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.nav.scrolled .nav-brand-halo {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.nav-links {
  display: flex; gap: 36px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav.scrolled .nav-links { color: var(--ink-soft); }
.nav-links a { transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.7; }
.nav-cta {
  padding: 11px 22px;
  background: var(--amber);
  color: var(--green-deep);
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,163,61,0.4); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-sun {
  position: absolute;
  top: 12%; right: 8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--amber) 0%, var(--amber-soft) 55%, transparent 75%);
  border-radius: 50%;
  opacity: 0.85;
  filter: blur(2px);
  animation: sunPulse 8s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.05); opacity: 0.95; }
}
.hero-rows {
  position: absolute; left: 0; right: 0;
  bottom: -10%;
  height: 60%;
  overflow: hidden;
}
.hero-rows svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(232,163,61,0.15);
  border: 1.5px solid rgba(232,163,61,0.5);
  border-radius: 999px;
  color: var(--amber);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: heroIn 0.8s 0.1s forwards;
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(232,163,61,0.5);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,163,61,0.5); }
  100% { box-shadow: 0 0 0 14px rgba(232,163,61,0); }
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0; animation: heroIn 0.9s 0.2s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-pale);
}
.hero p {
  font-size: 22px;
  line-height: 1.5;
  color: #CDE8D4;
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0; animation: heroIn 0.9s 0.35s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: heroIn 0.9s 0.5s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--amber);
  color: var(--green-deep);
  border-radius: 999px;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(232,163,61,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,163,61,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 600; font-size: 16px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero phone */
.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: heroPhoneIn 1.1s 0.4s forwards;
}
@keyframes heroPhoneIn {
  from { opacity: 0; transform: translateY(40px) rotate(-2deg); }
  to { opacity: 1; transform: translateY(0) rotate(-4deg); }
}
.hero-phone-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,139,71,0.5) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-phone {
  position: relative; z-index: 1;
  width: 360px;
  border-radius: 38px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 60px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 1440px; width: 100%; margin-left: auto; margin-right: auto;
  opacity: 0; animation: heroIn 0.9s 0.7s forwards;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-num em {
  font-style: italic;
  color: var(--green-pale);
}
.hero-stat-label {
  color: #88B596;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
}

/* ============ SECTION INTRO ============ */
.intro {
  padding: 140px 60px 80px;
  text-align: center;
  background: var(--cream);
}
.intro-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--green-bright);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 24px;
}
.intro-kicker::before, .intro-kicker::after {
  content: ''; width: 24px; height: 1.5px; background: var(--green-bright);
}
.intro h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  max-width: 900px; margin: 0 auto 24px;
}
.intro h2 em {
  font-style: italic; color: var(--green-bright);
}
.intro p {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ FEATURE SECTIONS ============ */
.feature {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.feature-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.feature.reverse .feature-inner {
  grid-template-areas: "phone copy";
}
.feature.reverse .feature-copy { grid-area: copy; }
.feature.reverse .feature-phone-wrap { grid-area: phone; }

/* Alternate backgrounds */
.feature:nth-of-type(odd) { background: var(--cream); }
.feature:nth-of-type(even) { background: var(--green-mist); }

/* Copy column */
.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: var(--green-soft);
  letter-spacing: -0.04em;
  margin-bottom: -40px;
  position: relative;
  z-index: -1;
}
.feature:nth-of-type(even) .feature-num { color: rgba(15,61,32,0.06); }

.feature-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green-bright);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
}
.feature-copy h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.feature-copy h3 em {
  font-style: italic;
  color: var(--green-bright);
}
.feature-copy > p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}

.feature-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1.5px solid var(--green-soft);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature:nth-of-type(even) .feature-list li {
  background: var(--cream);
}
.feature-list li:hover {
  transform: translateX(6px);
  border-color: var(--green-pale);
  box-shadow: 0 10px 28px rgba(15,61,32,0.08);
}
.feature-list-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
}
.feature-list-text { flex: 1; }
.feature-list-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.feature-list-text span {
  font-size: 15px;
  color: var(--ink-muted);
}

/* Phone column */
.feature-phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 640px;
}
.feature-phone-accent {
  position: absolute;
  width: 440px; height: 580px;
  border-radius: 60px;
  z-index: 0;
  transform: rotate(-6deg);
  opacity: 0.18;
}
.feature.reverse .feature-phone-accent {
  transform: rotate(6deg);
}
.feature-phone {
  position: relative;
  width: 340px;
  border-radius: 38px;
  filter: drop-shadow(0 40px 60px rgba(15,61,32,0.25));
  z-index: 1;
}

.feature-phone-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

.reveal-phone {
  opacity: 0;
  transform: translateX(80px) rotate(-2deg);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature.reverse .reveal-phone {
  transform: translateX(-80px) rotate(2deg);
}
.reveal-phone.in {
  opacity: 1;
  transform: translateX(0) rotate(-6deg);
}
.feature.reverse .reveal-phone.in {
  transform: translateX(0) rotate(6deg);
}

/* ============ CTA SECTION ============ */
.cta {
  padding: 160px 60px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(232,163,61,0.15);
  border: 1.5px solid rgba(232,163,61,0.5);
  border-radius: 999px;
  color: var(--amber);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
}
.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 28px;
}
.cta h2 em {
  font-style: italic;
  color: var(--green-pale);
}
.cta p {
  font-size: 22px;
  color: #CDE8D4;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}
.cta-form {
  display: flex; gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.cta-form input {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-size: 16px;
  font-family: inherit;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form button {
  padding: 14px 28px;
  background: var(--amber);
  color: var(--green-deep);
  border: none;
  border-radius: 999px;
  font-weight: 800; font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,163,61,0.4);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.6);
  padding: 60px 60px 40px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 30px;
}
.footer-brand {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
}
.footer-brand img {
  height: 44px; width: auto;
  display: block;
}
.footer-links {
  display: flex; gap: 32px;
}
.footer-links a:hover { color: var(--cream); }
.footer-socials {
  display: flex; gap: 12px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background 0.2s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.16); }
.footer-bottom {
  max-width: 1320px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 16px;
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 50%; left: 24px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  pointer-events: none;
}
.scroll-progress-track {
  position: relative;
  width: 2px;
  height: 280px;
  background: rgba(15,61,32,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.scroll-progress-track.on-dark {
  background: rgba(255,255,255,0.15);
}
.scroll-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--green-bright);
  border-radius: 999px;
  transition: height 0.08s linear, background 0.3s;
}
.scroll-progress-track.on-dark .scroll-progress-bar { background: var(--amber); }

.scroll-progress-dots {
  display: flex; flex-direction: column; gap: 16px;
  pointer-events: auto;
  margin-top: 4px;
}
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(15,61,32,0.20);
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  position: relative;
}
.scroll-dot.on-dark { background: rgba(255,255,255,0.30); }
.scroll-dot.active {
  background: var(--green-bright);
  transform: scale(1.6);
}
.scroll-dot.on-dark.active { background: var(--amber); }
.scroll-dot:hover { transform: scale(1.4); }
.scroll-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0; pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.scroll-dot.on-dark::after { color: rgba(255,255,255,0.7); }
.scroll-dot:hover::after { opacity: 1; }

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 95;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37,211,102,0.55);
}
.wa-fab svg { display: block; }
.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-fab-text { line-height: 1; }
.wa-fab-text small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

/* ============ PROBLEM SECTION ============ */
.problem {
  background: var(--green-darker);
  color: var(--cream);
  padding: 130px 60px;
  position: relative;
  overflow: hidden;
}
.problem-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.3;
}
.problem-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.problem-head {
  text-align: center;
  margin-bottom: 70px;
}
.problem-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(232,163,61,0.15);
  border: 1.5px solid rgba(232,163,61,0.5);
  border-radius: 999px;
  color: var(--amber);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px;
}
.problem h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 900px; margin: 0 auto;
}
.problem h2 em {
  font-style: italic; color: var(--green-pale);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 36px 32px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,163,61,0.4);
}
.problem-card-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px; font-weight: 800;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.problem-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.problem-card p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* ============ BEFORE / AFTER ============ */
.compare {
  padding: 140px 60px;
  background: var(--cream);
}
.compare-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.compare-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--green-bright);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 24px;
}
.compare-kicker::before, .compare-kicker::after {
  content: ''; width: 24px; height: 1.5px; background: var(--green-bright);
}
.compare h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.compare h2 em { font-style: italic; color: var(--green-bright); }
.compare-head p {
  font-size: 19px; color: var(--ink-soft); line-height: 1.5;
}
.compare-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.compare-col {
  border-radius: 28px;
  padding: 44px 36px;
  display: flex; flex-direction: column;
}
.compare-before {
  background: #FBF6F0;
  border: 1.5px solid #F0E2D0;
}
.compare-after {
  background: linear-gradient(170deg, #F0FAF2 0%, #DCEEDF 100%);
  border: 1.5px solid var(--green-pale);
  box-shadow: 0 20px 50px rgba(15,61,32,0.08);
}
.compare-col-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
}
.compare-before .compare-col-tag {
  background: rgba(180,90,50,0.10);
  color: #B45A32;
}
.compare-after .compare-col-tag {
  background: rgba(46,139,71,0.15);
  color: var(--green);
}
.compare-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--green-deep);
}
.compare-col ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.compare-col li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px;
  line-height: 1.45;
}
.compare-before li {
  color: #6B5040;
  text-decoration: line-through;
  text-decoration-color: rgba(180,90,50,0.4);
}
.compare-before li span:first-child {
  text-decoration: none;
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(180,90,50,0.15);
  color: #B45A32;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
}
.compare-after li {
  color: var(--green-deep);
  font-weight: 500;
}
.compare-after li span:first-child {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--cream);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
}
.compare-arrow {
  display: grid; place-items: center;
  align-self: center;
}
.compare-arrow-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-deep);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(15,61,32,0.25);
  animation: arrowBounce 2.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ============ PERSONAS ============ */
.personas {
  padding: 140px 60px;
  background: var(--green-mist);
  position: relative;
}
.personas-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.personas-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.personas-head h2 em { font-style: italic; color: var(--green-bright); }
.personas-head p {
  font-size: 19px; color: var(--ink-soft); line-height: 1.5;
}
.personas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.persona {
  background: var(--cream);
  border-radius: 28px;
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1.5px solid transparent;
}
.persona:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15,61,32,0.12);
  border-color: var(--green-pale);
}
.persona-illo {
  width: 88px; height: 88px;
  border-radius: 24px;
  display: grid; place-items: center;
  margin-bottom: 28px;
  font-size: 44px;
  font-family: 'Fraunces', serif;
  font-weight: 800; font-style: italic;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.persona-illo.a { background: linear-gradient(135deg, var(--green-bright), var(--green)); }
.persona-illo.b { background: linear-gradient(135deg, var(--amber), #D88A20); }
.persona-illo.c { background: linear-gradient(135deg, var(--blue), var(--blueDeep, #1769B0)); }
.persona h4 {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.persona p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.persona-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
}
.persona-tag {
  font-size: 12px; font-weight: 700;
  padding: 6px 12px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============ MAP SECTION ============ */
.map-section {
  padding: 140px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.map-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.map-copy h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 22px;
}
.map-copy h2 em { font-style: italic; color: var(--green-bright); }
.map-copy p {
  font-size: 19px; color: var(--ink-soft); line-height: 1.55;
  margin-bottom: 28px;
  max-width: 480px;
}
.map-stats {
  display: flex; gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--green-soft);
}
.map-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 800;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: -0.03em;
}
.map-stat-num em {
  font-style: italic;
  color: var(--green-bright);
}
.map-stat-label {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}
.map-vis {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.map-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}
.map-pin {
  fill: var(--green-bright);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { opacity: 0.5; transform-origin: center; }
  50% { opacity: 1; }
}
.map-pin-ring {
  fill: none;
  stroke: var(--green-bright);
  stroke-width: 2;
  opacity: 0;
  animation: pinRing 2.5s ease-out infinite;
}
@keyframes pinRing {
  0% { r: 4; opacity: 0.6; }
  100% { r: 24; opacity: 0; }
}

/* ============ FAQ ============ */
.faq {
  padding: 140px 60px;
  background: var(--green-mist);
}
.faq-head {
  text-align: center;
  margin-bottom: 60px;
}
.faq-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.faq-head h2 em { font-style: italic; color: var(--green-bright); }
.faq-head p {
  font-size: 19px; color: var(--ink-soft); line-height: 1.5;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--cream);
  border: 1.5px solid var(--green-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: var(--green-pale);
  box-shadow: 0 14px 40px rgba(15,61,32,0.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 28px;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  letter-spacing: -0.01em;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--green-bright);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 28px 26px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq-item.open .faq-a {
  max-height: 320px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .scroll-progress { display: none; }
  .wa-fab { bottom: 16px; right: 16px; padding: 12px 18px 12px 14px; font-size: 14px; }
  .wa-fab-text small { display: none; }
  .problem { padding: 90px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 18px; }
  .compare { padding: 90px 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-arrow-circle { transform: rotate(90deg); }
  .personas { padding: 90px 24px; }
  .personas-grid { grid-template-columns: 1fr; }
  .map-section { padding: 90px 24px; }
  .map-inner { grid-template-columns: 1fr; gap: 50px; }
  .map-stats { gap: 24px; }
  .map-stat-num { font-size: 32px; }
  .faq { padding: 90px 24px; }
  .faq-q { font-size: 17px; padding: 20px 22px; }
}
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 32px; }
  .intro { padding: 100px 24px 60px; }
  .feature { padding: 80px 24px; }
  .feature-inner, .feature.reverse .feature-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "phone" "copy";
    gap: 50px;
  }
  .feature-copy { grid-area: copy; }
  .feature-phone-wrap { grid-area: phone; min-height: 520px; }
  .feature-num { font-size: 100px; margin-bottom: -28px; }
  .cta { padding: 100px 24px; }
  .cta-form { flex-direction: column; border-radius: 24px; padding: 12px; }
  .cta-form input { padding: 14px 16px; text-align: center; }
  .cta-form button { padding: 16px; }
  .footer { padding: 50px 24px 30px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
