/* ==========================================================================
   ПОГУЛЯЙКА — Landing design system (light theme only)
   Shared by index.html (клиент) and walker.html (исполнитель)
   ========================================================================== */

/* ===== Inter (self-hosted, variable woff2: один файл на subset покрывает веса 400–800) ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/inter-cyrillic-ext.woff2') format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/inter-cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/inter-latin-ext.woff2') format('woff2');
    /* latin-ext нужен ради U+20BD (₽) — он в диапазоне U+20AD-20C0 */
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* ---- Brand ---- */
    --orange: #FF6B35;
    --orange-600: #EC5A28;
    --orange-700: #D24E20;
    --orange-50: #FFF3EE;
    --orange-100: #FFE4D8;
    --orange-200: #FFD0BC;
    --peach: #FFBCA3;
    --orange-rgb: 255, 107, 53;

    --yellow: #FFC83D;          /* способ оплаты в приложении */
    --success: #1FB378;
    --success-50: #E7F7F0;
    --star: #FFB300;

    /* ---- Neutrals (warm) ---- */
    --bg: #FFFFFF;
    --bg-2: #FBF8F6;
    --bg-3: #F5F0EC;
    --bg-warm: #FFF6F1;
    --card: #FFFFFF;
    --ink: #1A1614;
    --ink-2: #595350;
    --ink-3: #8A827D;
    --ink-4: #B6ADA7;
    --border: #ECE6E1;
    --border-2: #E0D8D2;
    --header-bg: rgba(255, 255, 255, 0.94);

    /* ---- Shadows (warm, soft) ---- */
    --shadow-xs: 0 1px 2px rgba(60, 40, 30, 0.06);
    --shadow-sm: 0 2px 8px rgba(60, 40, 30, 0.07);
    --shadow-md: 0 8px 28px rgba(60, 40, 30, 0.09);
    --shadow-lg: 0 18px 50px rgba(60, 40, 30, 0.13);
    --shadow-orange: 0 8px 24px rgba(var(--orange-rgb), 0.32);
    --shadow-phone: 0 32px 70px rgba(40, 24, 16, 0.28);

    /* ---- Radii ---- */
    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-2xl: 36px;
    --r-full: 999px;

    /* ---- Spacing ---- */
    --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
    --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

    --container: 1180px;
    --header-h: 68px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ---- Indigo theme (walker page — matches executor app) ---- */
.theme-indigo {
    --orange: #5E5CE6;
    --orange-600: #4D4BD6;
    --orange-700: #3E3CBE;
    --orange-50: #EEEEFC;
    --orange-100: #E0E0F9;
    --orange-200: #C8C8F3;
    --peach: #BFBEF5;
    --orange-rgb: 94, 92, 230;
    --shadow-orange: 0 8px 24px rgba(94, 92, 230, 0.32);
    --bg-warm: #F4F4FC;
    --star: #FFB300;
}

/* ===== Reset & base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

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

::selection { background: var(--orange-200); color: var(--ink); }

*:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link {
    position: fixed; top: -100px; left: 50%; transform: translateX(-50%); z-index: 10000;
    background: var(--orange); color: #fff; padding: 12px 22px; border-radius: var(--r-sm);
    font-weight: 700; box-shadow: var(--shadow-md); transition: top .25s ease;
}
.skip-link:focus { top: 12px; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: var(--s-9) 0; scroll-margin-top: var(--header-h); }
.section--tight { padding: var(--s-8) 0; }
.section--alt { background: var(--bg-2); }
.section--warm { background: var(--bg-warm); }

/* ===== Section header ===== */
.section-head {
    max-width: 640px;
    margin: 0 auto var(--s-7);
    text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: var(--orange-50);
    color: var(--orange-700);
    border-radius: var(--r-full);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--s-4);
}
.eyebrow svg { width: 15px; height: 15px; }

.section-title {
    font-size: clamp(28px, 4.6vw, 44px);
    margin-bottom: var(--s-4);
}
.section-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--ink-2);
    line-height: 1.6;
}
.section-head .section-sub { margin-inline: auto; max-width: 560px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 26px;
    height: 54px;
    border: 1.5px solid transparent;
    border-radius: var(--r-md);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn--lg { height: 60px; padding: 0 32px; font-size: 17px; border-radius: var(--r-lg); }
.btn--sm { height: 44px; padding: 0 18px; font-size: 14.5px; border-radius: var(--r-sm); }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(var(--orange-rgb), 0.42); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
    background: var(--card);
    color: var(--ink);
    border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--ink-3); background: var(--bg-2); transform: translateY(-2px); }

.btn--soft {
    background: var(--orange-50);
    color: var(--orange-700);
}
.btn--soft:hover { background: var(--orange-100); transform: translateY(-2px); }

.btn--light {
    background: #fff;
    color: var(--orange-700);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline-light {
    background: rgba(255,255,255,0.16);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ===== Header ===== */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: var(--header-bg);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-xs); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); }

