:root {
  --paper: #FAF5EA; --paper-deep: #F3ECDC; --ink: #122A1E; --ink-soft: #3D5447;
  --ink-faint: #6B7F72; --green: #0B5C44; --green-hot: #1FAF6A; --green-glow: #25D366;
  --bubble-out: #D9FDD3; --line: rgba(18, 42, 30, .14);
  --shadow-card: 0 2px 4px rgba(18, 42, 30, .05), 0 14px 40px -12px rgba(18, 42, 30, .18);
}
* { margin: 0; padding: 0; box-sizing: border-box }
body {
  font-family: 'Hanken Grotesk', -apple-system, sans-serif; background: var(--paper); color: var(--ink);
  line-height: 1.65;
  background-image: radial-gradient(rgba(18, 42, 30, .035) 1px, transparent 1px); background-size: 22px 22px;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: -.01em }
a { color: inherit }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px }
nav { position: sticky; top: 0; z-index: 50; background: rgba(250, 245, 234, .85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line) }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px }
.logo { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.25rem; text-decoration: none; display: flex; align-items: center; gap: .5rem }
.logo .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green-glow) }
.nav-links { display: flex; align-items: center; gap: 1.4rem; font-size: .92rem; font-weight: 600 }
.nav-links a:not(.btn) { text-decoration: none; color: var(--ink-soft) }
.btn {
  display: inline-flex; align-items: center; gap: .6rem; background: var(--green); color: #fff; font-weight: 700;
  font-size: 1rem; padding: .8rem 1.5rem; border-radius: 999px; text-decoration: none; transition: transform .18s, background .18s;
  box-shadow: 0 8px 24px -8px rgba(11, 92, 68, .55);
}
.btn:hover { transform: translateY(-2px); background: #0d6e52 }
.btn.big { font-size: 1.1rem; padding: 1rem 1.9rem }
.btn.ghost { background: rgba(11,92,68,.1); color: var(--green); box-shadow: none; border: 1px solid var(--green) }
.btn.ghost:hover { background: rgba(11,92,68,.18) }
.crumb { font-size: .82rem; color: var(--ink-faint) }
.crumb a { text-decoration: none; color: var(--ink-faint) }
.crumb a:hover { color: var(--green) }
header.hero { padding: 56px 0 48px }
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); max-width: 22ch; margin: .8rem auto 1.1rem }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--green) }
.hero .quick-answer { font-size: 1.06rem; color: var(--ink-soft); max-width: 44rem; margin: 0 auto 2rem; line-height: 1.7 }
.cta-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap }
.cta-note { font-size: .88rem; color: var(--ink-faint); margin-top: .9rem; text-align: center }
section { padding: 48px 0 }
.sec-title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 1.8rem }
.sec-title em { font-style: italic; font-weight: 500; color: var(--green) }
/* Verdict box */
.verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 0 0 2rem }
@media(max-width:680px) { .verdict { grid-template-columns: 1fr } }
.verdict-side { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem 1.6rem; box-shadow: var(--shadow-card) }
.verdict-side.nml { border-color: var(--green-hot); border-width: 2px }
.verdict-side h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .8rem }
.verdict-side ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; padding: 0 }
.verdict-side.nml ul li::before { content: "✓ "; color: var(--green-hot); font-weight: 700 }
.verdict-side:not(.nml) ul li::before { content: "• "; color: var(--ink-faint) }
.verdict-side li { font-size: .95rem; color: var(--ink-soft) }
/* Comparison table */
.vs-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-card) }
.vs-table { width: 100%; border-collapse: collapse; font-size: .93rem; background: #fff }
.vs-table th, .vs-table td { padding: .78rem 1rem; text-align: left; border-bottom: 1px solid var(--line) }
.vs-table tr:last-child td { border-bottom: none }
.vs-table th { background: var(--paper-deep); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft) }
.vs-table td:first-child { font-weight: 600; width: 30% }
.vs-table .win { color: var(--green); font-weight: 600 }
.vs-table .loss { color: #B0424E }
/* Pain cards */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem }
@media(max-width:840px) { .pains { grid-template-columns: 1fr } }
.pain { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.7rem 1.6rem; box-shadow: var(--shadow-card) }
.pain h3 { font-size: 1.12rem; margin-bottom: .5rem }
.pain p { font-size: .95rem; color: var(--ink-soft) }
/* Feature rows */
.feature-rows { display: flex; flex-direction: column; gap: 1.4rem }
.feature-row { display: flex; gap: 1.2rem; align-items: flex-start }
.feature-icon { flex: none; width: 44px; height: 44px; border-radius: 14px; background: rgba(37,211,102,.13); border: 1px solid rgba(11,92,68,.22); display: flex; align-items: center; justify-content: center; font-size: 1.3rem }
.feature-row h3 { font-size: 1.05rem; margin-bottom: .25rem }
.feature-row p { font-size: .94rem; color: var(--ink-soft); line-height: 1.6 }
/* Pills */
.pills { display: flex; flex-direction: column; gap: .9rem; align-items: center; max-width: 720px; margin: 0 auto }
.pill { background: var(--bubble-out); border-radius: 14px; border-bottom-right-radius: 4px; padding: .8rem 1.2rem; font-size: .98rem; font-weight: 500; box-shadow: 0 2px 6px rgba(18, 42, 30, .12) }
.pill:nth-child(odd) { transform: rotate(-.4deg) }
.pill:nth-child(even) { transform: rotate(.4deg) }
/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: .6rem; max-width: 800px; margin: 0 auto }
details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.2rem }
details[open] { border-color: var(--green-hot) }
summary { font-weight: 600; cursor: pointer; list-style: none; font-size: 1rem }
summary::-webkit-details-marker { display: none }
summary::after { content: " ↓"; font-size: .82em; color: var(--ink-faint); font-weight: 400 }
details[open] summary::after { content: " ↑" }
details p { margin-top: .75rem; font-size: .94rem; color: var(--ink-soft); line-height: 1.65 }
/* Final CTA */
.final { background: var(--green); border-radius: 36px; color: var(--paper); text-align: center; padding: 64px 24px; position: relative; overflow: hidden }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 70% at 85% -10%, rgba(37, 211, 102, .3), transparent 70%) }
.final > * { position: relative }
.final h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .8rem }
.final h2 em { font-style: italic; font-weight: 500; color: var(--green-glow) }
.final p { color: rgba(250, 245, 234, .78); max-width: 34rem; margin: 0 auto 1.8rem }
.final .btn { background: var(--green-hot) }
footer { padding: 2.4rem 24px; text-align: center; color: var(--ink-faint); font-size: .88rem }
footer a { color: var(--ink-soft) }
/* Hub page */
.hub-intro { font-size: 1.1rem; color: var(--ink-soft); max-width: 44rem; margin: .6rem 0 2.4rem; line-height: 1.7 }
.hub-cat-title { font-size: 1.25rem; font-weight: 700; margin: 2.4rem 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line) }
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem }
@media(max-width:840px) { .hub-grid { grid-template-columns: repeat(2, 1fr) } }
@media(max-width:540px) { .hub-grid { grid-template-columns: 1fr } }
.hub-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.3rem 1.4rem; box-shadow: var(--shadow-card); text-decoration: none; display: block; transition: transform .2s, box-shadow .2s }
.hub-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(18,42,30,.05), 0 20px 40px -12px rgba(18,42,30,.22) }
.hub-card h3 { font-size: 1.05rem; margin-bottom: .3rem }
.hub-card p { font-size: .86rem; color: var(--ink-faint) }
/* mega menu (reused from use-cases) */
.menu { position: relative }
.menu-btn { display:inline-flex; align-items:center; gap:.35rem; background:none; border:none; cursor:pointer; font:inherit; font-weight:600; font-size:.92rem; color:var(--ink-soft); padding:.4rem 0 }
.menu-btn:hover { color: var(--ink) }
.menu-btn svg { transition: transform .25s; margin-top:1px }
.menu.open .menu-btn svg { transform: rotate(180deg) }
.mega { position:absolute; top:calc(100% + 16px); left:50%; transform:translateX(-58%) translateY(8px); width:min(720px, calc(100vw - 32px)); background:#fff; border:1px solid var(--line); border-radius:22px; box-shadow:0 8px 16px rgba(18,42,30,.08), 0 32px 72px -16px rgba(18,42,30,.3); opacity:0; visibility:hidden; pointer-events:none; transition:opacity .22s, transform .22s cubic-bezier(.22,1,.36,1), visibility .22s; overflow:hidden }
.mega::before { content:""; position:absolute; top:-16px; left:0; right:0; height:16px }
.menu.open .mega { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-58%) translateY(0) }
.mega-cols { display:grid; grid-template-columns:1fr 1fr }
.mega-col { padding:1.6rem 1.5rem 1.3rem }
.mega-col + .mega-col { border-left:1px solid var(--line) }
.mega-col h4 { font-family:'Fraunces',Georgia,serif; font-size:1.15rem; font-weight:600; margin-bottom:.25rem }
.mega-col > p { font-size:.82rem; color:var(--ink-faint); margin-bottom:1rem; line-height:1.45 }
.mega-col a { display:flex; align-items:center; gap:.8rem; padding:.5rem .6rem; margin:0 -.6rem; border-radius:12px; text-decoration:none; transition:background .15s }
.mega-col a:hover { background:var(--paper-deep) }
.mi { flex:none; width:36px; height:36px; border-radius:11px; background:rgba(37,211,102,.13); border:1px solid rgba(11,92,68,.22); display:flex; align-items:center; justify-content:center }
.mi svg { width:18px; height:18px; fill:none; stroke:var(--green); stroke-width:2; stroke-linecap:round; stroke-linejoin:round }
.mt { display:flex; flex-direction:column; line-height:1.3 }
.mt b { font-size:.92rem; color:var(--ink); font-weight:700 }
.mt small { font-size:.78rem; color:var(--ink-faint) }
.mega-foot { background:var(--paper-deep); border-top:1px solid var(--line); padding:.85rem 1.5rem; font-size:.88rem; color:var(--ink-soft); text-align:center }
.mega-foot a { color:var(--green); font-weight:700; text-decoration:none; margin-left:.3rem }
@media(max-width:720px) { .nav-links .menu { display:none } }
/* ── New design additions ─────────────────────────────────────────────────── */
:root { --chat-bg: #EFE7DB }
/* Remove FAQ arrows */
summary::after, details[open] summary::after { content: none !important }
/* Hero split */
header.hero { padding: 0 }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 64px 0 72px }
@media(max-width:860px) { .hero-split { grid-template-columns: 1fr; gap: 2.4rem; padding: 48px 0 56px } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(37,211,102,.12); border: 1px solid rgba(11,92,68,.2); border-radius: 999px; padding: .3rem .9rem; font-size: .85rem; font-weight: 700; letter-spacing: .01em; color: var(--green); margin-bottom: 1.1rem }
.hero-copy h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); line-height: 1.1; max-width: none; margin: 0 0 1.1rem }
.hero-copy h1 em { font-style: italic; font-weight: 500; color: var(--green) }
.hero-copy .lede { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.72; margin-bottom: 1.8rem; max-width: 38rem }
.trust-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem }
.trust-pill { background: rgba(37,211,102,.11); border: 1px solid rgba(11,92,68,.18); border-radius: 999px; padding: .3rem .85rem; font-size: .8rem; font-weight: 700; color: var(--green) }
/* Phone frame */
.cmp-phone-wrap { display: flex; justify-content: center; position: relative }
.cmp-phone-wrap::before { content: ""; position: absolute; inset: -8% -14%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(37,211,102,.16), transparent 72%) }
.cmp-phone { width: 300px; max-width: 86vw; background: #0E1B14; border-radius: 42px; padding: 10px; box-shadow: 0 40px 80px -24px rgba(18,42,30,.45), 0 0 0 1px rgba(255,255,255,.06) inset }
.cmp-screen { border-radius: 34px; overflow: hidden; background: var(--chat-bg); display: flex; flex-direction: column; height: 540px }
.cmp-wa-header { background: #075E54; color: #fff; display: flex; align-items: center; gap: .7rem; padding: .75rem .85rem; flex: none }
.cmp-avatar { width: 34px; height: 34px; border-radius: 50%; flex: none; object-fit: cover }
.cmp-wa-name { font-weight: 700; font-size: .9rem; line-height: 1.2 }
.cmp-wa-status { font-size: .7rem; opacity: .8 }
.cmp-messages { flex: 1; padding: .85rem .72rem; display: flex; flex-direction: column; gap: .5rem; overflow: hidden; background-color: var(--chat-bg) }
/* Bubbles */
.cm { display: flex; flex-direction: column; max-width: 88% }
.cm.out { align-self: flex-end }
.cm-bubble { border-radius: 11px; padding: .55rem .8rem; font-size: .83rem; line-height: 1.5 }
.cm.in .cm-bubble { background: #fff; border-top-left-radius: 2px }
.cm.out .cm-bubble { background: var(--bubble-out); border-top-right-radius: 2px }
.cm-time { font-size: .67rem; color: var(--ink-faint); margin-top: .18rem; text-align: right }
.cm.in .cm-time { text-align: left }
.chat-divider { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); padding: .2rem 0 }
/* Chat animation */
.cmp-demo .seq { opacity: 0; transform: translateY(8px) scale(.97) }
.cmp-demo.play .seq { animation: cmp-seq 22s infinite both }
@keyframes cmp-seq { 0% { opacity:0; transform:translateY(8px) scale(.97) } 2.5% { opacity:1; transform:none } 96% { opacity:1; transform:none } 99.5%,100% { opacity:0; transform:translateY(4px) } }
.cmp-demo.play .s1 { animation-delay: 0.3s }
.cmp-demo.play .s2 { animation-delay: 1.8s }
.cmp-demo.play .s3 { animation-delay: 3.6s }
.cmp-demo.play .s4 { animation-delay: 6.2s }
.cmp-demo.play .s5 { animation-delay: 7.4s }
.cmp-demo.play .s6 { animation-delay: 11.0s }
.cmp-demo.play .s7 { animation-delay: 12.5s }
/* Score bar */
.score-bar { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; background: var(--green); border-radius: 22px; padding: 1.6rem 1.8rem; margin-bottom: 2.4rem; color: var(--paper) }
@media(max-width:680px) { .score-bar { grid-template-columns: 1fr } }
.score-item { text-align: center }
.score-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .65; margin-bottom: .35rem }
.score-winner { font-size: 1rem; font-weight: 700; color: var(--green-glow) }
.score-winner.alt-win { color: rgba(250,245,234,.55) }
.score-why { font-size: .82rem; opacity: .75; margin-top: .15rem }
/* Two paths */
.path-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem }
@media(max-width:680px) { .path-compare { grid-template-columns: 1fr } }
.path-box { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.6rem; box-shadow: var(--shadow-card) }
.path-box.nml { border-color: var(--green-hot); border-width: 2px }
.path-box-label { font-size: .78rem; font-weight: 700; letter-spacing: .03em; color: var(--ink-faint); margin-bottom: .6rem }
.path-box.nml .path-box-label { color: var(--green) }
.path-box h3 { font-size: 1.05rem; margin-bottom: 1.1rem }
.path-steps { list-style: none; display: flex; flex-direction: column; gap: .55rem }
.path-steps li { display: flex; gap: .75rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft) }
.step-n { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--paper-deep); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--ink-faint); margin-top: 1px }
.path-box.nml .step-n { background: rgba(37,211,102,.2); border-color: rgba(11,92,68,.25); color: var(--green) }
.path-steps li.done .step-n { background: var(--green-hot); border-color: var(--green-hot); color: #fff }
.path-verdict { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 700 }
.path-verdict.win { color: var(--green) }
.path-verdict.neutral { color: var(--ink-faint) }
/* Feature cards */
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem }
@media(max-width:840px) { .feature-cards { grid-template-columns: 1fr } }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem; box-shadow: var(--shadow-card) }
.feature-card .fi { font-size: 1.8rem; margin-bottom: .8rem }
.feature-card h3 { font-size: 1rem; margin-bottom: .45rem }
.feature-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.65 }
/* Scenarios */
.scenarios { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem }
@media(max-width:840px) { .scenarios { grid-template-columns: 1fr } }
.scenario { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.4rem 1.5rem; box-shadow: var(--shadow-card) }
.scenario-cat { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .55rem }
.scenario h3 { font-size: 1rem; margin-bottom: .8rem }
.scenario-msg { background: var(--bubble-out); border-radius: 11px; border-bottom-right-radius: 3px; padding: .65rem .9rem; font-size: .87rem; font-weight: 500; margin-bottom: .65rem; line-height: 1.5 }
.scenario-note { font-size: .84rem; color: var(--ink-faint); line-height: 1.55 }
/* Why WhatsApp section */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.3rem }
@media(max-width:680px) { .why-grid { grid-template-columns: 1fr } }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.4rem 1.5rem; box-shadow: var(--shadow-card); display: flex; gap: 1rem; align-items: flex-start }
.why-icon { flex: none; width: 42px; height: 42px; border-radius: 13px; background: rgba(37,211,102,.13); border: 1px solid rgba(11,92,68,.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem }
.why-card h3 { font-size: .97rem; margin-bottom: .3rem }
.why-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.6 }
/* Related cards */
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .9rem }
@media(max-width:840px) { .related-grid { grid-template-columns: repeat(2,1fr) } }
@media(max-width:480px) { .related-grid { grid-template-columns: 1fr } }
.related-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.1rem; text-decoration: none; display: block; transition: transform .2s, box-shadow .2s }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(18,42,30,.05), 0 14px 32px -8px rgba(18,42,30,.18) }
.related-card b { display: block; font-size: .94rem; margin-bottom: .2rem; color: var(--ink) }
.related-card span { color: var(--ink-faint); font-size: .82rem }
.rc-heads { display: flex; align-items: center; gap: .45rem; margin-bottom: .7rem }
.rc-logo { width: 36px; height: 36px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; color: #fff; letter-spacing: -.01em; font-family: 'Hanken Grotesk', sans-serif; overflow: hidden }
.rc-logo.nml-l { background: var(--green); overflow: hidden }
.rc-logo.nml-l img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50% }
.rc-vs { font-size: .7rem; font-weight: 700; color: var(--ink-faint) }
