@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --primary-light: #FFF3B0;
    /* Цвет для текста/иконок на светлом фоне: контраст ≥ 4.5:1 (WCAG AA) */
    --primary-on-light: #8B6914;
    --primary-glow: rgba(255, 215, 0, 0.35);
    --secondary: #0D0D0D;
    --secondary-light: #1A1A1A;
    --secondary-dark: #000000;
    --text-dark: #0D0D0D;
    --text-light: #FFFFFF;
    --text-muted: #71717A;
    --background: #FFFFFF;
    --background-alt: #FAFAFA;
    --border: #E4E4E7;
    --success: #22C55E;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --space-section-y: clamp(30px, 4vw, 54px);
    --space-section-y-mobile: 22px;
    --space-hero-y: clamp(64px, 8vw, 86px);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

/* Защита от горизонтального "вылета" на мобильных */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

/* Якорь #booking не перекрывается шапкой при переходе «Записаться» */
#booking {
    scroll-margin-top: 88px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFEFB 48%, #FFFEF8 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Лёгкая зернистость фона */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
    background: var(--primary-light);
    color: var(--secondary);
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(34px);
    opacity: 0.16;
    will-change: transform;
}

.ambient-blob-1 {
    width: 44vw;
    height: 44vw;
    min-width: 360px;
    min-height: 360px;
    left: -10vw;
    top: -8vh;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.55) 0%, rgba(255, 220, 50, 0.28) 30%, rgba(255, 215, 0, 0.12) 50%, rgba(255, 215, 0, 0.04) 75%, rgba(255, 215, 0, 0) 100%);
    animation: ambientFloat1 22s ease-in-out infinite;
}

.ambient-blob-2 {
    width: 36vw;
    height: 36vw;
    min-width: 300px;
    min-height: 300px;
    right: -12vw;
    top: 24vh;
    background: radial-gradient(circle at 60% 40%, rgba(255, 193, 7, 0.48) 0%, rgba(255, 205, 40, 0.25) 35%, rgba(255, 200, 20, 0.12) 55%, rgba(255, 195, 10, 0.04) 75%, rgba(255, 193, 7, 0) 100%);
    animation: ambientFloat2 26s ease-in-out infinite;
}

.ambient-blob-3 {
    width: 40vw;
    height: 40vw;
    min-width: 320px;
    min-height: 320px;
    left: 28vw;
    bottom: -24vh;
    background: radial-gradient(circle at 50% 50%, rgba(255, 235, 149, 0.36) 0%, rgba(255, 228, 120, 0.2) 35%, rgba(255, 222, 100, 0.1) 55%, rgba(255, 235, 149, 0.03) 80%, rgba(255, 235, 149, 0) 100%);
    animation: ambientFloat3 24s ease-in-out infinite;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(to right, rgba(255, 215, 0, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 215, 0, 0.07) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.08) 75%, transparent 100%);
    animation: ambientGridShift 18s linear infinite;
}

@keyframes ambientFloat1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(8vw, 5vh, 0) scale(1.05); }
}

@keyframes ambientFloat2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-7vw, -4vh, 0) scale(1.08); }
}

@keyframes ambientFloat3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(5vw, -6vh, 0) scale(1.06); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes shineSweep {
    0% { transform: translateX(-100%) skewX(-12deg); }
    100% { transform: translateX(200%) skewX(-12deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px -4px var(--primary-glow); }
    50% { box-shadow: 0 0 28px -2px var(--primary-glow); }
}

@keyframes ambientGridShift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(54px, 54px, 0); }
}

h1, h2, h3, h4 {
    text-wrap: balance;
}

p, li {
    text-wrap: pretty;
}

/* Доступность: контрастный фокус для навигации с клавиатуры (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* На тёмном фоне (шапка, подвал, hero) — светлое кольцо фокуса */
.header a:focus-visible,
.header button:focus-visible,
.footer a:focus-visible,
.page-hero a:focus-visible,
.page-hero button:focus-visible,
.station-hero a:focus-visible,
.btn-secondary:focus-visible {
    outline-color: var(--primary);
}

/* Кнопки: дополнительная видимость фокуса */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.header .btn:focus-visible,
.btn-secondary:focus-visible {
    outline-color: var(--primary);
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 2000;
    background: transparent;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #FFE168 0%, #FFE050 30%, #FFD700 50%, #F8CC00 70%, #F4C900 100%);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.55);
    transition: width 0.08s linear;
}

.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0.12) 20%, rgba(255, 215, 0, 0.06) 45%, rgba(255, 215, 0, 0.02) 60%, rgba(255, 215, 0, 0) 70%);
    filter: blur(6px);
    transition: opacity 0.22s ease;
}

