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

:root {
    /* Core backgrounds */
    --bg: #070809;
    --bg-elevated: #0a0a0c;
    --bg-dark: #0a0a0f;
    --bg-card: #0f0f15;
    --bg-card-hover: #14141c;

    /* Surfaces */
    --surface: rgba(255,255,255,0.03);
    --surface-2: rgba(255,255,255,0.06);

    /* Text hierarchy */
    --text: rgba(255,255,255,0.92);
    --text-secondary: rgba(255,255,255,0.70);
    --text-muted: rgba(255,255,255,0.50);

    /* Brand colors */
    --brand-red: #CF1D1E;
    --brand-red-muted: #8a1a1a;
    --accent: #E63946;
    --accent-dark: #c1121f;

    /* Borders */
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);

    /* Orb animation colors */
    --orb-size: 40vmax;
    --orb-1: 207, 29, 30;
    --orb-2: 230, 57, 70;
    --orb-3: 180, 20, 20;
    --orb-4: 255, 100, 100;
    --orb-5: 255, 255, 255;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Global film grain overlay for premium feel */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

a { color: inherit; text-decoration: none; }

/* Header Top Bar - Red Banner */
.header-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
    background: #CF1D1E !important;
    padding: 0.5rem 0 !important;
}

.header-top-content {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 2rem !important;
    padding-right: 2.5rem !important;
}

.header-top-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s ease;
}

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

.header-top-promo strong {
    color: #fff !important;
    font-weight: 700;
}

.header-top-link i {
    color: #fff !important;
}

.header-top-phone {
    font-weight: 600;
    color: #fff;
    font-size: 0.9375rem;
}

.header-top-region {
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 2rem;
    margin-left: 0.5rem;
}

.header-top-promo {
    font-size: 0.875rem;
    color: #fff;
}

.header-top-promo strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .header-top {
        display: none !important;
    }
}

/* Header - Clean Single Line */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7,8,9,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo img { height: 46px; width: auto; }

.logo-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.logo-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.25);
}
.partner-logo {
    height: 62px;
    width: auto;
    opacity: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item { position: relative; list-style: none; }

.nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
}

.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }
.nav-link i { font-size: 0.6rem; opacity: 0.5; }

.btn-header {
    padding: 0.625rem 1.25rem;
    background: var(--brand-red);
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-header:hover { background: #b81a1a; }

/* Dropdowns */
.dropdown-menu, .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10,10,12,0.98);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    backdrop-filter: blur(20px);
}

.nav-item:hover .dropdown-menu,
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.15s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--text);
    background: var(--surface);
}

.mega-menu { padding: 1.5rem; min-width: 580px; }

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mega-menu-column h4 {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.mega-menu-column a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.15s ease;
    white-space: nowrap;
}

.mega-menu-column a:hover { color: var(--text); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0c 0%, #050506 50%, #0d0808 100%);
    padding-top: calc(100px + 37px + 100px);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 200px;
    }
}

.orb-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.7;
}

.orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: hard-light;
}

.orb-1 {
    width: var(--orb-size); height: var(--orb-size);
    background: radial-gradient(circle at 30% 30%, rgba(var(--orb-1), 0.9) 0%, rgba(var(--orb-1), 0.4) 50%, transparent 70%);
    top: -10%; right: -5%;
}

.orb-2 {
    width: calc(var(--orb-size) * 0.8); height: calc(var(--orb-size) * 0.8);
    background: radial-gradient(circle at 70% 30%, rgba(var(--orb-2), 0.8) 0%, rgba(var(--orb-2), 0.3) 50%, transparent 70%);
    top: 50%; right: 10%;
    mix-blend-mode: screen;
}

.orb-3 {
    width: calc(var(--orb-size) * 0.6); height: calc(var(--orb-size) * 0.6);
    background: radial-gradient(circle at 50% 50%, rgba(var(--orb-3), 0.7) 0%, rgba(var(--orb-3), 0.2) 50%, transparent 70%);
    bottom: 10%; right: 30%;
    mix-blend-mode: overlay;
}

.orb-4 {
    width: calc(var(--orb-size) * 0.5); height: calc(var(--orb-size) * 0.5);
    background: radial-gradient(circle at 40% 60%, rgba(var(--orb-4), 0.6) 0%, rgba(var(--orb-4), 0.2) 50%, transparent 70%);
    top: 30%; left: 40%;
    mix-blend-mode: color-dodge;
}

.orb-5 {
    width: calc(var(--orb-size) * 0.3); height: calc(var(--orb-size) * 0.3);
    background: radial-gradient(circle at 50% 50%, rgba(var(--orb-5), 0.4) 0%, rgba(var(--orb-5), 0.1) 50%, transparent 70%);
    top: 20%; right: 25%;
    mix-blend-mode: overlay;
}

