/* =========================================
   1. LOCAL FONTS (Strictly No CDNs)
========================================= */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
}

/* =========================================
   2. CSS VARIABLES (CollinsBlue Identity)
========================================= */
:root {
    /* Brand Colors */
    --cb-blue: #2563eb; 
    --cb-dark: #1e40af; 
    --cb-accent: #3b82f6;
    --cb-light: #eff6ff;

    /* Comprehensive Grayscale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Utility Icon Colors */
    --red-bg: #fee2e2;      --red-text: #dc2626;
    --orange-bg: #ffedd5;   --orange-text: #ea580c;
    --blue-bg: #dbeafe;     --blue-text: #2563eb;
    --green-bg: #dcfce7;    --green-text: #166534;

    /* Responsive Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(37, 99, 235, 0.1); 
    --shadow-xl: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    /* System Mapping */
    --primary-color: var(--cb-blue);
    --secondary-color: var(--cb-dark);
    --accent-color: var(--cb-accent);
    --bg-light: var(--gray-50);
    --white: #ffffff;
    --text-dark: var(--gray-900);
    --text-light: var(--gray-600);
    --border-color: var(--gray-200);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}

/* =========================================
   3. GLOBAL RESET & FLUID TYPOGRAPHY
========================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }

h1 { color: var(--text-dark); line-height: 1.05; letter-spacing: -0.04em; font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); margin-bottom: 1rem; font-weight: 800; }
h2 { color: var(--text-dark); line-height: 1.15; letter-spacing: -0.03em; font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem); margin-bottom: 0.75rem; font-weight: 700; }
h3 { color: var(--text-dark); line-height: 1.3; font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); margin-bottom: 0.5rem; font-weight: 600; }
p { color: var(--text-light); margin-bottom: 1rem; font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem); line-height: 1.7; }

img, video, svg { max-width: 100%; height: auto; display: block; }

/* =========================================
   4. LAYOUT & CONTAINERS
========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}
.section-padding { padding: clamp(80px, 10vw, 140px) 0; }
.text-center { text-align: center; }

/* Desktop Grids */
.grid-2, .grid-3 {
    display: grid;
    gap: clamp(20px, 4vw, 32px);
    width: 100%;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); align-items: center; }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   5. UI COMPONENTS (Buttons & Cards)
========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-weight: 600; border-radius: 12px; border: 2px solid transparent;
    cursor: pointer; padding: 14px 28px; transition: var(--transition);
    text-align: center; white-space: nowrap;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn-primary { 
    background-color: var(--primary-color); 
    color: var(--white); 
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
    border: none;
}
.btn-primary:hover { 
    background-color: var(--secondary-color); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35); 
}

.btn-accent { background-color: var(--accent-color); color: var(--white); }
.btn-accent:hover { background-color: var(--secondary-color); color: var(--white); }

.btn-outline { 
    background-color: transparent; 
    color: var(--text-dark); 
    border-color: var(--border-color); 
}
.btn-outline:hover { 
    border-color: var(--primary-color); 
    background-color: var(--cb-light); 
    color: var(--primary-color); 
    transform: translateY(-2px); 
}

.badge {
    background-color: var(--blue-bg); color: var(--secondary-color);
    padding: 6px 16px; border-radius: 9999px; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    display: inline-block;
}

.card-white {
    background-color: var(--white);
    padding: clamp(24px, 4vw, 32px);
    border-radius: 20px; border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm); transition: var(--transition);
    display: flex; flex-direction: column; height: 100%;
}
.card-white:hover { 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-6px); 
    border-color: var(--blue-bg); 
}

.icon-box {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; flex-shrink: 0;
}

/* =========================================
   6. SCROLL REVEAL ANIMATIONS
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   7. SVG ANIMATIONS (Live Visuals)
========================================= */
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes dash-scroll {
    to { stroke-dashoffset: -40; }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes subtle-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.svg-wheel {
    transform-origin: center;
    transform-box: fill-box;
    animation: spin 1.5s linear infinite;
}
.svg-chassis {
    animation: float 2.5s ease-in-out infinite;
}
.svg-road {
    stroke-dasharray: 20 20;
    animation: dash-scroll 1s linear infinite;
}
.svg-bg-glow {
    transform-origin: center;
    transform-box: fill-box;
    animation: pulse-glow 4s ease-in-out infinite;
}

/* =========================================
   8. HERO & QUOTE OVERLAP ARCHITECTURE
========================================= */
.hero-modern {
    padding: clamp(80px, 10vw, 120px) 0 clamp(120px, 14vw, 180px); 
    background: 
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle dot grid pattern */
.hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--cb-dark) 0%, var(--cb-blue) 50%, var(--cb-accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cb-light);
    border: 1px solid var(--blue-bg);
    color: var(--cb-blue);
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
    width: 8px; height: 8px;
    background: var(--cb-blue);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.quote-overlap-wrapper {
    margin-top: -100px; 
    position: relative;
    z-index: 10;
    padding-bottom: clamp(60px, 8vw, 112px);
}

.quote-widget {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: clamp(32px, 5vw, 56px);
    position: relative;
    overflow: hidden;
}

.quote-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cb-blue), var(--cb-accent), var(--cb-dark));
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

