/* Beta homepage — wide light direction based on the approved reference. */
:root {
    --taxi-orange: #ffab00;
    --taxi-orange-dark: #ed9700;
    --taxi-ink: #111318;
    --taxi-muted: #676b73;
    --taxi-line: #e7e7e4;
    --taxi-surface: #ffffff;
    --taxi-canvas: #f6f6f3;
    --taxi-wide: 1360px;
}

html { background: var(--taxi-canvas); }
body.taxi-home {
    min-height: 100vh;
    color: var(--taxi-ink);
    background: var(--taxi-canvas);
    overflow-x: clip;
}
body.taxi-home::before,
.taxi-home .particles,
.taxi-home .hero-city-bg,
.taxi-home .hero-gradient { display: none !important; }

/* Header */
.taxi-home .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    border-bottom: 1px solid rgba(17,19,24,.07);
    border-radius: 0;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 32px rgba(17,19,24,.05);
    backdrop-filter: blur(22px) saturate(150%);
}
.taxi-home .nav.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 12px 34px rgba(17,19,24,.08);
}
.taxi-home .nav-inner {
    width: min(var(--taxi-wide), calc(100% - 48px));
    max-width: var(--taxi-wide);
    height: 84px;
    margin: 0 auto;
    padding: 0;
    gap: 20px;
}
.taxi-home .nav-logo img { height: 58px; }
.taxi-home .nav-phone {
    margin-left: auto;
    color: var(--taxi-ink);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}
.taxi-home .service-switcher {
    margin-left: 8px;
    padding: 4px;
    border: 1px solid var(--taxi-line);
    background: #f4f4f2;
    box-shadow: none;
}
.taxi-home .sw-btn { min-height: 38px; padding: 8px 15px; }
.taxi-home .sw-btn.active {
    border-color: #fff;
    background: #fff;
    box-shadow: 0 5px 14px rgba(17,19,24,.08);
}
.taxi-home .nav-links { margin-left: 18px; gap: 30px; }
.taxi-home .nav-links a { color: var(--taxi-ink); opacity: .82; font-weight: 600; }
.taxi-home .nav-driver-btn { display: none; }
.taxi-home .nav-login,
.taxi-home .nav-user-btn {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--taxi-line);
    border-radius: 13px;
    color: var(--taxi-ink);
    background: #fff;
    box-shadow: none;
}
.taxi-home .nav-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 13px;
    color: #fff;
    background: var(--taxi-orange);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

