/* ================================================================
   Vezoo / dostavkakz.kz — основные стили (mobile-first)
   ================================================================ */

:root {
    --bg: #0A0A0A;
    --bg-2: #141414;
    --bg-3: #1C1C1C;
    --card: #181818;
    --line: #242424;
    --line-strong: #2E2E2E;
    --fg: #F5F5F2;
    --fg-2: #C7C7C0;
    --fg-3: #8C8C84;
    --light: #F5F5F2;
    --light-2: #EBEBE6;
    --ink: #0A0A0A;
    --accent: #FFDB4D;
    --accent-2: #F5C518;
    --accent-ink: #1A1300;
    --radius: 14px;
    --radius-lg: 22px;
    --maxw: 1360px;
    --pad: clamp(16px, 3vw, 40px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, .display {
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.section { padding: clamp(56px, 10vw, 140px) 0; }
.section.light { background: var(--light); color: var(--ink); }
.section.light h1, .section.light h2, .section.light h3 { color: var(--ink); }

a { color: inherit; }

input, select, textarea {
    font: inherit;
    color: inherit;
    width: 100%;
    background: transparent;
    border: 1px solid var(--line-strong);
    padding: 14px 16px;
    border-radius: 12px;
    outline: none;
    transition: border-color .15s ease, background .15s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.02);
}
label {
    display: block;
    font-size: 12px;
    color: var(--fg-3);
    margin-bottom: 6px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== Eyebrow ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-3);
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
}
.section.light .eyebrow { color: #555; border-color: #D9D9D3; }
.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,219,77,0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px;
    font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--fg-3); }
.section.light .btn-ghost { color: var(--ink); border-color: #C9C9C2; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.header-btn { padding: 10px 18px; font-size: 14px; }

/* ===== Header ===== */
.hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(10,10,10,0.72);
    border-bottom: 1px solid var(--line);
}
.hdr.scrolled { background: rgba(10,10,10,0.92); }
.hdr-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: inherit;
}
.logo-mark {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--accent);
    display: grid; place-items: center;
    color: var(--accent-ink);
    font-weight: 800;
    font-size: 20px;
    position: relative;
    font-family: 'Manrope', sans-serif;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 1px solid rgba(255,219,77,0.35);
}

.nav { display: none; gap: 4px; margin-left: 24px; }
.nav a {
    text-decoration: none;
    color: var(--fg-2);
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.nav a:hover { color: var(--fg); background: var(--bg-2); }

.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.lang {
    display: inline-flex;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
}
.lang-btn {
    background: transparent;
    border: 0;
    color: var(--fg-3);
    padding: 6px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
}
.lang-btn.on { background: var(--fg); color: var(--ink); }

.phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 10px;
    color: var(--fg);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

/* ===== Mobile nav ===== */
.mob-nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .25s ease;
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
    color: var(--fg);
    text-decoration: none;
    font-size: 22px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    padding: 10px 0;
}
.mob-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    color: var(--fg);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.lang-mob { align-self: flex-start; margin-top: 8px; }

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: clamp(32px, 6vw, 72px) 0 clamp(40px, 6vw, 80px);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: stretch;
}
.hero h1 {
    font-size: clamp(40px, 9vw, 92px);
    letter-spacing: -0.035em;
    font-weight: 800;
    margin-top: 24px;
}
.hero h1 .accent {
    color: var(--accent);
    font-style: italic;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}
.hero-sub {
    margin-top: 24px;
    font-size: clamp(15px, 1.3vw, 19px);
    color: var(--fg-2);
    max-width: 520px;
    line-height: 1.5;
}
.hero-stats {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.hero-stat-n {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
}
.hero-stat-n .unit { color: var(--accent); }
.hero-stat-l {
    font-size: 11px;
    color: var(--fg-3);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-side {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
}
.hero-visual {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px;
    overflow: hidden;
    min-height: 280px;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,219,77,0.18), transparent 45%),
        repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.02) 22px 23px);
    pointer-events: none;
}
.live-tile {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px;
}
.live-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}
.live-status {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--fg-2);
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,219,77,0.2);
    animation: pulse 1.4s infinite;
}
.live-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--fg-3);
}