/* =========================================
   9. FORMS & INPUTS
========================================= */
.form-group { margin-bottom: 1.5rem; width: 100%; text-align: left; }
.form-group label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
    color: var(--text-dark); 
    font-size: 0.9rem; 
    letter-spacing: -0.01em;
}
.form-control {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border-color);
    border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 1rem;
    color: var(--text-dark); background-color: var(--gray-50); transition: var(--transition);
}
.form-control::placeholder { color: var(--gray-400); }
.form-control:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--blue-bg); background-color: var(--white);
}

.quote-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }

/* Tracking panel */
.tracking-panel {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--cb-light) 100%);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tracking-panel::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* =========================================
   10. HEADER & NAVIGATION
========================================= */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    position: sticky; top: 0; z-index: 999; width: 100%;
    transition: var(--transition);
}
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.mobile-menu-btn { display: block; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-dark); }
.nav-links { display: none; width: 100%; }

.nav-links.active {
    display: flex; 
    flex-direction: column; 
    position: absolute;
    top: 80px; 
    left: 0; 
    right: 0; 
    background-color: #ffffff;
    padding: 1.5rem 2rem 2rem; 
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); 
    gap: 0.5rem; 
    text-align: left;
    z-index: 1000;
}

.nav-links a:not(.btn) {
    font-weight: 600; 
    color: var(--text-dark); 
    font-size: 1.125rem;
    padding: 12px; 
    display: block; 
    border-radius: 8px;
}
.nav-links a:not(.btn):hover {
    background-color: var(--gray-50);
    color: var(--primary-color);
}

.nav-links a.btn {
    width: 100%; 
    margin-top: 1rem;
    padding: 14px 24px;
    font-size: 1.125rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
    .nav-links {
        display: flex; flex-direction: row; align-items: center; justify-content: flex-end;
        position: static; background: transparent; padding: 0; border: none; box-shadow: none;
        gap: 2.5rem; width: auto;
    }

    .nav-links a:not(.btn) { 
        font-size: 0.95rem; color: var(--text-light); padding: 0; display: inline; border-radius: 0;
        font-weight: 500;
        position: relative;
    }
    .nav-links a:not(.btn)::after {
        content: '';
        position: absolute;
        bottom: -4px; left: 0;
        width: 0; height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }
    .nav-links a:not(.btn):hover::after {
        width: 100%;
    }
    .nav-links a:not(.btn):hover {
        background-color: transparent; color: var(--primary-color);
    }

    .nav-links a.btn {
        width: auto;
        margin-top: 0;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* =========================================
   11. TRUST BAR
========================================= */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
    text-align: center;
    padding: 16px;
}
.trust-item .trust-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--cb-blue);
    line-height: 1;
    margin-bottom: 4px;
}
.trust-item .trust-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* =========================================
   12. VERTICAL SEQUENCE (Services & Routes)
========================================= */
.vertical-sequence {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 5vw, 48px);
    text-align: left;
}

.vertical-card {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vertical-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--cb-blue), var(--cb-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.vertical-card:hover::before {
    transform: scaleX(1);
}
.vertical-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-bg);
    transform: translateY(-4px);
}

.vertical-card h3 { margin-bottom: 0.75rem; }
.vertical-card p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
    .vertical-card {
        flex-direction: row;
        align-items: center;
    }
    .vertical-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/* =========================================
   13. FOOTER
========================================= */
footer { background-color: var(--gray-900); color: var(--gray-400); padding: clamp(60px, 8vw, 80px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-col h4 { color: var(--white); margin-bottom: 1.5rem; font-weight: 700; font-size: 1.125rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--gray-400); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--gray-800); font-size: 0.875rem; }

