/* ═══════════════════════════════════════════════════════════
   MusorOK — Premium Light Design System  (v2, 2026)
   Bright · Minimal · Mobile-first · High-trust
   ─ Inspired by Stripe / Notion / Yandex Go ─
   ═══════════════════════════════════════════════════════════ */

/* ──────────────────────────────
   1. DESIGN TOKENS
   ────────────────────────────── */
:root {
    /* Color — light base */
    --bg: #ffffff;
    --bg-soft: #f5f8f6;
    --bg-sage: #eef4f0;
    --surface: #ffffff;
    --surface-2: #f7faf8;

    /* Ink (text) — green-tinted neutrals */
    --ink: #0d1b13;
    --ink-2: #3c4d44;
    --muted: #6b7c72;
    --faint: #9aa8a0;
    --line: #e7ede9;
    --line-2: #d8e1db;

    /* Brand — single disciplined green */
    --brand: #18a04a;
    --brand-600: #128a3f;
    --brand-700: #0e6f33;
    --brand-50: #e9f7ee;
    --brand-100: #d2efdc;

    /* Functional accents (used sparingly) */
    --blue: #0a84ff;
    --amber: #f59e0b;

    /* Subtle premium gradient — used in ≤2 places */
    --grad-brand: linear-gradient(135deg, #18a04a 0%, #34c759 100%);
    --grad-hero: radial-gradient(1200px 600px at 50% -10%, #eafaef 0%, rgba(234, 250, 239, 0) 60%);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    --t-xs: 0.8125rem;
    --t-sm: 0.9375rem;
    --t-base: 1.0625rem;
    --t-md: 1.25rem;
    --t-lg: 1.5625rem;
    --t-xl: 1.953rem;
    --t-2xl: 2.441rem;
    --t-3xl: 3.052rem;
    --t-hero: clamp(2.6rem, 6vw, 4.6rem);
    --t-display: clamp(2.1rem, 4.5vw, 3.4rem);

    /* Spacing — 8pt scale */
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s5: 24px;
    --s6: 32px;
    --s7: 48px;
    --s8: 64px;
    --s9: 96px;
    --s10: 128px;

    /* Radius */
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Elevation — soft, premium */
    --sh-1: 0 1px 2px rgba(13, 27, 19, 0.04), 0 1px 3px rgba(13, 27, 19, 0.06);
    --sh-2: 0 4px 12px rgba(13, 27, 19, 0.06), 0 2px 6px rgba(13, 27, 19, 0.04);
    --sh-3: 0 18px 48px rgba(13, 27, 19, 0.10), 0 6px 16px rgba(13, 27, 19, 0.06);
    --sh-brand: 0 10px 28px rgba(24, 160, 74, 0.28);

    /* Layout */
    --maxw: 1200px;
    --nav-h: 96px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.6s;
}

/* ──────────────────────────────
   2. RESET & BASE
   ────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font);
    font-size: var(--t-base);
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease-soft);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4 {
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--ink);
}

::selection {
    background: var(--brand-100);
    color: var(--brand-700);
}

/* ──────────────────────────────
   3. LAYOUT PRIMITIVES
   ────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
}

.section {
    padding: var(--s9) 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

.section--tight {
    padding: var(--s8) 0;
}

.section--soft {
    background: var(--bg-soft);
}

.section--sage {
    background: var(--bg-sage);
}

.section-head {
    max-width: 720px;
    margin: 0 auto var(--s8);
    text-align: center;
}

.section-head.left {
    margin-left: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-600);
    background: var(--brand-50);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: var(--s4);
}

.section-title {
    font-size: var(--t-display);
    color: var(--ink);
    margin-bottom: var(--s4);
}

.section-sub {
    font-size: var(--t-md);
    color: var(--muted);
    font-weight: 400;
    line-height: 1.5;
}

.accent {
    color: var(--brand);
}

.text-grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ──────────────────────────────
   4. BUTTONS
   ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--t-sm);
    font-weight: 600;
    padding: 14px 26px;
    border-radius: var(--r-pill);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease-soft);
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: var(--sh-brand);
}

.btn-primary:hover {
    background: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(24, 160, 74, 0.34);
}

.btn-ghost {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line-2);
    box-shadow: var(--sh-1);
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand-600);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--t-base);
}

.btn-block {
    width: 100%;
}

/* ──────────────────────────────
   5. NAVIGATION
   ────────────────────────────── */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--sh-1);
    background: rgba(255, 255, 255, 0.85);
}

