/* ── 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; }
.hero-cta-row {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
    animation: fadeUp .6s ease .5s both;
}
.hero-cta {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 48px; padding: 0 22px; border-radius: 16px;
    font-size: 14px; font-weight: 800; text-decoration: none; transition: all .25s;
}
.hero-cta.primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black); box-shadow: 0 8px 24px var(--yellow-glow);
}
.hero-cta.secondary {
    background: var(--white); color: var(--black); border: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.hero-cta:hover { transform: translateY(-2px); }

@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; }
.live-order-progress{display:grid;grid-template-columns:repeat(5,1fr);gap:6px;margin:18px 0}
.live-progress-item{position:relative;text-align:center;color:#9a9a9a;font-size:10px}
.live-progress-item:not(:first-child)::before{content:"";position:absolute;right:50%;top:14px;width:100%;height:3px;background:#e8e8e8;z-index:0}
.live-progress-item span{position:relative;z-index:1;width:30px;height:30px;border-radius:50%;background:#e8e8e8;display:flex;align-items:center;justify-content:center;margin:0 auto 6px;font-size:11px;font-weight:800;color:#777}
.live-progress-item small{display:block;font-size:9px;line-height:1.2}
.live-progress-item.done span,.live-progress-item.done:not(:first-child)::before{background:var(--yellow)}
.live-progress-item.done span{color:var(--black)}
.live-progress-item.done{color:var(--black)}
.live-driver-card{display:grid;grid-template-columns:1fr auto;gap:4px 12px;text-align:left;background:#f7f7f7;border:1px solid #ececec;border-radius:16px;padding:14px 16px;margin:12px 0}
.live-driver-card strong{font-size:15px}.live-driver-card span{font-size:12px;color:var(--gray)}
.live-driver-card a{font-size:13px;color:var(--black);font-weight:700;text-decoration:none}
.live-driver-card em{font-size:12px;color:#8a6700;font-style:normal;font-weight:700}
.live-order-actions{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;margin-top:12px}
.live-offer-price{width:100%;font-size:24px;font-weight:900;color:var(--black)}
.live-confirm-btn,.live-cancel-btn{border:0;border-radius:12px;padding:12px 18px;font:700 13px 'Inter',sans-serif;cursor:pointer}
.live-confirm-btn{background:var(--yellow);color:var(--black)}
.live-cancel-btn{background:#f1f1f1;color:#555}
.live-new-order{margin-top:14px}
.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); }

/* ── LOCAL SEO CONTENT ── */
.seo-local { padding: 100px 24px; background: #fafafa; }
.seo-local-inner { max-width: 1100px; margin: 0 auto; }
.seo-local-head { max-width: 720px; margin-bottom: 36px; }
.seo-local-head span {
    display: inline-flex; align-items: center; margin-bottom: 14px;
    color: #a07800; background: #fff8e0; border: 1px solid rgba(247,201,72,0.4);
    border-radius: 50px; padding: 7px 16px; font-size: 13px; font-weight: 800;
}
.seo-local-head h2 {
    font-size: clamp(28px, 3.5vw, 46px); line-height: 1.1;
    font-weight: 900; letter-spacing: -1px; margin-bottom: 14px;
}
.seo-local-head p { font-size: 16px; color: var(--gray); line-height: 1.7; }
.seo-local-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-local article {
    background: var(--white); border: 1px solid #eee; border-radius: 24px;
    padding: 28px; box-shadow: 0 12px 36px rgba(0,0,0,0.04);
}
.seo-local h3 { font-size: 19px; font-weight: 850; margin-bottom: 14px; }
.seo-local p { font-size: 14px; color: #555; line-height: 1.78; margin-bottom: 12px; }
.seo-local p:last-child { margin-bottom: 0; }

/* ── 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 {
    width: 100%;
    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; }
    .seo-local-grid { grid-template-columns: 1fr; }
    .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; }
    .hero-cta { width: 100%; }
    .seo-local { padding: 72px 18px; }
    .seo-local article { padding: 22px; border-radius: 20px; }
    .dreg-row { grid-template-columns: 1fr; }
}

/* TAXI 2.0 STAGE 2 — map route and live quote */
.taxi-map-shell{
    margin:14px 0 12px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    overflow:hidden;
    background:#111;
    box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.taxi-map-head{
    min-height:58px;
    padding:11px 12px 10px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:#fff;
}
.taxi-map-head strong{display:block;font-size:13px;font-weight:800;margin-bottom:2px;}
.taxi-map-head span{display:block;font-size:10px;color:rgba(255,255,255,.56);line-height:1.3;}
.taxi-point-switch{display:flex;gap:5px;background:rgba(255,255,255,.08);padding:4px;border-radius:12px;}
.taxi-point-switch button{
    width:34px;height:30px;border:0;border-radius:9px;background:transparent;color:#fff;
    font:800 12px/1 'Inter',sans-serif;cursor:pointer;transition:.18s ease;
}
.taxi-point-switch button.active{background:var(--yellow);color:#0a0a0a;box-shadow:0 5px 14px rgba(247,201,72,.25);}
#taxiOrderMap{height:245px;width:100%;background:#242424;z-index:1;}
.taxi-map-status{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding:10px 12px 12px;}
.taxi-map-status>div{
    min-width:0;display:flex;align-items:center;gap:7px;padding:8px 9px;border-radius:11px;
    background:rgba(255,255,255,.06);color:rgba(255,255,255,.72);font-size:10px;line-height:1.25;
}
.taxi-map-status span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.taxi-map-status i{width:9px;height:9px;border-radius:50%;flex:0 0 auto;}
.taxi-map-status .point-a{background:var(--yellow);box-shadow:0 0 0 4px rgba(247,201,72,.12);}
.taxi-map-status .point-b{background:#ff6b35;box-shadow:0 0 0 4px rgba(255,107,53,.12);}
.taxi-point-marker{background:transparent!important;border:0!important;}
.taxi-point-marker span{
    width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:50% 50% 50% 8px;
    transform:rotate(-45deg);color:#0a0a0a;border:3px solid #fff;box-shadow:0 8px 18px rgba(0,0,0,.3);
    font:900 12px/1 'Inter',sans-serif;
}
.taxi-point-marker span::first-letter{transform:rotate(45deg);}
.taxi-point-marker .marker-a{background:var(--yellow);}
.taxi-point-marker .marker-b{background:#ff6b35;color:#fff;}
.taxi-point-marker span{font-size:0;}
.taxi-point-marker span::after{content:attr(class);font-size:0;}
.taxi-point-marker .marker-a::before{content:'A';font-size:12px;transform:rotate(45deg);}
.taxi-point-marker .marker-b::before{content:'B';font-size:12px;transform:rotate(45deg);}
.taxi-quote{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin:0 0 12px;
    padding:11px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(247,201,72,.14),rgba(255,107,53,.10));
    border:1px solid rgba(247,201,72,.28);
}
.taxi-quote[hidden]{display:none!important;}
.taxi-quote>div{display:flex;flex-direction:column;gap:3px;}
.taxi-quote>div+div{padding-left:11px;border-left:1px solid rgba(0,0,0,.1);}
.taxi-quote span{font-size:10px;color:var(--gray);font-weight:600;}
.taxi-quote strong{font-size:15px;color:var(--black);font-weight:900;}
.taxi-map-shell .leaflet-control-attribution{font-size:8px!important;}
.taxi-map-shell .leaflet-tooltip{font-family:'Inter',sans-serif;font-size:11px;font-weight:700;border:0;border-radius:8px;}

@media(max-width:600px){
    #taxiOrderMap{height:220px;}
    .taxi-map-status{grid-template-columns:1fr;}
    .taxi-map-head span{max-width:210px;}
}
/* CODEx district + Telegram-like UI polish 2026-08-09 */
.taxi-home ::selection{background:rgba(247,201,72,.32);color:inherit}
.taxi-home input::selection,.taxi-home textarea::selection{background:rgba(66,133,244,.28);color:inherit}
.taxi-home .order-card,.taxi-home .order-card *,.taxi-home .seo-local,.taxi-home .seo-local *{text-shadow:none}
.taxi-home .order-card .field-content input::placeholder{color:rgba(21,23,27,.48)}
.taxi-home .order-card .field-content select:invalid{color:rgba(21,23,27,.56)}
.taxi-home .taxi-address-suggestions{color:#15171b;background:#fff;border:1px solid rgba(20,25,35,.12);box-shadow:0 18px 42px rgba(20,25,35,.18)}
.taxi-home .taxi-address-suggestions button{color:#15171b;background:#fff}
.taxi-home .taxi-address-suggestions button small{color:#66707d}
.taxi-home .btn-next,.taxi-home .taxi-map-confirm{touch-action:manipulation}
.taxi-home .service-switcher{border:1px solid rgba(18,22,30,.1);background:rgba(18,22,30,.055);box-shadow:inset 0 1px rgba(255,255,255,.78)}
.taxi-home .sw-btn{color:#5f6671}
.taxi-home .sw-btn.active{color:#111318;background:#fff}
.taxi-home .seo-local{background:#f6f8fb;color:#15171b}
.taxi-home .seo-local h2,.taxi-home .seo-local h3{color:#15171b}
.taxi-home .seo-local p{color:#4f5966}
.taxi-home .seo-local-head span{color:#805d00;background:#fff5cf;border-color:rgba(247,201,72,.42)}
.taxi-home .contacts{color:#fff}

@media(max-width:700px){
  body.taxi-home{background:#07090d;color:#f7f8fb}
  .taxi-home .hero{padding-top:92px;gap:12px;overflow:visible}
  .taxi-home .hero-left{order:2;margin-top:10px}
  .taxi-home .hero-right{order:1}
  .taxi-home .order-card{
    color:#f8f9fb!important;
    background:linear-gradient(145deg,rgba(29,32,39,.94),rgba(8,10,14,.92))!important;
    border-color:rgba(255,255,255,.14)!important;
    box-shadow:0 28px 70px rgba(0,0,0,.36),inset 0 1px rgba(255,255,255,.14)!important;
  }
  .taxi-home .order-card h2,.taxi-home .order-kicker{color:#fff!important}
  .taxi-home .order-card-sub{color:rgba(255,255,255,.58)!important}
  .taxi-home .field{
    color:#fff!important;
    border-color:rgba(255,255,255,.12)!important;
    background:rgba(255,255,255,.075)!important;
    box-shadow:inset 0 1px rgba(255,255,255,.08)!important;
  }
  .taxi-home .field:focus-within{background:rgba(255,255,255,.12)!important;border-color:rgba(247,201,72,.48)!important}
  .taxi-home .field-content label{color:rgba(255,255,255,.5)!important}
  .taxi-home .field-content input,.taxi-home .field-content select{
    color:#fff!important;
    caret-color:#f7c431;
  }
  .taxi-home .field-content input::placeholder{color:rgba(255,255,255,.48)!important}
  .taxi-home .field-content select option{color:#111;background:#fff}
  .taxi-home .option-btn{
    color:rgba(255,255,255,.62)!important;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.07)!important;
  }
  .taxi-home .option-btn.active{color:#111318!important;background:linear-gradient(145deg,#ffe27a,#f2bd29)!important;border-color:#f7c431}
  .taxi-home .taxi-pickup-item{
    color:#fff;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.12);box-shadow:inset 0 1px rgba(255,255,255,.08)
  }
  .taxi-home .taxi-pickup-copy small{color:rgba(255,255,255,.56)}
  .taxi-home .taxi-pickup-item>strong{color:#f7c431}
  .taxi-home .taxi-pickup-check{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.18)}
  .taxi-home .taxi-map-shell{
    background:linear-gradient(145deg,rgba(31,34,42,.95),rgba(10,12,17,.93))!important;
    border-color:rgba(255,255,255,.14)!important;
    box-shadow:inset 0 1px rgba(255,255,255,.1),0 20px 50px rgba(0,0,0,.34)!important;
  }
  .taxi-home .taxi-map-head,.taxi-home .taxi-map-head strong{color:#fff!important}
  .taxi-home #taxiMapHint{color:#ffe29a!important;background:rgba(247,201,72,.12)!important;border-color:rgba(247,201,72,.26)!important}
  .taxi-home .taxi-center-address,.taxi-home .taxi-map-status>div{
    color:#f7f8fb;background:rgba(255,255,255,.075);border-color:rgba(255,255,255,.12);box-shadow:inset 0 1px rgba(255,255,255,.08)
  }
  .taxi-home .taxi-center-address strong,.taxi-home .taxi-map-status span{color:#f7f8fb}
  .taxi-home .taxi-center-address span{color:#f7c431}
  .taxi-home .taxi-web-schedule .field{background:rgba(255,255,255,.075)!important}
  .taxi-home .taxi-web-schedule select{color:#fff!important}
  .taxi-home .taxi-address-suggestions{
    color:#fff;background:#20242d;border-color:rgba(255,255,255,.14);box-shadow:0 18px 42px rgba(0,0,0,.45)
  }
  .taxi-home .taxi-address-suggestions button{color:#fff;background:#20242d;border-color:rgba(255,255,255,.08)}
  .taxi-home .taxi-address-suggestions button small{color:rgba(255,255,255,.55)}
  .taxi-home .seo-local,.taxi-home .app-soon{
    background:#f4f7fb!important;color:#15171b!important;
  }
  .taxi-home .seo-local h2,.taxi-home .seo-local h3,.taxi-home .app-soon h2{color:#15171b!important}
  .taxi-home .seo-local p,.taxi-home .app-soon p{color:#4f5966!important}
  .taxi-home .seo-local article,.taxi-home .qr-box{background:#fff!important;color:#15171b!important}
  .taxi-home .support-note{color:#6f560f!important;background:#fff6d9!important}
}

/* CODEx hero long district heading guard 2026-08-09 */
.taxi-home .hero-left{min-width:0}
.taxi-home .hero h1{max-width:100%;overflow-wrap:normal;word-break:normal;text-wrap:balance}
.taxi-home .hero h1 .accent{display:inline;overflow-wrap:normal;word-break:normal}
@media (max-width:1180px){
  .taxi-home .hero h1{font-size:clamp(3rem,7.2vw,5.4rem);line-height:.94}
}
@media (max-width:700px){
  .taxi-home .hero h1{font-size:clamp(3rem,15vw,4.5rem);line-height:.92}
  .taxi-home .hero h1 .accent{display:block}
}

/* CODEx hero district no-overlap final 2026-08-09 */
.taxi-home .hero h1{font-size:clamp(3.2rem,5.25vw,5rem)!important;line-height:.94!important;letter-spacing:0!important}
.taxi-home .hero h1 .accent{display:inline-block;max-width:100%;font-size:.86em}
@media (max-width:700px){
  .taxi-home .hero h1{font-size:clamp(2.7rem,13vw,4rem)!important;line-height:.95!important}
  .taxi-home .hero h1 .accent{display:block;font-size:.82em}
}

/* 2026-08-10 responsive and contrast fixes */
.nav-phone{margin-left:4px;color:#17191d;text-decoration:none;font-size:13px;font-weight:800;white-space:nowrap}
.contacts h2,.contacts-inner h2{color:#15171b!important;text-shadow:none!important}
.contacts-hours{color:#5b616a!important}
.app-soon,.app-soon h2,.app-soon p,.qr-box,.qr-box p{color:#15171b!important;text-shadow:none!important}
.app-store-btn{opacity:1!important;background:#17191d!important;color:#fff!important}
.app-store-btn .soon-tag{color:#15171b!important}
.popup h3{color:#15171b!important;text-shadow:none!important}
.popup-sub{color:#666d76!important}
.dreg-code-btn{min-height:48px;padding:0 18px;border:0;border-radius:14px;background:#15171b;color:#fff;font-weight:800;cursor:pointer}
.dreg-code-btn:disabled{opacity:.55;cursor:wait}
.dreg-verify-row{display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:end;margin-bottom:6px}
.dreg-code-note{margin:6px 0 16px!important;color:#5f6670!important;font-size:12px!important;line-height:1.45}
.current-order-notice{display:grid;gap:10px;margin:-4px 0 20px;padding:18px;border:1px solid rgba(247,196,49,.48);border-radius:18px;background:#fff8dc;color:#15171b}
.current-order-notice span{font-size:13px;line-height:1.55;color:#5d626b}.current-order-notice a{width:max-content;padding:11px 16px;border-radius:12px;background:#15171b;color:#fff;text-decoration:none;font-size:13px;font-weight:800}
.taxi-home .order-options{align-items:stretch}
.taxi-home .option-btn{min-width:0}
@media(max-width:1050px){.nav-phone{display:none}}
@media(max-width:700px){
  .taxi-home .hero-stats{display:grid!important;grid-template-columns:1fr 1.15fr 1fr!important;gap:10px!important;align-items:start!important}
  .taxi-home .hero-stats .stat{min-width:0!important}.taxi-home .hero-stats .stat-num{font-size:clamp(20px,7vw,31px)!important;line-height:1.08!important;overflow-wrap:anywhere}
  .taxi-home .hero-stats .stat-label{font-size:11px!important;line-height:1.25!important}.taxi-home .stat-divider{height:54px!important}
  .taxi-home .order-card{padding:18px 14px!important}.taxi-home .route-fields{grid-template-columns:1fr!important}
  .taxi-home .order-options{display:grid!important;grid-template-columns:1fr 1fr!important}.taxi-home .order-options>*{min-width:0!important;width:100%!important}
  .dreg-verify-row{grid-template-columns:1fr}.popup{padding:32px 20px!important}.popup h3{padding-right:44px}
}
