:root {
    --ink: #0d231d;
    --ink-soft: #33493f;
    --muted: #5f7268;
    --paper: #f7f4ec;
    --paper-deep: #efeadd;
    --card: #fffdf7;
    --line: #ddd6c4;
    --green: #087f6d;
    --green-dark: #065c4f;
    --green-ghost: rgba(8,127,109,.09);
    --wa: #25d366;
    --amber: #e8a13a;
    --radius-lg: 26px;
    --radius-md: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}
/* grain overlay */
body::before {
    content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3.display {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247,244,236,.82); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(221,214,196,.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.nav-brand img { width: 34px; height: 34px; border-radius: 10px; box-shadow: 0 6px 16px rgba(8,127,109,.25); }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.nav-links a { position: relative; transition: color .15s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.nav-login:hover { color: var(--green); }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font: inherit; font-size: 14.5px; font-weight: 700;
    padding: 12px 22px; border-radius: 999px; cursor: pointer; border: none;
    transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .18s;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(8,127,109,.28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(8,127,109,.34); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-lg { font-size: 16px; padding: 16px 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 60px; }
.hero-bg {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-bg::before {
    content: ""; position: absolute; top: -220px; right: -180px; width: 640px; height: 640px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,.13), transparent 65%);
}
.hero-bg::after {
    content: ""; position: absolute; bottom: -260px; left: -200px; width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle, rgba(8,127,109,.10), transparent 65%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: var(--green); background: var(--green-ghost);
    padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 50% { box-shadow: 0 0 0 7px rgba(37,211,102,0);} }
h1 { font-size: clamp(40px, 5.4vw, 62px); }
h1 .accent {
    font-style: italic; font-weight: 500; color: var(--green);
    background: linear-gradient(transparent 68%, rgba(37,211,102,.28) 68%);
    padding: 0 2px;
}
.hero-sub { margin-top: 22px; font-size: 18px; color: var(--muted); max-width: 480px; line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.hero-note svg { width: 15px; height: 15px; color: var(--green); }

/* staged load animation */
.stage { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.22,1,.36,1) forwards; }
.stage.d1 { animation-delay: .05s; } .stage.d2 { animation-delay: .17s; }
.stage.d3 { animation-delay: .29s; } .stage.d4 { animation-delay: .41s; } .stage.d5 { animation-delay: .53s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Phone mockup ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
    width: 330px; background: #111b21; border-radius: 38px; padding: 12px;
    box-shadow: 0 40px 90px rgba(13,35,29,.35), 0 4px 14px rgba(13,35,29,.18);
    transform: rotate(1.6deg);
}
.phone-screen { border-radius: 28px; overflow: hidden; background: #e5ddd3; }
.wa-header { background: #075e54; color: #fff; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.wa-avatar {
    width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px;
    background: linear-gradient(135deg, #0a9e87, #087f6d);
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.wa-title { font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.wa-status { font-size: 10.5px; opacity: .75; }
.wa-body {
    padding: 14px 12px 18px; min-height: 380px; display: flex; flex-direction: column; gap: 9px;
    background-image: radial-gradient(rgba(13,35,29,.045) 1px, transparent 1px); background-size: 18px 18px;
}
.bubble {
    max-width: 82%; padding: 9px 12px; border-radius: 12px; font-size: 12.8px; line-height: 1.45;
    box-shadow: 0 1px 2px rgba(0,0,0,.09);
    opacity: 0; transform: translateY(10px) scale(.97);
}
.bubble.show { animation: pop .45s cubic-bezier(.22,1.3,.36,1) forwards; }
@keyframes pop { to { opacity: 1; transform: none; } }
.bubble.in { align-self: flex-start; background: #fff; border-top-left-radius: 3px; }
.bubble.out { align-self: flex-end; background: #d9fdd3; border-top-right-radius: 3px; }
.bubble .meta { display: block; text-align: right; font-size: 9.5px; color: #7a8a80; margin-top: 3px; }
.bubble .meta .ticks { color: #34b7f1; }
.bubble-btns { display: grid; gap: 5px; margin-top: 8px; }
.bubble-btn {
    text-align: center; font-size: 12px; font-weight: 700; color: #0a7cff;
    background: #fff; border: 1px solid #e4e9e7; border-radius: 8px; padding: 7px;
}
/* floating chips near phone */
.float-chip {
    position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 14px;
    padding: 11px 15px; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; gap: 9px;
    box-shadow: 0 18px 40px rgba(13,35,29,.14);
    opacity: 0;
}
.float-chip.show { animation: chipIn .7s cubic-bezier(.22,1.3,.36,1) forwards; }
@keyframes chipIn { from { opacity:0; transform: translateY(14px) scale(.94);} to { opacity:1; transform:none;} }
.float-chip .ico {
    width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}
.chip-1 { top: 10%; left: -4%; }
.chip-1 .ico { background: #e8f7f1; }
.chip-2 { bottom: 20%; right: -6%; }
.chip-2 .ico { background: #fdf3e2; }
.chip-3 { bottom: -3%; left: 2%; }
.chip-3 .ico { background: #e9f0fd; }
@media (max-width: 620px) { .chip-1 { left: 0; } .chip-2 { right: 0; } }

/* ---------- Stats strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 18px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { display: block; font-family: 'Fraunces', serif; font-size: 32px; font-weight: 600; color: var(--green-dark); }
.stat span { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* ---------- Sections ---------- */
section.block { padding: 96px 0; }
.sec-eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
h2 { font-size: clamp(30px, 3.6vw, 44px); max-width: 640px; }
.sec-sub { margin-top: 16px; font-size: 16.5px; color: var(--muted); max-width: 560px; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.on { opacity: 1; transform: none; }

/* feature triptych */
.tri { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tri-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 28px; position: relative; overflow: hidden;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.tri-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(13,35,29,.12); }
.tri-card .num {
    font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--amber); font-weight: 500;
}
.tri-card h3 { font-size: 20px; font-weight: 800; margin: 10px 0 10px; letter-spacing: -.01em; }
.tri-card p { font-size: 14.5px; color: var(--muted); }
.tri-card .glyph {
    width: 46px; height: 46px; border-radius: 14px; background: var(--green-ghost);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.tri-card .glyph svg { width: 23px; height: 23px; color: var(--green); }

/* ---------- Flow builder section (dark) ---------- */
.dark {
    background: var(--ink); color: #eef4f0; border-radius: 44px; margin: 0 16px; position: relative; overflow: hidden;
}
.dark::before {
    content: ""; position: absolute; top: -160px; right: -120px; width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,.14), transparent 65%);
}
.dark .sec-sub { color: #a8bcb1; }
.dark-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; position: relative; }
.flow-canvas {
    background: #10281f; border: 1px solid #1e4235; border-radius: var(--radius-lg);
    padding: 30px; position: relative; min-height: 380px;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px;
}
.node {
    position: absolute; background: #16342a; border: 1px solid #2a5445; border-radius: 13px;
    padding: 11px 15px; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; gap: 9px;
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    transition: transform .25s, border-color .25s;
}
.node:hover { transform: translateY(-3px); border-color: var(--wa); }
.node .nico { width: 22px; height: 22px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 11px; flex: 0 0 22px; }
.n-trigger { top: 26px; left: 28px; } .n-trigger .nico { background: rgba(37,211,102,.2); }
.n-hours { top: 108px; left: 74px; } .n-hours .nico { background: rgba(232,161,58,.22); }
.n-open { top: 196px; left: 30px; } .n-open .nico { background: rgba(37,211,102,.2); }
.n-closed { top: 196px; right: 34px; } .n-closed .nico { background: rgba(90,140,255,.22); }
.n-assign { top: 286px; left: 62px; } .n-assign .nico { background: rgba(232,161,58,.22); }
.n-sheet { top: 286px; right: 26px; } .n-sheet .nico { background: rgba(37,211,102,.2); }
.flow-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.flow-svg path { stroke: #2f5b4a; stroke-width: 2; fill: none; stroke-dasharray: 6 6; animation: dashmove 1.4s linear infinite; }
@keyframes dashmove { to { stroke-dashoffset: -24; } }
.check-list { margin-top: 30px; display: grid; gap: 15px; }
.check-item { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; }
.check-item svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--wa); margin-top: 2px; }
.check-item b { display: block; font-size: 15px; }
.check-item span { color: #a8bcb1; font-size: 13.5px; }
.ai-tag {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 26px;
    background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3);
    color: #7fe0ab; font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 999px;
}

/* ---------- Shopify section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.event-board { display: flex; flex-wrap: wrap; gap: 11px; }
.event-chip {
    font-size: 13.5px; font-weight: 700; padding: 11px 17px; border-radius: 999px;
    background: var(--card); border: 1px solid var(--line); display: inline-flex; align-items: center; gap: 8px;
    transition: transform .2s, border-color .2s, background .2s;
}
.event-chip:hover { transform: translateY(-3px) rotate(-1deg); border-color: var(--green); background: var(--green-ghost); }
.event-chip .edot { width: 8px; height: 8px; border-radius: 50%; }
.order-card {
    margin-top: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: 0 22px 48px rgba(13,35,29,.1); max-width: 420px;
}
.order-head { display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 15px; }
.order-badge { font-size: 11.5px; font-weight: 800; color: var(--green); background: var(--green-ghost); padding: 5px 12px; border-radius: 999px; }
.order-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); margin-top: 12px; }
.order-row b { color: var(--ink); }
.order-progress { margin-top: 18px; display: flex; gap: 5px; }
.order-progress i { flex: 1; height: 5px; border-radius: 3px; background: var(--paper-deep); }
.order-progress i.fill { background: var(--wa); }

/* ---------- Feature grid ---------- */
.grid-6 { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 24px; transition: transform .22s, box-shadow .22s;
}
.g-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(13,35,29,.1); }
.g-card h4 { font-size: 15.5px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.g-card h4 .gi {
    width: 30px; height: 30px; border-radius: 9px; background: var(--green-ghost);
    display: flex; align-items: center; justify-content: center; font-size: 14px; flex: 0 0 30px;
}
.g-card p { margin-top: 9px; font-size: 13.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.p-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 34px 30px; display: flex; flex-direction: column; position: relative;
    transition: transform .25s, box-shadow .25s;
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(13,35,29,.13); }
.p-card.hot { border: 2px solid var(--green); box-shadow: 0 26px 56px rgba(8,127,109,.16); }
.p-flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 5px 15px; border-radius: 999px; white-space: nowrap;
}
.p-name { font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.p-price { margin-top: 14px; font-family: 'Fraunces', serif; font-size: 46px; font-weight: 600; line-height: 1; }
.p-price small { font-family: 'Manrope'; font-size: 14px; font-weight: 600; color: var(--muted); }
.p-desc { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.p-list { margin: 24px 0 28px; display: grid; gap: 11px; flex: 1; }
.p-item { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.p-item svg { flex: 0 0 17px; width: 17px; height: 17px; color: var(--green); margin-top: 2.5px; }
.p-card .btn { justify-content: center; width: 100%; }
.trial-note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--muted); }
.trial-note b { color: var(--green-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 54px auto 0; display: grid; gap: 13px; }
details {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 20px 24px; cursor: pointer; transition: border-color .2s;
}
details:hover { border-color: var(--green); }
details summary { font-size: 15.5px; font-weight: 800; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-family: 'Fraunces', serif; font-size: 22px; color: var(--green); transition: transform .25s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--green-dark); color: #fff; border-radius: 44px; margin: 0 16px;
    position: relative; overflow: hidden; text-align: center; padding: 90px 24px;
}
.cta-banner::before, .cta-banner::after {
    content: ""; position: absolute; border-radius: 50%;
}
.cta-banner::before { top: -140px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(37,211,102,.22), transparent 65%); }
.cta-banner::after { bottom: -160px; right: -110px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%); }
.cta-banner h2 { max-width: 620px; margin: 0 auto; color: #fff; }
.cta-banner .sec-sub { margin: 18px auto 0; color: #bcd8cd; }
.cta-banner .btn { margin-top: 34px; background: #fff; color: var(--green-dark); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.cta-banner .btn:hover { transform: translateY(-3px); background: var(--paper); }

/* ---------- Footer ---------- */
footer { padding: 64px 0 40px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 300px; }
.foot-brand .nav-brand { margin-bottom: 14px; }
.foot-brand p { font-size: 13.5px; color: var(--muted); }
.foot-col h5 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 15px; }
.foot-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--green); }
.foot-base {
    margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12.5px; color: var(--muted);
}

/* ---------- Pricing page header ---------- */
.price-hero { position: relative; text-align: center; padding: 72px 0 8px; }
.price-hero .eyebrow { margin-left: auto; margin-right: auto; }
.price-hero h1 { max-width: 720px; margin: 0 auto; }
.price-hero p { margin: 20px auto 0; font-size: 18px; color: var(--muted); max-width: 520px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid, .dark-grid, .split { grid-template-columns: 1fr; gap: 44px; }
    .tri, .grid-6, .price-grid { grid-template-columns: 1fr; }
    .strip-inner { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3) { border-left: none; }
    .stat { border-top: 1px solid var(--line); }
    .stat:nth-child(-n+2) { border-top: none; }
    .nav-links { display: none; }
    .hero { padding-top: 56px; }
    section.block { padding: 68px 0; }
    .dark, .cta-banner { border-radius: 28px; margin: 0 10px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Mobile responsive (additive) ---------- */
@media (max-width: 768px) {
    .wrap { padding: 0 20px; }
    h1 { font-size: clamp(32px, 8.5vw, 40px); }
    h2 { font-size: clamp(26px, 6.5vw, 30px); }
    .hero { padding: 44px 0 48px; }
    .hero-sub { font-size: 16.5px; }
    .hero-visual { margin-top: 10px; }
    /* keep decorative blobs from forcing width */
    .hero-bg::before { right: -320px; }
    .hero-bg::after { left: -320px; }
    /* floating chips stay inside the viewport (existing rule only covered <=620px) */
    .chip-1 { left: 0; }
    .chip-2 { right: 0; }
    section.block { padding: 60px 0; }
    .sec-sub { font-size: 15.5px; }
    /* nav: links already hidden at 960px; tighten the rest */
    .nav-inner { height: 60px; }
    .nav-cta { gap: 12px; }
    .nav-cta .btn { padding: 10px 16px; font-size: 13.5px; }
    /* flow builder canvas: nodes are absolutely positioned, shrink them so they fit */
    .flow-canvas { padding: 20px 14px; min-height: 350px; }
    .node { font-size: 11px; padding: 8px 10px; gap: 6px; border-radius: 10px; }
    .node .nico { width: 18px; height: 18px; flex: 0 0 18px; font-size: 10px; }
    .n-trigger { left: 16px; }
    .n-open { left: 14px; }
    .n-closed { right: 14px; }
    .n-assign { left: 30px; }
    .n-sheet { right: 12px; }
    /* cards / misc */
    .order-card { max-width: 100%; }
    .cta-banner { padding: 64px 20px; }
    .p-price { font-size: 40px; }
    .foot-grid { gap: 32px; }
    footer { padding: 52px 0 32px; }
    img { max-width: 100%; }
    .price-hero { padding: 48px 0 4px; }
    .price-hero p { font-size: 16.5px; }
}

@media (max-width: 480px) {
    h1 { font-size: clamp(29px, 8.8vw, 34px); }
    h2 { font-size: clamp(24px, 7vw, 27px); }
    .hero { padding: 36px 0 44px; }
    .hero-sub { font-size: 15.5px; }
    /* full-width CTAs */
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-banner .btn { width: 100%; justify-content: center; }
    .btn-lg { font-size: 15px; padding: 15px 24px; }
    /* nav: drop the login link, keep brand + primary CTA */
    .nav-login { display: none; }
    .nav-brand { font-size: 16px; }
    .nav-brand img { width: 30px; height: 30px; }
    /* phone mockup fits narrow screens */
    .phone { width: 100%; max-width: 310px; transform: none; padding: 10px; }
    .wa-body { min-height: 330px; }
    .float-chip { font-size: 11.5px; padding: 9px 12px; }
    .chip-2 { bottom: 14%; }
    /* stats strip: single column reads better on tiny screens */
    .strip-inner { grid-template-columns: 1fr; }
    .stat { border-left: none; border-top: 1px solid var(--line); padding: 22px 16px; }
    .stat:first-child { border-top: none; }
    .stat:nth-child(-n+2) { border-top: 1px solid var(--line); }
    .stat:nth-child(1) { border-top: none; }
    .stat b { font-size: 27px; }
    /* cards */
    .tri-card { padding: 24px 20px; }
    .p-card { padding: 28px 22px; }
    .p-price { font-size: 36px; }
    .g-card { padding: 20px; }
    details { padding: 16px 18px; }
    details summary { font-size: 14.5px; }
    /* dark + cta rounded shells hug edges less */
    .dark, .cta-banner { border-radius: 22px; margin: 0 8px; }
    .cta-banner { padding: 54px 18px; }
    /* flow canvas tighter still */
    .flow-canvas { min-height: 330px; padding: 16px 10px; }
    .node { font-size: 10px; padding: 7px 8px; }
    .n-assign { left: 8px; }
    .n-sheet { right: 8px; }
    /* footer stacks */
    .foot-grid { flex-direction: column; gap: 28px; }
    .foot-base { flex-direction: column; gap: 6px; }
    section.block { padding: 52px 0; }
    .event-chip { font-size: 12.5px; padding: 9px 14px; }
}
