/* ── RESET & ROOT ── */
:root {
    --yellow: #F7C948;
    --yellow-dark: #e0b030;
    --yellow-glow: rgba(247,201,72,0.3);
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --gray: #777;
    --light: #f4f4f4;
    --white: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

/* ── PARTICLES ── */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute; border-radius: 50%;
    background: var(--yellow); opacity: 0;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(110vh) scale(0); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.05; }
    100% { transform: translateY(-20px) scale(1.2); opacity: 0; }
}

/* ── CITY BG ── */
.hero-city-bg {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -2;
    background: url('/static/images/tetiyiv.jpg') center/cover no-repeat;
    opacity: 0.07; transform: scale(1.1); will-change: transform;
}
.hero-gradient {
    position: fixed; top: 0; left: 0; right: 0; height: 100vh; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(247,201,72,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(247,201,72,0.06) 0%, transparent 60%);
}

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    padding: 0 24px; height: 76px; gap: 16px;
}
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--black); font-size: 15px; font-weight: 500; opacity: 0.65; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-driver-btn {
    background: var(--yellow); color: var(--black);
    padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 700;
    text-decoration: none; display: flex; align-items: center; gap: 7px;
    transition: all .2s; white-space: nowrap; box-shadow: 0 4px 16px var(--yellow-glow);
}
.nav-driver-btn:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.nav-login {
    background: var(--black); color: var(--white);
    padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: opacity .2s; white-space: nowrap;
}
.nav-login:hover { opacity: 0.8; }
.nav-login-icon { display: none; text-decoration: none; color: var(--black); }
.nav-login-icon svg { width: 30px; height: 30px; }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 480px;
    align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto;
    padding: 110px 24px 60px; position: relative;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(247,201,72,0.1); border: 1px solid rgba(247,201,72,0.3);
    border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: #a07800;
    margin-bottom: 28px; animation: fadeUp .6s ease both;
}
.hero h1 {
    font-size: clamp(48px, 5.5vw, 76px); font-weight: 900; line-height: 1.0;
    letter-spacing: -2.5px; margin-bottom: 24px; animation: fadeUp .6s ease .1s both;
}
.hero h1 .accent {
    background: linear-gradient(135deg, #F7C948 0%, #f0a800 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: 18px; color: var(--gray); line-height: 1.65;
    margin-bottom: 40px; max-width: 400px; animation: fadeUp .6s ease .2s both;
}
.hero-stats { display: flex; align-items: center; margin-bottom: 32px; animation: fadeUp .6s ease .3s both; }
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num { font-size: 22px; font-weight: 800; margin-bottom: 2px; display: flex; align-items: center; gap: 6px; }
.stat-label { font-size: 12px; color: var(--gray); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: #e0e0e0; flex-shrink: 0; }
.hero-feats { display: flex; flex-wrap: wrap; gap: 8px; animation: fadeUp .6s ease .4s both; }
.hero-feat {
    display: flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid #eee; border-radius: 50px;
    padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--black);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all .2s;
}
.hero-feat:hover { border-color: var(--yellow); box-shadow: 0 4px 16px var(--yellow-glow); transform: translateY(-1px); }
.hero-feat svg { width: 15px; height: 15px; flex-shrink: 0; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── ORDER CARD ── */
.hero-right { animation: fadeUp .7s ease .2s both; }
.order-card {
    background: var(--white); border-radius: 32px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 36px; position: relative; overflow: hidden;
}
.order-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
}
.order-card h2 { font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.order-card-sub { font-size: 13px; color: var(--gray); display: block; margin-bottom: 24px; }
.order-step { display: none; }
.order-step.active { display: block; animation: fadeUp .3s ease both; }

.field-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.field {
    display: flex; align-items: center; gap: 12px;
    background: var(--light); border-radius: 16px; padding: 14px 18px; transition: background .2s;
}
.field:focus-within { background: #efefef; }
.field-icon { width: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.field-icon svg { width: 20px; height: 20px; }
.field-content { flex: 1; min-width: 0; }
.field-content label { display: block; font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 4px; }
.field-content select, .field-content input {
    width: 100%; border: none; background: transparent;
    font-size: 16px; font-weight: 600; color: var(--black);
    outline: none; font-family: 'Inter', sans-serif; -webkit-appearance: none; appearance: none;
}

.route-divider { display: flex; align-items: center; gap: 12px; margin: 2px 0; }
.route-line { flex: 1; height: 1px; background: #e8e8e8; }
.swap-btn {
    background: var(--black); color: var(--white); border: none;
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.swap-btn:hover { transform: rotate(180deg); }

.options-row { display: flex; gap: 8px; margin-bottom: 12px; }
.option-btn {
    flex: 1; padding: 11px; text-align: center; border-radius: 14px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    background: var(--light); color: var(--gray); transition: all .2s; user-select: none;
}
.option-btn.active { background: var(--black); color: var(--white); }

.time-row { display: flex; gap: 8px; margin-bottom: 12px; }
.time-row .field { flex: 1; }

.passengers-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding: 12px 18px; background: var(--light); border-radius: 16px;
}
.passengers-row > span { font-size: 14px; font-weight: 600; }
.passengers-btns { display: flex; gap: 6px; }
.pass-btn {
    width: 38px; height: 38px; border-radius: 12px;
    border: 2px solid #e0e0e0; background: var(--white);
    font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s;
}
.pass-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.btn-next {
    width: 100%; padding: 17px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black); border: none; border-radius: 18px;
    font-size: 16px; font-weight: 800; cursor: pointer; transition: all .2s;
    font-family: 'Inter', sans-serif; box-shadow: 0 6px 20px var(--yellow-glow);
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--yellow-glow); }
.btn-back {
    background: none; border: none; font-size: 14px; color: var(--gray);
    cursor: pointer; margin-bottom: 20px; font-family: 'Inter', sans-serif;
    display: flex; align-items: center; gap: 6px; font-weight: 500;
}
.btn-back:hover { color: var(--black); }

.phone-row { display: flex; gap: 8px; align-items: center; }
.phone-row input { flex: 1; }
.btn-sms {
    background: var(--black); color: var(--white); border: none;
    padding: 9px 14px; border-radius: 12px; font-size: 13px; font-weight: 700;
    cursor: pointer; white-space: nowrap; font-family: 'Inter', sans-serif; transition: opacity .2s;
}
.btn-sms:disabled { opacity: 0.4; cursor: default; }

.sms-hint { font-size: 12px; color: var(--gray); margin-top: 8px; }
.sms-timer { font-size: 12px; color: var(--gray); margin-top: 8px; }
.sms-timer strong { color: var(--black); }
.sms-resend { margin-top: 8px; }
.btn-resend {
    background: none; border: 1px solid #ddd; color: var(--gray);
    padding: 7px 14px; border-radius: 10px; font-size: 13px;
    cursor: pointer; font-family: 'Inter', sans-serif; transition: all .2s;
}
.btn-resend:hover { border-color: var(--black); color: var(--black); }

.success-icon { font-size: 52px; text-align: center; margin-bottom: 12px; }
.order-step h3 { font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.order-step > p { text-align: center; color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.order-summary { background: var(--light); border-radius: 16px; padding: 16px; margin-bottom: 20px; font-size: 14px; line-height: 1.8; }
.terms-link { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }
.terms-link a { color: var(--gray); cursor: pointer; text-decoration: underline; }

/* ── HOW ── */
.how { background: var(--black); padding: 120px 24px; position: relative; overflow: hidden; }
.how::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(247,201,72,0.08) 0%, transparent 70%); pointer-events: none;
}
.how-inner { max-width: 1000px; margin: 0 auto; position: relative; }
.how h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 900; color: var(--white); text-align: center; margin-bottom: 72px; letter-spacing: -1.5px; }
.how-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.how-step { padding: 0 12px; }
.how-num {
    font-size: 64px; font-weight: 900;
    background: linear-gradient(135deg, var(--yellow) 0%, rgba(247,201,72,0.4) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 16px;
}
.how-step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.how-step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.how-arrow { font-size: 24px; color: var(--yellow); padding-top: 20px; opacity: 0.5; }

/* ── FEATURES ── */
.features { padding: 120px 24px; background: var(--light); }
.features-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
    background: var(--white); border-radius: 28px; padding: 36px 24px;
    transition: transform .3s, box-shadow .3s; border: 1px solid transparent;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: rgba(247,201,72,0.3); }
.feature-ico {
    width: 56px; height: 56px; border-radius: 18px; background: var(--black);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform .3s;
}
.feature:hover .feature-ico { transform: scale(1.1); }
.feature-ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* ── APP SOON ── */
.app-soon { padding: 120px 24px; background: var(--white); position: relative; overflow: hidden; }
.app-soon::before {
    content: ''; position: absolute; bottom: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(247,201,72,0.06) 0%, transparent 70%);
}
.app-soon-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.app-soon-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff8e0; border: 1px solid rgba(247,201,72,0.4); color: #a07800; padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.app-soon h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.app-soon p { font-size: 16px; color: var(--gray); line-height: 1.65; margin-bottom: 36px; }
.app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn { display: flex; align-items: center; gap: 14px; background: var(--black); color: var(--white); padding: 16px 24px; border-radius: 18px; opacity: 0.35; cursor: default; position: relative; }
.app-store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.asb-sub { font-size: 11px; opacity: 0.7; }
.asb-name { font-size: 16px; font-weight: 700; }
.soon-tag { position: absolute; top: -10px; right: -10px; background: var(--yellow); color: var(--black); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 50px; }
.app-soon-right { display: flex; justify-content: center; }
.qr-box { background: var(--light); border-radius: 28px; padding: 32px; text-align: center; border: 1px solid #eee; transition: transform .3s; }
.qr-box:hover { transform: translateY(-4px); }
.qr-box img { width: 180px; height: 180px; display: block; margin: 0 auto 20px; border-radius: 16px; }
.qr-box strong { display: block; font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.qr-box p { font-size: 13px; color: var(--gray); }

/* ── DRIVER ── */
.driver { padding: 120px 24px; background: var(--black); position: relative; overflow: hidden; }
.driver::after {
    content: ''; position: absolute; bottom: -150px; left: -150px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(247,201,72,0.07) 0%, transparent 70%);
}
.driver-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.driver-badge { display: inline-block; background: rgba(247,201,72,0.12); border: 1px solid rgba(247,201,72,0.25); color: var(--yellow); padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.driver-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -1px; }
.driver-text > p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 28px; line-height: 1.65; }
.driver-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.driver-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.8); }
.driver-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--yellow); }
.btn-yellow {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black); padding: 17px 36px; border-radius: 18px;
    font-size: 15px; font-weight: 800; text-decoration: none;
    transition: all .3s; box-shadow: 0 8px 24px var(--yellow-glow); cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 14px 40px var(--yellow-glow); }

