/* =============================================
   RefundMyFly - Premium CSS Design System
   ============================================= */

/* ------- CSS Variables ------- */
:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --primary: #2563EB;
    --primary-light: #60A5FA;
    --primary-dark: #1D4ED8;
    --accent-gold: #F59E0B;
    --accent-gold-light: #FCD34D;
    --success: #10B981;
    --success-light: #34D399;
    --warning: #F59E0B;
    --danger: #EF4444;
    --text-color: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --dark-bg: #0B1121;
    --dark-surface: #111827;
    --dark-border: rgba(255,255,255,0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* ------- Reset & Base ------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--background);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; color: var(--text-color); }
h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -1.5px; }
h2 { font-size: clamp(26px, 4vw, 42px); letter-spacing: -1px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); letter-spacing: -0.3px; }

/* ------- Layout ------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ------- Header ------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
}
.logo a {
    font-family: var(--font-display);
    font-weight: 800; font-size: 26px;
    letter-spacing: -0.5px; text-decoration: none;
    display: flex; align-items: center; gap: 3px;
}
.logo-icon { color: var(--primary); }
.logo-fly { color: var(--primary-light); }
.logo-dot { color: var(--text-muted); font-weight: 500; font-size: 20px; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
    font-size: 15px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: color 0.2s; position: relative;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--primary); transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Mobile menu button */
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
    color: var(--text-color);
}

/* ------- Language Switcher ------- */
.lang-switcher { position: relative; }
.lang-current {
    background: var(--border-light); border: 1px solid var(--border);
    padding: 6px 14px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.2s; font-family: var(--font-body);
}
.lang-current:hover { background: var(--border); }
.lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    min-width: 120px; display: none; overflow: hidden; z-index: 100;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown { display: block; }
.lang-dropdown a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
    color: var(--text-secondary); transition: all 0.15s;
}
.lang-dropdown a:hover { background: var(--border-light); color: var(--primary); }

/* ------- Buttons ------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
    border: none; cursor: pointer; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap; position: relative; overflow: hidden;
}
.btn-sm { padding: 10px 22px; font-size: 14px; border-radius: var(--radius-full); }
.btn-md { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-lg { padding: 18px 42px; font-size: 18px; border-radius: var(--radius-lg); }
.btn-xl { padding: 22px 52px; font-size: 20px; border-radius: var(--radius-xl); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white; box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.45);
    color: white;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
    color: white; font-size: 18px; padding: 20px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(37,99,235,0.4);
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,99,235,0.5);
}

.btn-glow::before {
    content: ''; position: absolute; inset: -2px;
    background: linear-gradient(135deg, var(--primary-light), #A78BFA, var(--primary));
    border-radius: inherit; z-index: -1; opacity: 0;
    transition: opacity 0.3s; filter: blur(8px);
}
.btn-glow:hover::before { opacity: 1; }

.btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--primary); border-radius: var(--radius-lg);
    padding: 14px 32px; font-size: 16px;
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-block { width: 100%; }

/* ------- Hero Section ------- */
.hero-section {
    position: relative; min-height: 600px;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    background-color: var(--dark-bg); overflow: hidden;
    padding-top: 72px;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(160deg, rgba(11,17,33,0.95) 0%, rgba(30,58,138,0.85) 50%, rgba(79,70,229,0.75) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 48px;
    padding: 80px 0 120px; width: 100%;
}
.hero-text { flex: 1; }
.hero-text h1 { color: white; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 600px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px; border-radius: var(--radius-full);
    font-size: 14px; font-weight: 600; color: var(--primary-light);
    backdrop-filter: blur(10px); margin-bottom: 24px;
}

.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
    line-height: 0;
}
.hero-wave svg { width: 100%; }

/* Hero Home specific */
.hero-home { text-align: center; }
.hero-home .hero-content { flex-direction: column; align-items: center; padding: 100px 0 140px; }
.hero-home .hero-text { max-width: 900px; }
.hero-home .hero-subtitle { margin: 0 auto 48px; max-width: 700px; }

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, #A78BFA 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust row */
.trust-row {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 56px; flex-wrap: wrap;
}
.trust-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-stat .value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--primary-light); }
.trust-stat .label { font-size: 14px; color: var(--text-light); }
.trust-divider { width: 1px; background: rgba(255,255,255,0.1); height: 40px; align-self: center; }