.nav-inner {
    max-width: var(--maxw);
    height: 100%;
    margin: 0 auto;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 24px);
    min-width: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    display: block;
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.nav-logo-word {
    display: inline-flex;
    align-items: baseline;
    font-size: 2.44rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

.logo-part-musor,
.logo-part-ok {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 240% 100%;
    animation: logoColorWave 3.8s ease-in-out infinite;
}

.logo-part-musor {
    background-image: linear-gradient(100deg,
            var(--ink) 0%,
            var(--ink) 28%,
            #5a6b62 42%,
            var(--ink) 56%,
            var(--ink) 100%);
}

.logo-part-ok {
    background-image: linear-gradient(100deg,
            var(--brand-700) 0%,
            var(--brand) 32%,
            #5fe07a 48%,
            var(--brand-600) 62%,
            var(--brand-700) 100%);
    animation-delay: 0.2s;
}

@keyframes logoColorWave {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.nav-logo--footer .nav-logo-icon {
    width: 76px;
    height: 76px;
    border-radius: 12px;
}

.nav-logo--footer .nav-logo-word {
    font-size: 2.24rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-size: var(--t-sm);
    font-weight: 500;
    color: var(--ink-2);
}

.nav-links a:hover {
    color: var(--brand-600);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Language switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ink-2);
    padding: 7px 12px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    background: var(--surface);
    transition: border-color 0.2s, color 0.2s;
}

.lang-btn:hover {
    border-color: var(--brand);
    color: var(--brand-600);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--sh-3);
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s var(--ease);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    font-size: var(--t-sm);
    color: var(--ink-2);
    padding: 9px 12px;
    border-radius: var(--r-sm);
    transition: background 0.15s;
}

.lang-option:hover {
    background: var(--bg-soft);
}

.lang-option.active {
    background: var(--brand-50);
    color: var(--brand-700);
    font-weight: 600;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-burger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* ──────────────────────────────
   6. HERO
   ────────────────────────────── */
.hero {
    position: relative;
    padding: calc(var(--nav-h) + var(--s9)) 0 var(--s9);
    background: var(--grad-hero), var(--bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s8);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--t-xs);
    font-weight: 600;
    color: var(--brand-700);
    background: var(--surface);
    border: 1px solid var(--brand-100);
    padding: 7px 14px;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-1);
    margin-bottom: var(--s5);
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-50);
}

.hero h1 {
    font-size: var(--t-hero);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--s5);
}

.hero-sub {
    font-size: var(--t-md);
    color: var(--ink-2);
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: var(--s6);
}

.hero-ctas {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
    margin-bottom: var(--s6);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--s5);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--t-sm);
    color: var(--muted);
}

.hero-trust-item svg {
    color: var(--brand);
    flex-shrink: 0;
}

/* Hero visual — phone */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone {
    position: relative;
    width: min(320px, 80%);
    border-radius: 38px;
    box-shadow: var(--sh-3);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
}

.hero-phone img {
    width: 100%;
    display: block;
}

.hero-blob {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 60% 40%, var(--brand-50), transparent 62%);
    transform: scale(1.2);
}

.hero-float {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--sh-2);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--t-sm);
    font-weight: 600;
}

.hero-float .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
}

.hero-float small {
    display: block;
    font-size: var(--t-xs);
    font-weight: 400;
    color: var(--muted);
}

.hero-float-1 {
    top: 16%;
    left: -6%;
}

.hero-float-2 {
    bottom: 14%;
    right: -4%;
}

/* ──────────────────────────────
   7. SOCIAL PROOF / STATS
   ────────────────────────────── */
.proof {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-xl);
    padding: var(--s7) var(--s6);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s5);
    box-shadow: var(--sh-3);
}

.proof-stat {
    text-align: center;
    position: relative;
}