.preloader {
    position: fixed;
    inset: 0;
    background: #080808;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #FFFFFF;
}

.preloader-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.preloader-title span {
    color: var(--primary);
}

.preloader-line {
    width: 180px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #FFE168 0%, #FFE050 40%, #FFD700 70%, #F4C900 100%);
    border-radius: 999px;
    animation: preloaderRun 1s ease-in-out infinite;
}

@keyframes preloaderRun {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(230%); }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(8px, 1.2vw, 14px);
}

/* Buttons - Minimal Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    min-height: 44px;
    min-width: 120px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFE46E 0%, #FFDF45 42%, #FFD700 100%);
    color: var(--secondary);
    box-shadow: 0 8px 18px -14px var(--primary-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.12) 35%, rgba(255,255,255,0.35) 48%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.35) 52%, rgba(255,255,255,0.12) 65%, transparent 100%);
    transform: translateX(-100%) skewX(-12deg);
    pointer-events: none;
}

.btn-primary:hover::after {
    animation: shineSweep 0.6s var(--ease-out-expo) forwards;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFE988 0%, #FFE35E 40%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -14px var(--primary-glow);
}

.btn-secondary {
    background: linear-gradient(180deg, #1B1B1B 0%, #141414 50%, var(--secondary) 100%);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #A1A1AA;
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--secondary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 24px;
    font-size: 15px;
}

/* Sections */
.section {
    padding: var(--space-section-y) 0;
    margin-bottom: 0;
}

/* Ускоряем отрисовку длинной главной: отложенная отрисовка секций ниже первого экрана */
.home-page main > .section {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.home-page main > .hero.section,
.home-page main > .booking-widget-section.section {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}

/* Градиентная полоса между hero и контентом */
.features.section::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.12) 8%, rgba(255, 215, 0, 0.35) 25%, var(--primary) 50%, rgba(255, 215, 0, 0.35) 75%, rgba(255, 215, 0, 0.12) 92%, transparent 100%);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(30px, 4.2vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.section-title::after {
    content: '';
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.5) 25%, rgba(255, 215, 0, 0.95) 50%, rgba(255, 215, 0, 0.5) 75%, rgba(255, 215, 0, 0.2) 100%);
    display: block;
    margin: 2px auto 0;
    transform-origin: center;
    transition: transform 0.6s var(--ease-out-expo);
}

.reveal-on-scroll .section-title::after {
    transform: scaleX(0);
}

.reveal-on-scroll.is-visible .section-title::after {
    transform: scaleX(1);
}

.section-subtitle {
    font-size: clamp(16px, 2.1vw, 18px);
    line-height: 1.7;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: clamp(18px, 4vw, 34px);
    font-weight: 400;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards - Minimal Style */
.card {
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transform-style: preserve-3d;
    will-change: transform;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 14px 26px -18px rgba(0, 0, 0, 0.22), 0 8px 24px -18px rgba(255, 215, 0, 0.42), 0 0 0 1px rgba(255, 215, 0, 0.2);
    transform: translateY(-4px) scale(1.01);
}

.highlight {
    color: var(--primary-on-light);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--secondary);
    color: var(--primary);
    letter-spacing: 0.02em;
}

/* Header - Minimal Style */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.header .container {
    max-width: min(1460px, 98vw);
}

.header-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    height: 72px;
    gap: 14px;
    transition: min-height 0.22s ease, height 0.22s ease, padding 0.22s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: width 0.22s ease, height 0.22s ease;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
}

.logo-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.01em;
    line-height: 1.1;
    white-space: nowrap;
    transition: font-size 0.22s ease;
}