/* =========================================
   14. DISPATCH TICKER
========================================= */
.dispatch-ticker {
    background: var(--gray-900);
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 34s linear infinite;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-item strong { color: var(--white); font-weight: 600; }
.ticker-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cb-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    flex-shrink: 0;
    animation: pulse-glow 2.2s ease-in-out infinite;
}
.ticker-sep { color: var(--gray-700); }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* =========================================
   15. GPS ROUTE LINE
========================================= */
@media (min-width: 768px) {
    .vertical-sequence { position: relative; padding-left: 60px; }
    .vertical-sequence::before {
        content: "";
        position: absolute;
        left: 23px; top: 8px; bottom: 8px;
        width: 2px;
        background-image: repeating-linear-gradient(to bottom, var(--cb-blue) 0 8px, transparent 8px 18px);
        opacity: 0.45;
    }
    .vertical-card { position: relative; }
    .vertical-card::after {
        content: "";
        position: absolute;
        left: -45px; top: 50%;
        transform: translateY(-50%);
        width: 16px; height: 16px;
        border-radius: 50%;
        background: var(--white);
        border: 3px solid var(--cb-blue);
        box-shadow: 0 0 0 4px var(--blue-bg);
        z-index: 2;
        transition: var(--transition);
    }
    .vertical-card:hover::after {
        background: var(--cb-blue);
        border-color: var(--white);
        box-shadow: 0 0 0 6px var(--blue-bg), 0 0 20px rgba(37,99,235,0.3);
    }
    .vertical-card:first-child::after {
        animation: pulse-glow 2.6s ease-in-out infinite;
    }
}

/* Route section numbering */
.route-map { counter-reset: route-stop; }
.route-map .vertical-card { counter-increment: route-stop; }
.route-map .vertical-card h3::before {
    content: "Route " counter(route-stop, decimal-leading-zero) " — ";
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--cb-accent);
}

/* Media frame */
.media-frame { 
    position: relative; 
    overflow: hidden; 
    border-radius: 16px; 
    flex: 1;
}
.media-frame img, .media-frame video {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.vertical-card:hover .media-frame img,
.vertical-card:hover .media-frame video {
    transform: scale(1.03);
}
.media-frame::before {
    content: attr(data-label);
    position: absolute;
    top: 16px; left: 16px;
    z-index: 2;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 9999px;
}

/* Live badge */
.live-card { position: relative; }
.live-card::before {
    content: "● LIVE";
    position: absolute;
    top: 24px; left: 24px;
    z-index: 2;
    background: rgba(220, 38, 38, 0.9);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 9999px;
    animation: pulse-glow 1.8s ease-in-out infinite;
    backdrop-filter: blur(4px);
}

/* Leadership portrait */
.leadership-portrait { position: relative; }
.leadership-portrait::before {
    content: "";
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: linear-gradient(135deg, var(--cb-blue), var(--cb-dark));
    border-radius: 28px;
    z-index: 0;
    opacity: 0.9;
}
.leadership-portrait img { 
    position: relative; 
    z-index: 1; 
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   16. SECTION HEADERS
========================================= */
.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 {
    margin-bottom: 0.75rem;
}
.section-header p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   17. PRE-FOOTER CTA
========================================= */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--cb-dark) 0%, var(--cb-blue) 100%);
    border-radius: 28px;
    padding: clamp(48px, 6vw, 80px);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.pre-footer-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.pre-footer-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.pre-footer-cta .btn-white {
    background: var(--white);
    color: var(--cb-dark);
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.pre-footer-cta .btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* =========================================
   18. HERO SCROLL INDICATOR
========================================= */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    animation: subtle-bob 2s ease-in-out infinite;
}
.scroll-indicator svg {
    width: 24px; height: 24px;
    stroke: var(--gray-400);
}

/* =========================================
   19. RESPONSIVE TWEAKS
========================================= */
@media (max-width: 767px) {
    .hero-modern { padding-top: 60px; padding-bottom: 100px; }
    .quote-overlap-wrapper { margin-top: -60px; }
    .quote-widget { border-radius: 20px; padding: 24px; }
    .vertical-card { border-radius: 20px; }
    .media-frame, .media-frame img, .media-frame video { border-radius: 12px; }
    .leadership-portrait::before { inset: 12px -12px -12px 12px; border-radius: 20px; }
    .leadership-portrait img { border-radius: 16px; }
    .pre-footer-cta { border-radius: 20px; padding: 40px 24px; }
}