.proof-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(var(--s5) / -2);
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.proof-num {
    font-size: var(--t-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    display: inline-flex;
    align-items: baseline;
}

.proof-num .unit {
    font-size: var(--t-md);
    color: var(--brand);
    margin-left: 2px;
}

.proof-label {
    display: block;
    margin-top: 6px;
    font-size: var(--t-sm);
    color: rgba(255, 255, 255, 0.6);
}

.proof-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(52, 199, 89, 0);
    }
}

/* ──────────────────────────────
   8. STEPS (How it works)
   ────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
    counter-reset: step;
}

.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s6);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
    border-color: var(--brand-100);
}

.step-num {
    font-size: var(--t-sm);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.1em;
    margin-bottom: var(--s4);
}

.step-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
    margin-bottom: var(--s4);
}

.step h3 {
    font-size: var(--t-md);
    margin-bottom: var(--s2);
}

.step p {
    color: var(--muted);
    font-size: var(--t-sm);
}

/* connector line */
.steps {
    position: relative;
}

/* ──────────────────────────────
   9. SERVICES BENTO
   ────────────────────────────── */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(248px, auto);
    gap: var(--s4);
    align-items: stretch;
}

.bento-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: visible;
    padding: var(--s5) var(--s6) var(--s6);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 248px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    isolation: isolate;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
}

.bento-card.span-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.has-img {
    color: #fff;
    overflow: hidden;
    justify-content: flex-end;
    min-height: 280px;
}

.bento-card .bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card.has-img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(13, 27, 19, 0) 30%, rgba(13, 27, 19, 0.82) 100%);
}

.bento-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
    margin-bottom: var(--s3);
}

.bento-card.has-img .bento-ic {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(8px);
}

.bento-tag {
    position: absolute;
    top: var(--s4);
    right: var(--s4);
    font-size: var(--t-xs);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    background: var(--brand);
    color: #fff;
}

.bento-card h3 {
    font-size: var(--t-md);
    margin-bottom: 6px;
}

.bento-card.has-img h3 {
    color: #fff;
}

.bento-card p {
    font-size: var(--t-sm);
    color: var(--muted);
    line-height: 1.5;
    max-width: 100%;
}

.bento-card.has-img p {
    color: rgba(255, 255, 255, 0.82);
}

/* ──────────────────────────────
   10. FEATURES (Why us)
   ────────────────────────────── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
}

.feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s6);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
    border-color: var(--brand-100);
}

.feature-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
    margin-bottom: var(--s4);
}

.feature-metric {
    font-size: var(--t-xl);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: var(--s2);
}

.feature-metric .unit {
    font-size: var(--t-md);
    color: var(--brand);
}

.feature h3 {
    font-size: var(--t-md);
    margin-bottom: var(--s2);
}

.feature p {
    color: var(--muted);
    font-size: var(--t-sm);
}

/* ──────────────────────────────
   11. APP SHOWCASE
   ────────────────────────────── */
.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--s8);
    align-items: center;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-phone {
    width: min(300px, 78%);
    border-radius: 38px;
    box-shadow: var(--sh-3);
    border: 1px solid var(--line);
    overflow: hidden;
    background: #fff;
}

.showcase-blob {
    position: absolute;
    inset: -10% -10% -10% -10%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--brand-50), transparent 64%);
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: var(--s5);
}

.showcase-item {
    display: flex;
    gap: var(--s4);
    align-items: flex-start;
}

.showcase-item .ic {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
}

.showcase-item h4 {
    font-size: var(--t-base);
    margin-bottom: 3px;
}

.showcase-item p {
    font-size: var(--t-sm);
    color: var(--muted);
}

/* ──────────────────────────────
   12. PRICING
   ────────────────────────────── */
.pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s5);
    align-items: stretch;
    max-width: 840px;
    margin: 0 auto;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s6);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
}

.price-card.featured {
    border: 1.5px solid var(--brand);
    box-shadow: var(--sh-brand);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: var(--t-xs);
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--r-pill);
}

.price-name {
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--s3);
}