/* First screen */
.taxi-home .hero {
    position: relative;
    isolation: isolate;
    width: min(var(--taxi-wide), calc(100% - 48px));
    max-width: var(--taxi-wide);
    min-height: 760px;
    margin: 84px auto 0;
    padding: 58px 48px;
    display: grid;
    grid-template-columns: minmax(450px, .9fr) minmax(420px, .72fr);
    align-items: center;
    gap: clamp(48px, 8vw, 126px);
    overflow: hidden;
    border: 1px solid var(--taxi-line);
    border-radius: 0 0 30px 30px;
    background-color: #fff;
    background-image: url('/static/images/hero-kashperivka-tetiiv-v2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.taxi-home .hero-left {
    position: relative;
    z-index: 2;
    align-self: start;
    margin-top: 40px;
    width: min(100%, 560px);
    max-width: 560px;
    min-height: 610px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 24px 70px rgba(17,19,24,.09), inset 0 1px 0 #fff;
    backdrop-filter: blur(15px) saturate(135%);
}
.taxi-home .hero-badge {
    width: fit-content;
    margin: 0 0 24px;
    padding: 10px 15px;
    border: 1px solid #eee0b9;
    color: #6e6040;
    background: rgba(255,255,255,.82);
    box-shadow: 0 8px 22px rgba(17,19,24,.05);
}
.taxi-home .hero h1 {
    margin: 0 0 24px;
    color: var(--taxi-ink);
    font-size: clamp(48px, 4.3vw, 72px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -3px;
    text-wrap: balance;
}
.taxi-home .hero h1 .accent {
    color: var(--taxi-ink);
    background: none;
    -webkit-text-fill-color: currentColor;
}
.taxi-home .hero-sub {
    max-width: 470px;
    margin: 0 0 28px;
    color: #4d5159;
    font-size: 16px;
    line-height: 1.65;
}
.taxi-home .hero-stats { display: none; }
.taxi-home .hero-feats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
    margin-top: 6px;
}
.taxi-home .hero-feat {
    min-height: 58px;
    padding: 10px 12px;
    justify-content: flex-start;
    border: 1px solid var(--taxi-line);
    border-radius: 15px;
    color: var(--taxi-ink);
    background: rgba(255,255,255,.86);
    box-shadow: none;
    font-size: 11px;
    line-height: 1.35;
}
.taxi-home .hero-feat svg { color: var(--taxi-orange); }
.taxi-home .hero-cta-row { margin-top: 22px; gap: 10px; }
.taxi-home .hero-cta {
    min-height: 52px;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 13px;
}
.taxi-home .hero-cta.primary {
    color: #fff;
    background: var(--taxi-orange);
    box-shadow: 0 12px 28px rgba(255,171,0,.25);
}
.taxi-home .hero-cta.secondary {
    color: var(--taxi-ink);
    border: 1px solid var(--taxi-line);
    background: #fff;
    box-shadow: 0 10px 24px rgba(17,19,24,.06);
}
.taxi-home .hero-route-card {
    position: absolute;
    z-index: 3;
    left: 49%;
    bottom: 42px;
    width: 236px;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 16px 42px rgba(17,19,24,.12);
    backdrop-filter: blur(14px);
}
.taxi-home .hero-route-card span,
.taxi-home .hero-route-card small { display: block; color: var(--taxi-muted); font-size: 10px; }
.taxi-home .hero-route-card strong { display: block; margin: 5px 0; font-size: 15px; }

/* Compact order card */
.taxi-home .hero-right {
    position: relative;
    z-index: 4;
    width: min(100%, 440px);
    max-width: 440px;
    justify-self: end;
    align-self: start;
    margin-top: 40px;
}
.taxi-home .order-card {
    width: 100%;
    min-height: 620px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 28px;
    color: var(--taxi-ink);
    background: rgba(255,255,255,.86);
    box-shadow: 0 26px 70px rgba(17,19,24,.13), inset 0 1px 0 #fff;
    backdrop-filter: blur(20px) saturate(145%);
}
.taxi-home .order-card::before { display: none; }
.taxi-home .order-card-heading { margin-bottom: 18px; }
.taxi-home .order-kicker { color: #8f6500 !important; font-size: 10px; }
.taxi-home .order-card h2 { margin-top: 5px; color: var(--taxi-ink) !important; font-size: 28px; }
.taxi-home .order-card-sub { color: var(--taxi-muted) !important; font-size: 11px; }
.taxi-home #step1.active,
.taxi-home #step1 > .taxi-order-controls {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.taxi-home .taxi-order-controls > * { width: 100% !important; margin: 0 !important; }
.taxi-home .taxi-order-controls > .field-group { display: grid; gap: 8px; }
.taxi-home .field {
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid #e4e5e3;
    border-radius: 13px;
    color: var(--taxi-ink);
    background: rgba(255,255,255,.92);
    box-shadow: 0 6px 16px rgba(17,19,24,.04);
}
.taxi-home .field:focus-within { border-color: #ffc34b; background: #fff; }
.taxi-home .field-content label { color: #777b83; }
.taxi-home .field-content select,
.taxi-home .field-content input { color: var(--taxi-ink) !important; font-size: 13px; }
.taxi-home .field-content input::placeholder { color: #92969d !important; opacity: 1; }
.taxi-home .taxi-pickup-item {
    color: var(--taxi-ink) !important;
    border-color: var(--taxi-line) !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 7px 18px rgba(17,19,24,.05) !important;
}
.taxi-home .taxi-pickup-copy small { color: #777b83 !important; }
.taxi-home .taxi-pick-map-btn {
    border-color: #ead7a1;
    color: #7a5900;
    background: #fff8e4;
    box-shadow: none;
}
.taxi-home .taxi-order-controls > .route-divider {
    width: 100% !important;
    height: 30px !important;
    min-height: 30px !important;
    flex-direction: row !important;
}
.taxi-home .taxi-order-controls > .route-divider .route-line {
    width: auto !important;
    height: 1px !important;
    min-height: 1px !important;
    background: #e7e7e4;
}
.taxi-home .swap-btn { width: 30px; height: 30px; color: #fff; background: var(--taxi-ink); }
.taxi-home .web-add-stop { height: 38px; border-color: #e6d49b; color: #80600a; background: #fffaf0; }
.taxi-home .option-btn,
.taxi-home .passengers-row {
    color: #4d5159 !important;
    border: 1px solid var(--taxi-line);
    background: rgba(255,255,255,.88);
}
.taxi-home .option-btn.active { color: #fff !important; border-color: var(--taxi-ink); background: var(--taxi-ink); }
.taxi-home .taxi-order-controls > .time-row { display: none; }
.taxi-home .taxi-order-controls > .passengers-row { min-height: 48px; }
.taxi-home .taxi-order-controls > .btn-next {
    height: 54px;
    border-radius: 13px;
    color: #fff !important;
    background: var(--taxi-orange);
    box-shadow: 0 12px 26px rgba(255,171,0,.24);
}

/* Real interactive map opens from the SVG map buttons. */
.taxi-home .taxi-map-shell {
    display: none !important;
    position: fixed !important;
    z-index: 720 !important;
    top: 50% !important;
    left: 50% !important;
    width: min(920px, calc(100vw - 32px)) !important;
    max-height: calc(100vh - 32px) !important;
    margin: 0 !important;
    padding: 18px !important;
    overflow: auto !important;
    transform: translate(-50%,-50%) !important;
    border: 1px solid rgba(255,255,255,.95) !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 32px 100px rgba(17,19,24,.3) !important;
    backdrop-filter: blur(24px) !important;
}
.taxi-home .taxi-map-shell.map-open { display: block !important; }
body.taxi-map-modal-open { overflow: hidden; }
body.taxi-map-modal-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 710;
    background: rgba(17,19,24,.48);
}
.taxi-home .taxi-map-head { color: var(--taxi-ink); }
.taxi-home .taxi-map-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--taxi-line);
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
}
.taxi-home .taxi-map-close img { width: 15px; height: 15px; }
.taxi-home #taxiOrderMap { height: min(520px, 62vh); min-height: 360px; }

/* Shared section rhythm */
.taxi-home .how,
.taxi-home .features,
.taxi-home .service-area,
.taxi-home .app-soon,
.taxi-home .driver,
.taxi-home .contacts,
.taxi-home .footer {
    width: min(var(--taxi-wide), calc(100% - 48px));
    max-width: var(--taxi-wide);
    margin: 24px auto 0;
    padding: 0;
    color: var(--taxi-ink);
    background: transparent;
}
.taxi-home .how-inner,
.taxi-home .features-inner,
.taxi-home .service-area-inner,
.taxi-home .app-soon-inner,
.taxi-home .driver-inner,
.taxi-home .contacts-inner,
.taxi-home .footer-inner { width: 100%; max-width: none; margin: 0; }
.taxi-home .how h2,
.taxi-home .features h2,
.taxi-home .service-area h2,
.taxi-home .app-soon h2,
.taxi-home .driver h2,
.taxi-home .contacts h2 { color: var(--taxi-ink) !important; letter-spacing: -1.3px; }

/* How */
.taxi-home .how-inner { padding: 44px 0 4px; }
.taxi-home .how h2 { margin-bottom: 26px; text-align: center; font-size: 27px; }
.taxi-home .how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}
.taxi-home .how-arrow { display: none; }
.taxi-home .how-step {
    position: relative;
    min-height: 224px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--taxi-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(17,19,24,.06);
}
.taxi-home .how-step::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 52px;
}
.taxi-home .how-step:nth-child(1)::before { background-image: url('/static/icons/geo-alt.svg'); }
.taxi-home .how-step:nth-child(3)::before { background-image: url('/static/icons/person-check.svg'); }
.taxi-home .how-step:nth-child(5)::before { background-image: url('/static/icons/car-front-fill.svg'); }
.taxi-home .how-num { margin-bottom: 56px; color: #ffc95f; font-size: 40px; font-weight: 900; }
.taxi-home .how-step h3 { color: var(--taxi-ink); font-size: 18px; }
.taxi-home .how-step p { margin-top: 8px; color: var(--taxi-muted); font-size: 13px; line-height: 1.55; }

/* Benefits */
.taxi-home .features-inner {
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
    border: 1px solid var(--taxi-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17,19,24,.05);
}
.taxi-home .features-title { grid-column: 1 / -1; margin: 0 0 4px; font-size: 22px; }
.taxi-home .feature {
    min-height: 126px;
    padding: 20px;
    border: 1px solid var(--taxi-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
}
.taxi-home .feature-ico {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--taxi-orange);
}
.taxi-home .feature h3 { margin-top: 14px; color: var(--taxi-ink); font-size: 15px; }
.taxi-home .feature p { margin-top: 5px; color: var(--taxi-muted); font-size: 11px; line-height: 1.45; }

/* Service area */
.taxi-home .service-area-inner {
    min-height: 260px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    border: 1px solid var(--taxi-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17,19,24,.05);
}
.taxi-home .section-kicker { color: #956b00; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.taxi-home .service-area h2 { max-width: 660px; margin: 8px 0 22px; font-size: 25px; }
.taxi-home .service-area-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.taxi-home .service-area-chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--taxi-line);
    border-radius: 10px;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}
.taxi-home .service-area-chips img { width: 13px; height: 13px; }
.taxi-home .service-area-map {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 22px;
    background-color: #fff9e8;
    background-image: url('/static/images/hero-kashperivka-tetiiv-v2.jpg');
    background-position: 30% 50%;
    background-size: cover;
}
.taxi-home .service-area-map > img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    padding: 9px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: var(--taxi-orange);
    box-shadow: 0 14px 32px rgba(255,171,0,.28);
}

/* Apps */
.taxi-home .app-soon-inner {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr .42fr;
    gap: 22px;
    border: 1px solid var(--taxi-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17,19,24,.05);
}
.taxi-home .app-soon-badge { color: #8a6500; background: #fff6db; }
.taxi-home .app-soon h2 { margin-top: 10px; font-size: 24px; }
.taxi-home .app-soon p { max-width: 650px; color: var(--taxi-muted) !important; font-size: 13px; }
.taxi-home .app-stores { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.taxi-home .app-store-btn,
.taxi-home .qr-box {
    min-height: 106px;
    border: 1px solid var(--taxi-line);
    border-radius: 18px;
    color: var(--taxi-ink) !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(17,19,24,.05);
}
.taxi-home .app-store-btn svg { filter: invert(1); }
.taxi-home .app-store-btn:nth-child(2) svg { filter: none; }
.taxi-home .asb-name,
.taxi-home .qr-box strong { color: var(--taxi-ink) !important; }
.taxi-home .asb-sub,
.taxi-home .qr-box p { color: var(--taxi-muted) !important; }
.taxi-home .qr-box { display: grid; grid-template-columns: 62px 1fr; align-content: center; }
.taxi-home .qr-box img { width: 56px; }
.taxi-home .support-note { grid-column: 1 / -1; color: #7d5c08; background: #fff8e5; }

/* Keep the SEO copy in the DOM while the beta composition stays concise. */
.taxi-home .seo-local { display: none; }

/* Driver banner */
.taxi-home .driver-inner {
    position: relative;
    min-height: 330px;
    padding: 44px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 20px;
    overflow: hidden;
    border: 1px solid var(--taxi-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17,19,24,.05);
}
.taxi-home .driver-text { position: relative; z-index: 2; padding-right: 20px; }
.taxi-home .driver-badge { color: #8d6600; background: #fff3cf; }
.taxi-home .driver h2 { margin-top: 10px; font-size: 32px; }
.taxi-home .driver-text p { color: var(--taxi-muted); }
.taxi-home .driver-list { grid-template-columns: 1fr 1fr; }
.taxi-home .driver-list li { color: #383c43; font-size: 12px; }
.taxi-home .btn-yellow { color: #fff; background: var(--taxi-orange); box-shadow: 0 12px 24px rgba(255,171,0,.22); }
.taxi-home .driver-visual {
    min-height: 240px;
    border-radius: 20px;
    background-color: #f3f3f0;
    background-image: url('/static/images/driver-banner-v2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.taxi-home .driver-card { display: none; }

/* Contacts and footer */
.taxi-home .contacts-inner {
    padding: 30px;
    border: 1px solid var(--taxi-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17,19,24,.05);
}
.taxi-home .contacts h2 { font-size: 24px; }
.taxi-home .contacts-hours { color: var(--taxi-muted) !important; }
.taxi-home .contacts-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.taxi-home .contact-item {
    border: 1px solid var(--taxi-line);
    border-radius: 16px;
    color: var(--taxi-ink);
    background: #fff;
    box-shadow: none;
}
.taxi-home .ci-title { color: var(--taxi-ink); }
.taxi-home .ci-sub { color: var(--taxi-muted); }
.taxi-home .footer { margin-bottom: 24px; }
.taxi-home .footer-inner {
    min-height: 118px;
    padding: 26px 30px;
    border: 1px solid var(--taxi-line);
    border-radius: 26px;
    color: var(--taxi-muted);
    background: #fff;
}
.taxi-home .footer-logo { height: 50px; }
.taxi-home .footer-links a { color: #52565e; }

@media (min-width: 901px) {
    .taxi-home .hero {
        min-height: 760px !important;
        padding: 58px 48px !important;
        grid-template-columns: minmax(450px,.9fr) minmax(420px,.72fr) !important;
        gap: clamp(48px,8vw,126px) !important;
    }
    .taxi-home .hero-left {
        align-self: start !important;
        min-height: 610px !important;
        margin-top: 40px !important;
        padding: 44px 40px !important;
    }
    .taxi-home .hero-right {
        align-self: start !important;
        margin-top: 40px !important;
    }
}

@media (max-width: 1180px) {
    .taxi-home .nav-phone { display: none; }
    .taxi-home .nav-links { gap: 18px; }
    .taxi-home .hero {
        grid-template-columns: minmax(400px,.9fr) minmax(390px,.75fr);
        gap: 38px;
        padding: 46px 30px;
        background-position: 45% center;
    }
    .taxi-home .hero-left { padding: 36px 30px; }
    .taxi-home .hero-route-card { display: none; }
}

@media (max-width: 900px) {
    .taxi-home .nav-inner { width: calc(100% - 28px); }
    .taxi-home .nav-links,
    .taxi-home .service-switcher { display: none; }
    .taxi-home .nav-burger { display: flex; margin-left: auto; }
    .taxi-home .nav-burger svg { stroke: var(--taxi-ink); }
    .taxi-home .nav-actions { display: none; }
    .taxi-home .hero {
        width: calc(100% - 28px);
        min-height: 0;
        margin-top: 84px;
        padding: 28px;
        grid-template-columns: 1fr;
        gap: 22px;
        border-radius: 0 0 24px 24px;
        background-position: 58% top;
    }
    .taxi-home .hero-left,
    .taxi-home .hero-right { width: 100%; max-width: none; margin-top: 0; justify-self: stretch; }
    .taxi-home .hero-left { order: 1 !important; min-height: 560px; background: rgba(255,255,255,.9); }
    .taxi-home .hero-right { order: 2 !important; }
    .taxi-home .order-card {
        min-height: 0;
        color: var(--taxi-ink) !important;
        background: rgba(255,255,255,.92) !important;
        box-shadow: 0 22px 64px rgba(17,19,24,.14), inset 0 1px 0 #fff !important;
    }
    .taxi-home .order-card .field,
    .taxi-home .order-card .option-btn,
    .taxi-home .order-card .passengers-row {
        color: var(--taxi-ink) !important;
        border-color: var(--taxi-line) !important;
        background: rgba(255,255,255,.92) !important;
    }
    .taxi-home .order-card .field-content label { color: #747981 !important; }
    .taxi-home .order-card .field-content select,
    .taxi-home .order-card .field-content input { color: var(--taxi-ink) !important; }
    .taxi-home .order-card .option-btn.active { color: #fff !important; background: var(--taxi-ink) !important; }
    .taxi-home .order-card .passengers-row > span { color: #555a62 !important; }
    .taxi-home .how,
    .taxi-home .features,
    .taxi-home .service-area,
    .taxi-home .app-soon,
    .taxi-home .driver,
    .taxi-home .contacts,
    .taxi-home .footer { width: calc(100% - 28px); }
    .taxi-home .how-steps { grid-template-columns: 1fr; }
    .taxi-home .features-inner { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .taxi-home .service-area-inner,
    .taxi-home .app-soon-inner,
    .taxi-home .driver-inner { grid-template-columns: 1fr; }
    .taxi-home .contacts-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 600px) {
    .taxi-home .nav { top: 8px; left: 8px; right: 8px; border: 1px solid var(--taxi-line); border-radius: 18px; }
    .taxi-home .nav-inner { width: 100%; height: 64px; padding: 0 10px; }
    .taxi-home .nav-logo img { height: 42px !important; }
    .taxi-home .hero { width: 100%; margin-top: 0; padding: 84px 10px 16px; border: 0; border-radius: 0; }
    .taxi-home .hero-left { min-height: 0; padding: 30px 22px; border-radius: 22px; }
    .taxi-home .hero h1 { font-size: clamp(42px,13vw,58px); letter-spacing: -2.4px; }
    .taxi-home .hero-sub { color: #50545c; font-size: 14px; }
    .taxi-home .hero-feats { grid-template-columns: 1fr; }
    .taxi-home .hero-cta { width: 100%; }
    .taxi-home .order-card { padding: 20px 14px; border-radius: 22px; }
    .taxi-home .taxi-map-shell { width: calc(100vw - 16px) !important; max-height: calc(100vh - 16px) !important; padding: 12px !important; border-radius: 18px !important; }
    .taxi-home #taxiOrderMap { height: 54vh; min-height: 320px; }
    .taxi-home .how,
    .taxi-home .features,
    .taxi-home .service-area,
    .taxi-home .app-soon,
    .taxi-home .driver,
    .taxi-home .contacts,
    .taxi-home .footer { width: calc(100% - 20px); margin-top: 14px; }
    .taxi-home .how-inner { padding-top: 28px; }
    .taxi-home .how h2 { font-size: 23px; }
    .taxi-home .how-step { min-height: 190px; padding: 24px; }
    .taxi-home .features-inner { padding: 14px; grid-template-columns: 1fr; }
    .taxi-home .service-area-inner,
    .taxi-home .app-soon-inner,
    .taxi-home .driver-inner,
    .taxi-home .contacts-inner { padding: 20px; border-radius: 22px; }
    .taxi-home .service-area h2 { font-size: 22px; }
    .taxi-home .service-area-map { min-height: 180px; }
    .taxi-home .app-stores { grid-template-columns: 1fr; }
    .taxi-home .qr-box { grid-template-columns: 54px 1fr; }
    .taxi-home .driver-list { grid-template-columns: 1fr; }
    .taxi-home .driver-visual { min-height: 210px; background-position: 58% center; }
    .taxi-home .contacts-grid { grid-template-columns: 1fr; }
    .taxi-home .footer-inner { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .taxi-home *, .taxi-home *::before, .taxi-home *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