.order-ticker {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    position: relative;
}
.order-row {
    display: grid;
    grid-template-columns: 28px 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 12px;
    transition: all .3s ease;
}
.order-row.new {
    border-color: var(--accent);
    background: rgba(255,219,77,0.08);
}
.order-row .mode-ic {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: grid; place-items: center;
    background: var(--bg-3);
    color: var(--fg-2);
}
.order-row.new .mode-ic { background: var(--accent); color: var(--accent-ink); }
.order-route { color: var(--fg-2); font-size: 11px; min-width: 0; }
.order-route strong {
    color: var(--fg);
    font-weight: 600;
    font-size: 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.order-route div { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-price {
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
}
.order-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--fg-3);
}

/* ===== Form (form-card) ===== */
.hero-form-wrap { width: 100%; }
.form-card {
    background: var(--light);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
}
.form-card h3 {
    font-size: 22px;
    margin: 0 0 4px;
    color: var(--ink);
}
.form-card .form-sub {
    color: #5a5a54;
    margin: 0 0 18px;
    font-size: 14px;
}
.form-card label { color: #5a5a54; }
.form-card .form-input,
.form-card input,
.form-card select {
    background: white;
    border: 1px solid #D9D9D3;
    color: var(--ink);
    min-height: 48px;
}
.form-card .form-input:focus,
.form-card input:focus,
.form-card select:focus {
    border-color: var(--ink);
    background: white;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.form-group { margin-bottom: 14px; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 16px;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    font-size: 12px;
    color: #5a5a54;
    line-height: 1.45;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--accent-2);
    flex: none;
}
.form-checkbox-text a {
    color: var(--ink);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: var(--ink);
    color: var(--fg);
}
.form-submit:hover { background: #222; }

/* Success state */
.success-message,
.error-message { display: none; }
.form-card.is-sent .application-form { display: none; }
.form-card.is-sent .success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 12px;
}
.success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    display: grid; place-items: center;
    margin-bottom: 16px;
    animation: pop .4s ease;
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.success-message h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--ink);
}
.success-message p {
    font-size: 14px;
    color: #5a5a54;
    margin: 0;
    max-width: 320px;
}

.error-message {
    margin-top: 12px;
    background: #fde6e0;
    border: 1px solid #f5b9a8;
    border-radius: 12px;
    padding: 12px 14px;
    color: #7a1f0a;
}
.error-message.show { display: block; }
.error-message h5 {
    margin: 0 0 4px;
    font-size: 14px;
    color: #7a1f0a;
    font-family: 'Manrope', sans-serif;
}
.error-message p { margin: 0; font-size: 13px; }

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300;
    display: none;
    padding: 24px;
    overflow-y: auto;
}
.modal-overlay.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.modal-content {
    width: 100%;
    max-width: 480px;
    margin: auto;
    animation: modalIn .25s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #C9C9C2;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* ===== Marquee ===== */
.marquee {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 2.4vw, 30px);
    color: var(--fg-3);
    letter-spacing: -0.02em;
    will-change: transform;
}
.marquee-track .hi { color: var(--fg); }
.marquee-track .star { color: var(--accent); }
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Section head ===== */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.head-h2 {
    font-size: clamp(32px, 6vw, 64px);
    margin-top: 16px;
    max-width: 780px;
}
.head-tagline {
    color: var(--fg-2);
    max-width: 380px;
    font-size: 15px;
    margin: 0;
}
.section.light .head-tagline { color: #555; }

/* ===== Transport ===== */
.transport-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.transport-head h2 { font-size: clamp(32px, 6vw, 64px); margin-top: 16px; }
.transport-head .tagline {
    color: var(--fg-2);
    max-width: 360px;
    font-size: 15px;
    margin: 0;
}
.transport-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.trans-card {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    overflow: hidden;
}
.trans-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: var(--bg-3);
}
.trans-card .ic-big { width: 48px; height: 48px; color: var(--fg); }
.trans-card h3 { font-size: 22px; margin-top: 8px; }
.trans-card .income {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    margin-top: 12px;
}
.trans-card .income .u {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}
.trans-card .meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--fg-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.trans-card .badge {
    position: absolute; top: 16px; right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 600;
}

