/* ===== PREMIUM AIRPORT THEME ===== */
:root {
    --navy: #0c1f3d;
    --navy-mid: #15325a;
    --primary: #1e4976;
    --primary-dark: #0c1f3d;
    --accent: #c9a962;
    --accent-light: #e8d5a8;
    --text: #0f172a;
    --text-light: #5a6578;
    --text-muted: #8b95a5;
    --bg: #fafbfc;
    --bg-soft: #f0f3f7;
    --bg-elevated: #ffffff;
    --border: #d8dee8;
    --border-gold: rgba(201, 169, 98, 0.45);

    --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --container: 1180px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 16px rgba(12, 31, 61, 0.06);
    --shadow-lg: 0 12px 40px rgba(12, 31, 61, 0.12);
    --shadow-gold: 0 4px 24px rgba(201, 169, 98, 0.2);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 220ms var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

/* Доступность */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    transition: top var(--transition);
}
.skip-link:focus { top: 0; background: var(--navy); }

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}
.container-fluid { width: min(100% - 2rem, 1400px); margin-inline: auto; }

/* ===== TOP BAR ===== */
.header-topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.55rem 0;
    flex-wrap: wrap;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.topbar-icon {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}
.topbar-sep {
    width: 1px;
    height: 12px;
    background: rgba(201, 169, 98, 0.4);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(12, 31, 61, 0.04);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}
.logo-emblem {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(12, 31, 61, 0.15));
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-main {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.12em;
}
.logo-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

/* Мобильное меню */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: transform var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.header-phone-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border-gold);
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    text-decoration: none;
    flex-shrink: 0;
}
.header-phone-mobile .icon-phone { width: 20px; height: 20px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.primary-nav { display: flex; align-items: center; gap: 0.5rem; }
.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--border-gold);
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    transition: all var(--transition);
}
.phone-cta:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}
.icon-phone { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 31, 61, 0.72) 0%, rgba(12, 31, 61, 0.45) 45%, rgba(12, 31, 61, 0.82) 100%),
        linear-gradient(90deg, rgba(12, 31, 61, 0.35) 0%, transparent 50%, rgba(12, 31, 61, 0.35) 100%);
}
.hero-content {
    position: relative;
    padding: 5rem 1rem;
    max-width: 760px;
}
.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    padding: 0.45rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-gold);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.02em;
}
.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--navy);
    border-color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.03em;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-lg { font-size: 1.1rem; padding: 1rem 2rem; }
.icon { width: 18px; height: 18px; fill: currentColor; }

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }
.section-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0.85rem auto 0;
}

/* Шаги заказа */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.step-card {
    text-align: center;
    padding: 1.5rem;
}
.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-light); font-size: 0.95rem; }

/* Подзаголовок секции */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

/* Цены */
.pricing-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.pricing-img img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}
.pricing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}
.pricing-features {
    list-style: none;
    margin: 1rem 0 1.5rem;
}
.pricing-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

/* Преимущества */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-light); }

/* Отзывы */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow);
}
.review-card p { margin-bottom: 1rem; font-style: italic; }
.review-card footer {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Направления */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.destination-link {
    display: block;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    transition: all var(--transition);
}
.destination-link:hover {
    background: var(--navy);
    color: var(--accent-light);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.link-more {
    display: inline-block;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--accent);
}
.link-more:hover { text-decoration: underline; }


/* Блок доверия */
.trust { padding: 3rem 0; background: var(--bg-elevated); border-block: 1px solid var(--border); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 0.75rem;
    border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-number {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.trust-label {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: none;
    overflow: hidden;
}
.faq-item summary {
    padding: 1.125rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] summary { color: var(--navy); }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--navy); }
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
    padding: 4rem 0;
    color: white;
    border-top: 3px solid var(--accent);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cta-subtitle {
    opacity: 0.88;
    font-size: 1rem;
    letter-spacing: 0.03em;
}
.cta-btn {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--navy);
    font-size: 1.05rem;
    white-space: nowrap;
    border: 2px solid var(--accent);
    font-weight: 800;
}
.cta-btn:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Хлебные крошки */
.breadcrumb {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}
.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep {
    margin: 0 0.4rem;
    opacity: 0.5;
}

/* Мини-герой для подстраниц */
.page-hero-sm { padding: 2.5rem 0 1rem; }
.page-hero-sm .section-title { margin-bottom: 1rem; }
.page-hero-sm .section-subtitle {
    margin-top: 0;
    margin-bottom: 0;
}

/* Регионы (все направления) */
.region-block { margin-bottom: 2.5rem; }
.region-block:last-child { margin-bottom: 0; }
.region-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

/* Страницы направлений */
.dest-hero { padding-bottom: 1rem; }
.dest-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}
.dest-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.dest-meta-item::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
}
.dest-meta-item:first-child::before { display: none; }