.price-amount {
    font-size: var(--t-3xl);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-amount .cur {
    font-size: var(--t-lg);
    color: var(--muted);
}

.price-amount .from,
.proof-num .from,
.feature-metric .from {
    color: var(--muted);
    font-weight: 500;
}

.price-amount .from {
    font-size: var(--t-md);
}

.proof-num .from {
    font-size: var(--t-base);
    margin-right: 2px;
}

.feature-metric .from {
    font-size: var(--t-lg);
    margin-right: 3px;
}

.price-per {
    font-size: var(--t-sm);
    color: var(--muted);
    margin: var(--s2) 0 var(--s5);
}

.price-save {
    display: inline-block;
    background: var(--brand-50);
    color: var(--brand-700);
    font-size: var(--t-sm);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--r-sm);
    margin-bottom: var(--s5);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    margin-bottom: var(--s6);
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--t-sm);
    color: var(--ink-2);
}

.price-features li svg {
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 3px;
}

.price-note {
    text-align: center;
    font-size: var(--t-xs);
    color: var(--muted);
    margin-top: var(--s3);
}

/* ──────────────────────────────
   13. TRUST
   ────────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
    margin-bottom: var(--s6);
}

.trust-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s6);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
}

.trust-ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
    margin-bottom: var(--s4);
}

.trust-card h4 {
    font-size: var(--t-base);
    margin-bottom: var(--s2);
}

.trust-card p {
    font-size: var(--t-sm);
    color: var(--muted);
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s5);
    flex-wrap: wrap;
    padding: var(--s5);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--t-sm);
    font-weight: 500;
    color: var(--ink-2);
}

.trust-bar-item svg {
    color: var(--brand);
}

.trust-bar .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    animation: pulse 2s infinite;
}

/* ──────────────────────────────
   14. TESTIMONIALS
   ────────────────────────────── */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
}

.testimonial {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s6);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f5b50a;
    font-size: var(--t-base);
    letter-spacing: 2px;
    margin-bottom: var(--s4);
}

.testimonial-text {
    font-size: var(--t-base);
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: var(--s5);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    font-weight: 700;
    font-size: var(--t-sm);
    display: grid;
    place-items: center;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: var(--t-sm);
}

.testimonial-role {
    display: block;
    font-size: var(--t-xs);
    color: var(--muted);
}

/* ──────────────────────────────
   15. COVERAGE
   ────────────────────────────── */
.coverage-banner {
    display: flex;
    align-items: center;
    gap: var(--s4);
    background: var(--surface);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-lg);
    padding: var(--s5) var(--s6);
    margin-bottom: var(--s6);
    box-shadow: var(--sh-1);
}

.coverage-banner .ic {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
}

.coverage-banner-text {
    flex-grow: 1;
}

.coverage-banner-text strong {
    display: block;
    font-size: var(--t-base);
    margin-bottom: 2px;
}

.coverage-banner-text p {
    font-size: var(--t-sm);
    color: var(--muted);
}

.coverage-map {
    height: 440px;
    width: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--sh-2);
    background: var(--bg-soft);
    margin-bottom: var(--s6);
}

.coverage-request-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s7);
    box-shadow: var(--sh-1);
}

.coverage-request-card .ic {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--s4);
    border-radius: 14px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
}

.coverage-request-card h3 {
    font-size: var(--t-lg);
    margin-bottom: var(--s2);
}

.coverage-request-card>p {
    color: var(--muted);
    font-size: var(--t-sm);
    margin-bottom: var(--s5);
}

.coverage-form {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.coverage-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    font-size: var(--t-base);
    font-family: inherit;
    color: var(--ink);
    background: var(--surface-2);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.coverage-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-50);
    background: #fff;
}

.coverage-form-note {
    font-size: var(--t-xs);
    color: var(--faint);
    margin-top: var(--s3);
}

.coverage-form-success {
    text-align: center;
}

.coverage-form-success .success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--s4);
    border-radius: 50%;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
}

.coverage-form-success h4 {
    font-size: var(--t-lg);
    margin-bottom: var(--s2);
}

.coverage-form-success p {
    color: var(--muted);
    font-size: var(--t-sm);
}

/* ──────────────────────────────
   16. DOWNLOAD CTA
   ────────────────────────────── */
.download {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-xl);
    padding: var(--s9) var(--s6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 300px at 50% 0%, rgba(52, 199, 89, 0.22), transparent 70%);
    pointer-events: none;
}

.download-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.download h2 {
    font-size: var(--t-display);
    color: #fff;
    margin-bottom: var(--s4);
}