/* ===== Perks ===== */
.perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
}
.perk {
    border: 1px solid #D9D9D3;
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-height: 200px;
}
.perk.dark { background: var(--ink); color: var(--fg); border-color: var(--ink); }
.perk.accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.perk h3 { font-size: 22px; line-height: 1.15; }
.perk p {
    font-size: 14px;
    color: #555;
    margin: 10px 0 0;
    line-height: 1.45;
}
.perk.dark p { color: var(--fg-2); }
.perk.accent p { color: var(--accent-ink); opacity: 0.78; }
.perk .ic { width: 36px; height: 36px; color: #222; }
.perk-ic-yellow { color: var(--accent) !important; }
.perk .big-num {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(44px, 12vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
.perk .big-num-md { font-size: 44px; }
.perk-h3-small { font-size: 16px; }
.perk-h3-md { font-size: 17px; margin-top: 4px; }

/* ===== Calculator ===== */
.calc {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 40px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 56px);
    margin-top: 32px;
}
.calc-field { margin-top: 20px; }
.calc-field:first-child { margin-top: 0; }
.calc-field .row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    gap: 12px;
}
.calc-field .label-txt {
    font-size: 13px;
    color: var(--fg-2);
}
.calc-field .value-txt {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.tab {
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--fg-2);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    min-height: 44px;
    font-family: inherit;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tab.on {
    background: var(--fg);
    color: var(--ink);
    border-color: var(--fg);
}
.tab svg { width: 16px; height: 16px; }

input[type=range].slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: var(--bg-3);
    padding: 0;
    border: 0;
    outline: none;
    margin: 4px 0;
}
input[type=range].slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px; height: 24px;
    border-radius: 999px;
    background: var(--accent);
    border: 4px solid var(--bg);
    cursor: grab;
    box-shadow: 0 0 0 1px var(--accent);
}
input[type=range].slider::-moz-range-thumb {
    width: 24px; height: 24px;
    border-radius: 999px;
    background: var(--accent);
    border: 4px solid var(--bg);
    cursor: grab;
}

.calc-out {
    background: var(--ink);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.calc-out::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 0% 0%, rgba(255,219,77,0.2), transparent 50%);
    pointer-events: none;
}
.calc-out-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--fg-3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}
.calc-out-amount {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px, 11vw, 96px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}
.calc-out-amount .u {
    color: var(--accent);
    font-size: 0.5em;
    font-weight: 500;
}
.calc-out-sub {
    color: var(--fg-2);
    font-size: 14px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.calc-breakdown {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    position: relative;
    z-index: 1;
}
.calc-breakdown .bd-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    color: var(--fg-2);
}
.calc-breakdown .bd-row span:last-child {
    color: var(--fg);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}
.calc-cta {
    width: 100%;
    margin-top: 20px;
}

/* ===== Steps ===== */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
}
.step {
    position: relative;
    padding: 26px;
    border: 1px solid #D9D9D3;
    border-radius: var(--radius);
    background: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.step .num {
    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.8;
    color: var(--ink);
    opacity: 0.12;
}
.step-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-top: 8px;
}
.step-desc {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    line-height: 1.4;
}
.step.last { background: var(--ink); color: var(--fg); border-color: var(--ink); }
.step.last .num { color: var(--accent); opacity: 1; }
.step.last .step-desc { color: var(--fg-2); }

