:root {
    --navy: #0a1e3d;
    --navy-mid: #122849;
    --blue: #1a5fa8;
    --blue-light: #2b7fd4;
    --sky: #e8f2fb;
    --gold: #c4a052;
    --gold-soft: rgba(196, 160, 82, 0.15);
    --surface: #f5f7fa;
    --surface-alt: #eef2f7;
    --white: #ffffff;
    --text: #1c2838;
    --text-muted: #5a6778;
    --border: #dde4ee;
    --shadow-sm: 0 2px 8px rgba(10, 30, 61, 0.06);
    --shadow-md: 0 8px 32px rgba(10, 30, 61, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 30, 61, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --container: 1240px;
    --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--blue);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--blue-light);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Top bar */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    min-height: 38px;
}

.top-bar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.top-bar-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-meta strong {
    color: var(--gold);
    font-weight: 600;
}

.top-bar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 20px;
}

.top-bar-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.top-bar-partner-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.top-bar-partner-link:hover {
    color: #fff;
}

.top-bar-status {
    color: rgba(255, 255, 255, 0.65);
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.brand img {
    height: 52px;
    width: auto;
}

.brand-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    line-height: 1.2;
}

.brand-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
    background: var(--sky);
    color: var(--blue);
}

.site-nav a.active {
    background: var(--navy);
    color: var(--white);
}

.site-nav a.nav-ref {
    color: var(--blue);
    background: var(--sky);
}

.site-nav a.nav-ref:hover {
    background: var(--navy);
    color: var(--white);
}

.site-nav a.nav-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    margin-left: 8px;
    box-shadow: 0 4px 14px rgba(26, 95, 168, 0.35);
}

.site-nav a.nav-cta:hover {
    color: var(--white);
    filter: brightness(1.06);
}

/* Main */
.main-content {
    min-height: 50vh;
}

/* Hero */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(10, 30, 61, 0.97) 0%, rgba(26, 95, 168, 0.88) 55%, rgba(10, 30, 61, 0.92) 100%),
        radial-gradient(ellipse at 20% 30%, rgba(196, 160, 82, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(43, 127, 212, 0.25) 0%, transparent 45%);
    background-color: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(196, 160, 82, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 72px 24px 64px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(196, 160, 82, 0.45);
    border-radius: 999px;
    background: rgba(196, 160, 82, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 18px;
    max-width: 720px;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    margin: 0 0 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: var(--blue);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.stat-item {
    background: var(--white);
    padding: 22px 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.stat-item span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Sections */
.section-wrap {
    padding: 56px 0;
}

.section-wrap.alt {
    background: var(--white);
}

.section-head {
    margin-bottom: 32px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 12px;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue-light));
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 640px;
    margin: 0;
}

.section-head.center .section-desc {
    margin: 0 auto;
}

/* Cards */
.panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.tablo-container.panel {
    padding: 28px;
}

.tablo-wrapper {
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface-alt);
}

.tablo-wrapper iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
    background: var(--surface-alt);
}

.tablo-full-link {
    margin: 16px 0 0;
    text-align: center;
    font-size: 0.9375rem;
}

.tablo-full-link a {
    font-weight: 600;
    text-decoration: none;
}

.tablo-full-link a:hover {
    text-decoration: underline;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    margin: 0 0 10px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
}

.service-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.info-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    border-top: 3px solid var(--blue);
}

.info-card h4 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.info-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.parking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9375rem;
}

.parking-table th,
.parking-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.parking-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.parking-table tr:hover td {
    background: var(--sky);
}

.faq-container .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    padding: 18px 48px 18px 20px;
    position: relative;
    transition: background 0.2s;
    user-select: none;
}

.faq-question:hover {
    background: var(--sky);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--blue);
    font-weight: 400;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 18px;
}

.faq-answer p,
.faq-answer ul {
    margin: 0 0 10px;
}