.logo-number {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFF4A3 0%, #FFE050 35%, var(--primary) 50%, #F0C800 65%, #E6C200 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: none;
    transition: font-size 0.22s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    flex: none;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav::-webkit-scrollbar { display: none; }

.nav-link {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 8px 16px -12px var(--primary-glow);
}

.header-phones {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.header-phone,
.header-phone:visited {
    color: var(--secondary);
}

.header-phone span {
    white-space: nowrap;
}

/* Промежуточные десктоп-экраны: убираем "плывущую" шапку до mobile-breakpoint */
@media (max-width: 1320px) and (min-width: 1025px) {
    .header .container {
        max-width: min(1360px, 100vw);
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-content {
        min-height: 72px;
        height: auto;
        padding: 6px 0;
        gap: 8px;
    }

    .logo {
        gap: 8px;
    }

    .logo-name {
        font-size: 13px;
    }

    .nav {
        justify-content: flex-start;
        gap: 4px;
    }

    .nav-link {
        padding: 7px 9px;
        font-size: 12px;
        min-height: 36px;
    }

    .header-phones {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .header-phone {
        justify-content: center;
        padding: 5px 9px;
        font-size: 10px;
        min-height: 30px;
    }

    .header-phone svg {
        display: none;
    }

    .header-phone-alt {
        display: inline-flex;
    }
}

.header-phone:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.header-phone-alt {
    background: var(--primary);
    color: var(--secondary);
    border: none;
}

.header-phone-alt:hover {
    background: var(--primary-dark);
}

.header-phone-alt,
.header-phone-alt:visited {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero - Minimal Style */
.hero {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.035) 0%, rgba(255, 215, 0, 0.012) 34%, transparent 62%),
        linear-gradient(90deg, #0b0b0b 0%, #0b0b0b 52%, #0d0d0d 78%, #111109 100%);
    padding: clamp(72px, 8.5vw, 96px) 0;
    margin-bottom: 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -48%;
    right: -32%;
    width: min(72vw, 760px);
    height: min(72vw, 760px);
    background: radial-gradient(circle at 36% 48%, rgba(255, 215, 0, 0.07) 0%, rgba(255, 210, 30, 0.03) 40%, rgba(255, 205, 15, 0.012) 62%, transparent 82%);
    filter: blur(6px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0.006) 24%, transparent 60%, rgba(255, 220, 80, 0.018) 84%, rgba(255, 215, 0, 0.03) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    gap: clamp(16px, 2.2vw, 30px);
    align-items: center;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 10% 4% 8%;
    background: radial-gradient(circle at 55% 50%, rgba(255, 214, 10, 0.24) 0%, rgba(255, 216, 30, 0.16) 35%, rgba(255, 212, 5, 0.08) 55%, rgba(255, 214, 10, 0.02) 70%, rgba(255, 214, 10, 0) 100%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-visual-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hero-visual img {
    position: relative;
    width: min(500px, 100%);
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.35));
    transform: rotate(-3deg);
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-visual:hover img {
    transform: translateY(-4px) rotate(-2deg);
    box-shadow: none;
}

.hero h1 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(40px, 6.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #FFF4A3 0%, #FFEB70 20%, #FFD700 45%, #F8CC00 65%, #F4C900 82%, #E6C200 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

@media (prefers-reduced-motion: no-preference) {
    .page-loaded .hero .hero-content h1 {
        opacity: 0;
        animation: fadeInUp 0.7s var(--ease-out-expo) 0.1s forwards;
    }
    .page-loaded .hero .hero-content .hero-subtitle {
        opacity: 0;
        animation: fadeInUp 0.6s var(--ease-out-expo) 0.2s forwards;
    }
    .page-loaded .hero .hero-content .hero-buttons {
        opacity: 0;
        animation: fadeInUp 0.6s var(--ease-out-expo) 0.3s forwards;
    }
    .page-loaded .hero .hero-content .hero-stats {
        opacity: 0;
        animation: fadeInUp 0.6s var(--ease-out-expo) 0.4s forwards;
    }
    .page-loaded .hero .hero-content .hero-perks {
        opacity: 0;
        animation: fadeInUp 0.5s var(--ease-out-expo) 0.5s forwards;
    }
    .page-loaded .hero .hero-content .hero-trust-links {
        opacity: 0;
        animation: fadeInUp 0.5s var(--ease-out-expo) 0.55s forwards;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 19px);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
    line-height: 1.75;
    font-weight: 400;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-buttons .btn-outline {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.hero-buttons .btn-outline:hover {
    color: var(--secondary);
    border-color: #FFFFFF;
    background: #FFFFFF;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    max-width: fit-content;
    margin-bottom: 18px;
}

.hero-trust-links {
    margin-top: 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-trust-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-trust-link:hover {
    color: var(--secondary);
    background: var(--primary);
    border-color: var(--primary);
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-bottom: 22px;
}

.hero-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.hero-perk:hover {
    color: var(--secondary);
    background: var(--primary);
    border-color: var(--primary);
}

.hero-perk-text {
    cursor: default;
    pointer-events: none;
}

.hero-perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.hero-perk-icon svg {
    flex-shrink: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    line-height: 1.4;
    max-width: 140px;
}

.stat-slots .stat-number {
    color: #FFE168;
    animation: slotPulse 2.4s ease-in-out infinite;
}

@keyframes slotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.booking-slots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px auto 28px;
    padding: 10px 14px;
    background: rgba(255, 215, 0, 0.16);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.booking-slots b {
    color: var(--primary);
}

/* Features - Minimal Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(12px, 1.8vw, 20px);
}

.feature-card {
    text-align: center;
    padding: 20px 16px;
    background: var(--background);
    border: 1px solid #ECECEC;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, #1C1C1C 0%, #141414 35%, #0E0E0E 65%, #0A0A0A 100%);
    color: var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 10px 22px -16px rgba(0, 0, 0, 0.6);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Booking Widget - Minimal Style */
.booking-widget-section {
    background: var(--secondary);
    color: var(--text-light);
}

.booking-widget-section .section-title {
    color: var(--text-light);
}

.booking-widget-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.booking-prep-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto 14px;
    max-width: 920px;
}

.booking-prep-card {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-prep-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.booking-prep-card ul {
    list-style: disc;
    margin: 0;
    padding-left: 18px;
}

.booking-prep-card li {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
}

.bukza-wrapper {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 32px;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-home-embed {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 12px;
    min-height: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.booking-home-embed-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.booking-home-iframe {
    display: block;
    width: 100%;
    min-height: 980px;
    border: 0;
    border-radius: calc(var(--radius-lg) - 6px);
    background: transparent;
}

.booking-home-embed.is-collapsed .booking-home-iframe {
    display: none;
}

.booking-embed-fallback-link {
    margin: 12px 4px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.booking-embed-fallback-link a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.booking-embed-fallback-link a:hover {
    color: #FFE168;
}

#BukzaContainer14208 {
    width: 100%;
    max-width: 100%;
    min-height: 350px;
    overflow: hidden;
}

#BukzaContainer14208 iframe,
#BukzaContainer14208 embed,
#BukzaContainer14208 object {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .booking-prep-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .booking-prep-card {
        padding: 12px 14px;
    }

    .bukza-wrapper {
        padding: 16px;
    }

    .booking-home-embed {
        padding: 8px;
        min-height: 0;
    }

    .booking-home-iframe {
        min-height: 1120px;
    }

    body.booking-focus .bukza-wrapper {
        padding-bottom: 26px;
    }
}

.booking-legal {
    max-width: 900px;
    margin: 14px auto 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.booking-legal a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.booking-legal a:hover {
    color: #FFE168;
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.quick-faq-item {
    padding: 14px;
}

.quick-faq-item h3 {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
    color: var(--secondary);
}

.quick-faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.bukza-fallback {
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    background: var(--background-alt);
    color: var(--text-dark);
    text-align: center;
}

.bukza-fallback p {
    margin-bottom: 12px;
    font-size: 14px;
}

.bukza-fallback-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stations - Minimal Style */
.stations-section {
    background: var(--background-alt);
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(12px, 1.8vw, 20px);
    align-items: stretch;
}

.stations-section .operator-links {
    margin-top: 24px;
    margin-bottom: 14px;
}

.stations-section .stations-grid {
    margin-top: 10px;
}

.station-card {
    padding: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFEF9 40%, #FFFEF8 70%, #FFFEF5 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.station-header {
    margin-bottom: 24px;
    min-height: 122px;
}

.station-header h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

.station-entity {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.station-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.station-badges .badge {
    flex-shrink: 0;
}

.station-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    flex: 1 1 auto;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.info-row svg {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--primary-on-light);
}

.info-row a {
    color: var(--secondary);
    font-weight: 500;
}

.info-row a:hover {
    color: var(--primary-dark);
}

.station-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.station-actions .btn {
    flex: 1 1 auto;
    min-width: 120px;
    font-size: 14px;
    padding: 14px 20px;
    text-align: center;
}

.stations-cta {
    text-align: center;
    margin-top: 56px;
}

/* Prices - Minimal Style */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    max-width: 1240px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.price-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1C1C1C 0%, #141414 35%, #0E0E0E 65%, #0A0A0A 100%);
    color: var(--primary);
    border-radius: var(--radius);
}

.price-card-icon svg {
    flex-shrink: 0;
}

.price-category {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(180deg, #1A1A1A 0%, #121212 40%, #0C0C0C 70%, #090909 100%);
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    border-radius: var(--radius);
    letter-spacing: -0.02em;
}

.price-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--secondary);
    letter-spacing: -0.01em;
    min-height: 58px;
}

.price-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    min-height: 62px;
}

.price-breakdown {
    background: var(--background-alt);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 20px;
    min-height: 372px;
}

.price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(126px, 43%);
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    min-height: 48px;
    font-size: 15px;
    text-align: left;
}

.price-row span:first-child {
    hyphens: auto;
    word-break: normal;
}

.price-row span:last-child {
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
    line-height: 1.3;
    font-weight: 600;
}

.fee-law-note {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: left;
    min-height: 164px;
}

.fee-law-note a {
    color: var(--primary-on-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fee-law-note a:hover {
    color: var(--secondary);
}

.fee-payment-box {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--background-alt);
}

.fee-payment-box h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.fee-payment-box p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.fee-payment-box p:last-child {
    margin-bottom: 0;
}

.fee-payment-box a {
    color: var(--primary-on-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.price-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.price-total {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary);
    padding-top: 14px;
}

.price-card .btn {
    width: 100%;
    margin-top: auto;
}

.prices-cta {
    text-align: center;
    margin-top: 56px;
}

/* CTA Section - Minimal Style */
.cta-section {
    background: var(--secondary);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.cta-section .cta-buttons .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

/* Info and Legal Blocks */
.info-grid,
.laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(12px, 1.8vw, 20px);
}

.info-card,
.law-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card h3,
.law-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.law-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: var(--background-alt);
    color: var(--primary-on-light);
    border-radius: var(--radius);
}

.law-card-icon svg {
    flex-shrink: 0;
}

.info-card p,
.law-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(145deg, #1C1C1C 0%, #141414 35%, #0E0E0E 65%, #0A0A0A 100%);
    color: var(--primary);
    border-radius: var(--radius);
}

.info-card-icon svg {
    flex-shrink: 0;
}

.law-list {
    margin-top: 10px;
    padding-left: 18px;
}

.law-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: var(--radius);
    background: var(--background-alt);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

/* Content Sections */
.text-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.text-list li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.text-list-icons li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
}

.text-list-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-alt);
    color: var(--primary-on-light);
    border-radius: var(--radius);
}

.text-list-icon svg {
    flex-shrink: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(12px, 1.8vw, 20px);
}

.news-card {
    padding: 14px;
}

.news-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: var(--background-alt);
    color: var(--primary-on-light);
    border-radius: var(--radius);
}

.news-card-icon svg {
    flex-shrink: 0;
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--secondary);
}

.news-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.news-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.news-link:hover {
    color: var(--primary-dark);
}

/* Operator pages */
.operator-page .page-hero {
    padding: clamp(58px, 7vw, 82px) 0;
}

.operator-page .page-hero h1 {
    max-width: 920px;
    margin: 0 auto 14px;
    font-size: clamp(32px, 5.4vw, 52px);
    line-height: 1.12;
}

.operator-page .page-hero p {
    margin-top: 6px;
}

.operator-page .page-hero .btn {
    min-width: 190px;
}

.operator-page .section {
    padding-top: clamp(28px, 4vw, 50px);
    padding-bottom: clamp(28px, 4vw, 50px);
}

.operator-page .section-title {
    margin-bottom: 12px;
}

.operator-page .section-subtitle {
    margin-bottom: 20px;
}

.operator-page .laws-grid,
.operator-page .info-grid {
    gap: clamp(12px, 1.8vw, 18px);
}

.operator-page .law-card,
.operator-page .info-card {
    padding: 20px;
}

.operator-page .law-card h3,
.operator-page .info-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.operator-page .law-card p,
.operator-page .info-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.operator-page .text-list {
    gap: 10px;
}

.operator-page .text-list li {
    border-radius: 14px;
    padding: 14px 16px;
    line-height: 1.6;
}

.operator-page .news-link {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.operator-page .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .operator-page .law-card,
    .operator-page .info-card {
        padding: 16px;
    }

    .operator-page .law-card h3,
    .operator-page .info-card h3 {
        font-size: 17px;
    }

    .operator-page .text-list li {
        padding: 12px 14px;
        font-size: 14px;
    }
}

.operator-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
}

.client-card {
    min-height: 58px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--secondary);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFEF9 40%, #FFFEF8 70%, #FFFEF5 100%);
    position: relative;
    overflow: hidden;
    padding-left: 42px;
}

.client-card:has(.client-card-icon) {
    padding-left: 14px;
}

.client-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.client-card-icon svg {
    flex-shrink: 0;
}

.client-card::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 35% 35%, #ffe88c 0%, #ffdf50 30%, #ffd700 55%, #f5c800 80%, #f1c400 100%);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.16);
}