.grain {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .thin { font-weight: 200; color: var(--text-secondary); }

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--brand-red); color: white; }
.btn-primary:hover { background: #b81a1a; transform: translateY(-1px); }

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--text-secondary);
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(0,0,0,0.5);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

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

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* Page Opening - Left Aligned */
.page-opening {
    padding: calc(100px + 37px + 100px) 5% 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0c 0%, #050506 50%, #0d0808 100%);
}

.page-opening::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 60vmax; height: 60vmax;
    background: radial-gradient(circle at center, rgba(207, 29, 30, 0.12) 0%, rgba(207, 29, 30, 0.04) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.page-lead {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    position: relative;
}

.page-lead a { color: var(--text-muted); transition: color 0.2s; }
.page-lead a:hover { color: var(--text); }

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    max-width: 700px;
    position: relative;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.7;
    position: relative;
}

/* Sections */
.page-section { padding: 5rem 5%; position: relative; }
.page-section--alt { background: var(--bg-elevated); }

/* Section transitions - gradient fades for smoother visual flow */
.section-fade-in::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-fade-out::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Alt section fades */
.page-section--alt.section-fade-in::before {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, transparent 100%);
}

.page-section--alt.section-fade-out::after {
    background: linear-gradient(0deg, var(--bg-elevated) 0%, transparent 100%);
}

/* Divider line between sections */
.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}

/* Accent divider with glow */
.section-divider-accent::before {
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

/* Texture Patterns */
.grid-texture {
    position: relative;
}

.grid-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.dot-texture {
    position: relative;
}

.dot-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Prose intro styling */
.section-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 550px;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 200;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span { color: var(--accent); }

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--surface-2);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.25rem;
}

.service-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }

.service-card .learn-more {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.service-card:hover .learn-more { color: var(--accent); }

/* Option Blocks */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.option-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: block;
}

.option-block:hover {
    border-color: var(--border-hover);
    background: var(--surface-2);
    transform: translateY(-2px);
}

.option-block.featured {
    border-color: var(--accent);
    background: rgba(230, 57, 70, 0.05);
}

.option-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.option-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.option-block p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }

.option-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.option-block:hover .option-link { color: var(--accent); }

/* Category Groups */
.category-group { margin-bottom: 3rem; position: relative; z-index: 1; }
.category-group:last-child { margin-bottom: 0; }

.category-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-rows {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.service-row-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    transition: all 0.2s ease;
}

.service-row-item:hover { background: var(--surface-2); }
.service-row-name { font-weight: 600; font-size: 0.9375rem; min-width: 160px; }
.service-row-desc { font-size: 0.875rem; color: var(--text-secondary); flex: 1; }
.service-row-item i { color: var(--text-muted); font-size: 0.75rem; transition: color 0.2s; }
.service-row-item:hover i { color: var(--accent); }

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(207, 29, 30, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 0.75rem; }
.cta-section p { font-size: 1.0625rem; color: var(--text-secondary); max-width: 450px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-reassurance { font-size: 0.9375rem; color: var(--text-muted); margin-top: 1.5rem; }

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand img { height: 36px; margin-bottom: 1rem; opacity: 0.9; }
.footer-tagline { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }

.footer-column h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { font-size: 0.9375rem; color: var(--text-muted); transition: color 0.2s ease; }
.footer-column a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.8125rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text); }

/* Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s ease; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-menu { min-width: 400px; }
    :root { --orb-size: 50vmax; }
}

@media (max-width: 768px) {
    .header { padding: 1rem 1.5rem; }
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .page-opening { padding: 200px 1.5rem 3rem; }
    .page-section { padding: 3rem 1.5rem; }
    .hero-content { padding: 0 1.5rem; max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .option-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    :root { --orb-size: 60vmax; }
    .orb-container { filter: blur(60px); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .service-row-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .service-row-name { min-width: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .orb { animation: none; }
    .orb-mouse { transition: none; }
}

/* ==========================================================================
   Prose / Narrative Content Styling
   ========================================================================== */