/* Article / SEO content */
.info-section.panel,
.article-panel {
    margin: 40px auto;
    max-width: var(--container);
    padding: 40px 48px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.article-meta a {
    font-weight: 600;
}

.seo-block,
.article-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
}

.seo-block h2,
.article-body h2,
.seo-block h3,
.article-body h3 {
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1.6em 0 0.6em;
}

.seo-block h2,
.article-body h2 {
    font-size: 1.5rem;
}

.seo-block p,
.article-body p {
    margin: 0 0 1em;
}

.seo-block ul,
.article-body ul {
    margin: 0 0 1em;
    padding-left: 1.4em;
}

.seo-block li,
.article-body li {
    margin: 0.4em 0;
}

/* News page */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 48px 0 56px;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.0625rem;
    max-width: 560px;
}

.news-list {
    display: grid;
    gap: 20px;
    padding-bottom: 48px;
}

.news-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.news-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 95, 168, 0.25);
}

.news-item h2 {
    margin: 0 0 10px;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.news-item h2 a {
    color: var(--navy);
    text-decoration: none;
}

.news-item h2 a:hover {
    color: var(--blue);
}

.news-meta {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.news-description {
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 500;
}

.news-snippet {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--blue);
}

.news-link::after {
    content: '→';
    transition: transform 0.2s;
}

.news-link:hover::after {
    transform: translateX(4px);
}

.empty-state {
    text-align: center;
    padding: 80px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.empty-state h2 {
    color: var(--navy);
    margin-bottom: 12px;
}

/* 404 */
.error-page {
    padding: 64px 24px 80px;
}

.error-container {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    box-shadow: var(--shadow-md);
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 12px;
}

.error-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.error-message {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn-primary {
    background: var(--navy);
    color: var(--white);
}

.error-actions .btn-outline {
    color: var(--navy);
    border-color: var(--border);
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr;
    gap: 40px;
    padding: 56px 0 40px;
}

.footer-brand strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin-top: 16px;
    max-width: 480px;
}

.site-marker {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.25);
}

.widget-container.panel {
    margin-top: 0;
}

/* Transfer directions */
.transfer-toolbar {
    margin-bottom: 28px;
}

.transfer-search-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.transfer-search {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font);
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.transfer-search:focus {
    outline: none;
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(43, 127, 212, 0.15);
}

.transfer-search-hint {
    margin: 10px 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.direction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.direction-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.direction-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 22px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-height: 120px;
}

.direction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 95, 168, 0.3);
    color: inherit;
}

.direction-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--sky);
    color: var(--blue);
    font-weight: 700;
    font-size: 1.125rem;
}

.direction-card-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.35;
}

.direction-card-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.direction-card-link {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
}

.transfer-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.transfer-empty-filter {
    text-align: center;
    color: var(--text-muted);
    margin: -16px 0 32px;
}

