/* =============================================================
   BUSTRAVEL — тема оформлення (темний преміум + помаранчевий)
   ============================================================= */

:root {
    --bg:            #0b0d12;
    --bg-alt:        #10131b;
    --surface:       #151926;
    --surface-2:     #1b2030;
    --line:          rgba(255, 255, 255, .08);
    --text:          #eef1f7;
    --muted:         #98a1b3;

    --accent:        #ff7a18;
    --accent-2:      #ffb03a;
    --accent-soft:   rgba(255, 122, 24, .14);
    --gradient:      linear-gradient(120deg, #ff7a18 0%, #ffb03a 100%);

    --radius:        18px;
    --radius-lg:     26px;
    --shadow:        0 24px 60px rgba(0, 0, 0, .45);
    --shadow-accent: 0 16px 40px rgba(255, 122, 24, .28);
}

/* ---------- Базові стилі ---------- */
* { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom);
}

h1, h2, h3, h4, h5, h6, .brand-text { font-family: 'Unbounded', 'Manrope', sans-serif; font-weight: 700; letter-spacing: -.02em; }

a { text-decoration: none; color: inherit; transition: color .25s ease; }
img { max-width: 100%; height: auto; }

::selection { background: var(--accent); color: #0b0d12; }

.text-muted-soft { color: var(--muted) !important; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.link-accent { color: var(--accent-2); border-bottom: 1px dashed rgba(255, 176, 58, .5); }
.link-accent:hover { color: #fff; }
.fi { font-size: 1.05em; line-height: 1; }

/* ---------- Прелоадер ---------- */
.page-loader {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center;
    background: var(--bg);
    transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: min(220px, 60vw); height: auto; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.12); opacity: 1; } }

.skip-link { position: absolute; top: 12px; left: 12px; z-index: 1100; background: var(--accent); color: #10131b; padding: .5rem 1rem; border-radius: 10px; }

/* ---------- Кнопки ---------- */
.btn {
    --bs-btn-focus-box-shadow: none;
    border-radius: 999px;
    font-weight: 700;
    padding: .72rem 1.5rem;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-lg { padding: .95rem 1.9rem; font-size: 1rem; }

.btn-accent { background: var(--gradient); color: #14161d; box-shadow: var(--shadow-accent); }
.btn-accent:hover { color: #14161d; transform: translateY(-2px); box-shadow: 0 20px 46px rgba(255, 122, 24, .4); }

.btn-ghost { background: rgba(255, 255, 255, .04); color: var(--text); border: 1px solid var(--line); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .09); color: #fff; transform: translateY(-2px); }

.btn-outline-accent { border: 1px solid rgba(255, 122, 24, .45); color: var(--accent-2); background: transparent; padding: .5rem 1.1rem; }
.btn-outline-accent:hover { background: var(--accent); color: #14161d; border-color: var(--accent); }

/* ---------- Верхня панель + навігація ---------- */
.topbar { background: #070910; border-bottom: 1px solid var(--line); font-size: .875rem; padding: .55rem 0; }
.topbar-note { color: var(--muted); }
.topbar-link { color: var(--text); font-weight: 600; }
.topbar-link:hover { color: var(--accent-2); }

.site-nav {
    position: sticky; top: 0; z-index: 1030;
    padding: .9rem 0;
    background: rgba(11, 13, 18, .72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: padding .3s ease, background .3s ease, border-color .3s ease;
}
.site-nav.is-stuck { padding: .55rem 0; background: rgba(9, 11, 16, .94); border-bottom-color: var(--line); box-shadow: 0 14px 40px rgba(0, 0, 0, .35); }

.navbar-brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand-logo {
    height: 52px; width: auto; flex: none;
    filter: drop-shadow(0 6px 18px rgba(255, 122, 24, .28));
    transition: transform .3s ease, height .3s ease;
}
.navbar-brand:hover .brand-logo { transform: translateX(4px); }
.site-nav.is-stuck .brand-logo { height: 46px; }
@media (max-width: 575.98px) { .brand-logo { height: 46px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; font-size: 1.2rem; color: #fff; }
.brand-text span { color: var(--accent-2); }
.brand-text small { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.site-nav .nav-link { color: var(--muted); font-weight: 600; padding: .5rem 1rem !important; border-radius: 999px; position: relative; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: #fff; background: rgba(255, 255, 255, .05); }
.site-nav .nav-link.active::after {
    content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
    width: 18px; height: 2px; border-radius: 2px; background: var(--gradient);
}

.navbar-toggler { border: 1px solid var(--line); border-radius: 12px; padding: .5rem .65rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.toggler-bar + .toggler-bar { margin-top: 5px; }

@media (max-width: 991.98px) {
    .navbar-collapse { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; margin-top: 1rem; }
    .nav-actions { margin-top: .75rem; }
    .nav-actions .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6.5rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.hero-glow-1 { width: 520px; height: 520px; background: rgba(255, 122, 24, .35); top: -160px; right: -120px; }
.hero-glow-2 { width: 460px; height: 460px; background: rgba(58, 120, 255, .18); bottom: -200px; left: -140px; }
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 72%);
}
.hero-road {
    position: absolute; left: 0; right: 0; bottom: 8%; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 176, 58, .5) 0 26px, transparent 26px 52px);
    animation: road 3.5s linear infinite; opacity: .45;
}
@keyframes road { to { background-position-x: -52px; } }

.hero-watermark {
    position: absolute; right: -3%; bottom: 4%;
    width: min(720px, 58%); height: auto;
    opacity: .07; pointer-events: none; user-select: none;
}
@media (max-width: 991.98px) { .hero-watermark { width: 90%; right: -8%; bottom: 8%; opacity: .05; } }

.pill {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
    background: var(--accent-soft); border: 1px solid rgba(255, 122, 24, .28);
    color: var(--accent-2); font-size: .85rem; font-weight: 700;
}

.hero-title { font-size: clamp(2.1rem, 5vw, 3.55rem); line-height: 1.12; margin-bottom: 1.35rem; }
.hero-title span { display: block; }
.hero-lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--muted); max-width: 34rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.25rem; }

.hero-badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
.hero-badges li { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-weight: 600; font-size: .92rem; }
.hero-badges i { color: var(--accent-2); }

.scroll-hint {
    position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
    color: var(--muted); font-size: 1.5rem; animation: bounce 2s ease-in-out infinite;
}
.scroll-hint:hover { color: var(--accent-2); }
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ---------- Картка пошуку ---------- */
.search-card {
    background: linear-gradient(180deg, rgba(27, 32, 48, .95), rgba(19, 23, 35, .95));
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 1.85rem; box-shadow: var(--shadow); position: relative;
}
.search-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: linear-gradient(140deg, rgba(255, 122, 24, .55), transparent 45%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.search-card-head { margin-bottom: 1.35rem; }
.search-note { margin-top: 1.1rem; font-size: .82rem; color: var(--muted); }

/* ---------- Поля форм ---------- */
.form-label { font-size: .84rem; font-weight: 700; color: var(--muted); margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .04em; }
.form-control, .form-select {
    background: rgba(255, 255, 255, .04); border: 1px solid var(--line); color: var(--text);
    border-radius: 14px; padding: .78rem 1rem; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, .06); color: var(--text);
    border-color: rgba(255, 122, 24, .6); box-shadow: 0 0 0 4px rgba(255, 122, 24, .14);
}
.form-control::placeholder { color: rgba(152, 161, 179, .7); }
.form-select option { background: var(--surface); color: var(--text); }
.form-check-input { background-color: rgba(255, 255, 255, .06); border-color: var(--line); }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(255, 122, 24, .14); border-color: rgba(255, 122, 24, .6); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.6); cursor: pointer; }

.form-result { border-radius: 14px; padding: .95rem 1.15rem; font-weight: 600; }
.form-result.is-ok { background: rgba(46, 196, 128, .12); border: 1px solid rgba(46, 196, 128, .35); color: #7ee2b0; }
.form-result.is-error { background: rgba(255, 82, 82, .1); border: 1px solid rgba(255, 82, 82, .32); color: #ff9c9c; }

/* ---------- Секції ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section-head { max-width: 44rem; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); text-align: center; }
.section-head.text-start { margin-inline: 0; }
.eyebrow { display: inline-block; margin-bottom: .8rem; color: var(--accent-2); font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.section-title { font-size: clamp(1.65rem, 3.4vw, 2.5rem); line-height: 1.2; margin-bottom: 1rem; }
.section-lead { color: var(--muted); margin-bottom: 0; }

/* ---------- Картки маршрутів ---------- */
.route-card {
    position: relative; height: 100%; padding: 1.6rem;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    overflow: hidden;
}
.route-card:hover { transform: translateY(-6px); border-color: rgba(255, 122, 24, .38); box-shadow: var(--shadow); }
.route-card::after {
    content: ''; position: absolute; inset: auto -30% -60% auto; width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255, 122, 24, .16), transparent 65%); opacity: 0; transition: opacity .3s ease;
}
.route-card:hover::after { opacity: 1; }
.route-tag {
    position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
    background: var(--gradient); color: #14161d; font-size: .72rem; font-weight: 800;
    padding: .2rem .7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.route-flag { font-size: 1.7rem; margin-bottom: 1rem; }
.route-path { position: relative; z-index: 1; }
.route-point { display: flex; align-items: flex-start; gap: .8rem; }
.route-point small { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.route-point strong { font-size: 1.05rem; }
.route-point .dot { width: 12px; height: 12px; margin-top: .55rem; border-radius: 50%; border: 2px solid var(--accent); flex: none; }
.route-point .dot-end { background: var(--accent); }
.route-line { position: relative; margin: .35rem 0 .35rem .32rem; height: 34px; border-left: 2px dashed rgba(255, 255, 255, .16); padding-left: 1.2rem; color: var(--muted); display: flex; align-items: center; }
.route-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.15rem 0; color: var(--muted); font-size: .9rem; position: relative; z-index: 1; }
.route-meta i { color: var(--accent-2); margin-right: .35rem; }
.route-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.route-price { font-family: 'Unbounded', sans-serif; font-size: 1.2rem; color: #fff; }

/* ---------- Показники ---------- */
.stats-strip { padding: clamp(2rem, 4vw, 3rem) 0; background: linear-gradient(120deg, rgba(255, 122, 24, .12), rgba(255, 176, 58, .05)); border-block: 1px solid var(--line); }
.stat-value { display: block; font-family: 'Unbounded', sans-serif; font-size: clamp(1.8rem, 4vw, 2.7rem); background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: .92rem; }

/* ---------- Розклад ---------- */
.timeline-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; height: 100%; }
.timeline-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.timeline-head .fi { font-size: 1.8rem; }
.timeline { list-style: none; margin: 0; padding: 0 0 0 1.4rem; border-left: 2px dashed rgba(255, 255, 255, .14); }
.timeline li { position: relative; display: flex; align-items: baseline; gap: 1rem; padding: .6rem 0; }
.timeline li::before {
    content: ''; position: absolute; left: -1.85rem; top: 1.05rem;
    width: 10px; height: 10px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent);
}
.timeline li:hover::before { background: var(--accent); box-shadow: 0 0 0 5px rgba(255, 122, 24, .16); }
.tl-time { font-family: 'Unbounded', sans-serif; font-size: .95rem; color: var(--accent-2); min-width: 4.2rem; }
.tl-city { font-weight: 600; }

.notice { display: flex; gap: .9rem; align-items: flex-start; margin-top: 2rem; padding: 1.1rem 1.3rem; border-radius: var(--radius); background: rgba(255, 255, 255, .03); border: 1px solid var(--line); color: var(--muted); }
.notice i { color: var(--accent-2); font-size: 1.2rem; }

/* ---------- Переваги ---------- */
.feature-card { height: 100%; padding: 1.75rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255, 122, 24, .35); background: var(--surface-2); }
.feature-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.1rem; border-radius: 16px; background: var(--accent-soft); color: var(--accent-2); font-size: 1.5rem; }
.feature-card:hover .feature-icon { background: var(--gradient); color: #14161d; }

/* ---------- Автопарк ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; padding: .42rem 0; color: var(--muted); }
.check-list i { color: var(--accent-2); font-weight: 800; }

.fleet-visual { position: relative; padding-top: 1.9rem; }
.fleet-card { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.fleet-card img { display: block; margin: 0 auto 1.4rem; }
.fleet-logo { width: 100%; max-width: 480px; height: auto; filter: drop-shadow(0 18px 40px rgba(255, 122, 24, .18)); }
.fleet-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.fleet-specs strong { display: block; font-family: 'Unbounded', sans-serif; font-size: 1.25rem; color: var(--accent-2); }
.fleet-specs small { color: var(--muted); }
.fleet-float {
    position: absolute; right: 1.4rem; top: 0; display: flex; align-items: center; gap: .8rem; z-index: 2;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: .85rem 1.15rem; box-shadow: var(--shadow);
}
.fleet-float i { color: var(--accent-2); font-size: 1.3rem; }
.fleet-float strong { display: block; line-height: 1.2; }
.fleet-float small { color: var(--muted); }

/* ---------- Кроки ---------- */
.steps-row { counter-reset: step; }
.step-card { position: relative; height: 100%; padding: 1.75rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step-card:hover { border-color: rgba(255, 122, 24, .35); }
.step-num { display: block; font-family: 'Unbounded', sans-serif; font-size: 2rem; margin-bottom: .6rem; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Відгуки ---------- */
.review-card { height: 100%; margin: 0; padding: 1.75rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.review-card:hover { border-color: rgba(255, 122, 24, .3); }
.review-stars { color: var(--accent-2); margin-bottom: 1rem; letter-spacing: .18em; }
.review-card blockquote { color: var(--text); font-size: 1.02rem; }
.review-card figcaption { display: flex; align-items: center; gap: .85rem; }
.review-avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--gradient); color: #14161d; font-weight: 800; font-family: 'Unbounded', sans-serif; }
.review-card figcaption small { display: block; color: var(--muted); }

/* ---------- Бронювання ---------- */
.booking-wrap {
    position: relative; overflow: hidden;
    background: linear-gradient(150deg, rgba(255, 122, 24, .12), rgba(21, 25, 38, .92) 45%);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow);
}
.booking-wrap > .row { position: relative; z-index: 1; }
.booking-logo { position: absolute; right: -4%; bottom: -10%; width: 420px; opacity: .05; pointer-events: none; z-index: 0; }
.booking-form .btn-accent { min-width: 220px; }
@media (max-width: 991.98px) { .booking-logo { display: none; } }

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius) !important; margin-bottom: .85rem; overflow: hidden; }
.faq-accordion .accordion-button { background: transparent; color: var(--text); font-weight: 700; font-family: 'Unbounded', sans-serif; font-size: 1rem; padding: 1.15rem 1.35rem; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--accent-2); background: rgba(255, 122, 24, .07); }
.faq-accordion .accordion-button::after { filter: invert(72%) sepia(60%) saturate(1200%) hue-rotate(340deg); }
.faq-accordion .accordion-body { color: var(--muted); padding: 0 1.35rem 1.3rem; }

/* ---------- Контакти ---------- */
.contact-card { height: 100%; padding: 2rem; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease; }
.contact-card:hover { transform: translateY(-5px); border-color: rgba(255, 122, 24, .35); }
.contact-flag { font-size: 1.9rem; display: block; margin-bottom: .75rem; }
.contact-phone { display: inline-flex; align-items: center; gap: .7rem; font-family: 'Unbounded', sans-serif; font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: #fff; }
.contact-phone i { color: var(--accent-2); }
.contact-phone:hover { color: var(--accent-2); }

.social-btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--text); font-size: 1.15rem; transition: all .25s ease; }
.social-btn:hover { background: var(--gradient); color: #14161d; transform: translateY(-3px); }

.cta-banner {
    position: relative; overflow: hidden;
    margin-top: 2.5rem; padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: var(--radius-lg); background: var(--gradient); color: #14161d;
    display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between;
}
.cta-banner .text-muted-soft { color: rgba(20, 22, 29, .72) !important; }
.cta-banner .btn-accent { background: #14161d; color: #fff; box-shadow: none; }
.cta-banner .btn-accent:hover { background: #000; color: #fff; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-logo { position: absolute; left: 46%; bottom: -22%; width: 320px; opacity: .17; pointer-events: none; z-index: 0; }
@media (max-width: 991.98px) { .cta-logo { display: none; } }

/* ---------- Футер ---------- */
.site-footer { position: relative; overflow: hidden; background: #070910; border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.site-footer .container { position: relative; z-index: 1; }
.footer-logo { position: absolute; right: -3%; top: 12%; width: 460px; opacity: .04; pointer-events: none; z-index: 0; }
@media (max-width: 991.98px) { .footer-logo { width: 320px; right: -12%; opacity: .05; } }
.footer-title { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 1.1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .6rem; }
.footer-list a { color: var(--muted); }
.footer-list a:hover { color: var(--accent-2); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; color: var(--muted); font-size: .88rem; }

/* ---------- Кнопка «наверх» і мобільний CTA ---------- */
.to-top {
    position: fixed; right: 1.1rem; bottom: 5.6rem; z-index: 1040;
    width: 46px; height: 46px; display: grid; place-items: center;
    border-radius: 14px; background: var(--gradient); color: #14161d; font-size: 1.15rem;
    box-shadow: var(--shadow-accent); opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all .3s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1035;
    display: flex; gap: .6rem; padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(9, 11, 16, .92); border-top: 1px solid var(--line); backdrop-filter: blur(14px);
}
@media (max-width: 991.98px) { body { padding-bottom: 4.8rem; } .to-top { bottom: 5.9rem; } }
@media (min-width: 992px) { .to-top { bottom: 1.5rem; } }

/* ---------- Анімації появи ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-road, .scroll-hint, .loader-bus { animation: none; }
    * { scroll-behavior: auto; }
}