/* Logo lockup */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
    width: 40px; height: 40px; flex-shrink: 0; display: block;
    border-radius: 10px;
    filter: drop-shadow(0 4px 11px rgba(var(--orange-rgb), 0.30));
}
.brand__mark img { width: 100%; height: 100%; border-radius: 10px; }
.brand__name { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.brand__name b { color: var(--orange); font-weight: 800; }
.brand__tag {
    font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
    color: var(--orange-700); background: var(--orange-50);
    padding: 3px 7px; border-radius: 6px; text-transform: uppercase;
    align-self: center;
}

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
    padding: 9px 14px;
    border-radius: var(--r-sm);
    font-size: 15px; font-weight: 600; color: var(--ink-2);
    transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--ink); background: var(--bg-3); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__cta { display: none; }

.burger {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--r-sm);
    position: relative;
}
.burger span {
    position: absolute; width: 19px; height: 2px; border-radius: 2px;
    background: var(--ink); transition: transform .3s ease, opacity .2s ease;
}
.burger span:nth-child(1) { transform: translateY(-5.5px); }
.burger span:nth-child(3) { transform: translateY(5.5px); }
.burger.is-open span:nth-child(1) { transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
    background: var(--bg);
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    display: flex; flex-direction: column;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a.m-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 16px; font-size: 19px; font-weight: 700; color: var(--ink);
    border-radius: var(--r-md); border: 1px solid transparent;
}
.mobile-menu a.m-link:hover, .mobile-menu a.m-link:active { background: var(--bg-2); border-color: var(--border); }
.mobile-menu a.m-link svg { width: 18px; height: 18px; color: var(--ink-4); }
.mobile-menu__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }

/* ===== HERO ===== */
.hero { position: relative; padding: calc(var(--header-h) + 44px) 0 var(--s-8); overflow: hidden; }
.hero__bg {
    position: absolute; inset: 0; z-index: -2;
    background:
        radial-gradient(120% 90% at 85% -10%, var(--orange-100) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 60%);
}
.hero__grid {
    position: absolute; inset: 0; z-index: -1; opacity: .5;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 75%);
            mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 75%);
}
.hero__inner { display: grid; gap: var(--s-7); align-items: center; }

.hero__copy { text-align: center; }
.hero h1 {
    font-size: clamp(34px, 8vw, 60px);
    line-height: 1.04; font-weight: 800;
    margin-bottom: var(--s-4);
}
.hero h1 .u {
    color: var(--orange);
    background-image: linear-gradient(var(--orange-200), var(--orange-200));
    background-repeat: no-repeat;
    background-position: 0 94%;
    background-size: 100% 0.16em;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
}
.hero__lead {
    font-size: clamp(16.5px, 2.4vw, 19px); color: var(--ink-2);
    max-width: 540px; margin: 0 auto var(--s-5); line-height: 1.6;
}
.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--s-4); }
.hero__note { font-size: 13.5px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 7px; justify-content: center; }
.hero__note svg { width: 16px; height: 16px; color: var(--success); }

.hero__stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); align-items: start;
    margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__v { font-size: clamp(22px, 4.4vw, 29px); font-weight: 800; color: var(--orange); line-height: 1.05; letter-spacing: -0.03em; }
.stat__l { font-size: 12.5px; color: var(--ink-2); margin-top: 7px; line-height: 1.3; min-height: 2.6em; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__visual::before {
    content: ''; position: absolute; z-index: -1; pointer-events: none;
    width: 122%; height: 84%; left: 50%; top: 6%; transform: translateX(-50%);
    /* soft glow via a gradient — no blur filter, so nothing re-rasterizes */
    background: radial-gradient(ellipse at 50% 45%, rgba(var(--orange-rgb), 0.30) 0%, rgba(var(--orange-rgb), 0.13) 34%, rgba(var(--orange-rgb), 0.04) 56%, transparent 74%);
}
.hero__visual::after {
    content: ''; position: absolute; z-index: -1; pointer-events: none;
    width: 66%; height: 44px; left: 50%; bottom: 0; transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(40,24,16,0.18) 0%, rgba(40,24,16,0.05) 46%, transparent 76%);
}
.scene { position: relative; display: flex; justify-content: center; }