.client-card:has(.client-card-icon)::before {
    display: none;
}

.faults-callout {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--background);
}

.faults-callout p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.faults-callout .cta-buttons {
    flex-wrap: wrap;
    align-items: stretch;
}

.faults-callout .cta-buttons .btn {
    flex: 1 1 260px;
    min-width: 220px;
}

.faults-callout .cta-buttons .btn-outline {
    color: var(--secondary);
    border-color: #A1A1AA;
    background: transparent;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--background);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.faq-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children when section becomes visible (respect reduced motion in media below) */
.reveal-on-scroll .features-grid .feature-card,
.reveal-on-scroll .stations-grid .station-card,
.reveal-on-scroll .prices-grid .price-card,
.reveal-on-scroll .info-grid .info-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.reveal-on-scroll.is-visible .features-grid .feature-card:nth-child(1),
.reveal-on-scroll.is-visible .stations-grid .station-card:nth-child(1),
.reveal-on-scroll.is-visible .prices-grid .price-card:nth-child(1),
.reveal-on-scroll.is-visible .info-grid .info-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.06s; }
.reveal-on-scroll.is-visible .features-grid .feature-card:nth-child(2),
.reveal-on-scroll.is-visible .stations-grid .station-card:nth-child(2),
.reveal-on-scroll.is-visible .prices-grid .price-card:nth-child(2),
.reveal-on-scroll.is-visible .info-grid .info-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.reveal-on-scroll.is-visible .features-grid .feature-card:nth-child(3),
.reveal-on-scroll.is-visible .stations-grid .station-card:nth-child(3),
.reveal-on-scroll.is-visible .prices-grid .price-card:nth-child(3),
.reveal-on-scroll.is-visible .info-grid .info-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.reveal-on-scroll.is-visible .features-grid .feature-card:nth-child(4),
.reveal-on-scroll.is-visible .prices-grid .price-card:nth-child(4),
.reveal-on-scroll.is-visible .info-grid .info-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal-on-scroll.is-visible .features-grid .feature-card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-on-scroll.is-visible .features-grid .feature-card:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }

.ui-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: rippleAnim 0.55s ease-out;
}

@keyframes rippleAnim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes floatCtaGlow {
    0%, 100% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 32px -8px var(--primary-glow); }
    50% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 48px -4px var(--primary-glow); }
}

.floating-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1200;
    display: none;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 22px -10px var(--primary-glow);
}

.mobile-app-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1400;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
}

.mobile-menu-open .mobile-app-nav,
.mobile-menu-open .mobile-quick-actions,
.mobile-menu-open .station-mini-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Во время работы с блоком записи убираем перекрывающие плавающие элементы */
body.booking-focus .floating-cta,
body.booking-focus .max-chat-fab,
body.booking-focus .back-to-top,
body.booking-focus .mobile-quick-actions {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.mobile-quick-actions {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    z-index: 1250;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-quick-btn {
    min-height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    background: #fff;
    border: 1px solid rgba(13, 13, 13, 0.08);
    padding: 12px 16px;
}

.mobile-quick-btn svg {
    width: 16px;
    height: 16px;
}

.mobile-quick-btn-primary {
    background: var(--primary);
    border-color: rgba(255, 215, 0, 0.7);
}

.stations-swipe-hint {
    display: none;
    margin: -26px auto 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.station-mini-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    z-index: 1260;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(13, 13, 13, 0.08);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.station-mini-btn {
    min-height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.station-mini-btn svg {
    width: 16px;
    height: 16px;
}

.station-mini-btn-outline {
    color: var(--secondary);
    background: #fff;
    border: 1px solid rgba(13, 13, 13, 0.08);
}

.station-mini-btn-primary {
    color: var(--secondary);
    background: var(--primary);
    border: 1px solid rgba(255, 215, 0, 0.7);
}

.mobile-app-link {
    min-height: 56px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 11px;
    transition: background 0.2s ease, color 0.2s ease;
    gap: 4px;
    color: #70707a;
    transition: var(--transition);
}

.mobile-app-link.is-active {
    color: var(--secondary);
    background: #fff8d6;
}

.mobile-app-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.mobile-app-icon svg {
    width: 100%;
    height: 100%;
}

.mobile-app-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.1;
}

.side-section-nav {
    position: fixed;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1150;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 999px;
    border: 1px solid rgba(13, 13, 13, 0.08);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.side-section-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.side-section-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B9BBC4;
    transition: var(--transition);
}

.side-section-link:hover .side-section-dot,
.side-section-link.is-active .side-section-dot {
    background: var(--primary);
    transform: scale(1.35);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.side-section-label {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(13, 13, 13, 0.88);
    transition: var(--transition);
    pointer-events: none;
}

.side-section-link:hover .side-section-label,
.side-section-link.is-active .side-section-label {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(13, 13, 13, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1350;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tracking-mini-panel {
    position: fixed;
    left: 14px;
    bottom: 16px;
    z-index: 1320;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(13, 13, 13, 0.08);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    font-size: 11px;
    color: var(--text-muted);
}

.tracking-mini-toggle {
    border: none;
    background: transparent;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.tracking-mini-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tracking-mini-panel.is-collapsed .tracking-mini-body {
    display: none;
}

.tracking-mini-panel strong {
    color: var(--secondary);
    font-size: 12px;
}

.max-chat-fab {
    position: fixed;
    right: 18px;
    bottom: 72px;
    z-index: 1340;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(13, 13, 13, 0.12);
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 35%, #242424 70%, #222222 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

.max-chat-fab:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.max-chat-fab svg {
    width: 16px;
    height: 16px;
}

.max-icon-img {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: block;
}

.footer-max-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-max-link:hover {
    color: var(--primary);
}

.max-link-icon {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

/* Footer - Minimal Style */
.footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: 68px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 38%, rgba(255, 215, 0, 0.02) 58%, transparent 74%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-name {
    font-size: 18px;
}

.footer-logo .logo-number {
    font-size: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 20px;
    line-height: 1.75;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.footer-contact a:visited {
    color: var(--text-light);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

/* Полезные ссылки — компактная строка, не перегружает дизайн */
.useful-links-section {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.useful-links-inline {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 2px;
    line-height: 1.6;
}

.useful-links-label {
    margin-right: 4px;
}

.useful-links-inline a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0 2px;
}

.useful-links-inline a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.useful-links-sep {
    color: var(--border);
    user-select: none;
    padding: 0 2px;
}

@media (max-width: 768px) {
    .useful-links-section {
        padding: 14px 12px;
    }
    .useful-links-inline {
        font-size: 12px;
        gap: 2px;
    }
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.hours-item strong {
    color: var(--text-light);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-updated {
    color: rgba(255, 255, 255, 0.56);
}

.footer-legal {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    width: 100%;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin: 4px 0;
    order: 10;
}

/* Page Hero */
.page-hero {
    background: var(--secondary);
    color: var(--text-light);
    padding: var(--space-hero-y) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.68);
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 4px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span[aria-hidden="true"] {
    color: rgba(255, 255, 255, 0.45);
    user-select: none;
}

.breadcrumbs .current {
    color: rgba(255, 255, 255, 0.55);
}

.section .breadcrumbs {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section .breadcrumbs a {
    color: var(--secondary);
}

.section .breadcrumbs a:hover {
    color: var(--primary-on-light);
}

.section .breadcrumbs span[aria-hidden="true"],
.section .breadcrumbs .current {
    color: var(--text-muted);
}

@media (max-width: 1280px) {
    .header .container {
        max-width: min(1360px, 99vw);
    }

    .header-content {
        min-height: 72px;
        height: auto;
        padding: 6px 0;
        gap: 10px;
        row-gap: 8px;
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .nav {
        gap: 5px;
        flex: none;
    }

    .nav-link {
        padding: 8px 11px;
        font-size: 13px;
    }

    .header-phone {
        font-size: 11px;
        padding: 9px 12px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header-content {
        display: flex;
        height: 68px;
        min-height: 68px;
        padding: 0;
        flex-wrap: nowrap;
    }

    .nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 16px;
        background: var(--secondary);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }

    .header-phones {
        display: none;
        margin-left: auto;
        margin-right: 6px;
    }

    .header-phone {
        padding: 8px 10px;
        font-size: 11px;
    }

    .header-phone-alt {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    body { padding-bottom: 100px; }

    main { padding-top: 0; }

    body[data-station-mini-cta="true"] {
        padding-bottom: 144px;
    }

    .mobile-app-nav {
        display: grid;
    }

    .mobile-quick-actions {
        display: grid;
    }

    .station-mini-cta {
        display: grid;
    }

    .mobile-header-compact .header {
        background: rgba(13, 13, 13, 0.96);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .mobile-header-compact .header-content {
        height: 62px;
        min-height: 62px;
    }

    .mobile-header-compact .nav {
        top: 62px;
        max-height: calc(100vh - 62px);
    }

    .mobile-header-compact .logo-img {
        width: 36px;
        height: 36px;
    }

    .mobile-header-compact .logo-name {
        font-size: 18px;
    }

    .mobile-header-compact .logo-number {
        font-size: 20px;
    }

    .floating-cta {
        bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: calc(210px + env(safe-area-inset-bottom));
        right: 10px;
    }

    .max-chat-fab {
        right: 12px;
        bottom: calc(145px + env(safe-area-inset-bottom));
    }

    .side-section-nav {
        display: none;
    }

    .tracking-mini-panel {
        display: none;
    }

    .hero h1 {
        font-size: clamp(38px, 5.2vw, 44px);
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-buttons .btn {
        min-width: 220px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-visual img {
        width: min(410px, 100%);
        transform: rotate(-2deg);
    }

    .features-grid,
    .stations-grid,
    .info-grid,
    .laws-grid,
    .news-grid,
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prices-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 920px;
    }

    .price-breakdown {
        min-height: 388px;
    }

    .fee-law-note {
        min-height: 172px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .container,
    .header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section {
        padding: var(--space-section-y-mobile) 0 26px;
        margin-bottom: 0;
    }

    .hero {
        padding: 112px 0 46px;
    }

    .hero .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero h1 {
        font-size: clamp(28px, 8.5vw, 34px);
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: unset;
        min-height: 48px;
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 20px;
        margin-top: 8px;
        padding: 14px 16px;
        margin-bottom: 14px;
    }

    .hero-stats .stat {
        min-width: calc(50% - 8px);
        box-sizing: border-box;
    }

    .hero-perks {
        gap: 10px 12px;
        margin-top: 0;
        margin-bottom: 14px;
    }

    .hero-perk {
        font-size: 13px;
        padding: 5px 10px;
    }

    .hero-perk-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-trust-links {
        margin-top: 12px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-trust-link {
        justify-content: center;
        min-height: 44px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .stat-label {
        max-width: none;
        font-size: 13px;
        line-height: 1.25;
    }

    .stat-number {
        font-size: 40px;
        line-height: 1.1;
    }

    .section-title { font-size: 26px; line-height: 1.25; }

    .section-subtitle { font-size: 15px; margin-bottom: 22px; line-height: 1.5; }

    .mobile-app-link {
        min-height: 56px;
        padding: 8px 4px;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-app-label {
        font-size: 11px;
        font-weight: 600;
    }

    html {
        scroll-padding-top: 88px;
    }

    #booking {
        scroll-margin-top: 88px;
    }

    .features-grid,
    .stations-grid {
        grid-template-columns: 1fr;
    }

    .stations-section .stations-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-auto-columns: unset;
        overflow-x: visible;
        gap: 20px;
        padding: 0;
    }

    .stations-section .station-card {
        scroll-snap-align: unset;
        min-height: unset;
        padding: 20px;
    }

    .stations-swipe-hint {
        display: none;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .price-row {
        grid-template-columns: minmax(0, 1fr) minmax(112px, 42%);
        min-height: 44px;
    }

    .fee-law-note {
        min-height: 0;
    }

    .price-breakdown {
        min-height: 0;
    }

    .price-row span:last-child {
        white-space: normal;
    }

    .info-grid,
    .laws-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .operator-links {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: unset;
    }

    .faults-callout .cta-buttons .btn {
        min-width: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .floating-cta {
        display: flex;
        left: 12px;
        right: 12px;
        animation: floatCtaGlow 3s ease-in-out infinite;
    }

    .btn:active,
    .mobile-app-link:active,
    .mobile-quick-btn:active,
    .station-mini-btn:active,
    .card:active {
        transform: scale(0.985);
    }

    .card {
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }
}

@media (max-width: 480px) {
    .container,
    .header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .logo-name {
        font-size: 13px;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-number {
        font-size: 20px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .header-phone {
        font-size: 10px;
        padding: 8px 10px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-buttons .btn {
        padding: 13px 16px;
    }

    .hero-stats {
        gap: 12px 16px;
    }

    .hero-perks {
        gap: 8px 10px;
        margin-bottom: 12px;
    }

    .hero-stats .stat {
        min-width: 100%;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .booking-slots {
        width: 100%;
        justify-content: center;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-card:not(:has(.client-card-icon)) {
        padding-left: 40px;
    }

    .mobile-app-link {
        min-height: 54px;
    }

    .mobile-app-label {
        font-size: 10px;
    }

    .mobile-quick-actions {
        top: 66px;
        left: 12px;
        right: 12px;
        padding: 10px;
    }

    .station-mini-cta {
        left: 8px;
        right: 8px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
    }

    .max-chat-fab {
        padding: 9px 12px;
        min-height: 40px;
    }

    .floating-cta {
        left: 10px;
        right: 10px;
    }

    .ambient-blob {
        opacity: 0.16;
        filter: blur(34px);
    }

    .page-hero h1 {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::after {
        opacity: 0;
    }

    .floating-cta {
        animation: none;
    }

    .btn-primary:hover::after {
        animation: none;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal-on-scroll .section-title::after {
        transform: scaleX(1);
    }

    .reveal-on-scroll .features-grid .feature-card,
    .reveal-on-scroll .stations-grid .station-card,
    .reveal-on-scroll .prices-grid .price-card,
    .reveal-on-scroll .info-grid .info-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .stat-slots .stat-number {
        animation: none;
    }

    .preloader-line::after {
        animation: none;
    }

    .side-section-dot,
    .side-section-label {
        transition: none;
    }

    .header,
    .header-content,
    .logo-img,
    .logo-name,
    .logo-number,
    .card,
    .btn,
    .mobile-app-link,
    .mobile-quick-btn,
    .station-mini-btn {
        transition: none;
    }

    .ambient-blob,
    .ambient-grid {
        animation: none;
    }
}