/* ===== Why us / Map ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.why-sub {
    color: var(--fg-2);
    font-size: 16px;
    margin-top: 16px;
    max-width: 520px;
}
.why-list {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}
.why-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row .ic-box {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--accent);
}
.why-row h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 17px;
    margin: 0 0 4px;
}
.why-row p {
    margin: 0;
    color: var(--fg-2);
    font-size: 14px;
    line-height: 1.45;
}

.map-tile {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    padding: 20px;
}
.map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 85%);
    mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 85%);
}
.pin {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,219,77,0.25);
    transform: translate(-50%, -50%);
}
.pin-big { width: 16px; height: 16px; }
.pin.x { animation: blink 2.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.map-label {
    position: absolute;
    background: var(--ink);
    color: var(--fg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    transform: translate(-50%, -140%);
    border: 1px solid var(--line);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.map-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.map-foot {
    position: absolute;
    left: 16px; right: 16px; bottom: 16px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    z-index: 2;
}
.map-foot .kv {
    font-size: 10px;
    color: var(--fg-3);
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.06em;
}
.map-foot .v {
    color: var(--fg);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-top: 3px;
    letter-spacing: -0.02em;
}

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
}
.review {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.review .stars {
    color: var(--accent);
    display: flex;
    gap: 2px;
}
.review-text {
    font-size: 16px;
    line-height: 1.45;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    flex: 1;
}
.bio { display: flex; align-items: center; gap: 12px; }
.bio-av {
    width: 44px; height: 44px;
    border-radius: 999px;
    display: grid; place-items: center;
    font-weight: 700;
    color: white;
    font-family: 'Manrope', sans-serif;
}
.bio-name { font-weight: 600; font-size: 15px; }
.bio-meta {
    font-size: 12px;
    color: var(--fg-3);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-head { text-align: center; }
.faq-wrap {
    max-width: 840px;
    margin: 32px auto 0;
}
.faq-item { border-top: 1px solid #D9D9D3; }
.faq-item:last-child { border-bottom: 1px solid #D9D9D3; }
.faq-btn {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    gap: 16px;
}
.faq-ic {
    flex: none;
    width: 36px; height: 36px;
    border: 1px solid #C9C9C2;
    border-radius: 999px;
    display: grid; place-items: center;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    color: var(--ink);
}
.faq-item.open .faq-ic {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
    transform: rotate(45deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-item.open .faq-body { max-height: 500px; }
.faq-body-inner {
    padding: 0 0 22px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
}

/* ===== CTA ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 120px) 0;
}
.cta-box {
    background: var(--accent);
    color: var(--accent-ink);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(0,0,0,0.04) 30px 31px);
    pointer-events: none;
}
.cta-left { position: relative; z-index: 1; }
.cta-box h2 {
    font-size: clamp(32px, 7vw, 72px);
    color: var(--accent-ink);
}
.cta-box p {
    font-size: 16px;
    margin-top: 16px;
    max-width: 480px;
    color: rgba(26,19,0,0.8);
}
.cta-btn { background: var(--ink); color: var(--fg); margin-top: 24px; }
.cta-btn:hover { background: #1f1f1f; }
.cta-right {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cta-right .mini {
    background: rgba(26,19,0,0.1);
    border: 1px solid rgba(26,19,0,0.18);
    border-radius: 12px;
    padding: 16px;
}
.mini-n {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1;
}
.mini-l {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.7;
}

/* ===== Footer ===== */
.ftr {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 48px 0 24px;
}
.ftr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.ftr h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 500;
}
.ftr a {
    display: block;
    color: var(--fg-2);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
}
.ftr a:hover { color: var(--fg); }
.ftr-addr { font-size: 13px; }
.ftr-note {
    color: var(--fg-3);
    font-size: 13px;
    margin: 12px 0 0;
    max-width: 420px;
    line-height: 1.5;
}
.ftr-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: var(--fg-3);
}
.ftr-bottom-links { display: flex; gap: 20px; }
.ftr-bottom-links a {
    color: var(--fg-3);
    padding: 0;
}

/* ===== 404 ===== */
.scene-404 {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 80px 24px;
}
.content-404 { text-align: center; max-width: 560px; }
.num-404 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(96px, 22vw, 200px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.05em;
    line-height: 0.9;
}
.title-404 {
    font-size: clamp(28px, 5vw, 44px);
    margin-top: 12px;
}
.desc-404 {
    color: var(--fg-2);
    font-size: 16px;
    margin: 16px auto 0;
    max-width: 480px;
}
.actions-404 {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   Tablet & Desktop breakpoints
   ================================================================ */
@media (min-width: 561px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .perks-grid { grid-template-columns: repeat(6, 1fr); }
    .col-3 { grid-column: span 3; }
    .col-4 { grid-column: span 6; }
    .col-6 { grid-column: span 6; }
    .perk .big-num { font-size: 56px; }
    .transport-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .ftr-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { grid-template-columns: 1fr; }
    .ftr-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
    .hero h1 { font-size: clamp(56px, 7vw, 92px); }
    .form-card { padding: 28px; }
}

@media (min-width: 961px) {
    .hdr-inner { gap: 20px; }
    .nav { display: flex; }
    .phone { display: inline-flex; }
    .burger { display: none; }
    .hero-grid { grid-template-columns: 1.15fr 1fr; }
    .transport-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
    }
    .transport-grid { grid-template-columns: repeat(5, 1fr); }
    .perks-grid { grid-template-columns: repeat(12, 1fr); }
    .col-3 { grid-column: span 3; }
    .col-4 { grid-column: span 4; }
    .col-6 { grid-column: span 6; }
    .col-8 { grid-column: span 8; }
    .col-12 { grid-column: span 12; }
    .calc { grid-template-columns: 1fr 1.1fr; }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-box { grid-template-columns: 1.3fr 1fr; gap: 40px; }
    .ftr-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1100px) {
    .hero-stats { gap: 24px; }
    .map-foot { padding: 14px 18px; }
    .map-foot .v { font-size: 18px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track { animation: none; }
}