/* Compensation Badge */
.compensation-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
    border: 1px solid rgba(16,185,129,0.25); padding: 14px 28px;
    border-radius: var(--radius-full); backdrop-filter: blur(10px);
    margin-bottom: 28px;
}
.compensation-badge .amount {
    font-family: var(--font-display); font-size: 26px; font-weight: 800;
    color: var(--success-light);
}
.compensation-badge .label-text { font-size: 18px; color: white; }

/* ------- CTA Card (Route Hero) ------- */
.hero-cta-card { flex: 0 0 400px; }
.cta-box {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl); padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cta-box .airline-logo-wrapper {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: white; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); overflow: hidden;
}
.cta-box .airline-logo { width: 60px; height: 60px; object-fit: contain; }
.cta-box .airline-fallback {
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    color: var(--text-secondary); text-align: center; padding: 8px;
}
.cta-box h3 { color: white; font-size: 22px; margin-bottom: 12px; text-align: center; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 15px; text-align: center; margin-bottom: 24px; }
.cta-action { text-align: center; margin-bottom: 16px; }
.cta-action .btn { width: 100%; }
.secure-text {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ------- Content Sections ------- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; }

.badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(37,99,235,0.08); color: var(--primary);
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 16px;
}

/* ------- Timeline / Process ------- */
.timeline-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 64px; position: relative;
}
.timeline-grid::before {
    content: ''; position: absolute;
    top: 32px; left: 15%; right: 15%;
    height: 2px; background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    opacity: 0.2;
}
.timeline-item { text-align: center; position: relative; }
.step-marker {
    width: 64px; height: 64px; margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 24px;
    color: white; box-shadow: 0 8px 24px rgba(37,99,235,0.3);
    position: relative; z-index: 2;
}
.timeline-item h3 { margin-bottom: 12px; }
.timeline-item p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ------- Glass Cards ------- */
.glass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl); padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.glass-card .icon-box {
    width: 72px; height: 72px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px; box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* ------- Hub Grid (Airlines/Airports/Destinations) ------- */
.hub-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; margin-top: 48px;
}
.hub-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; background: white;
    border: 1px solid var(--border); border-radius: var(--radius-md);
    text-decoration: none; color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.hub-card:hover {
    transform: translateY(-3px); border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12); color: var(--text-color);
}
.hub-card .card-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(96,165,250,0.08));
    color: var(--primary);
}
.hub-card .airline-mini-logo {
    width: 48px; height: 48px; object-fit: contain;
    border-radius: var(--radius-sm); background: white;
}
.hub-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.hub-card .card-meta { font-size: 13px; color: var(--text-muted); }
.hub-card .card-arrow {
    margin-left: auto; color: var(--text-light); transition: transform 0.3s;
}
.hub-card:hover .card-arrow { transform: translateX(4px); color: var(--primary); }

/* ------- Search Box ------- */
.search-box {
    position: relative; max-width: 560px; margin: 40px auto 0;
}
.search-box input {
    width: 100%; padding: 18px 24px 18px 52px;
    border-radius: var(--radius-full); border: 2px solid var(--border);
    font-size: 16px; font-family: var(--font-body);
    box-shadow: var(--shadow-sm); outline: none;
    transition: all 0.3s;
}
.search-box input:focus { border-color: var(--primary-light); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.search-box .search-icon {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted);
}

/* ------- Content Grid (Article + Sidebar) ------- */
.content-grid {
    display: grid; grid-template-columns: 1fr 360px;
    gap: 48px; align-items: start;
}
.main-article h2 { font-size: 28px; margin: 40px 0 16px; }
.main-article h2:first-child { margin-top: 0; }
.main-article h3 { font-size: 22px; margin: 32px 0 12px; color: var(--text-color); }
.main-article p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