.widget-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--bg-elevated);
    padding: 0.5rem;
}

.dest-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--bg-soft);
    aspect-ratio: 16 / 10;
}
.dest-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border: 0;
    box-shadow: none;
}

.dest-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}
.dest-details h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}
.dest-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.dest-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.dest-features li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}
.dest-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.route-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.route-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.route-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.route-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .dest-info-grid { grid-template-columns: 1fr; }
    .dest-image { aspect-ratio: 16 / 9; max-height: 320px; }
}

/* Страница 404 */
.error-page {
    padding: 5rem 0;
    text-align: center;
    min-height: 60vh;
    display: grid;
    place-items: center;
}
.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 0;
}
.error-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.error-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-inline: auto;
}
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.error-phone {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: inline-block;
}
.error-phone p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.error-phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.error-phone-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    border-top: 3px solid var(--accent);
    padding: 3rem 0 0;
    margin-top: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.footer-logo .logo-emblem { width: 40px; height: 40px; }
.footer-logo strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #fff;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.45;
    margin-top: 0.65rem;
    max-width: 28rem;
}
.footer-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.footer-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.35rem;
}
.footer-phone:hover { color: var(--accent-light); }
.footer-col address,
.footer-col p {
    font-style: normal;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-size: 0.92rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-note {
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
    .header-actions { display: contents; }
    .header-phone-mobile { display: none !important; }
    .mobile-toggle { display: none !important; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .header-phone-mobile { display: inline-flex; }
    .header-topbar { font-size: 0.68rem; }
    .topbar-sep { display: none; }
    .topbar-inner {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.45rem 0;
    }
    .logo-sub { display: none; }
    .logo-main { font-size: 0.92rem; letter-spacing: 0.08em; }
    .logo-emblem { width: 40px; height: 40px; }

    .primary-nav {
        position: absolute;
        top: calc(100% + 0.85rem);
        left: -1rem;
        right: -1rem;
        flex-direction: column;
        background: var(--bg-elevated);
        padding: 0.75rem 1rem 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 110;
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }
    .primary-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .primary-nav .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .phone-cta { justify-content: center; width: 100%; margin-top: 0.5rem; }

    .pricing-card { grid-template-columns: 1fr; text-align: center; }
    .pricing-features { margin-inline: auto; max-width: 300px; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item:last-child { border-bottom: none; }

    .cta-inner { justify-content: center; text-align: center; }
    .cta-text { text-align: center; }

    .hero { min-height: 420px; }
    .hero-content { padding: 3rem 1rem; }
    .hero-title { font-size: 2rem; }

    .footer-bottom-inner { justify-content: center; text-align: center; flex-direction: column; gap: 1rem; }
    .legal-doc { padding: 1.5rem 1.25rem; }
    .cookie-banner-inner { flex-direction: column; text-align: center; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Анимации при скролле (опционально) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.section { animation: fadeInUp 0.5s var(--ease) backwards; }
.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }

/* ADLER AERO — premium additions */
.primary-nav .nav-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.primary-nav .nav-link:hover {
    color: var(--accent);
    background: var(--bg-soft);
}

.hero-badge--dark {
    color: var(--navy);
}

.content-prose h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
    color: var(--navy);
}
.content-prose h3 {
    font-size: 1.15rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--navy-mid);
}
.content-prose p {
    margin-bottom: 1rem;
    text-align: justify;
    color: var(--text-light);
}
.content-prose ul, .content-prose ol {
    margin: 0 0 1rem 1.25rem;
    color: var(--text-light);
}
.content-prose li { margin-bottom: 0.35rem; }
.content-prose a { color: var(--primary); text-decoration-color: var(--accent); }

.section-lead {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: -0.5rem auto 2rem;
    font-size: 1.05rem;
}
.region-block { margin-bottom: 2.75rem; }
.region-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    color: var(--navy);
    display: inline-block;
}

.article-content { padding-top: 0; }

.dest-meta-item::before { color: var(--accent); }
.dest-features li::before { color: var(--accent); }

/* ===== Legal pages & cookie banner ===== */
.legal-page { padding-top: 1rem; }
.legal-doc {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.legal-doc-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.legal-doc-meta {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}
.legal-doc-body h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
    scroll-margin-top: 6rem;
}
.legal-doc-nav {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.legal-doc-nav-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.legal-doc-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}
.legal-doc-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    justify-content: center;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}
.footer-legal a:hover { color: var(--accent-light); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    border-top: 2px solid var(--accent);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.cookie-banner-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    line-height: 1.5;
}
.cookie-banner-desc a { color: var(--accent-light); }
.cookie-banner-btn { flex-shrink: 0; }