.download p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--t-md);
    margin-bottom: var(--s6);
}

.store-badges {
    display: flex;
    gap: var(--s3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--s6);
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: var(--r);
    background: #fff;
    color: var(--ink);
    transition: transform 0.2s var(--ease);
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn.disabled {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.store-btn small {
    display: block;
    font-size: var(--t-xs);
    opacity: 0.7;
}

.store-btn strong {
    font-size: var(--t-base);
}

.download-qr {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: var(--s4);
    background: #fff;
    border-radius: var(--r);
}

.download-qr canvas {
    border-radius: 8px;
}

.download-qr .qr-label {
    font-size: var(--t-xs);
    color: var(--muted);
}

.download-courier {
    margin-top: var(--s6);
    font-size: var(--t-sm);
    color: rgba(255, 255, 255, 0.7);
}

.download-courier a {
    color: var(--brand);
    font-weight: 600;
}

/* ──────────────────────────────
   17. FAQ
   ────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    text-align: left;
    padding: var(--s5) 0;
    font-size: var(--t-base);
    font-weight: 600;
    color: var(--ink);
}

.faq-q svg {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
    color: var(--brand);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 320px;
}

.faq-a p {
    padding: 0 0 var(--s5);
    color: var(--muted);
    font-size: var(--t-sm);
    line-height: 1.6;
}

/* ──────────────────────────────
   18. CONTACTS
   ────────────────────────────── */
.contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s4);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--s3);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s5);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
    border-color: var(--brand-100);
}

.contact-ic {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: grid;
    place-items: center;
}

.contact-info h3 {
    font-size: var(--t-base);
}

.contact-info p {
    font-size: var(--t-xs);
    color: var(--muted);
}

.contact-arrow {
    margin-left: auto;
    color: var(--faint);
    transition: transform 0.2s, color 0.2s;
}

.contact-card:hover .contact-arrow {
    color: var(--brand);
    transform: translateX(3px);
}

/* ──────────────────────────────
   19. FOOTER
   ────────────────────────────── */
.footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: var(--s8) 0 var(--s6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: var(--s7);
    margin-bottom: var(--s7);
}

.footer-brand p {
    color: var(--muted);
    font-size: var(--t-sm);
    margin: var(--s3) 0;
}

.footer-brand a {
    color: var(--ink-2);
    font-size: var(--t-sm);
    font-weight: 600;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
}

.footer-col h4 {
    font-size: var(--t-sm);
    margin-bottom: var(--s4);
}

.footer-col a {
    display: block;
    font-size: var(--t-sm);
    color: var(--muted);
    margin-bottom: var(--s3);
}

.footer-col a:hover {
    color: var(--brand-600);
}

.footer-badges {
    display: flex;
    gap: var(--s4);
    flex-wrap: wrap;
    padding: var(--s5) 0;
    border-top: 1px solid var(--line);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--t-xs);
    color: var(--muted);
}

.footer-badge svg {
    color: var(--brand);
}

.footer-badge .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--s5);
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    gap: var(--s3);
}

.footer-bottom p {
    font-size: var(--t-xs);
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: var(--s3);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink-2);
    display: grid;
    place-items: center;
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: var(--brand);
    border-color: var(--brand-100);
    transform: translateY(-2px);
}