.driver-card { background: #161616; border-radius: 28px; padding: 28px; border: 1px solid rgba(255,255,255,0.07); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.driver-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.driver-online { font-size: 13px; color: #4ade80; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
.dco-row { display: flex; gap: 12px; align-items: center; padding: 14px; background: rgba(255,255,255,0.04); border-radius: 14px; margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.dco-row svg { width: 18px; height: 18px; flex-shrink: 0; }
.dco-price { font-size: 14px; color: rgba(255,255,255,0.5); margin: 16px 0 4px; }
.dco-price-note { font-size: 20px; font-weight: 800; color: var(--yellow); margin-bottom: 16px; }
.driver-card-btns { display: flex; gap: 10px; }
.dcb-accept { flex: 1; background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%); color: var(--black); border: none; padding: 15px; border-radius: 16px; font-size: 14px; font-weight: 800; cursor: pointer; font-family: 'Inter', sans-serif; }
.dcb-reject { width: 52px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border: none; border-radius: 16px; font-size: 16px; cursor: pointer; }

/* ── CONTACTS ── */
.contacts { padding: 120px 24px; background: var(--light); }
.contacts-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.contacts-inner h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; margin-bottom: 8px; letter-spacing: -1.5px; }
.contacts-hours { font-size: 15px; color: var(--gray); margin-bottom: 52px; }
.contacts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; background: var(--white); border-radius: 24px; padding: 20px; text-decoration: none; transition: all .3s; border: 1px solid transparent; }
.contact-item:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,0.08); border-color: rgba(247,201,72,0.3); }
.ci-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 24px; height: 24px; }
.ci-icon.tg, .ci-icon.bot { background: #e8f4fd; }
.ci-icon.tg svg, .ci-icon.bot svg { color: #2196F3; }
.ci-icon.mail { background: #fde8e8; }
.ci-icon.mail svg { color: #e53935; }
.ci-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ci-icon.ig svg { color: white; }
.ci-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; text-align: left; }
.ci-sub { font-size: 12px; color: var(--gray); text-align: left; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 56px 24px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; cursor: pointer; }
.footer-links a:hover { color: var(--yellow); }

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 99;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--black); color: var(--white); border: none; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: all .3s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-4px); background: var(--yellow); color: var(--black); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── POPUP ── */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 200; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.popup-overlay.open { display: flex; }
.popup { background: var(--white); border-radius: 32px; padding: 44px; max-width: 520px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; }
.popup h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.popup-sub { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.popup p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.popup-close { position: absolute; top: 20px; right: 20px; background: var(--light); border: none; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.popup-close:hover { background: #e0e0e0; }

/* Driver register form */
.dreg-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.dreg-field label { font-size: 12px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.dreg-field input, .dreg-field select {
    padding: 14px 16px; border: 2px solid #eee; border-radius: 14px;
    font-size: 15px; font-weight: 500; font-family: 'Inter', sans-serif;
    outline: none; transition: border-color .2s; -webkit-appearance: none;
}
.dreg-field input:focus, .dreg-field select:focus { border-color: var(--yellow); }
.dreg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 96px; gap: 32px; }
    .hero-right { order: -1; }
    .how-steps { grid-template-columns: 1fr; gap: 8px; }
    .how-arrow { transform: rotate(90deg); text-align: center; padding: 0; }
    .features-inner { grid-template-columns: 1fr 1fr; }
    .app-soon-inner { grid-template-columns: 1fr; gap: 40px; }
    .driver-inner { grid-template-columns: 1fr; gap: 40px; }
    .driver-visual { display: none; }
    .contacts-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-logo img { height: 52px; }
    .nav-driver-btn { font-size: 12px; padding: 9px 14px; }
    .nav-login { font-size: 12px; padding: 9px 14px; }
    .nav-login-icon { display: none; }
    .features-inner { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
    .order-card { padding: 24px; }
    .dreg-row { grid-template-columns: 1fr; }
}