/* Status badge (live dot) */
.live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px 7px 12px; border-radius: var(--r-full);
    background: var(--success-50); color: #128a5d;
    font-size: 13px; font-weight: 700; margin-bottom: var(--s-4);
}
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* ===== PHONE MOCKUP (faithful app replica) ===== */
.phone {
    position: relative;
    width: 304px; max-width: 84vw;
    aspect-ratio: 304 / 624;
    padding: 3px;
    border-radius: 52px;
    /* iPhone 17 Pro — Cosmic Orange titanium (default / client) */
    --frame: linear-gradient(135deg, #F7AB6C 0%, #E5823E 15%, #BC6028 35%, #8E4517 50%, #C2662A 65%, #F0964F 84%, #9A4C1C 100%);
    --frame-body: linear-gradient(135deg, #D67E3F 0%, #8C4418 38%, #5E2E10 62%, #A75726 100%);
    --frame-btn: linear-gradient(270deg, #DD8D50 0%, #7E3C16 92%);
    background:
        linear-gradient(108deg, rgba(255,255,255,0) 95%, rgba(255,255,255,0.55) 99%, rgba(255,255,255,0.15) 100%),
        var(--frame);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.42),     /* crisp polished outer rim */
        inset 0 3px 2px rgba(255,255,255,0.6),       /* bright top edge */
        inset 0 -3px 3px rgba(0,0,0,0.5),
        inset 2.5px 0 3px rgba(255,255,255,0.36),     /* light on left rail */
        inset -2.5px 0 3px rgba(255,255,255,0.30),    /* light on visible right rail */
        0 1px 2px rgba(0,0,0,0.3),
        0 20px 36px -14px rgba(40,24,16,0.42),
        0 46px 78px -24px rgba(40,24,16,0.40),
        0 84px 124px -44px rgba(40,24,16,0.26);
    transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s ease;
}
/* side buttons */
.phone::before {
    content: ''; position: absolute; left: -2px; top: 23%;
    width: 3px; height: 26px; border-radius: 3px;
    background: var(--frame-btn);
    box-shadow: 0 40px 0 var(--frame-btn-shadow, #18181d), 0 86px 0 -2px var(--frame-btn-shadow, #1c1c22);
}
.phone::after {
    content: ''; position: absolute; right: -2px; top: 30%;
    width: 3px; height: 58px; border-radius: 3px;
    background: var(--frame-btn);
}
.theme-indigo .phone {
    /* iPhone — Deep Blue titanium (walker / PRO) */
    --frame: linear-gradient(135deg, #5C6F9C 0%, #324264 15%, #1D2A4C 35%, #111A36 50%, #233154 65%, #4A5C86 84%, #141D3A 100%);
    --frame-body: linear-gradient(135deg, #3A4B72 0%, #18223E 38%, #0E1530 62%, #2A395E 100%);
    --frame-btn: linear-gradient(270deg, #40537C 0%, #131D3A 92%);
}
.phone__notch {
    position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
    width: 94px; height: 27px; background: #000; border-radius: 99px; z-index: 6;
    box-shadow: inset 0 0 3px rgba(255,255,255,0.10), 0 1px 2px rgba(0,0,0,0.4);
}
.phone__notch::after {
    content: ''; position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
    width: 10px; height: 10px; border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, #2b3a5c 0%, #0a0c14 62%);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6), 0 0 2px rgba(110,140,255,0.35);
}
.phone__screen {
    position: relative; height: 100%; width: 100%;
    border-radius: 49px; overflow: hidden;
    background: linear-gradient(180deg, #EEF1F4 0%, #E8ECEF 100%);
    display: flex; flex-direction: column;
}
/* very thin black bezel — painted over the screen edge, like a real iPhone */
.phone__screen::before {
    content: ''; position: absolute; inset: 0; z-index: 7; pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 4px #060608, inset 0 0 2px 4.5px rgba(0,0,0,0.4);
}
/* glass glare sweep */
.phone__screen::after {
    content: ''; position: absolute; inset: 0; z-index: 8; pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(127deg,
        rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.07) 13%,
        rgba(255,255,255,0) 30%, rgba(255,255,255,0) 72%,
        rgba(255,255,255,0.05) 100%);
}
/* iOS status bar */
.phone__status {
    position: absolute; top: 0; left: 0; right: 0; z-index: 5;
    height: 50px; padding: 0 24px 0 28px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; font-weight: 800; letter-spacing: -0.02em; color: #1a1614;
}
.phone__status .pst-ic { display: flex; align-items: center; gap: 6px; }
.phone__status svg { display: block; }
.phone--pro .phone__status { color: #fff; }
/* faux map */
.phone__map {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, transparent 49%, rgba(160,170,180,.35) 49.5%, transparent 50%) 0 0/70px 70px,
        linear-gradient(0deg, transparent 49%, rgba(160,170,180,.30) 49.5%, transparent 50%) 0 0/70px 70px,
        linear-gradient(115deg, #EAEDEF 0%, #E2E6E9 100%);
}
.phone__road {
    position: absolute; width: 200%; height: 16px; background: #fff; opacity: .85;
    top: 30%; left: -50%; transform: rotate(24deg); border-radius: 8px;
}
.phone__road.r2 { top: 58%; transform: rotate(-12deg); height: 13px; }
.phone__pin {
    position: absolute; top: 21%; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; z-index: 2;
}
.phone__pin .head {
    width: 46px; height: 46px; border-radius: 50% 50% 50% 4px; transform: rotate(-45deg);
    background: var(--orange); display: grid; place-items: center; box-shadow: 0 8px 18px rgba(var(--orange-rgb),.45);
}
.phone__pin .head svg { width: 24px; height: 24px; color: #fff; transform: rotate(45deg); }
.phone__pin .stem { width: 3px; height: 16px; background: var(--orange); margin-top: 2px; border-radius: 2px; }
.phone__pin .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,.25); }

.phone__topbar {
    position: relative; z-index: 3; margin: 46px 12px 0;
    background: #fff; border-radius: 16px; padding: 10px 13px;
    box-shadow: var(--shadow-sm); border-left: 4px solid var(--orange);
}
.phone__topbar .l { font-size: 9.5px; color: var(--ink-3); font-weight: 600; }
.phone__topbar .a { font-size: 13px; color: var(--ink); font-weight: 700; }

/* bottom sheet inside phone */
.phone__sheet {
    position: relative; z-index: 3; margin-top: auto;
    background: #fff; border-radius: 28px 28px 40px 40px;
    padding: 12px 15px 24px;
    box-shadow: 0 -10px 30px rgba(40,24,16,.12);
}
.phone__grab { width: 38px; height: 4px; border-radius: 4px; background: #DcD7D2; margin: 0 auto 11px; }
.phone__sheet h5 { font-size: 15px; font-weight: 800; text-align: center; margin-bottom: 14px; }
.mini-label { font-size: 11px; font-weight: 700; color: var(--ink-2); display: flex; align-items: center; gap: 6px; margin-bottom: 9px; }
.mini-label svg { width: 13px; height: 13px; color: var(--orange); }

/* "Когда забрать" — two EQUAL options (icon + two lines), as in the app */
.when-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 13px; }
.when { display: flex; align-items: center; gap: 7px; border: 1.5px solid var(--border); border-radius: 13px; padding: 9px; background: var(--bg); }
.when__ic { width: 25px; height: 25px; border-radius: 8px; background: var(--bg-3); color: var(--ink-3); display: grid; place-items: center; flex-shrink: 0; }
.when__ic svg { width: 14px; height: 14px; }
.when__t { min-width: 0; }
.when__t b { display: block; font-size: 12px; font-weight: 800; color: var(--ink); line-height: 1.15; }
.when__t i { display: block; font-size: 10px; font-weight: 600; color: var(--ink-3); font-style: normal; line-height: 1.2; margin-top: 1px; }
.when.is-active { background: var(--orange); border-color: var(--orange); }
.when.is-active .when__ic { background: rgba(255,255,255,.24); color: #fff; }
.when.is-active .when__t b, .when.is-active .when__t i { color: #fff; }

/* "Время прогулки" — three EQUAL chips */
.dur-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.dur { border: 1.5px solid var(--border); border-radius: 13px; padding: 10px 4px; text-align: center; background: var(--bg); }
.dur.is-active { background: var(--orange); border-color: var(--orange); }
.dur .t { font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.dur .p { font-size: 11px; font-weight: 600; color: var(--ink-3); margin-top: 2px; line-height: 1.1; }
.dur.is-active .t, .dur.is-active .p { color: #fff; }

.phone__pay { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.pay-card { width: 44px; height: 38px; border-radius: 11px; background: var(--yellow); display: grid; place-items: center; flex-shrink: 0; }
.pay-card svg { width: 20px; height: 20px; color: #1A1614; }
.order-btn {
    flex: 1; height: 40px; border-radius: 13px; background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13.5px; font-weight: 800;
}

/* floating chips around phone — static (no bob; animating them re-composites the 3D scene every frame) */
.float {
    position: absolute; z-index: 5;
    background: #fff; border-radius: 16px; padding: 11px 14px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
}
.float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.float .t1 { font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.float .t2 { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.float--a { top: 3%; left: -17%; }
.float--b { top: 44%; right: -19%; }
.float--c { bottom: 6%; left: -13%; }
/* walker phone's blue dot sits lower than the client pin → drop its badge further to clear it */
.theme-indigo .float--b { top: 51%; }
.float__av { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0; }

/* ===== EXECUTOR PHONE (Погуляйка PRO — dark indigo) ===== */
.phone--pro .phone__screen { background: linear-gradient(180deg, #1D1C33 0%, #141327 100%); }
.pscreen { position: relative; height: 100%; display: flex; flex-direction: column; }
.pscreen__map {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, transparent 49%, rgba(120,124,180,.16) 49.5%, transparent 50%) 0 0/64px 64px,
        linear-gradient(0deg, transparent 49%, rgba(120,124,180,.13) 49.5%, transparent 50%) 0 0/64px 64px,
        radial-gradient(120% 80% at 30% 10%, #232241 0%, #16152b 70%);
}
.pscreen__road { position: absolute; width: 200%; height: 14px; background: rgba(150,155,200,.22); top: 34%; left: -50%; transform: rotate(22deg); border-radius: 8px; }
.pscreen__dot {
    position: absolute; top: 38%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
    width: 22px; height: 22px; border-radius: 50%; background: #5E5CE6;
    border: 3px solid #fff; box-shadow: 0 0 0 6px rgba(94,92,230,.25), 0 6px 14px rgba(0,0,0,.4);
}
.pscreen__top { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 46px 12px 0; }
.ppill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: var(--r-full);
    background: rgba(24,23,46,.92);
    color: #fff; font-size: 12.5px; font-weight: 700;
}
.ppill i { width: 9px; height: 9px; border-radius: 50%; background: #8A8AA6; }
.picons { display: flex; gap: 7px; }
.picon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.09); display: grid; place-items: center; color: rgba(255,255,255,.85); }
.picon svg { width: 16px; height: 16px; }

.psheet {
    position: relative; z-index: 3; margin-top: auto;
    background: #1A1930; border-radius: 26px 26px 34px 34px;
    padding: 14px 14px 24px; box-shadow: 0 -12px 30px rgba(0,0,0,.35);
}
.psheet__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: rgba(255,255,255,.045); border-radius: 16px; padding: 12px; margin-bottom: 11px; }
.pstat { text-align: center; }
.pstat .v { font-size: 17px; font-weight: 800; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.pstat .v .ic { width: 17px; height: 17px; }
.pstat .v .ck { color: #2ECC71; }
.pstat .v .rb { width: 16px; height: 16px; border-radius: 50%; background: #5E5CE6; color: #fff; font-size: 10px; font-weight: 800; display: grid; place-items: center; }
.pstat .l { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }

.ptoggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: rgba(255,255,255,.045); border-radius: 14px; padding: 4px; margin-bottom: 11px; }
.pseg { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px; border-radius: 11px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.6); }
.pseg svg { width: 14px; height: 14px; }
.pseg.is-active { background: #5E5CE6; color: #fff; box-shadow: 0 4px 12px rgba(94,92,230,.4); }

.pgo { display: flex; align-items: center; gap: 12px; padding: 13px; border-radius: 16px; border: 1.5px solid rgba(46,204,113,.5); background: rgba(46,204,113,.10); }
.pgo__ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(46,204,113,.18); color: #2ECC71; display: grid; place-items: center; flex-shrink: 0; }
.pgo__ic svg { width: 21px; height: 21px; }
.pgo__t { font-size: 14px; font-weight: 800; color: #fff; }
.pgo__s { font-size: 11.5px; color: rgba(255,255,255,.55); }
.pgo__chev { margin-left: auto; color: #2ECC71; }
.pgo__chev svg { width: 18px; height: 18px; }

/* ===== STEPS ===== */
.steps { display: grid; gap: var(--s-4); counter-reset: step; }
.step {
    position: relative;
    counter-increment: step;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: var(--s-5);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange-200); }
/* step number badge (top-right) — drives the «four steps» sequence */
.step::before {
    content: counter(step);
    position: absolute; top: var(--s-5); right: var(--s-5);
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--orange); color: #fff;
    display: grid; place-items: center;
    font-size: 12.5px; font-weight: 800; line-height: 1;
    box-shadow: 0 4px 10px rgba(var(--orange-rgb), .35);
}
.step__n {
    width: 44px; height: 44px; border-radius: 13px; margin-bottom: var(--s-4);
    background: var(--orange-50); color: var(--orange-700);
    display: grid; place-items: center; font-size: 18px; font-weight: 800;
}
.step__n svg { width: 22px; height: 22px; }
.step h3 { font-size: 18px; margin-bottom: 6px; padding-right: 30px; }
.step p { font-size: 14.5px; color: var(--ink-2); }
/* connector removed — numbered badges carry the sequence with no gutter overlap */
.step__line { display: none; }

/* ===== SERVICES ===== */
.services { display: grid; gap: var(--s-5); }
.svc {
    position: relative; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r-xl); overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orange-200); }
.svc__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc--soon .svc__media img { filter: saturate(.7); }
.tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 5px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 800;
}
.tag--live { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.tag--soon { background: rgba(26,22,20,.74); color: #fff; }
.svc__body { padding: var(--s-5); }
.svc__body h3 { font-size: 21px; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.svc__body p { font-size: 14.5px; color: var(--ink-2); margin-bottom: var(--s-4); }
.svc__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.price { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price small { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.svc__link { font-size: 14px; font-weight: 700; color: var(--orange-700); display: inline-flex; align-items: center; gap: 5px; }
.svc__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.svc:hover .svc__link svg { transform: translateX(3px); }

.future-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: var(--s-6); }
.future-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: var(--r-full);
    background: var(--bg); border: 1px dashed var(--border-2); color: var(--ink-2);
    font-size: 14px; font-weight: 600;
}
.future-chip svg { width: 17px; height: 17px; color: var(--orange); }
.future-chip .soon { font-size: 10.5px; font-weight: 800; color: var(--ink-4); text-transform: uppercase; letter-spacing: .04em; }

/* ===== FEATURES / TRUST ===== */
.features { display: grid; gap: var(--s-4); }
.feat {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: var(--s-5);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange-200); }
.feat__ic {
    width: 50px; height: 50px; border-radius: 15px; margin-bottom: var(--s-4);
    background: var(--orange-50); color: var(--orange-700);
    display: grid; place-items: center;
}
.feat__ic svg { width: 25px; height: 25px; }
.feat h4 { font-size: 17px; margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: var(--ink-2); }

/* ===== PHOTO BAND ===== */
.band { position: relative; }
.band__photo { position: relative; border-radius: var(--r-2xl); overflow: hidden; min-height: 360px; box-shadow: var(--shadow-lg); }
.band__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* gentle left-side darken just for a contrast floor — the copy sits in its own panel */
.band__photo::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg, rgba(20,16,14,.34) 0%, rgba(20,16,14,.06) 46%, transparent 68%);
}
.band__overlay {
    position: relative; z-index: 2; padding: var(--s-5);
    min-height: 360px; display: flex; align-items: center;
}
/* contained copy panel — sized to the text, not the full image width */
.band__panel {
    max-width: 560px; color: #fff;
    background: linear-gradient(150deg, rgba(20,16,14,.92) 0%, rgba(20,16,14,.74) 100%);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-xl);
    padding: var(--s-6);
    box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
.band__overlay .eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.band__panel h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); margin-bottom: var(--s-4); }
.band__panel p { color: rgba(255,255,255,.9); font-size: 16.5px; margin-bottom: var(--s-5); }
.band__list { display: grid; gap: 12px; }
.band__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; }
.band__list svg { width: 22px; height: 22px; color: var(--peach); flex-shrink: 0; }

/* ===== PRICING ===== */
.pricing { display: grid; gap: var(--s-4); align-items: stretch; }
.plan {
    position: relative; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--r-xl);
    padding: var(--s-6) var(--s-5); display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured { border-color: var(--orange); box-shadow: 0 0 0 1.5px var(--orange), var(--shadow-md); }
.plan__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    padding: 6px 16px; border-radius: var(--r-full); background: var(--orange); color: #fff;
    font-size: 12px; font-weight: 800; white-space: nowrap; box-shadow: var(--shadow-orange);
}
.plan__name { font-size: 17px; font-weight: 800; }
.plan__desc { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }
.plan__price { margin: var(--s-5) 0; display: flex; align-items: baseline; gap: 6px; }
.plan__price .amt { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; }
.plan__price .per { font-size: 15px; color: var(--ink-3); font-weight: 600; }
.plan__list { display: grid; gap: 11px; margin-bottom: var(--s-5); }
.plan__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.plan__list svg { width: 19px; height: 19px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.plan .btn { margin-top: auto; }

.price-note {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    margin-top: var(--s-6);
}
.price-note span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--ink-2); font-weight: 600;
}
.price-note svg { width: 18px; height: 18px; color: var(--orange); }

/* ===== WALKER TEASER (on client page) ===== */
.teaser {
    position: relative; overflow: hidden;
    background: linear-gradient(140deg, #2E2C66 0%, #1B1A3A 52%, #15142B 100%);
    border-radius: var(--r-2xl); color: #fff;
    padding: var(--s-7) var(--s-5);
}
/* soft glows via radial-gradient (no blur filter); --orange is indigo here via .theme-indigo */
.teaser__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; opacity: .5; }
.teaser__glow.g1 { background: radial-gradient(circle, var(--orange) 0%, transparent 62%); top: -200px; left: -150px; }
.teaser__glow.g2 { background: radial-gradient(circle, #6f3bd6 0%, transparent 62%); bottom: -230px; right: -150px; }
.teaser__inner { position: relative; z-index: 2; display: grid; gap: var(--s-6); align-items: center; }
.teaser .eyebrow { background: rgba(255,255,255,.14); color: var(--peach); }
.teaser h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: var(--s-4); }
.teaser p { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: var(--s-5); max-width: 460px; }
.teaser__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); max-width: 480px; }
.teaser__stat { min-width: 0; }
.teaser__stat:not(:first-child) { border-left: 1px solid rgba(255,255,255,.14); padding-left: var(--s-4); }
.teaser__stat .v { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.teaser__stat .l { font-size: 12.5px; color: rgba(255,255,255,.68); margin-top: 5px; line-height: 1.3; }
.teaser__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-6); }
/* visual column: PRO walker phone scene (echoes the walker hero, indigo) */
.teaser__visual { position: relative; display: flex; justify-content: center; width: 100%; }
.teaser__visual::before {
    content: ''; position: absolute; z-index: 0; pointer-events: none;
    width: 118%; height: 80%; left: 50%; top: 8%; transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 45%, rgba(var(--orange-rgb), .38) 0%, rgba(var(--orange-rgb), .14) 40%, transparent 70%);
}
.teaser__visual .scene { position: relative; z-index: 1; }

/* ===== APP SHOWCASE ===== */
.showcase__cards { display: grid; gap: var(--s-4); }
.show-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: var(--s-5); display: flex; gap: var(--s-4); align-items: flex-start;
}
.show-card__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--orange-50); color: var(--orange-700); display: grid; place-items: center; flex-shrink: 0; }
.show-card__ic svg { width: 23px; height: 23px; }
.show-card h4 { font-size: 16px; margin-bottom: 4px; }
.show-card p { font-size: 14px; color: var(--ink-2); }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
    width: 100%; background: none; border: none; text-align: left;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 0; font-size: 17px; font-weight: 700; color: var(--ink);
    transition: color .15s ease;
}
.faq__q:hover { color: var(--orange-700); }
.faq__icon {
    width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
    background: var(--bg-3); color: var(--ink-3);
    display: grid; place-items: center; transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq__icon svg { width: 16px; height: 16px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq__a p { padding-bottom: 22px; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }
.faq__a p + p { padding-top: 12px; }

/* ===== CTA / DOWNLOAD ===== */
.download { }
.download__box {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-700) 100%);
    border-radius: var(--r-2xl); color: #fff; text-align: center;
    padding: var(--s-8) var(--s-5);
}
.download__box::before {
    content: ''; position: absolute; inset: 0; opacity: .12;
    background-image: radial-gradient(#fff 1.4px, transparent 1.4px); background-size: 26px 26px;
}
.download__inner { position: relative; z-index: 2; }
.download h2 { color: #fff; font-size: clamp(26px, 5vw, 42px); margin-bottom: var(--s-4); }
.download p { color: rgba(255,255,255,.92); font-size: 17px; max-width: 520px; margin: 0 auto var(--s-5); }
.store-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: stretch; }
.store-row .btn--lg { height: 62px; }
.store-btn {
    display: inline-flex; align-items: center; gap: 13px;
    padding: 0 24px; height: 62px; min-width: 220px;
    background: #17120F; color: #fff; border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), var(--shadow-md);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), var(--shadow-lg); }
.store-btn svg.logo-svg { width: 27px; height: 27px; flex-shrink: 0; }
.store-btn .s1 { font-size: 11px; opacity: .78; line-height: 1.25; }
.store-btn .s2 { font-size: 17px; font-weight: 700; line-height: 1.2; text-align: left; letter-spacing: -.01em; }
.store-btn .soon-pill {
    position: absolute; top: -9px; left: 16px;
    background: var(--yellow); color: #1A1614; font-size: 10px; font-weight: 800;
    padding: 3px 9px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .03em;
    box-shadow: var(--shadow-sm);
}
/* a store that isn't live yet — visibly inert, not focusable (set via <span> in markup) */
.store-btn--soon { opacity: .62; cursor: default; }
.store-btn--soon:hover { transform: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.10), var(--shadow-md); }
.store-btn--soon .soon-pill { background: rgba(255,255,255,.92); color: #1A1614; }
.download__alt { margin-top: var(--s-5); font-size: 14.5px; }
.download__alt a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: var(--s-8) 0 var(--s-5); }
.footer__top { display: grid; gap: var(--s-6); margin-bottom: var(--s-7); }
.footer__brand p { margin-top: var(--s-4); color: var(--ink-2); font-size: 14.5px; max-width: 300px; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: var(--s-4); }
.footer__col li { margin-bottom: 11px; }
.footer__col a { font-size: 14.5px; color: var(--ink-2); transition: color .15s ease; }
.footer__col a:hover { color: var(--orange-700); }
.footer__bottom {
    border-top: 1px solid var(--border); padding-top: var(--s-5);
    display: flex; flex-direction: column; gap: var(--s-4); align-items: center; text-align: center;
}
.footer__bottom p { font-size: 13px; color: var(--ink-3); }
.footer__legal-note a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.footer__requisites { margin-top: var(--s-3); max-width: 720px; margin-inline: auto; }
.footer__requisites p { font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 42px; height: 42px; border-radius: var(--r-sm);
    background: var(--card); border: 1px solid var(--border); color: var(--ink-2);
    display: grid; place-items: center; transition: all .18s ease;
}
.socials a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { width: 100%; }

/* ===== WALKER PAGE specifics ===== */
.hero--walker .hero__bg {
    background:
        radial-gradient(120% 90% at 15% -10%, var(--orange-100) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 60%);
}
.hero__photo {
    position: relative; border-radius: var(--r-2xl); overflow: hidden;
    aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo .float { position: absolute; }
.hero__photo .float--tl { top: 16px; left: 16px; }
.hero__photo .float--br { bottom: 16px; right: 16px; }

.earn { display: grid; gap: var(--s-4); }
.earn-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: var(--s-5); text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.earn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange-200); }
.earn-card.is-hi { background: linear-gradient(160deg, var(--orange) 0%, var(--orange-700) 100%); color: #fff; border-color: transparent; }
.earn-card__mode { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.earn-card.is-hi .earn-card__mode { color: rgba(255,255,255,.85); }
.earn-card__v { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin: 10px 0 2px; color: var(--orange-700); }
.earn-card.is-hi .earn-card__v { color: #fff; }
.earn-card__sub { font-size: 13px; color: var(--ink-3); }
.earn-card.is-hi .earn-card__sub { color: rgba(255,255,255,.8); }

.compare {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
    overflow: hidden;
}
.compare__row {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px; align-items: center;
    padding: 16px var(--s-5); border-bottom: 1px solid var(--border); font-size: 14.5px;
}
.compare__row:last-child { border-bottom: none; }
.compare__row.head { background: var(--bg-2); font-weight: 800; font-size: 13px; color: var(--ink); }
.compare__row .job { font-weight: 700; color: var(--ink); }
.compare__row .pg { color: var(--orange-700); font-weight: 800; }
.compare__row .alt { color: var(--ink-2); }

.req { display: grid; gap: var(--s-4); }
.req-card {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-5);
}
.req-card__n { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; background: var(--orange-50); color: var(--orange-700); display: grid; place-items: center; font-weight: 800; }
.req-card h4 { font-size: 16px; margin-bottom: 4px; }
.req-card p { font-size: 14px; color: var(--ink-2); }

.callout {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--orange-50); border: 1px solid var(--orange-100); border-radius: var(--r-lg);
    padding: var(--s-5); margin-top: var(--s-5);
}
.callout svg { width: 22px; height: 22px; color: var(--orange-700); flex-shrink: 0; margin-top: 2px; }
.callout p { font-size: 14.5px; color: var(--ink-2); }
.callout b { color: var(--ink); }

/* All entrance / scroll-reveal animations removed — page renders fully static.
   `.reveal` and `.in` classes in the markup are inert (no matching rules). */

/* ===== Responsive ===== */
@media (max-width: 919px) {
    .float--a, .float--b, .float--c { display: none; }
}
@media (max-width: 599px) {
    .phone { max-width: 92vw; }
}

@media (min-width: 600px) {
    .container { padding: 0 28px; }
    .hero__cta { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .hero__cta .btn { flex: 0 1 auto; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .services { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .footer__cols { grid-template-columns: repeat(3, 1fr); }
    .earn { grid-template-columns: repeat(3, 1fr); }
    .req { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 920px) {
    :root { --header-h: 72px; }
    .nav { display: flex; }
    .burger { display: none; }
    .header__cta { display: inline-flex; }
    .mobile-menu { display: none; }

    .hero { padding: calc(var(--header-h) + 64px) 0 var(--s-9); }
    .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-8); }
    .hero__copy { text-align: left; }
    .hero__lead { margin-left: 0; margin-right: 0; }
    .hero__cta { justify-content: flex-start; }
    .hero__note { justify-content: flex-start; }
    .hero__stats { max-width: 520px; }
    .live-badge { margin-top: 0; }

    /* 3D scene — phone + floating cards live in ONE perspective (desktop) */
    .hero__visual { perspective: 1700px; }
    .scene {
        transform-style: preserve-3d;
        /* static tilt — no transition, no will-change. The browser composites the
           3D scene once and just translates that layer on scroll (cheap). No hover. */
        transform: rotateX(19deg) rotateY(344deg) rotateZ(5deg);
    }
    .scene .phone { transform: translateZ(0); transform-style: preserve-3d; }

    /* device body — real thickness behind the glass */
    .scene .phone::before {
        content: ''; top: -2px; right: -2px; bottom: -2px; left: -2px;
        width: auto; height: auto; border-radius: 53px; z-index: -1;
        transform: translateZ(-15px);
        background: var(--frame-body);
        box-shadow:
            0 0 0 1px rgba(0,0,0,0.45),
            inset 0 3px 5px rgba(255,255,255,0.24),  /* light catches the side rim */
            inset 0 0 22px rgba(0,0,0,0.32);
    }

    /* cards physically lifted above the device (static — no per-card animation) */
    .scene .float--a { transform: translateZ(60px) scale(1); box-shadow: 0 26px 46px -14px rgba(40,24,16,.42), 0 6px 14px rgba(40,24,16,.16); }
    .scene .float--b { transform: translateZ(130px) scale(1.04); box-shadow: 0 44px 70px -18px rgba(40,24,16,.52), 0 12px 24px rgba(40,24,16,.22); }
    .scene .float--c { transform: translateZ(38px) scale(1); box-shadow: 0 20px 40px -14px rgba(40,24,16,.38), 0 5px 12px rgba(40,24,16,.14); }

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

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

    .band__overlay { padding: var(--s-7); min-height: 460px; }
    .band__photo, .band__photo img { min-height: 460px; }
    .band__panel { padding: var(--s-7); }

    .teaser { padding: var(--s-9) var(--s-8); }
    .teaser__inner { grid-template-columns: 1fr 1.04fr; }
    /* mirror the app-showcase (phone-right) → teaser phone on the LEFT */
    .teaser__visual { order: -1; justify-self: center; perspective: 1700px; }
    .teaser__copy { max-width: 480px; }

    .footer__top { grid-template-columns: 1.2fr 2fr; }

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

    .sticky-cta { display: none; }

    .hero--walker .hero__inner { grid-template-columns: 0.95fr 1.05fr; }
}

@media (min-width: 1100px) {
    .features { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .001ms !important; }
}