/* ──────────────────────────────
   20. FLOATING / OVERLAY UI
   ────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--grad-brand);
    z-index: 1100;
    transition: width 0.1s linear;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line-2);
    color: var(--ink);
    box-shadow: var(--sh-2);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--brand);
    border-color: var(--brand);
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
    z-index: 950;
    display: none;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-brand);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 460px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--sh-3);
    padding: var(--s4) var(--s5);
    display: flex;
    align-items: center;
    gap: var(--s4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.4s var(--ease);
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner p {
    font-size: var(--t-xs);
    color: var(--muted);
    flex-grow: 1;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: var(--s3);
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    font-size: var(--t-sm);
    padding: 8px 18px;
    border-radius: var(--r-pill);
}

.cookie-link {
    font-size: var(--t-xs);
    color: var(--muted);
}

.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 19, 0.5);
    backdrop-filter: blur(4px);
}

.exit-popup-card {
    position: relative;
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-3);
    padding: var(--s8) var(--s6) var(--s6);
    max-width: 420px;
    width: calc(100% - 40px);
    text-align: center;
    transform: scale(0.94);
    transition: transform 0.3s var(--ease);
}

.exit-popup.active .exit-popup-card {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.1rem;
    color: var(--faint);
    width: 30px;
    height: 30px;
}

.exit-popup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--s4);
    border-radius: 50%;
    background: var(--brand-50);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
}

.exit-popup-card h3 {
    font-size: var(--t-lg);
    margin-bottom: var(--s2);
}

.exit-popup-card p {
    color: var(--muted);
    font-size: var(--t-sm);
    margin-bottom: var(--s5);
}

.exit-popup-cta {
    display: block;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--r-pill);
    margin-bottom: var(--s3);
}

.exit-popup-dismiss {
    font-size: var(--t-sm);
    color: var(--muted);
}

/* ──────────────────────────────
   21. SCROLL REVEAL ANIMATIONS
   ────────────────────────────── */
.anim-fade,
.anim-slide-up,
.anim-scale {
    opacity: 0;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.anim-slide-up {
    transform: translateY(24px);
}

.anim-scale {
    transform: scale(0.96);
}

/* Hero — always visible (above the fold, no flash of blank content) */
.hero .anim-fade,
.hero .anim-slide-up,
.hero .anim-scale {
    opacity: 1;
    transform: none;
}

.anim-fade.visible,
.anim-slide-up.visible,
.anim-scale.visible {
    opacity: 1;
    transform: none;
}

[data-delay="1"] {
    transition-delay: 0.08s;
}

[data-delay="2"] {
    transition-delay: 0.16s;
}

[data-delay="3"] {
    transition-delay: 0.24s;
}

/* ──────────────────────────────
   22. RESPONSIVE
   ────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --s9: 72px;
        --s10: 96px;
    }

    .hero-grid {
        gap: var(--s6);
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.span-2 {
        grid-row: span 1;
    }

    .contacts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--sh-3);
        padding: var(--s4) 24px var(--s5);
        transform: translateY(-120%);
        transition: transform 0.35s var(--ease);
        margin: 0;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: var(--t-base);
        border-bottom: 1px solid var(--line);
    }

    .nav-burger {
        display: flex;
    }

    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--s6);
    }

    .hero-float {
        display: none;
    }

    .showcase-visual {
        order: -1;
    }

    .showcase-item {
        text-align: left;
    }

    .steps,
    .features,
    .trust-grid,
    .testimonials,
    .pricing {
        grid-template-columns: 1fr;
    }

    .proof {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s6) var(--s5);
        padding: var(--s6) var(--s5);
    }

    .proof-stat:not(:last-child)::after {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--s6);
    }
}

@media (max-width: 600px) {
    :root {
        --s9: 56px;
        --nav-h: 80px;
    }

    .nav-logo {
        gap: 12px;
    }

    .nav-logo-icon {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .nav-logo-word {
        font-size: 1.85rem;
    }

    .container {
        padding: 0 18px;
    }

    .section-title {
        font-size: var(--t-xl);
    }

    .bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-card {
        min-height: 0;
    }

    .bento-card.has-img {
        min-height: 240px;
    }

    .bento-card.span-2,
    .bento-card.wide {
        grid-column: span 1;
    }

    .contacts {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-mobile-cta {
        display: block;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .download {
        padding: var(--s8) var(--s5);
    }

    .download h2 {
        font-size: var(--t-xl);
    }
}

/* ──────────────────────────────
   23. ACCESSIBILITY — Reduced Motion
   ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .anim-fade,
    .anim-slide-up,
    .anim-scale {
        opacity: 1 !important;
        transform: none !important;
    }

    .logo-part-musor,
    .logo-part-ok {
        animation: none !important;
        background: none !important;
        -webkit-text-fill-color: initial;
    }

    .logo-part-musor {
        color: var(--ink);
    }

    .logo-part-ok {
        color: var(--brand);
    }
}

/* Focus-visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* ──────────────────────────────
   24. TOUCH & PERFORMANCE (mobile / tablet)
   ────────────────────────────── */
.btn,
.lang-btn,
.nav-burger,
.nav-links a,
.faq-q,
.back-to-top,
.sticky-cta-btn {
    touch-action: manipulation;
}

.lang-btn,
.nav-burger,
.nav-links a,
.faq-q {
    min-height: 44px;
}

.nav-burger {
    min-width: 44px;
    justify-content: center;
    padding: 10px;
}

/* Disable expensive blur on touch devices */
@media (hover: none), (max-width: 1024px) {
    .nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.97);
    }

    .nav.scrolled {
        background: #ffffff;
    }

    .sticky-mobile-cta {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #ffffff;
    }
}