/* Info Card */
.info-card {
    background: var(--background); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; margin: 28px 0;
}
.info-card-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.info-card-header h3 { margin: 0; font-size: 18px; }
.flight-details { list-style: none; }
.flight-details li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid var(--border-light);
    font-size: 15px;
}
.flight-details li:last-child { border-bottom: none; }
.flight-details li span { color: var(--text-muted); }
.flight-details li strong { color: var(--text-color); font-weight: 600; }
.flight-details .total-row {
    background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(96,165,250,0.05));
    border-radius: var(--radius-sm); padding: 16px; margin: 8px -8px 0;
    border: none; font-weight: 700;
}
.flight-details .total-row .amount {
    font-family: var(--font-display); font-size: 24px; font-weight: 800;
    color: var(--primary);
}

/* Conditions List */
.conditions-list { list-style: none; }
.conditions-list li {
    display: flex; gap: 14px; padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px; line-height: 1.7;
}
.conditions-list li:last-child { border-bottom: none; }
.list-icon {
    flex-shrink: 0; width: 36px; height: 36px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    background: rgba(37,99,235,0.08);
}
.list-icon.success-icon { background: rgba(16,185,129,0.1); color: var(--success); }

/* Alert */
.alert {
    display: flex; gap: 14px; padding: 18px 22px;
    border-radius: var(--radius-md); margin: 24px 0;
    font-size: 15px; line-height: 1.7;
}
.alert-warning {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
    border: 1px solid #FDE68A;
}
.alert-warning svg { flex-shrink: 0; margin-top: 2px; }
.alert-warning p { color: #92400E; }

/* ------- Sidebar ------- */
.sidebar { align-self: stretch; }
.sidebar .sticky { position: sticky; top: 96px; }
.trust-widget {
    background: linear-gradient(160deg, var(--dark-bg), var(--dark-surface));
    border: 1px solid var(--dark-border); border-radius: var(--radius-xl);
    padding: 32px; color: white;
}
.trust-widget .gradient-text { font-size: 20px; margin-bottom: 12px; }
.trust-widget .trust-desc { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.trust-widget .premium-list { list-style: none; }
.trust-widget .premium-list li {
    display: flex; gap: 12px; padding: 10px 0;
    font-size: 14px; color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-widget .premium-list li:last-child { border-bottom: none; }
.trust-widget .btn-outline {
    margin-top: 20px; color: white; border-color: rgba(255,255,255,0.2);
}
.trust-widget .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* ------- FAQ ------- */
.faq-section { padding: 100px 0; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { margin-bottom: 12px; }
.faq-header p { color: var(--text-muted); font-size: 17px; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    margin-bottom: 12px; overflow: hidden; background: white;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600;
    margin: 0; user-select: none; transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question .chevron { transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
    padding: 0 24px 20px; color: var(--text-secondary);
    font-size: 15px; line-height: 1.8;
}

/* ------- Map ------- */
.map-container {
    width: 100%; height: 320px; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    margin: 28px 0;
    background: var(--background);
}
.map-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    color: var(--text-muted); font-size: 14px;
}

/* ------- Advantages Section ------- */
.advantages-section {
    position: relative; overflow: hidden;
    background: var(--dark-bg); padding: 120px 0;
}
.advantages-section .glow-orb {
    position: absolute; width: 40%; height: 40%;
    border-radius: 50%; filter: blur(120px); opacity: 0.5;
}
.advantages-section .glow-orb-1 { top: -10%; left: -10%; background: rgba(37,99,235,0.15); }
.advantages-section .glow-orb-2 { bottom: -10%; right: -10%; background: rgba(167,139,250,0.15); }
.advantages-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; position: relative; z-index: 2;
}

/* ------- SEO Content Block ------- */
.seo-block { padding: 80px 0; background: var(--background); }
.seo-rich-text { max-width: 800px; margin: 0 auto; }
.seo-rich-text h2 { font-size: 28px; margin-bottom: 16px; }
.seo-rich-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.seo-rich-text ul { padding-left: 24px; margin-bottom: 16px; }
.seo-rich-text li { color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; }

/* ------- Footer ------- */
.site-footer {
    background: var(--dark-bg); color: rgba(255,255,255,0.7);
    padding: 72px 0 0; border-top: 1px solid var(--dark-border);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo {
    font-family: var(--font-display); font-weight: 800; font-size: 24px;
    margin-bottom: 16px;
}
.footer-brand .logo .logo-icon { color: var(--primary); }
.footer-brand .logo .logo-fly { color: var(--primary-light); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 320px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links-title {
    color: white; font-size: 15px; font-weight: 700;
    font-family: var(--font-display); margin-bottom: 8px;
}
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0; text-align: center;
    font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ------- Breadcrumb ------- */
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
    list-style: none; padding: 16px 0; font-size: 14px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { color: var(--text-light); margin: 0 4px; }
.breadcrumb .current { color: var(--text-muted); font-weight: 500; }
.breadcrumb-dark a { color: rgba(255,255,255,0.8); }
.breadcrumb-dark .sep { color: rgba(255,255,255,0.3); }
.breadcrumb-dark .current { color: white; }

/* ------- Legal Pages ------- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 0 80px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .subtitle { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; }
.legal-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content h2 { font-size: 24px; margin: 36px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 28px 0 10px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { color: var(--text-secondary); margin-bottom: 8px; line-height: 1.6; }

/* ------- No Results ------- */
.no-results {
    text-align: center; padding: 56px 24px;
    background: var(--background); border-radius: var(--radius-lg);
    border: 2px dashed var(--border); margin-top: 24px; display: none;
}
.no-results h3 { font-size: 18px; color: var(--text-muted); }

/* ------- Animations ------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
/* ------- Sticky Mobile CTA Bar (route pages only) ------- */
.mobile-cta-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar .btn {
    width: 100%; padding: 16px; font-size: 16px;
    border-radius: var(--radius-lg);
}
.mobile-cta-bar .cta-sub {
    display: flex; justify-content: center; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-muted); margin-top: 6px;
}

/* Force-hide mobile CTA bar on desktop/tablet */
@media (min-width: 769px) {
    .mobile-cta-bar {
        display: none !important;
    }
}

/* ------- Responsive ------- */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { order: -1; }
    .sidebar .sticky { position: static; }
    .hero-cta-card { flex: 0 0 100%; }
    .hero-content { flex-direction: column; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .main-nav.active {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: white; border-bottom: 1px solid var(--border);
        padding: 16px 24px; gap: 16px; box-shadow: var(--shadow-lg);
    }

    /* Hide header CTA on mobile - sticky bar replaces it */
    .header-actions .btn-primary { display: none; }

    /* Hero fixes */
    h1 { font-size: 26px !important; letter-spacing: -0.5px !important; }
    .hero-section { min-height: auto; }
    .hero-content { padding: 40px 0 80px; gap: 24px; }
    .hero-home .hero-content { padding: 60px 0 100px; }
    .hero-subtitle { font-size: 15px; }

    /* Breadcrumb fix - prevent overlap */
    .breadcrumb { font-size: 12px; flex-wrap: wrap; gap: 2px; }
    .breadcrumb a, .breadcrumb .current { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    /* Compensation badge */
    .compensation-badge { padding: 10px 18px; margin-bottom: 16px; }
    .compensation-badge .amount { font-size: 22px; }
    .compensation-badge .label-text { font-size: 14px; }

    /* CTA box mobile */
    .cta-box { padding: 24px; }
    .cta-box h3 { font-size: 18px; }
    .hero-cta-card { margin-top: 0; }

    /* Content */
    .main-article h2 { font-size: 22px; }
    .main-article h3 { font-size: 18px; }
    .info-card { padding: 20px; }

    /* Grid layouts */
    .timeline-grid { grid-template-columns: 1fr; gap: 32px; }
    .timeline-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-row { gap: 24px; }
    .trust-stat .value { font-size: 24px; }
    .hub-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .btn-cta { font-size: 16px; padding: 16px 32px; }

    /* Show sticky CTA bar on mobile */
    .mobile-cta-bar { display: block; }
    body.has-mobile-cta { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-container { height: 60px; }
    .logo a { font-size: 20px !important; }
    .btn-sm { padding: 8px 16px; font-size: 13px; }
    h1 { font-size: 22px !important; }
    .hero-content { padding: 32px 0 60px; }
    .breadcrumb a, .breadcrumb .current { max-width: 80px; }
}

/* ---- FAQ Accordion ---- */
.faq-container { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover { border-color: var(--primary); box-shadow: 0 2px 12px rgba(99,102,241,0.08); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
    font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}
