:root {
    --primary: #a94f70;
    --primary-dark: #74354e;
    --primary-soft: #f8e8ee;
    --accent: #bd8159;
    --ink: #19161b;
    --text: #403a42;
    --muted: #736a74;
    --line: #eadfdd;
    --surface: #fffdfc;
    --soft: #faf5f2;
    --rose: #fcf3f6;
    --success: #267b58;
    --shadow: 0 20px 55px rgba(52, 33, 40, .09);
    --container: 1160px;
    --title: "Manrope", "Trebuchet MS", sans-serif;
    --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; color: var(--text); background: var(--surface); font: 16px/1.55 var(--body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, picture { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
svg { display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.narrow { max-width: 900px; }
.skip-link { position: fixed; z-index: 9999; left: 12px; top: -100px; padding: 11px 16px; border-radius: 10px; background: var(--ink); color: #fff; font-weight: 800; }
.skip-link:focus { top: 10px; }
:focus-visible { outline: 3px solid rgba(169, 79, 112, .35); outline-offset: 3px; }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; background: rgba(255, 253, 252, .92); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: .2s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(52, 33, 40, .05); }
.header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 42px; height: 42px; object-fit: contain; flex: 0 0 auto; }
.brand strong { display: block; color: var(--ink); font: 800 17px/1 var(--title); letter-spacing: -.3px; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 700; white-space: nowrap; }
.desktop-nav { display: flex; gap: 24px; color: var(--muted); font-size: 13px; font-weight: 800; }
.desktop-nav a:hover, .text-link:hover { color: var(--primary-dark); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.text-link { color: var(--muted); font-size: 13px; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 13px; background: #fff; place-items: center; cursor: pointer; }
.menu-toggle svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.mobile-menu { display: none; }

/* Actions */
.button { min-height: 48px; padding: 0 19px; border: 1px solid transparent; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; line-height: 1.1; text-align: center; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button svg, .text-cta svg, .faq-support svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #b75d75 58%, var(--accent)); box-shadow: 0 14px 28px rgba(169, 79, 112, .2); }
.button-ghost { color: var(--ink); background: #fff; border-color: var(--line); }
.button-light { color: var(--primary-dark); background: #fff; }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 13px; }
.button-large { min-height: 54px; padding-inline: 22px; }

/* Shared section styles */
.section { padding: 76px 0; }
.section-heading { max-width: 650px; margin: 0 0 34px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.compact-heading { max-width: 680px; margin-bottom: 30px; }
.section-kicker { display: inline-block; margin-bottom: 9px; color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.section-heading h2, .demo-intro h2, .final-cta h2 { margin: 0; color: var(--ink); font: 800 clamp(30px, 3.4vw, 44px)/1.1 var(--title); letter-spacing: -1.5px; }
.section-heading p, .demo-intro > p { margin: 13px 0 0; color: var(--muted); font-size: 15px; }
.text-cta { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; color: var(--primary-dark); font-weight: 800; }

/* Hero */
.hero { position: relative; padding: 116px 0 30px; background: linear-gradient(145deg, #fffdfc 0%, #fff8f6 54%, #f9ebef 100%); overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -210px; border-radius: 50%; background: rgba(169, 79, 112, .08); filter: blur(6px); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .84fr 1.16fr; gap: 52px; align-items: center; }
.eyebrow { min-height: 32px; padding: 0 12px; border: 1px solid rgba(169, 79, 112, .18); border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .72); color: var(--primary-dark); font-size: 11px; font-weight: 800; }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(169, 79, 112, .1); }
.hero h1 { margin: 17px 0 16px; color: var(--ink); font: 800 clamp(42px, 4.4vw, 62px)/1.01 var(--title); letter-spacing: -2.5px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-copy > p:not(.risk-note) { max-width: 530px; margin: 0; color: var(--muted); font-size: 17px; }
.hero-actions { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 10px; }
.risk-note { margin: 13px 0 0; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.risk-note svg { width: 17px; height: 17px; fill: none; stroke: var(--success); stroke-width: 2.4; }
.hero-facts { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-facts span { padding: 6px 9px; border-radius: 8px; background: rgba(255, 255, 255, .72); color: var(--muted); font-size: 10px; font-weight: 800; }
.hero-product { min-width: 0; }
.product-window, .demo-browser { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.browser-bar { min-height: 32px; padding: 0 11px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 5px; background: #fbf7f5; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d9ccca; }
.browser-bar i:first-child { background: #ca747b; }
.browser-bar i:nth-child(2) { background: #d6a65e; }
.browser-bar i:nth-child(3) { background: #79a986; }
.browser-bar span { margin-left: 7px; color: #91878a; font-size: 8px; font-weight: 700; }
.product-window picture, .product-window img { width: 100%; }
.product-window img { height: auto; aspect-ratio: 1909 / 905; object-fit: contain; background: var(--soft); }
.product-caption { margin: 10px 2px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-caption span { color: var(--muted); font-size: 11px; }
.product-caption strong { display: block; color: var(--ink); font-size: 13px; }
.product-caption b { padding: 7px 10px; border-radius: 9px; background: var(--primary-dark); color: #fff; font-size: 10px; white-space: nowrap; }
.audience-list { position: relative; z-index: 1; margin-top: 27px; padding-top: 18px; border-top: 1px solid rgba(169, 79, 112, .13); display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.audience-list strong { margin-right: 4px; color: var(--ink); font-size: 11px; }
.audience-list span { padding: 5px 9px; border-radius: 999px; background: #fff; color: var(--muted); font-size: 10px; font-weight: 800; }

/* Problem to solution */
.story-section { background: var(--soft); }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.story-grid .section-heading { margin: 0; }
.switch-list { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(52, 33, 40, .05); }
.switch-list > div { min-height: 62px; padding: 13px 17px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 32px 1fr; align-items: center; gap: 12px; }
.switch-list > div:last-child { border-bottom: 0; }
.switch-list span { color: var(--muted); font-size: 13px; }
.switch-list strong { color: var(--success); font-size: 13px; }
.switch-list svg { width: 30px; height: 30px; padding: 8px; border-radius: 50%; fill: none; stroke: var(--primary); stroke-width: 2; background: var(--primary-soft); }

/* Benefits */
.benefits-section { background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.benefit-card { min-height: 145px; padding: 21px; border: 1px solid var(--line); border-radius: 17px; display: flex; align-items: flex-start; gap: 14px; background: #fff; box-shadow: 0 10px 28px rgba(52, 33, 40, .045); }
.icon-box { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 auto; background: var(--primary-soft); color: var(--primary); }
.icon-box svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin: 1px 0 6px; color: var(--ink); font: 800 16px/1.25 var(--title); letter-spacing: -.3px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Product demo */
.demo-section { background: linear-gradient(145deg, #231f24, #171419); color: #fff; }
.demo-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 44px; align-items: center; }
.demo-intro { min-width: 0; }
.demo-intro .section-kicker { color: #e2acc0; }
.demo-intro h2 { color: #fff; font-size: clamp(30px, 3.2vw, 42px); }
.demo-intro > p { color: #c3bac3; }
.demo-tabs { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 7px; }
.demo-tabs button { min-height: 41px; padding: 0 14px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 10px; background: transparent; color: #cfc6cf; font-weight: 800; cursor: pointer; }
.demo-tabs button[aria-selected="true"] { border-color: #fff; background: #fff; color: var(--ink); }
.demo-copy { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .11); }
.demo-copy > span { color: #dda8bc; font-size: 10px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.demo-copy h3 { margin: 6px 0 5px; color: #fff; font: 800 20px/1.25 var(--title); }
.demo-copy p { margin: 0; color: #bdb4be; font-size: 13px; }
.demo-panel { min-width: 0; }
.demo-browser { border-color: rgba(255, 255, 255, .15); box-shadow: 0 28px 70px rgba(0, 0, 0, .28); }
.demo-browser img { width: 100%; height: auto; max-height: 420px; aspect-ratio: 1.9 / 1; object-fit: contain; object-position: center; background: var(--soft); transition: opacity .16s ease, transform .18s ease; }
.demo-browser img.is-changing { opacity: .35; transform: scale(.992); }
.demo-panel > small { display: block; margin-top: 9px; color: #928994; font-size: 10px; text-align: right; }

/* Steps */
.steps-section { background: #fff; }
.steps-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; }
.steps-list li { min-height: 145px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; display: flex; align-items: flex-start; gap: 14px; background: var(--soft); }
.steps-list li > span { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; background: var(--primary); color: #fff; font: 800 14px/1 var(--title); }
.steps-list h3 { margin: 1px 0 7px; color: var(--ink); font: 800 17px/1.25 var(--title); }
.steps-list p { margin: 0; color: var(--muted); font-size: 12px; }
.trust-strip { margin-top: 15px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 22px; background: #fff; }
.trust-strip span { position: relative; padding-left: 17px; color: var(--muted); font-size: 11px; font-weight: 800; }
.trust-strip span::before { content: ""; position: absolute; left: 0; top: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(38, 123, 88, .1); }

/* Pricing */
.pricing-section { background: var(--soft); }
.billing-toggle { width: max-content; margin: -12px auto 26px; padding: 4px; border: 1px solid var(--line); border-radius: 12px; display: flex; background: #fff; }
.billing-toggle button { min-height: 38px; padding: 0 15px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; }
.billing-toggle button.active { background: var(--ink); color: #fff; }
.billing-toggle button span { margin-left: 4px; color: var(--success); font-size: 9px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; align-items: stretch; }
.plan-card { position: relative; padding: 25px; border: 1px solid var(--line); border-radius: 21px; display: flex; flex-direction: column; background: #fff; box-shadow: 0 12px 34px rgba(52, 33, 40, .05); }
.plan-card.featured { border: 2px solid var(--primary); background: linear-gradient(180deg, var(--rose), #fff 38%); box-shadow: 0 22px 50px rgba(169, 79, 112, .13); }
.recommended { position: absolute; right: 18px; top: -13px; min-height: 27px; padding: 0 10px; border-radius: 999px; display: inline-flex; align-items: center; background: var(--primary); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.plan-top > span { color: var(--primary); font-size: 9px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.plan-top h3 { margin: 6px 0; color: var(--ink); font: 800 23px/1.1 var(--title); }
.plan-top p { min-height: 40px; margin: 0; color: var(--muted); font-size: 12px; }
.plan-price { margin-top: 21px; display: flex; align-items: flex-end; gap: 4px; color: var(--ink); }
.plan-price strong { font: 800 31px/1 var(--title); letter-spacing: -1px; }
.plan-price small { padding-bottom: 3px; color: var(--muted); font-size: 10px; font-weight: 800; }
.plan-note { min-height: 18px; margin: 7px 0 0; color: var(--success); font-size: 10px; font-weight: 800; }
.check-list { margin: 20px 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; list-style: none; }
.check-list li { position: relative; padding-left: 20px; color: var(--text); font-size: 11px; font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 11px; height: 11px; border-radius: 50%; background: var(--success); box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--success); }
.plan-card .button { width: 100%; margin-top: auto; min-height: 44px; font-size: 12px; }
.pricing-clarity { margin-top: 22px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: #fff; }
.pricing-clarity div { padding-left: 14px; border-left: 2px solid rgba(169, 79, 112, .2); }
.pricing-clarity strong { display: block; color: var(--ink); font: 800 12px/1.3 var(--title); }
.pricing-clarity span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.mobile-swipe-hint { display: none; }

/* FAQ */
.faq-section { background: #fff; }
.faq-list { display: grid; gap: 8px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq-list details[open] { border-color: rgba(169, 79, 112, .3); box-shadow: 0 10px 28px rgba(52, 33, 40, .05); }
.faq-list summary { min-height: 58px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink); font: 800 14px/1.3 var(--title); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--primary); stroke-width: 2; transition: transform .18s ease; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details > div { padding: 0 44px 17px 17px; }
.faq-list p { margin: 0; color: var(--muted); font-size: 13px; }
.faq-support { margin-top: 18px; padding: 14px 16px; border-radius: 13px; display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--soft); color: var(--muted); font-size: 12px; }
.faq-support a { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-dark); font-weight: 800; }

/* Final CTA and footer */
.final-cta-section { padding: 0 0 48px; background: #fff; }
.final-cta { padding: 37px 40px; border-radius: 25px; display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; background: linear-gradient(130deg, var(--primary), var(--primary-dark) 67%, #4d2635); color: #fff; box-shadow: var(--shadow); }
.final-cta > div:first-child > span { color: #f0cbd8; font-size: 9px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.final-cta h2 { margin-top: 5px; color: #fff; font-size: clamp(28px, 3vw, 39px); }
.final-cta p { max-width: 650px; margin: 10px 0 0; color: #eadde2; font-size: 13px; }
.final-cta > div:last-child { display: grid; gap: 7px; justify-items: center; }
.final-cta small { color: #e8d6dd; font-size: 9px; }
.site-footer { padding: 48px 0 22px; border-top: 1px solid var(--line); background: var(--soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-brand p { max-width: 310px; margin: 15px 0 0; color: var(--muted); font-size: 11px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-grid h2 { margin: 0 0 5px; color: var(--ink); font: 800 12px/1.2 var(--title); }
.footer-grid a, .footer-grid > div > span { color: var(--muted); font-size: 10px; }
.footer-bottom { margin-top: 35px; padding-top: 17px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; color: #958a91; font-size: 9px; }

/* Floating UI */
.mobile-sticky-cta { display: none; }
.cookie-banner { position: fixed; z-index: 300; left: 18px; right: 18px; bottom: 18px; max-width: 860px; margin: auto; padding: 17px; border: 1px solid var(--line); border-radius: 17px; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255,255,255,.98); box-shadow: 0 26px 70px rgba(45, 28, 34, .2); }
.cookie-banner:not([hidden]) { display: flex; }
.cookie-banner strong { display: block; color: var(--ink); font: 800 13px/1.2 var(--title); }
.cookie-banner p { max-width: 560px; margin: 5px 0 2px; color: var(--muted); font-size: 10px; }
.cookie-banner > div:first-child a { color: var(--primary-dark); font-size: 9px; text-decoration: underline; }
.cookie-banner > div:last-child { display: flex; gap: 7px; flex: 0 0 auto; }
.cookie-banner .button { min-height: 39px; padding-inline: 12px; font-size: 10px; }
.noscript { position: fixed; z-index: 500; left: 10px; right: 10px; bottom: 10px; padding: 10px; border-radius: 9px; background: var(--ink); color: #fff; font-size: 11px; text-align: center; }
.reveal { opacity: 0; transform: translateY(13px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
    .desktop-nav, .header-actions { display: none; }
    .menu-toggle { display: grid; }
    .mobile-menu { position: fixed; z-index: 99; inset: 70px 0 auto; max-height: calc(100vh - 70px); padding: 14px 16px 18px; border-top: 1px solid var(--line); background: rgba(255,253,252,.99); box-shadow: 0 25px 55px rgba(52,33,40,.12); overflow-y: auto; }
    .mobile-menu:not([hidden]) { display: grid; gap: 2px; }
    .mobile-menu > a { min-height: 44px; padding: 0 10px; border-bottom: 1px solid var(--line); display: flex; align-items: center; font-size: 13px; font-weight: 800; }
    .mobile-menu > div { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-copy { max-width: 700px; }
    .hero-product { width: min(760px, 100%); }
    .story-grid { grid-template-columns: 1fr; gap: 30px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-layout { grid-template-columns: minmax(0, 1fr); }
    .demo-intro { max-width: 680px; }
    .plans-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
    .pricing-clarity { max-width: 620px; margin-inline: auto; margin-top: 18px; grid-template-columns: 1fr; gap: 11px; }
    .final-cta { grid-template-columns: 1fr; }
    .final-cta > div:last-child { justify-items: start; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { display: none; }
}

@media (max-width: 700px) {
    html { scroll-padding-top: 72px; }
    .container { width: min(100% - 24px, var(--container)); }
    .header-inner { min-height: 64px; }
    .brand img { width: 38px; height: 38px; }
    .brand strong { font-size: 15px; }
    .brand small { font-size: 9px; }
    .mobile-menu { top: 64px; }
    .button-large { min-height: 52px; }
    .section { padding: 52px 0; }
    .section-heading { margin-bottom: 25px; }
    .section-heading h2, .demo-intro h2, .final-cta h2 { font-size: clamp(29px, 8.5vw, 38px); letter-spacing: -1.1px; }
    .section-heading p, .demo-intro > p { font-size: 14px; }
    .hero { padding: 91px 0 22px; }
    .hero::after { width: 320px; height: 320px; }
    .hero-grid { gap: 23px; }
    .eyebrow { min-height: 29px; max-width: 100%; font-size: 9px; }
    .hero h1 { margin: 14px 0 13px; font-size: clamp(37px, 11vw, 48px); letter-spacing: -1.8px; }
    .hero-copy > p:not(.risk-note) { font-size: 15px; }
    .hero-actions { margin-top: 19px; display: grid; }
    .hero-actions .button { width: 100%; }
    .risk-note { margin-top: 11px; }
    .hero-facts { margin-top: 14px; gap: 6px; }
    .hero-facts span { font-size: 9px; }
    .product-window { border-radius: 13px; }
    .browser-bar { min-height: 27px; }
    .product-caption { margin-top: 7px; }
    .product-caption span { font-size: 9px; }
    .product-caption strong { font-size: 11px; }
    .product-caption b { padding: 6px 8px; font-size: 9px; }
    .audience-list { margin-top: 17px; padding-top: 13px; gap: 5px; }
    .audience-list span { font-size: 9px; }
    .story-grid { gap: 24px; }
    .switch-list > div { min-height: 55px; padding: 10px 12px; grid-template-columns: 1fr 26px 1fr; gap: 7px; }
    .switch-list span, .switch-list strong { font-size: 11px; }
    .switch-list svg { width: 25px; height: 25px; padding: 6px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 8px; }
    .benefit-card { min-height: 0; padding: 16px; border-radius: 14px; }
    .icon-box { width: 38px; height: 38px; border-radius: 11px; }
    .benefit-card h3 { font-size: 15px; }
    .demo-layout { gap: 25px; }
    .demo-tabs { margin-top: 18px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .demo-tabs::-webkit-scrollbar { display: none; }
    .demo-tabs button { flex: 1 0 auto; }
    .demo-copy { margin-top: 17px; padding-top: 14px; }
    .demo-browser { border-radius: 13px; }
    .demo-browser img { max-height: 255px; aspect-ratio: 1.65 / 1; }
    .demo-panel > small { font-size: 8px; }
    .steps-list { grid-template-columns: 1fr; gap: 8px; }
    .steps-list li { min-height: 0; padding: 16px; border-radius: 14px; }
    .trust-strip { justify-content: flex-start; gap: 9px 16px; }
    .trust-strip span { width: calc(50% - 8px); font-size: 9px; }
    .pricing-section { overflow: hidden; }
    .pricing-section .section-heading { margin-bottom: 22px; }
    .billing-toggle { width: 100%; margin-bottom: 17px; }
    .billing-toggle button { flex: 1; }
    .plans-grid { width: 100%; max-width: none; margin-right: 0; padding: 14px 12px 18px 0; display: flex; align-items: stretch; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .plans-grid::-webkit-scrollbar { display: none; }
    .plan-card { width: min(82vw, 330px); min-width: min(82vw, 330px); padding: 21px; border-radius: 18px; scroll-snap-align: start; }
    .plan-card.featured { order: -1; }
    .plan-top p { min-height: 36px; }
    .mobile-swipe-hint { margin: -7px 0 14px; display: block; color: var(--muted); font-size: 9px; text-align: center; }
    .pricing-clarity { padding: 14px; }
    .faq-list summary { min-height: 54px; padding-inline: 14px; font-size: 13px; }
    .faq-list details > div { padding: 0 38px 15px 14px; }
    .faq-list p { font-size: 12px; }
    .faq-support { align-items: flex-start; flex-direction: column; }
    .final-cta-section { padding-bottom: 32px; }
    .final-cta { padding: 27px 21px; border-radius: 20px; gap: 22px; }
    .final-cta p { font-size: 12px; }
    .final-cta > div:last-child { width: 100%; }
    .final-cta .button { width: 100%; }
    .site-footer { padding: 38px 0 90px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .mobile-sticky-cta { position: fixed; z-index: 150; left: 7px; right: 7px; bottom: calc(7px + env(safe-area-inset-bottom)); min-height: 64px; padding: 7px 7px 7px 12px; border: 1px solid var(--line); border-radius: 16px; align-items: center; justify-content: space-between; gap: 8px; background: rgba(255,255,255,.97); box-shadow: 0 20px 55px rgba(52,33,40,.22); backdrop-filter: blur(14px); }
    .mobile-sticky-cta:not([hidden]) { display: flex; }
    .mobile-sticky-cta strong { display: block; color: var(--ink); font: 800 11px/1.2 var(--title); }
    .mobile-sticky-cta span { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; }
    .mobile-sticky-cta .button { min-height: 46px; padding-inline: 13px; font-size: 11px; }
    .cookie-banner { left: 7px; right: 7px; bottom: 7px; padding: 15px; align-items: stretch; flex-direction: column; }
    .cookie-banner > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 370px) {
    .brand small { display: none; }
    .hero h1 { font-size: 35px; }
    .product-caption span { max-width: 175px; }
    .trust-strip span { width: 100%; }
    .mobile-sticky-cta > div { display: none; }
    .mobile-sticky-cta .button { width: 100%; }
    .cookie-banner > div:last-child { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header, .mobile-sticky-cta, .cookie-banner { display: none !important; }
    .hero { padding-top: 30px; }
    .section { padding: 35px 0; }
    .reveal { opacity: 1; transform: none; }
}