/* Tablet / iPad portrait & landscape (768–1024) */
@media (min-width: 768px) and (max-width: 1024px) {
    :root {
        --nav-h: 88px;
        --s9: 72px;
    }

    .nav-logo-icon {
        width: 72px;
        height: 72px;
    }

    .nav-logo-word {
        font-size: 2rem;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: var(--t-sm);
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-visual {
        order: 0;
    }

    .hero-sub {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-ctas,
    .hero-trust {
        justify-content: flex-start;
    }

    .hero-float {
        display: flex;
        scale: 0.9;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin: 0 auto;
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof {
        grid-template-columns: repeat(4, 1fr);
    }

    .proof-stat:not(:last-child)::after {
        display: block;
    }

    .coverage-map {
        height: 380px;
    }

    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }

    .sticky-mobile-cta {
        display: block;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large tablets / small laptops — compact nav before burger */
@media (min-width: 861px) and (max-width: 1100px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .nav-right .btn-primary {
        padding: 10px 16px;
        font-size: var(--t-sm);
    }
}

/* Small phones (≤390) */
@media (max-width: 390px) {
    :root {
        --nav-h: 72px;
    }

    .nav-logo {
        gap: 8px;
        min-width: 0;
    }

    .nav-logo-icon {
        width: 52px;
        height: 52px;
    }

    .nav-logo-word {
        font-size: 1.45rem;
    }

    .nav-right .btn-primary {
        display: none;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--s3);
    }

    .proof {
        grid-template-columns: 1fr 1fr;
        gap: var(--s4);
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }
}

/* Landscape phones */
@media (max-height: 520px) and (orientation: landscape) {
    :root {
        --nav-h: 64px;
    }

    .nav-logo-icon {
        width: 48px;
        height: 48px;
    }

    .nav-logo-word {
        font-size: 1.35rem;
    }

    .hero {
        padding-top: calc(var(--nav-h) + var(--s5));
        padding-bottom: var(--s5);
    }

    .hero-visual {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* iPad Pro / large tablets */
@media (min-width: 1025px) and (max-width: 1366px) {
    .container {
        padding: 0 32px;
    }

    .hero-phone {
        width: min(300px, 72%);
    }
}

/* ──────────────────────────────
   25. LEGAL PAGES (privacy, terms, data-deletion)
   ────────────────────────────── */
.legal-nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: 72px;
    padding-top: env(safe-area-inset-top);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    z-index: 1000;
}

.legal-nav .nav-inner {
    height: 72px;
}

.legal-nav .nav-logo-icon {
    width: 44px;
    height: 44px;
}

.legal-nav .nav-logo-word {
    font-size: 1.35rem;
}

.legal-page {
    padding: calc(72px + env(safe-area-inset-top) + 40px) 0 80px;
    min-height: 100vh;
    background: var(--bg);
}

.legal-content {
    max-width: 760px;
}

.legal-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--ink);
}

.legal-date {
    color: var(--muted);
    font-size: var(--t-sm);
    margin-bottom: 36px;
}

.legal-page h2 {
    font-size: var(--t-md);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--ink);
}

.legal-page p,
.legal-page li {
    font-size: var(--t-sm);
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.legal-page ul {
    list-style: disc;
}

.legal-link {
    color: var(--brand-600);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-600);
    font-weight: 600;
    font-size: var(--t-sm);
    margin-bottom: 28px;
}

.legal-back:hover {
    color: var(--brand-700);
}

.legal-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: var(--t-sm);
}

.legal-footer-links a {
    color: var(--muted);
}

.legal-footer-links a:hover {
    color: var(--brand-600);
}
