/* ============================================================
   repulojegy.net — CSS
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a { color: #0066cc; text-decoration: none; transition: color 0.15s; }
a:hover { color: #004499; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
p { margin: 0; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.site-main { flex: 1 0 auto; padding: 0 0 3rem; }

/* === HEADER (matched to lisztferencrepuloter.com) === */
.site-header {
    background: #1a1a2e;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.5rem 1rem;
}

/* Logo (exact match) */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; color: #c0c0e0; transition: color 0.2s; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 1.1rem; font-weight: 700; }
.logo-tld { font-weight: 400; color: #a0a0c0; font-size: 0.85em; }
.logo-text small { font-size: 0.7rem; color: #a0a0c0; }
.logo:hover .logo-text strong { color: #f0a050; }

/* Nav */
.main-nav {
    flex: 1 1 100%;
    overflow: visible;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.4rem;
}
.main-nav > ul {
    display: flex;
    gap: 0.25rem;
    flex-wrap: nowrap;
    align-items: center;
}
.main-nav a {
    color: #c0c0e0;
    padding: 0.45rem 0.85rem;
    border-radius: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: block;
}
.main-nav a:hover {
    color: #e8e8f0;
    background: rgba(255,255,255,0.06);
}
.main-nav a.active {
    color: #f0a050;
    background: rgba(240,160,80,0.12);
}
/* Nav CTA (search link) */
.nav-cta {
    background: linear-gradient(135deg, #0066cc, #0b7cff) !important;
    color: #fff !important;
    border-radius: 0.35rem;
    padding: 0.4rem 0.85rem !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 14px rgba(0,102,204,0.35);
    transition: all 0.2s ease !important;
}
.nav-cta:hover {
    background: linear-gradient(135deg, #0055aa, #0066cc) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,102,204,0.45);
}

/* Utility link (external) */
.nav-utility {
    margin-left: auto;
    flex-shrink: 0;
}
.nav-utility a {
    color: #a0a0c0;
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0.4rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.nav-utility a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.65em; margin-left: 0.15rem; opacity: 0.6; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    padding: 0.4rem 0;
    min-width: 220px;
    z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 0.45rem 1rem;
    color: #c0c0e0;
    font-size: 0.85rem;
}
.dropdown-menu li a:hover {
    background: rgba(240,160,80,0.1);
    color: #f0a050;
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    width: 40px;
    height: 40px;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #d0d4e0;
    border-radius: 1px;
    transition: all 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero-section {
    background: #fff;
    margin: 0 -1.25rem;
    padding: 3.5rem 1.25rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
}
.hero-section h1 {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero-price {
    color: #16a34a;
    font-weight: 700;
    white-space: nowrap;
}
.hero-lead {
    font-size: 1.05rem;
    color: #5a6078;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Search hint */
/* Mobile-only nav items */
.nav-mobile-only { display: none; }

.search-hint {
    text-align: center;
    font-size: 0.78rem;
    color: #8890a8;
    margin-top: 0.75rem;
}

/* Dropdown right-aligned (utility) */
.dropdown-menu-right {
    left: auto;
    right: 0;
}

/* === PRE-SELL DEALS === */
.presell-section { margin-top: 2rem; }
.presell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.presell-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 0.55rem;
    padding: 1rem 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}
.presell-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: #c0d0e8;
}
.presell-route {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.presell-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #16a34a;
}
.presell-meta {
    font-size: 0.72rem;
    color: #8890a8;
    margin-top: 0.25rem;
}

/* === TRUST SECTION === */
.trust-section { margin: 2rem 0; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}
.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0fa;
    border-radius: 50%;
    color: #0066cc;
    margin-bottom: 0.25rem;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-item strong {
    font-size: 0.88rem;
    color: #1a1a2e;
}
.trust-item span {
    font-size: 0.78rem;
    color: #5a6078;
}
.trust-disclaimer {
    text-align: center;
    font-size: 0.72rem;
    color: #8890a8;
    margin-top: 1rem;
}

/* === BOOKING TIPS === */
.booking-tips ul {
    margin: 0;
    padding: 0 0 0 1.25rem;
    list-style: disc;
}
.booking-tips li {
    font-size: 0.9rem;
    color: #3d4260;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

/* === STICKY CTA HOME === */
.sticky-cta-home { display: none; }

/* === SEARCH BOX === */
.search-box {
    background: #f4f5f7;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    padding: 1.25rem;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.search-box-inner {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}
.search-field { flex: 1; min-width: 0; }
.search-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #5a6078;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.search-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #cbd0dc;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    -webkit-appearance: none;
}
.search-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
select.search-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6078' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.4;
}
.btn-primary {
    background: #0066cc;
    color: #fff;
}
.btn-primary:hover {
    background: #0055aa;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,102,204,0.3);
    transform: translateY(-1px);
}
.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
}
.btn-search { flex-shrink: 0; min-width: 100px; }

/* === CONTENT SECTIONS === */
.content-section {
    margin: 2.5rem 0;
}
/* Section hierarchy */
.presell-section,
.content-section:has(.route-grid):first-of-type {
    margin-top: 3rem;
}
.content-section:has(.content-card) {
    background: #fafafa;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 1.75rem 1.25rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.content-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.section-lead {
    color: #5a6078;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* === PAGE HEADER (subpages) === */
.page-header {
    background: #fff;
    margin: 0 -1.25rem;
    padding: 2rem 1.25rem 1.75rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}
.page-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.lead {
    font-size: 0.95rem;
    color: #5a6078;
    line-height: 1.65;
    max-width: 680px;
}

/* === CARDS === */
.card {
    background: #fff;
    border-radius: 0.625rem;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
}
.info-card { padding: 1.5rem; }
.content-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.4rem;
    color: #1a1a2e;
}
.content-card h2:first-child { margin-top: 0; }
.content-card p {
    margin-bottom: 0.6rem;
    color: #3d4260;
    font-size: 0.92rem;
    line-height: 1.65;
}
.content-card p:last-child { margin-bottom: 0; }

/* === ROUTE GRID === */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
}
.route-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.route-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 0.55rem;
    padding: 1rem 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: #c0d0e8;
}
.route-card-header {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}
.route-from {
    color: #5a6078;
    font-size: 0.84rem;
    font-weight: 500;
}
.route-arrow {
    color: #0066cc;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.route-to {
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.route-card-body { margin-bottom: 0.4rem; }
.route-price { font-size: 1.1rem; font-weight: 700; color: #16a34a; }
.route-price-eur { font-size: 0.8rem; color: #8890a8; margin-left: 0.25rem; }
.route-price-na { color: #8890a8; font-weight: 400; font-size: 0.85rem; }
.route-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #8890a8;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f1f4;
}
.route-card-sm { padding: 0.85rem 1rem; }
.route-card-sm .route-card-footer { border-top: none; padding-top: 0.3rem; }

/* === AIRPORT & AIRLINE BADGES === */
.airport-list, .airline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}
.airport-badge, .airline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.45rem 0.85rem;
    border-radius: 0.375rem;
    font-size: 0.85rem;
    color: #1a1a2e;
    transition: border-color 0.15s, color 0.15s;
}
.airline-badge { text-decoration: none; }
.airline-badge:hover {
    border-color: #0066cc;
    color: #0066cc;
}
.airport-code { color: #8890a8; font-size: 0.8rem; }

/* === INFO GRID (airline page) === */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}
.info-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #8890a8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}
.info-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

/* === FEATURE / VALUE PROP GRID === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    padding: 1.5rem 1.25rem;
    text-align: left;
}
.feature-icon {
    margin-bottom: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0fa;
    border-radius: 0.5rem;
    color: #0066cc;
}
.feature-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.35rem;
}
.feature-card p {
    font-size: 0.85rem;
    color: #5a6078;
    line-height: 1.55;
}

/* === ROUTE TOP CTA === */
.route-top-cta {
    margin: 1.25rem 0 1.75rem;
}
.route-top-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 0.875rem 1.375rem;
    border-radius: 0.625rem;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.route-top-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 102, 204, 0.45);
    color: #fff;
}

/* Route CTA hint + price hint */
.route-cta-hint {
    margin-top: 0.5rem;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    color: #5a6078;
}
/* === PRICE SNAPSHOT (route page) === */
.price-snapshot {
    margin: 0.75rem 0 0.5rem;
    padding: 0.75rem 1rem;
    border-left: 3px solid #0066cc;
    background: #f0f5fc;
    border-radius: 0 0.375rem 0.375rem 0;
}
.price-snapshot-main {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
}
.price-snapshot-meta {
    font-size: 0.85rem;
    color: #3d4260;
    margin-top: 0.15rem;
}
.price-snapshot-date {
    font-size: 0.75rem;
    color: #8890a8;
    margin-top: 0.25rem;
}

/* === PRICE TREND BLOCK (route page) === */
.price-trend-block {
    margin: 0.5rem 0 0.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.75rem;
    font-size: 0.82rem;
}
.trend-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.7rem;
    line-height: 1.4;
    white-space: nowrap;
    vertical-align: middle;
    flex-shrink: 0;
}
.trend-badge-down { background: #ecfdf5; color: #059669; }
.trend-badge-up { background: #fef2f2; color: #dc2626; }
.trend-badge-stable { background: #f0f1f4; color: #5a6078; }
.trend-label { color: #5a6078; }
.trend-range { color: #8890a8; font-size: 0.78rem; }

/* Card-level trend badge */
.route-card .trend-badge {
    font-size: 0.65rem;
    padding: 0.08rem 0.35rem;
}
.route-card-footer .trend-badge {
    margin-left: auto;
    margin-right: 0.25rem;
}

/* === HISTORY TABLE === */
.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.75rem;
}
.history-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    color: #8890a8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.history-table td {
    font-size: 0.88rem;
    color: #3d4260;
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid #f0f1f4;
}
.history-current td {
    font-weight: 700;
    color: #1a1a2e;
}
.history-summary {
    font-size: 0.82rem;
    color: #5a6078;
    margin-bottom: 0.5rem;
}

/* === HUB LINKS (internal linking) === */
.hub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.hub-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0066cc;
}
.hub-links a:hover { color: #004499; }

/* === HUB LINKS GRID (home page) === */
.hub-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.hub-link-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.hub-link-card:hover {
    border-color: #80b3e6;
    box-shadow: 0 2px 8px rgba(0,102,204,0.08);
}
.hub-link-card strong {
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 0.15rem;
}
.hub-link-card span {
    font-size: 0.78rem;
    color: #5a6078;
}

/* === AIRLINE HUB GRID === */
.airline-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}
.airline-hub-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.airline-hub-card:hover {
    border-color: #80b3e6;
    box-shadow: 0 2px 8px rgba(0,102,204,0.08);
}
.airline-hub-card strong {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}
.airline-hub-card .airline-meta {
    font-size: 0.78rem;
    color: #5a6078;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* === ROUTE CARD SMALL PRICE === */
.route-price-sm {
    font-size: 0.8rem;
    color: #5a6078;
}
.route-meta-date {
    font-size: 0.72rem;
    color: #8890a8;
}

/* === AUTHORITY LINK === */
.authority-link {
    font-size: 0.85rem;
    color: #5a6078;
}
.authority-link a {
    color: #0066cc;
    font-weight: 500;
}
.authority-link a:hover {
    color: #004499;
}

/* Legacy price-hint (compat) */
.price-hint {
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    color: #3d4260;
    line-height: 1.5;
}

/* === HOME CTA LINKS === */
.home-cta-links {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}
.home-cta-links a {
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.88rem;
}
.home-cta-links a:hover {
    color: #004499;
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
    display: none;
}

@media (max-width: 640px) {
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        padding: 0.6rem 1rem;
        z-index: 900;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
    }
    .sticky-cta a {
        display: block;
        background: linear-gradient(135deg, #0066cc, #004999);
        color: #fff;
        text-align: center;
        padding: 1rem;
        border-radius: 0.5rem;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        font-family: inherit;
    }
    .sticky-cta a:hover {
        background: #0055aa;
        color: #fff;
    }
    /* Prevent sticky CTA from covering footer content */
    .site-main { padding-bottom: 4.5rem; }
}

/* === CTA BOX === */
.cta-section { text-align: center; }
.cta-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
}
.cta-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}
.cta-box > p {
    color: #5a6078;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}
.cta-disclaimer {
    font-size: 0.75rem;
    color: #8890a8;
    margin-top: 1rem;
}
.cta-trust {
    font-size: 0.78rem;
    color: #5a6078;
    margin-top: 0.75rem;
}

/* === DISCLOSURE === */
.info-disclosure {
    background: transparent;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0 0;
    margin-top: 1rem;
}
.info-disclosure p {
    font-size: 0.78rem;
    color: #8890a8;
    line-height: 1.6;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 1rem 0 0.75rem;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}
.breadcrumb li {
    font-size: 0.8rem;
    color: #8890a8;
}
.breadcrumb li a {
    color: #5a6078;
    transition: color 0.15s;
}
.breadcrumb li a:hover { color: #0066cc; }
.breadcrumb .separator {
    margin: 0 0.4rem;
    color: #c0c4d0;
    font-size: 0.75rem;
}

/* === FOOTER === */
.site-footer {
    flex-shrink: 0;
    background: #1a1a2e;
    color: #c0c0d0;
    padding: 3rem 0 2rem;
    margin-top: auto;
}
.footer-authority {
    color: #a0a0c0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col h3 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a {
    color: #a0a0c0;
    font-size: 0.85rem;
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-disclosure {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0 1rem;
}
.footer-disclosure p {
    font-size: 0.78rem;
    color: #a0a0c0;
    line-height: 1.6;
    max-width: 700px;
}

.footer-meta-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}
.footer-meta-nav a {
    color: #a0a0c0;
    font-size: 0.82rem;
}
.footer-meta-nav a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}
.footer-legal {
    font-size: 0.72rem;
    color: #777;
    margin-top: 0.25rem;
}

/* === MONTHLY GRID (for future use) === */
.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.monthly-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.5rem 0.35rem;
    text-align: center;
}
.monthly-item-best {
    border-color: #059669;
    background: #f0fdf4;
}
.monthly-month {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: #8890a8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}
.monthly-price {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
}
.monthly-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: #059669;
    background: #dcfce7;
    padding: 0.1rem 0.35rem;
    border-radius: 1rem;
    margin-top: 0.15rem;
}

/* === PRICE (for future use) === */
.price-highlight-card { text-align: center; }
.price-highlight { margin-bottom: 0.75rem; }
.price-main { font-size: 2rem; font-weight: 800; color: #059669; }
.price-secondary { font-size: 0.95rem; color: #8890a8; margin-left: 0.4rem; }
.price-details {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.4rem 1.25rem; font-size: 0.85rem; color: #3d4260; margin-bottom: 0.75rem;
}
.price-trend {
    display: inline-block; padding: 0.2rem 0.65rem; border-radius: 2rem;
    font-size: 0.78rem; font-weight: 600; margin-bottom: 0.75rem;
}
.price-trend-up { background: #fef2f2; color: #dc2626; }
.price-trend-down { background: #f0fdf4; color: #16a34a; }
.price-trend-stable { background: #f0f1f4; color: #5a6078; }
.price-disclaimer { font-size: 0.75rem; color: #8890a8; font-style: italic; margin-top: 0.5rem; }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
    .container { padding: 0 1rem; }

    /* Header */
    .header-inner { padding: 0.5rem 1rem; gap: 0.5rem; }
    .nav-toggle { display: flex; margin-left: auto; }
    .nav-utility {
        display: none;
        flex: 1 1 100%;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 0.35rem 0;
    }
    .main-nav.open ~ .nav-utility { display: none; }
    .nav-utility.open { display: block; }
    .main-nav {
        display: none;
        flex: 1 1 100%;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 0.25rem;
    }
    .main-nav.open { display: block; }
    .main-nav > ul {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .main-nav > ul > li > a {
        display: block;
        padding: 0.6rem 0.75rem;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.02);
        border-radius: 0;
        padding: 0 0 0.25rem 1rem;
        min-width: 0;
    }
    .has-dropdown:hover .dropdown-menu { display: block; }

    /* Hero */
    .hero-section {
        margin: 0 -1rem;
        padding: 2.25rem 1rem 2rem;
    }
    .hero-section h1 { font-size: 1.6rem; }
    .hero-lead { font-size: 0.92rem; margin-bottom: 1.5rem; }

    .search-box { padding: 1rem; }
    .search-box-inner { flex-direction: column; gap: 0.6rem; }
    .btn-search { width: 100%; }

    /* Page header */
    .page-header {
        margin: 0 -1rem;
        padding: 1.5rem 1rem 1.25rem;
    }
    .page-header h1 { font-size: 1.35rem; }

    /* Route grid */
    .route-grid { grid-template-columns: 1fr; gap: 0.6rem; }
    .route-grid-compact { grid-template-columns: 1fr; }

    /* Mobile nav items */
    .nav-mobile-only { display: list-item; }
    .nav-mobile-only a { opacity: 0.7; font-size: 0.85rem; }

    /* Pre-sell + trust + hub grids */
    .presell-grid { grid-template-columns: 1fr; }
    .hub-links-grid { grid-template-columns: repeat(2, 1fr); }
    .airline-hub-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .hero-section h1 .hero-price { display: block; margin-top: 0.15rem; }

    /* Home sticky CTA */
    .sticky-cta-home {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        padding: 0.6rem 1rem;
        z-index: 900;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
    }
    .sticky-cta-home a {
        display: block;
        background: linear-gradient(135deg, #0066cc, #004999);
        color: #fff;
        text-align: center;
        padding: 0.85rem;
        border-radius: 0.5rem;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        font-family: inherit;
    }

    /* CTA */
    .cta-box { padding: 1.75rem 1.25rem; }
    .btn-lg { width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-meta-nav { gap: 0.75rem; }

    /* Monthly */
    .monthly-grid { grid-template-columns: repeat(4, 1fr); }

    /* Info grid */
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    .hero-section h1 { font-size: 1.35rem; }
    .monthly-grid { grid-template-columns: repeat(3, 1fr); }
}