/* Aviasales — оранжевые акценты */
.avia-accent-btn {
    background: linear-gradient(135deg, #f5a623 0%, #e88b00 100%);
    color: var(--navy) !important;
    border: none;
    box-shadow: 0 4px 18px rgba(245, 166, 35, 0.4);
}

.avia-accent-btn:hover {
    filter: brightness(1.06);
    color: var(--navy) !important;
    transform: translateY(-1px);
}

.top-bar-partner-link.avia-topbar-link {
    color: #f5c842;
    font-weight: 700;
}

.top-bar-partner-link.avia-topbar-link:hover {
    color: #fff;
}

.site-nav a.nav-ref-avia {
    background: linear-gradient(135deg, #f5a623 0%, #e88b00 100%);
    color: var(--navy) !important;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.site-nav a.nav-ref-avia:hover {
    color: var(--navy) !important;
    filter: brightness(1.05);
}

.hero-actions .avia-hero-btn {
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(245, 166, 35, 0.45);
}

.avia-text-link {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.avia-text-link--compact {
    margin-top: 16px;
    padding-top: 16px;
}

.avia-inline-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5a623 0%, #e88b00 100%);
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(245, 166, 35, 0.35);
    vertical-align: middle;
}

.avia-inline-btn:hover {
    filter: brightness(1.06);
    color: var(--navy) !important;
    text-decoration: none;
}

.footer-links a.footer-link-avia {
    color: #f5c842;
    font-weight: 600;
}

.footer-links a.footer-link-avia:hover {
    color: #fff;
}

.avia-float-btn {
    display: none;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 300;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5a623 0%, #e88b00 100%);
    color: var(--navy);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9375rem;
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.avia-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.55);
    color: var(--navy);
}

.avia-float-icon {
    font-size: 1.125rem;
    line-height: 1;
}

@media (min-width: 769px) {
    .avia-float-btn {
        display: inline-flex;
    }

    body {
        padding-bottom: 88px;
    }
}

@media (max-width: 768px) {
    .avia-inline-btn {
        display: inline-flex;
        margin: 10px 0 0;
    }

    .top-bar-partner-link.avia-topbar-link {
        background: linear-gradient(135deg, #f5a623 0%, #e88b00 100%);
        color: var(--navy) !important;
        font-weight: 800;
    }

    .top-bar-partner-link.avia-topbar-link:hover {
        color: var(--navy) !important;
        filter: brightness(1.05);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -24px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Top bar */
    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 0;
        min-height: auto;
    }

    .top-bar-meta {
        justify-content: center;
        gap: 4px 14px;
    }

    .top-bar-right {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .top-bar-partners {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }

    .top-bar-partner-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.875rem;
    }

    .top-bar-status {
        text-align: center;
        font-size: 0.75rem;
    }

    /* Header */
    .site-header {
        position: sticky;
        top: 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 0;
        min-height: auto;
    }

    .brand {
        gap: 12px;
        min-width: 0;
    }

    .brand img {
        height: 44px;
        flex-shrink: 0;
    }

    .brand-text {
        min-width: 0;
    }

    .brand-text strong {
        font-size: 1.0625rem;
    }

    .brand-text span {
        font-size: 0.625rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 6px;
        font-size: 0.8125rem;
        text-align: center;
        line-height: 1.25;
        min-height: 44px;
    }

    .site-nav a.nav-cta {
        margin-left: 0;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 28px 16px 32px;
    }

    .hero-badge {
        font-size: 0.6875rem;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 1.625rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-lead {
        font-size: 0.9375rem;
        margin-bottom: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 13px 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: -16px;
    }

    .stat-item {
        padding: 14px 10px;
    }

    .stat-item strong {
        font-size: 1.125rem;
    }

    .stat-item span {
        font-size: 0.75rem;
    }

    /* Sections */
    .page-hero {
        padding: 32px 0 36px;
        margin-bottom: 28px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.9375rem;
    }

    .section-head.center .section-title {
        font-size: 1.5rem;
    }

    .panel,
    .info-section.panel {
        padding: 20px 16px;
    }

    .news-item {
        padding: 20px 16px;
    }

    .news-item h2 {
        font-size: 1.125rem;
    }

    .direction-grid,
    .direction-grid-compact {
        grid-template-columns: 1fr;
    }

    .direction-card {
        padding: 18px 16px;
        min-height: auto;
    }

    .tablo-wrapper {
        max-height: 480px;
    }

    .tablo-wrapper iframe {
        height: 480px;
    }

    .footer-grid {
        padding: 40px 0 28px;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px 0;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .top-bar-meta span:nth-child(2),
    .top-bar-meta span:nth-child(3) {
        display: none;
    }

    .brand-text span {
        display: none;
    }

    .hero-inner {
        padding: 24px 14px 28px;
    }

    .hero h1 {
        font-size: 1.375rem;
    }

    .hero-lead {
        font-size: 0.875rem;
    }

    .site-nav a {
        font-size: 0.75rem;
        padding: 9px 4px;
    }

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

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        text-align: left;
    }

    .stat-item strong {
        display: inline;
        font-size: 1rem;
    }
}

