:root {
    --primary: #5751ea;
    --primary-2: #625cf2;
    --primary-3: #4e48e3;
    --mint: #baff8f;
    --mint-2: #d8ffc2;
    --ink: #090d1d;
    --ink-2: #141a2f;
    --muted: #626b80;
    --soft: #f6f7fb;
    --white: #ffffff;
    --line: rgba(15, 23, 42, .10);
    --glass-dark: rgba(21, 20, 86, .78);
    --shadow: 0 26px 80px rgba(29, 26, 98, .18);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --container: 1180px;
    --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: var(--ink);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 1000;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
}
.skip-link:focus { top: 14px; }

.page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #ffffff;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}

.site-header {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    color: #ffffff;
    pointer-events: none;
}
.nav-wrap {
    width: min(var(--container), calc(100% - 40px));
    min-height: 62px;
    margin: 0 auto;
    padding: 8px 10px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 20px;
    background: var(--glass-dark);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 42px rgba(16, 15, 78, .24);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    pointer-events: auto;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: #fff;
    font-size: 19px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.045em;
}
.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    color: var(--mint);
    font-size: 12px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
}
.main-nav a {
    position: relative;
    padding: 13px 0;
    transition: color .2s ease, opacity .2s ease;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.main-nav a:hover { color: var(--mint); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; min-width: max-content; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.header-actions .btn {
    min-height: 42px;
    padding: 0 19px;
    border-radius: 14px;
    font-size: 13px;
    letter-spacing: .03em;
}
.btn-mint { background: var(--mint); color: #071018; box-shadow: 0 16px 34px rgba(186,255,143,.24); }
.btn-mint:hover { background: var(--mint-2); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.10); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--ink); color: var(--white); box-shadow: 0 18px 40px rgba(11,16,32,.18); }
.btn-light { background: var(--white); color: var(--primary); box-shadow: 0 16px 34px rgba(35,35,120,.12); }
.btn-text { color: var(--white); min-height: 0; padding: 0; border-radius: 0; background: transparent; opacity: .9; }
.btn-text:hover { opacity: 1; color: var(--mint); transform: none; }

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.10);
    color: #fff;
    border-radius: 13px;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 4px auto;
    border-radius: 99px;
    transition: transform .2s ease, opacity .2s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    padding: 108px 0 58px;
    background:
        radial-gradient(circle at 18% 24%, rgba(186,255,143,.22), transparent 22%),
        radial-gradient(circle at 86% 26%, rgba(255,255,255,.16), transparent 24%),
        linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .28;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 500px);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
}
.hero-content { max-width: 650px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 950;
    color: var(--mint);
    margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--mint); border-radius: 999px; }