.prose {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.prose h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose strong {
    color: var(--text);
    font-weight: 600;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.prose a:hover {
    color: var(--text);
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Prose block - standalone narrative section */
.prose-block {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.prose-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.prose-block p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.prose-block p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Content with Details Panel (2-column narrative)
   ========================================================================== */

.content-with-details {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.content-prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.content-prose p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.content-details h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.content-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-details li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.content-details li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Simple Service Rows (Not icon cards)
   ========================================================================== */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    transition: background 0.2s ease;
    text-decoration: none;
}

.service-row:hover {
    background: var(--surface-2);
}

.service-row .service-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
    min-width: 180px;
}

.service-row .service-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex: 1;
}

.service-row i {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.service-row:hover i {
    color: var(--accent);
}

/* ==========================================================================
   Simple Points (Not icon cards)
   ========================================================================== */

.points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.point {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.point-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.point-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Inline Numbers Row
   ========================================================================== */

.numbers-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.numbers-row .number {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.numbers-row .number strong {
    color: var(--accent);
    font-weight: 700;
}

/* ==========================================================================
   Quote Block (Simple testimonial)
   ========================================================================== */

.quote-block {
    border-left: 3px solid var(--accent);
    padding-left: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.quote-block p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-block cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
}

/* ==========================================================================
   Container Utilities
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* ==========================================================================
   Dark Card Styling (per style guide)
   ========================================================================== */

.dark-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    transition: background 0.2s ease;
}

.dark-card:hover {
    background: var(--bg-card-hover);
}

/* ==========================================================================
   Red CTA Section
   ========================================================================== */

.cta-red {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 6rem 5%;
    text-align: center;
}

.cta-red h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-red p {
    color: rgba(255,255,255,0.85);
    font-size: 1.0625rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-red .btn {
    background: white;
    color: var(--accent);
}

.cta-red .btn:hover {
    background: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Page CTA Section
   ========================================================================== */

.page-cta {
    padding: 6rem 5%;
    background: var(--bg-elevated);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(207, 29, 30, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-cta p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Button Sizes
   ========================================================================== */

.btn-lg {
    padding: 1.125rem 2rem;
    font-size: 1rem;
}

/* ==========================================================================
   Additional Responsive Styles for New Components
   ========================================================================== */

@media (max-width: 992px) {
    .content-with-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-row .service-name {
        min-width: auto;
    }

    .numbers-row {
        gap: 1.5rem;
    }

    .prose,
    .prose-block {
        max-width: 100%;
    }
}

/* ==========================================================================
   Atmospheric Background Images
   ========================================================================== */

/* Base atmospheric background - very subtle */
.atmosphere {
    position: relative;
    overflow: hidden;
}

.atmosphere::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    filter: grayscale(100%) contrast(1.1);
    pointer-events: none;
    z-index: 0;
}

/* Specific atmosphere images */
.atmosphere-soc::before {
    background-image: url('../images/soc-monitors.webp');
}

.atmosphere-team::before {
    background-image: url('../images/team-office.webp');
}

.atmosphere-control::before {
    background-image: url('../images/control-room.webp');
}

.atmosphere-cyber::before {
    background-image: url('../images/cyber-screens.webp');
}

.atmosphere-data::before {
    background-image: url('../images/data-center.webp');
}

/* Gradient overlay to blend atmosphere into background */
.atmosphere::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        var(--bg) 0%,
        transparent 15%,
        transparent 85%,
        var(--bg) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above atmosphere */
.atmosphere > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Team Portraits - Constrained & Tasteful
   ========================================================================== */

.team-portraits {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: 2.5rem;
}

.portrait {
    text-align: center;
}

.portrait-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    filter: grayscale(20%);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.portrait:hover .portrait-image {
    filter: grayscale(0%);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.portrait-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 0.75rem;
    display: block;
}

.portrait-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Larger portrait variant - leadership */
.portrait-lg .portrait-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .team-portraits {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   Ambient Glow Effects
   ========================================================================== */

.glow-red {
    position: relative;
    overflow: hidden;
}

.glow-red::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle at center, rgba(207, 29, 30, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-red > * {
    position: relative;
    z-index: 1;
}

/* Left-positioned glow */
.glow-left::before {
    right: auto;
    left: -10%;
}

/* ==========================================================================
   Image Cards - For tasteful image placement
   ========================================================================== */

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: all 0.4s ease;
}

.image-card:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0,0,0,0.6) 100%
    );
    pointer-events: none;
}

.image-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.image-card-caption h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.image-card-caption p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Vignette Effect
   ========================================================================== */

.vignette {
    position: relative;
}

.vignette::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 40%,
        rgba(0,0,0,0.4) 100%
    );
    pointer-events: none;
}

/* ==========================================================================
   Page Jump Navigation
   ========================================================================== */

.page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.page-nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.page-nav a {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 0.375rem 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.page-nav a:hover {
    color: var(--text);
    border-color: var(--accent);
    background: rgba(230, 57, 70, 0.08);
}

/* ==========================================================================
   Expandable Content Sections
   ========================================================================== */

.expand-section {
    border-bottom: 1px solid var(--border);
}

.expand-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s ease;
}

.expand-section summary::-webkit-details-marker { display: none; }

.expand-section summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.expand-section[open] summary::after {
    content: '−';
    color: var(--accent);
}

.expand-section summary:hover {
    color: var(--accent);
}

.expand-section summary:hover::after {
    color: var(--accent);
}

.expand-content {
    padding: 0 0 1.5rem 0;
    animation: expandFadeIn 0.3s ease;
}

.expand-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expand-content p:last-child {
    margin-bottom: 0;
}

@keyframes expandFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Read more inline toggle */
.read-more-toggle {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.read-more-toggle:hover {
    text-decoration: underline;
}

.read-more-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.read-more-content {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.read-more-content.active {
    display: block;
    animation: expandFadeIn 0.3s ease;
}

/* ==========================================================================
   Section Quick Summary
   ========================================================================== */

.section-summary {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.section-tldr {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border-left: 3px solid var(--accent);
    margin-bottom: 1.5rem;
}

.section-tldr-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    flex-shrink: 0;
}

.section-tldr p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    body.nav-open {
        overflow: hidden;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a2e;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav.nav-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-toggle span {
        width: 100%;
        height: 2px;
        background: white;
        transition: transform 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mega-menu,
    .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
    }

    .nav-item:hover .mega-menu,
    .nav-item:hover .dropdown-menu {
        display: block;
    }
}

/* iOS Mobile Menu Fix */
.mobile-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    display: none;
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Nav Override - Must come after other rules */
@media (max-width: 768px) {
    .nav {
        display: block !important;
        position: fixed !important;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a2e;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        padding: 2rem;
    }
    
    .nav.nav-open {
        transform: translateX(0) !important;
    }
    
    .nav-list {
        display: flex;
        flex-direction: column;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        color: white;
    }
}

/* Mobile Nav Z-Index Fix */
@media (max-width: 768px) {
    .nav {
        z-index: 99999 !important;
    }
    
    .header {
        z-index: 100000 !important;
        position: relative;
    }
    
    body.nav-open main,
    body.nav-open .hero,
    body.nav-open .page-opening,
    body.nav-open section {
        z-index: 1 !important;
    }
}

/* Full Screen Mobile Nav Fix */
@media (max-width: 768px) {
    .nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #1a1a2e !important;
        z-index: 999999 !important;
        padding-top: 100px !important;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav.nav-open {
        transform: translateX(0) !important;
    }
}

/* Mobile Dropdown Menu Fixes */
@media (max-width: 768px) {
    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 1.5rem !important;
    }
    
    .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 1rem 0 !important;
        color: white !important;
        font-size: 1.1rem !important;
    }
    
    .nav-link i {
        float: right;
        margin-top: 4px;
    }
    
    .mega-menu,
    .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        background: rgba(0,0,0,0.2) !important;
        box-shadow: none !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .nav-item.open .mega-menu,
    .nav-item.open .dropdown-menu,
    .nav-item:focus-within .mega-menu,
    .nav-item:focus-within .dropdown-menu {
        display: block !important;
    }
    
    .mega-menu-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .mega-menu-column {
        width: 100% !important;
    }
    
    .mega-menu-column h4 {
        color: #CF1D1E !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        text-transform: uppercase !important;
    }
    
    .mega-menu a,
    .dropdown-menu a {
        display: block !important;
        padding: 0.5rem 0 !important;
        color: rgba(255,255,255,0.8) !important;
        font-size: 0.95rem !important;
    }
}

/* Fix mega-menu off-screen issue */
@media (max-width: 768px) {
    .mega-menu,
    .dropdown-menu {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .mega-menu-grid {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mega-menu-column {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mega-menu-column a,
    .dropdown-menu a {
        white-space: normal !important;
        overflow: visible !important;
    }
}

/* Comprehensive iOS Safari Mobile Menu Fixes */
@media (max-width: 768px) {
    /* Fix 100vh iOS issue */
    .nav {
        height: 100% !important;
        height: -webkit-fill-available !important;
        min-height: 100vh !important;
        min-height: -webkit-fill-available !important;
        -webkit-overflow-scrolling: touch !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    /* Ensure nav escapes any parent overflow:hidden */
    .header,
    .header-main,
    .header-container {
        overflow: visible !important;
    }
    
    /* Remove any transforms on parents that break fixed positioning */
    body.nav-open .header {
        transform: none !important;
    }
    
    /* Ensure clickable elements work on iOS */
    .nav-link,
    .mobile-toggle,
    .mega-menu a,
    .dropdown-menu a {
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
    }
    
    /* Fix mega-menu wide variant */
    .mega-menu-wide {
        position: static !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

/* Mobile Menu Close Button */
@media (max-width: 768px) {
    .nav::before {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 28px;
        color: white;
        cursor: pointer;
        z-index: 10;
        padding: 10px;
        line-height: 1;
    }
}