h1 {
    max-width: 650px;
    font-size: clamp(44px, 4.65vw, 68px);
    line-height: 1;
    letter-spacing: -.073em;
    margin-bottom: 20px;
    font-weight: 950;
}
h1 span, .accent { color: var(--mint); }
h1 span { display: block; }
.hero-copy {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.62;
    color: rgba(255,255,255,.84);
    margin-bottom: 26px;
}
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.mini-proof {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,.86);
    max-width: 560px;
    line-height: 1.45;
    font-size: 14px;
}
.avatar-stack { display: flex; min-width: 104px; }
.avatar-stack span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--primary);
    border: 3px solid var(--primary-2);
    font-size: 10px;
    font-weight: 950;
    margin-left: -8px;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(210px, 1fr);
    align-items: center;
    gap: 22px;
}
.phone-stage {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}
.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(186,255,143,.18);
    filter: blur(20px);
}
.phone {
    position: relative;
    z-index: 2;
    width: clamp(244px, 22vw, 278px);
    min-height: 520px;
    padding: 12px;
    border-radius: 40px;
    background: #090b13;
    box-shadow: 0 34px 72px rgba(0,0,0,.28);
    transform: rotate(-1.4deg);
}
.phone-screen {
    min-height: 496px;
    background: #fff;
    border-radius: 30px;
    padding: 20px 16px;
    color: var(--ink);
    overflow: hidden;
}
.app-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.app-user { display: flex; gap: 10px; align-items: center; min-width: 0; }
.app-user img { width: 38px; height: 38px; border-radius: 50%; background: #eef0ff; }
.app-user small, .quote-card-mobile small { display: block; color: #8a91a6; font-size: 10px; }
.app-user strong { font-size: 14px; }
.bell { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--primary); }
.app-title { font-weight: 950; font-size: 18px; letter-spacing: -.04em; margin-bottom: 12px; }
.quote-card-mobile {
    background: linear-gradient(135deg, var(--mint), #efffe7);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 16px 34px rgba(84, 81, 234, .12);
    margin-bottom: 14px;
}
.quote-card-mobile strong { display: block; font-size: 29px; letter-spacing: -.06em; margin: 7px 0; }
.status-dot { color: #1b6530; font-size: 12px; font-weight: 850; }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.quick-action {
    min-height: 64px;
    background: #f5f6fb;
    border: 1px solid #eceef8;
    border-radius: 17px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}
.quick-action b { color: var(--primary); font-size: 17px; }
.phone-list { display: grid; gap: 9px; }
.phone-line { display: flex; justify-content: space-between; gap: 12px; padding: 11px; border-radius: 13px; background: #f8f9fc; font-size: 11px; color: #777f93; }
.phone-line span:last-child { color: var(--ink); font-weight: 850; text-align: right; }

.hero-side {
    align-self: center;
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 20px 45px rgba(18, 17, 87, .12);
}
.metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.metric { border-left: 1px solid rgba(255,255,255,.22); padding-left: 14px; }
.metric small { display: block; color: rgba(255,255,255,.60); margin-bottom: 4px; font-size: 12px; }
.metric strong { font-size: 25px; letter-spacing: -.05em; }
.hero-side p { color: rgba(255,255,255,.82); line-height: 1.62; font-size: 15px; margin: 0; }
.store-row { display: flex; gap: 10px; flex-wrap: wrap; }
.store-pill { background: #fff; color: var(--ink); padding: 10px 13px; border-radius: 12px; font-weight: 950; font-size: 12px; display: inline-flex; align-items: center; gap: 8px; }

.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-card { min-height: 210px; padding: 44px 32px; background: #fff; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.strip-card:nth-child(2) { background: var(--mint); }
.strip-card:nth-child(4) { background: var(--primary-2); color: #fff; }
.icon-badge { width: 46px; height: 46px; border: 2px solid currentColor; border-radius: 14px; display: grid; place-items: center; font-weight: 950; }
.strip-card h2, .strip-card h3 { margin: 0; font-size: 24px; letter-spacing: -.055em; }
.strip-card p { margin: 0; line-height: 1.55; color: inherit; opacity: .72; }

.section { padding: 96px 0; }
.section.alt { background: var(--soft); }
.section.dark { background: var(--ink); color: #fff; }
.container { width: min(var(--container), calc(100% - 44px)); margin: 0 auto; }
.section[id], .feature-strip[id], .cta-slim[id] { scroll-margin-top: 96px; }
.section-head { max-width: 770px; margin-bottom: 46px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-kicker { color: var(--primary); font-size: 13px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(34px, 4vw, 58px); line-height: 1.02; letter-spacing: -.07em; margin-bottom: 18px; font-weight: 950; }
.section-copy { color: var(--muted); line-height: 1.75; font-size: 17px; }
.dark .section-copy { color: rgba(255,255,255,.7); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 18px 45px rgba(19,25,54,.06); }
.card h3 { font-size: 24px; letter-spacing: -.05em; margin-bottom: 12px; }
.card p { color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.card a { color: var(--primary); font-weight: 950; font-size: 14px; }
.card a:hover { color: var(--ink); }
.card .num { width: 42px; height: 42px; border-radius: 14px; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 950; margin-bottom: 18px; }
.workflow { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.workflow-panel { background: #fff; border-radius: var(--radius-xl); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 24px; }
.workflow-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; padding: 17px; border-bottom: 1px solid #eceef8; }
.workflow-row:last-child { border-bottom: 0; }
.workflow-row b { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: #eef0ff; color: var(--primary); }
.workflow-row strong { display: block; margin-bottom: 3px; }
.workflow-row span { color: var(--muted); font-size: 13px; }
.workflow-row em { font-style: normal; color: #149246; font-weight: 950; }
.template-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.template-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; transition: .2s ease; }
.template-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(29,26,98,.1); }
.template-card small { color: var(--primary); font-weight: 950; }
.template-card strong { font-size: 20px; letter-spacing: -.04em; }
.template-card span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.pricing { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 28px; position: relative; display: flex; flex-direction: column; box-shadow: 0 16px 45px rgba(19,25,54,.06); }
.price-card.featured { background: var(--primary); color: #fff; transform: translateY(-14px); box-shadow: 0 32px 70px rgba(87,81,234,.28); }
.badge { position: absolute; top: 18px; right: 18px; background: var(--mint); color: #071018; padding: 7px 10px; border-radius: 999px; font-size: 11px; font-weight: 950; }
.price-card h3 { font-size: 25px; letter-spacing: -.05em; margin-bottom: 10px; }
.price { font-size: 42px; font-weight: 950; letter-spacing: -.07em; margin: 18px 0 4px; }
.price small { font-size: 14px; letter-spacing: 0; opacity: .7; }
.price-card p { color: var(--muted); line-height: 1.55; }
.price-card.featured p { color: rgba(255,255,255,.72); }
.price-card ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.price-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.35; }
.price-card li::before { content: '✓'; color: #159947; font-weight: 950; }
.price-card.featured li::before { color: var(--mint); }
.price-card .btn { margin-top: auto; width: 100%; }
.demo-box { display: grid; grid-template-columns: 1fr .9fr; gap: 30px; align-items: center; background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-radius: 38px; padding: 44px; color: #fff; overflow: hidden; position: relative; }
.demo-box::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(186,255,143,.18); right: -90px; top: -80px; }
.demo-box > * { position: relative; z-index: 2; }
.demo-list { display: grid; gap: 12px; }
.demo-list span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 13px 14px; }
.faq { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; }
.faq-list { display: grid; gap: 14px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 19px 22px; }
summary { cursor: pointer; font-weight: 950; letter-spacing: -.02em; }
details p { color: var(--muted); line-height: 1.65; margin: 12px 0 0; }

.cta-slim { background: var(--mint); color: var(--ink); }
.cta-slim-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cta-slim strong { font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -.055em; }
.cta-slim span { color: rgba(9,13,29,.70); font-weight: 750; max-width: 530px; line-height: 1.45; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.audience-grid article { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: 0 16px 45px rgba(19,25,54,.05); }
.audience-grid strong { display: block; font-size: 19px; letter-spacing: -.04em; margin-bottom: 10px; }
.audience-grid span { color: var(--muted); line-height: 1.55; font-size: 14px; }
.center-cta { display: flex; justify-content: center; margin-top: 32px; }
.pricing-note { text-align: center; color: var(--muted); margin: 24px auto 0; max-width: 820px; line-height: 1.6; }
.seo-section { background: #fff; padding-top: 64px; padding-bottom: 64px; }
.seo-box { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: center; border: 1px solid var(--line); border-radius: 30px; padding: 34px; box-shadow: 0 18px 45px rgba(19,25,54,.06); }
.floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 90; background: var(--mint); color: #071018; border: 1px solid rgba(7,16,24,.08); border-radius: 999px; padding: 15px 20px; font-weight: 950; box-shadow: 0 18px 44px rgba(9,13,29,.18); }
.floating-cta:hover { transform: translateY(-2px); }
.footer-cta { display: inline-flex; margin-top: 8px; color: var(--mint); font-weight: 950; }

.site-footer { background: #090d1d; color: #fff; padding: 64px 0 26px; }
.footer-grid { width: min(var(--container), calc(100% - 44px)); margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 30px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.1); }
.footer-grid p { color: rgba(255,255,255,.64); line-height: 1.65; max-width: 360px; }
.footer-grid strong { display: block; margin-bottom: 14px; }
.footer-grid a:not(.brand) { display: block; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: .2s ease; }
.footer-grid a:hover { color: var(--mint); }
.footer-bottom { width: min(var(--container), calc(100% - 44px)); margin: 42px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.54); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

@media (max-width: 1180px) {
    .hero { min-height: auto; padding-top: 104px; }
    .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(310px, 430px); gap: 34px; }
    .hero-visual { grid-template-columns: 1fr; gap: 12px; }
    .hero-side { max-width: 430px; margin: 0 auto; }
    .pricing { grid-template-columns: repeat(2,1fr); }
    .feature-strip { grid-template-columns: repeat(2,1fr); }
    .template-grid { grid-template-columns: repeat(2,1fr); }
    .audience-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
    .nav-wrap { width: calc(100% - 32px); gap: 16px; }
    .brand { font-size: 18px; }
    .main-nav { gap: 18px; font-size: 12.5px; }
    .header-actions .btn { min-height: 40px; padding: 0 16px; }
    h1 { font-size: clamp(46px, 5vw, 58px); }
    .hero-copy { font-size: 16.5px; }
    .phone { width: 250px; }
}

@media (max-width: 860px) {
    .site-header { top: 10px; }
    .nav-wrap { min-height: 58px; width: calc(100% - 28px); padding: 8px 10px 8px 12px; border-radius: 18px; }
    .brand { font-size: 18px; }
    .brand-mark { width: 38px; height: 38px; border-radius: 13px; }
    .menu-toggle { display: block; order: 4; }
    .main-nav {
        position: fixed;
        top: 80px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(9,13,29,.98);
        border: 1px solid rgba(255,255,255,.14);
        box-shadow: 0 24px 70px rgba(0,0,0,.30);
    }
    .main-nav a { padding: 14px 12px; border-radius: 14px; background: rgba(255,255,255,.05); }
    .main-nav a::after { display: none; }
    body.menu-open .main-nav { display: flex; }
    .header-actions .btn-ghost { display: none; }
    .header-actions .btn { min-height: 38px; padding: 0 14px; font-size: 12px; }
    .hero { padding-top: 98px; padding-bottom: 48px; }
    .hero-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-content { text-align: center; margin: 0 auto; }
    .eyebrow { justify-content: center; font-size: 10.5px; margin-bottom: 12px; }
    h1 { max-width: 650px; font-size: clamp(42px, 8vw, 56px); line-height: 1.02; letter-spacing: -.065em; }
    .hero-copy { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .mini-proof { justify-content: center; margin-left: auto; margin-right: auto; text-align: left; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .phone-stage { min-height: auto; padding-top: 4px; }
    .phone { width: min(258px, 74vw); min-height: 500px; }
    .phone-screen { min-height: 476px; }
    .hero-side { width: 100%; max-width: 520px; }
    .feature-strip, .grid-3, .workflow, .pricing, .faq, .demo-box, .footer-grid, .seo-box { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .workflow-panel { padding: 14px; }
    .section { padding: 72px 0; }
}

@media (max-width: 560px) {
    html { scroll-padding-top: 84px; }
    .site-header { top: 8px; }
    .nav-wrap { width: calc(100% - 20px); min-height: 54px; gap: 8px; padding: 7px 8px 7px 10px; border-radius: 16px; }
    .brand { font-size: 16px; gap: 8px; letter-spacing: -.04em; }
    .brand-mark { width: 34px; height: 34px; border-radius: 12px; font-size: 10px; }
    .header-actions .btn { min-height: 36px; padding: 0 12px; font-size: 12px; border-radius: 12px; }
    .menu-toggle { width: 38px; height: 38px; border-radius: 12px; }
    .hero { padding-top: 88px; padding-bottom: 38px; }
    .hero-inner, .container, .footer-grid, .footer-bottom { width: calc(100% - 28px); }
    .eyebrow { font-size: 10px; line-height: 1.35; letter-spacing: .12em; }
    .eyebrow::before { width: 22px; }
    h1 { font-size: clamp(34px, 10.5vw, 42px); line-height: 1.04; letter-spacing: -.055em; margin-bottom: 16px; }
    .hero-copy { font-size: 15.5px; line-height: 1.58; margin-bottom: 22px; }
    .hero-actions { gap: 10px; }
    .hero-actions .btn:not(.btn-text), .section-actions .btn { width: 100%; }
    .btn-text { width: 100%; justify-content: center; margin-top: 2px; }
    .mini-proof { margin-top: 22px; align-items: flex-start; font-size: 13px; }
    .avatar-stack { min-width: 94px; }
    .avatar-stack span { width: 36px; height: 36px; font-size: 9px; }
    .hero-visual { gap: 16px; }
    .phone { width: min(246px, 82vw); min-height: 478px; border-radius: 36px; padding: 10px; }
    .phone-screen { min-height: 458px; border-radius: 27px; padding: 18px 14px; }
    .quote-card-mobile strong { font-size: 26px; }
    .quick-action { min-height: 58px; font-size: 10px; }
    .phone-line { font-size: 10px; padding: 10px; }
    .hero-side { padding: 16px; border-radius: 20px; }
    .metrics { gap: 10px; }
    .metric strong { font-size: 22px; }
    .store-pill { flex: 1 1 30%; justify-content: center; padding: 9px 10px; }
    .feature-strip { display: block; }
    .strip-card { min-height: auto; padding: 34px 24px; }
    .template-grid, .audience-grid { grid-template-columns: 1fr; }
    .demo-box { padding: 28px; border-radius: 28px; }
    .cta-slim-inner { padding: 20px 0; align-items: flex-start; }
    .floating-cta { right: 14px; bottom: 14px; left: 14px; text-align: center; }
    .footer-grid { gap: 18px; }
}

@media (max-width: 360px) {
    .brand { font-size: 15px; }
    .brand-mark { width: 32px; height: 32px; }
    .header-actions .btn { padding: 0 10px; font-size: 11px; }
    .menu-toggle { width: 36px; height: 36px; }
    h1 { font-size: clamp(32px, 10vw, 36px); }
    .hero-copy { font-size: 15px; }
}
