/* -------------------------------------------------------------
   IVAN EVENTS - BESPOKE TECHNICAL AV & CONCERT PRODUCTION SYSTEM
   Primary: Logo Red (#FF0033) + Obsidian Black (#05050A) + Crisp White (#FFFFFF)
   Secondary: Neon Hot Pink (#FF007F) + Electric Cyan (#00F0FF)
   Fonts: Bebas Neue (Concert Stage Title) + Space Grotesk (Tech Headers) + JetBrains Mono (AV Readouts) + Plus Jakarta Sans (Body)
   Design Architecture by Lyons Labs (0BIS)
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@500;700&family=JetBrains+Mono:wght@400;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Lato:wght@300;400&display=swap');

:root {
    /* Primary Base Colors */
    --bg-canvas: #05050A;
    --bg-card: rgba(16, 16, 26, 0.78);
    --bg-card-hover: rgba(26, 26, 42, 0.90);
    --bg-header: rgba(5, 5, 10, 0.88);

    --logo-red: #FF0033;
    --logo-red-hover: #D6002B;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.90);
    --text-muted: rgba(255, 255, 255, 0.72);

    /* Secondary Miami Stage & Laser Lighting Accents */
    --neon-pink: #FF007F;
    --electric-cyan: #00F0FF;
    --ultraviolet: #7B2CBF;

    /* Glassmorphism & Translucent Borders */
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-pink-glow: rgba(255, 0, 127, 0.40);
    --border-cyan-glow: rgba(0, 240, 255, 0.40);

    /* Typography Stack Specific to AV & Production */
    --font-stage: 'Bebas Neue', sans-serif;
    --font-head: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --glass-blur: blur(24px);
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.92);

    /* Technical Stage Grid + Chiaroscuro Backdrop */
    --chiaroscuro-bg: 
        radial-gradient(ellipse 70% 45% at 50% -5%, rgba(255, 0, 51, 0.24) 0%, transparent 65%),
        radial-gradient(ellipse 55% 55% at 90% 40%, rgba(255, 0, 127, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 10% 80%, rgba(0, 240, 255, 0.18) 0%, transparent 60%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #05050A;
    --bg-grid-size: 40px 40px;
}

[data-theme="light"] {
    /* Primary Base Colors (Miami Daylight Art Deco) */
    --bg-canvas: #F4F6FB;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-header: rgba(244, 246, 251, 0.96);

    --logo-red: #D6002B;
    --logo-red-hover: #B30022;
    --text-primary: #0A0A14;
    --text-secondary: #1F1F30;
    --text-muted: #4A4A5E;

    /* Secondary Miami Stage Accents (High Contrast Light Mode Tones - Red & Magenta) */
    --neon-pink: #C8005A;
    --electric-cyan: #D6002B; /* Swapped from cyan to Ivan Red for maximum legibility */
    --ultraviolet: #581C87;

    /* Glassmorphism & Translucent Borders */
    --border-glass: rgba(0, 0, 0, 0.12);
    --border-pink-glow: rgba(200, 0, 90, 0.35);
    --border-cyan-glow: rgba(214, 0, 43, 0.35);

    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    /* Daylight Miami Vice Backdrop */
    --chiaroscuro-bg: 
        radial-gradient(ellipse 70% 45% at 50% -5%, rgba(214, 0, 43, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 55% 55% at 90% 40%, rgba(200, 0, 90, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 10% 80%, rgba(214, 0, 43, 0.06) 0%, transparent 60%),
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
        #F4F6FB;
}

/* WCAG AAA LIGHT MODE ADA LEGIBILITY OVERRIDES */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] .card-title,
[data-theme="light"] .stat-num,
[data-theme="light"] .stat-label,
[data-theme="light"] .nav-brand,
[data-theme="light"] p,
[data-theme="light"] .hero-subtitle,
[data-theme="light"] .card-desc,
[data-theme="light"] label,
[data-theme="light"] .stylized-form-label,
[data-theme="light"] td,
[data-theme="light"] th {
    color: #0A0A14 !important;
}

/* UNIFIED LIGHT MODE BLUE TEXT & FOOTER BRANDING OVERRIDES */
[data-theme="light"] .cyan-mono,
[data-theme="light"] .cyan-accent,
[data-theme="light"] .electric-cyan,
[data-theme="light"] .hero-title .cyan-mono,
[data-theme="light"] .glass-card-title,
[data-theme="light"] .ui-mockup-title {
    color: #007A94 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

[data-theme="light"] .pink-accent,
[data-theme="light"] .hero-title .pink-accent {
    color: #C8005A !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

[data-theme="light"] .hero-pill,
[data-theme="light"] .pill-demo,
[data-theme="light"] .section-tag {
    background: rgba(0, 122, 148, 0.10) !important;
    border-color: #007A94 !important;
    color: #007A94 !important;
    font-weight: 800 !important;
}

/* LIGHT MODE HUD TOGGLE BUTTONS HIGH-CONTRAST TEXT OVERRIDES */
[data-theme="light"] .i18n-toggle-btn,
[data-theme="light"] .theme-toggle-btn {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(0, 0, 0, 0.22) !important;
    color: #0A0A14 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .i18n-toggle-btn,
[data-theme="light"] .theme-toggle-btn {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(10, 10, 20, 0.28) !important;
    color: #0A0A14 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .i18n-toggle-btn span,
[data-theme="light"] .theme-toggle-btn span {
    color: inherit;
}

[data-theme="light"] .i18n-toggle-btn:hover,
[data-theme="light"] .theme-toggle-btn:hover {
    border-color: #D6002B !important;
    box-shadow: 0 0 12px rgba(214, 0, 43, 0.25) !important;
}

[data-theme="light"] .btn-miami-cta {
    background: rgba(0, 122, 148, 0.12) !important;
    border: 1.5px solid #007A94 !important;
    color: #007A94 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(0, 122, 148, 0.18) !important;
}


[data-theme="light"] .btn-miami-cta:hover {
    background: #007A94 !important;
    color: #FFFFFF !important;
}

/* BULLETPROOF FOOTER BRANDING & WORDMARK OVERRIDES */
.footer-brand,
.footer-brand *,
footer .footer-brand,
footer .footer-brand *,
[data-theme="light"] footer .footer-brand,
[data-theme="light"] footer .footer-brand * {
    color: #FFFFFF !important;
    text-shadow: none !important;
}

.footer-brand .red-logo,
footer .footer-brand .red-logo,
[data-theme="light"] footer .footer-brand .red-logo {
    color: #FF0033 !important;
    font-weight: bold !important;
}

/* FOOTER BOTTOM BAR CLEARANCE FOR FLOATING HUD PILLS */
.footer-bottom-bar {
    padding-left: 220px !important; /* Clears bottom-left floating HUD pills on desktop */
}

@media (max-width: 992px) {
    .footer-bottom-bar {
        padding-left: 0 !important;
    }
}

/* FOOTER LIGHT MODE OVERRIDES (DARK OBSIDIAN BACKDROP WITH CRISP WHITE TEXT) */
[data-theme="light"] footer {
    background: #080812 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
}

[data-theme="light"] footer h3,
[data-theme="light"] footer h4,
[data-theme="light"] footer p,
[data-theme="light"] footer li,
[data-theme="light"] footer .footer-credit,
[data-theme="light"] footer .footer-title {
    color: #FFFFFF !important;
}

[data-theme="light"] footer a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
}

[data-theme="light"] footer a:hover {
    color: var(--neon-pink) !important;
}


[data-theme="light"] footer .hero-pill {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    color: #FFFFFF !important;
}

[data-theme="light"] footer .hero-pill:hover {
    border-color: var(--electric-cyan) !important;
    color: var(--electric-cyan) !important;
}


/* MODAL & CALENDAR SCHEDULER LIGHT MODE OVERRIDES */
[data-theme="light"] .modal-header-bar {
    background: #EAEFF5 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

[data-theme="light"] .modal-header-tag {
    color: #D6002B !important;
    font-weight: 700 !important;
}

[data-theme="light"] .modal-close-btn {
    color: #0A0A14 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .cal-day {
    background: #F0F4F8 !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #0A0A14 !important;
}

[data-theme="light"] .cal-day:hover,
[data-theme="light"] .cal-day.selected {
    background: #D6002B !important;
    color: #FFFFFF !important;
}

[data-theme="light"] .time-pill-btn {
    background: #F0F4F8 !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
    color: #0A0A14 !important;
}

[data-theme="light"] .time-pill-btn.selected {
    background: #D6002B !important;
    border-color: #D6002B !important;
    color: #FFFFFF !important;
}



[data-theme="light"] .glass-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    color: #0A0A14 !important;
}

[data-theme="light"] .hero-video-backdrop {
    opacity: 0.18 !important;
    filter: brightness(1.1) contrast(1.1) !important;
}

[data-theme="light"] .modal-content,
[data-theme="light"] .call-scheduler-content {
    background: #FFFFFF !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #0A0A14 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .stylized-form-input,
[data-theme="light"] .stylized-form-textarea,
[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .form-select {
    background: #F0F4F8 !important;
    border-color: rgba(0, 0, 0, 0.20) !important;
    color: #0A0A14 !important;
}

[data-theme="light"] .stylized-form-input::placeholder,
[data-theme="light"] .stylized-form-textarea::placeholder,
[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
    color: #555568 !important;
}

[data-theme="light"] .step-summary-banner {
    background: rgba(0, 122, 148, 0.08) !important;
    border-color: rgba(0, 122, 148, 0.25) !important;
    color: #0A0A14 !important;
}

.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-toggle-btn:hover {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}



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

body {
    background: var(--chiaroscuro-bg);
    background-size: 100% 100%, 100% 100%, 100% 100%, var(--bg-grid-size), var(--bg-grid-size);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Glassmorphic Technical Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-stage);
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.nav-brand .red-logo {
    color: var(--logo-red);
    text-shadow: 0 0 15px rgba(255, 0, 51, 0.7);
}

.nav-brand .av-mono {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--electric-cyan);
    letter-spacing: 1px;
    border: 1px solid var(--electric-cyan);
    padding: 2px 6px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.6);
}

.btn-red-cta {
    background: var(--logo-red);
    border: 1px solid #FF3355;
    color: #FFFFFF;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    font-family: var(--font-stage);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 18px rgba(255, 0, 51, 0.5);
}

.btn-red-cta:hover {
    background: var(--logo-red-hover);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.9);
    transform: translateY(-2px);
}

.btn-miami-cta {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.25), rgba(0, 240, 255, 0.25));
    border: 1px solid var(--electric-cyan);
    color: #FFFFFF;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    font-family: var(--font-stage);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.btn-miami-cta:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 28px rgba(255, 0, 127, 0.7);
    transform: translateY(-2px);
}

/* Containers & Layout */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 0 4rem 0;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 5rem;
}

.hero-pill {
    background: rgba(0, 240, 255, 0.10);
    border: 1px solid var(--electric-cyan);
    color: var(--electric-cyan);
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.hero-title {
    font-family: var(--font-stage);
    font-size: 5.5rem;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-title .pink-accent {
    color: var(--neon-pink);
    text-shadow: 0 0 25px rgba(255, 0, 127, 0.7);
}

.hero-title .cyan-mono {
    font-family: var(--font-head);
    color: var(--electric-cyan);
    letter-spacing: 1px;
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 840px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Glassmorphic Cards Grid */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-cyan-glow);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 240, 255, 0.20);
}

.glass-card.pink-hover:hover {
    border-color: var(--border-pink-glow);
    box-shadow: 0 25px 60px rgba(255, 0, 127, 0.25);
}

.card-num {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.card-title {
    font-family: var(--font-head);
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 300;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--electric-cyan);
    font-family: var(--font-mono);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-stage);
    font-size: 3.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

/* Metric Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(16, 16, 26, 0.70);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.5rem 1rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-num {
    font-family: var(--font-stage);
    font-size: 4.2rem;
    font-weight: 400;
    color: var(--electric-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: rgba(5, 5, 10, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 3rem 5% 2rem 5%;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-stage);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.footer-credit {
    color: var(--neon-pink);
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.8rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
   BESPOKE UNBRANDED VIDEO PLAYER & LIGHTBOX MODAL STYLES
   ------------------------------------------------------------- */
.custom-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    border: 1px solid var(--border-glass);
    box-shadow: var(--card-shadow);
}

.custom-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-overlay-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 5, 10, 0.95), transparent);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.custom-video-wrapper:hover .video-overlay-controls {
    opacity: 1;
}

.video-play-btn {
    background: var(--logo-red);
    color: #FFFFFF;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(255, 0, 51, 0.6);
    transition: transform 0.2s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-progress-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--electric-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
    transition: width 0.1s linear;
}

.video-mute-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #FFFFFF;
}

/* Lightbox Modal */
.video-modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(25px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 12px;
    border: 1px solid var(--border-pink-glow);
    box-shadow: 0 0 50px rgba(255, 0, 127, 0.3);
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--neon-pink);
}


/* ADA Accessibility Focus Styles */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--electric-cyan) !important;
    outline-offset: 3px !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--logo-red);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    z-index: 9999;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
}

/* Subtle Lyons Labs Footer Credit (Lato, All Caps, Thin) */
.footer-credit-lyons {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 2.5px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    text-decoration: none !important;
}


/* -------------------------------------------------------------
   INTERACTIVE MEDIA & MONOCHROME-TO-COLOR HOVER EFFECTS
   Flow Visuals Autoplay Loops & Glassmorphic Photo Showcase
   ------------------------------------------------------------- */

/* B&W to Vibrant Miami Color Transition */
.bw-to-color {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s ease;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glass-card:hover .bw-to-color, .bw-to-color:hover {
    filter: grayscale(0%) contrast(1.05) saturate(1.2);
    transform: scale(1.03);
}

/* Image Aspect Containers */
.card-media-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-glass);
    background: #000000;
}

.hero-video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(60%) saturate(1.4);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Client Logo Banner */
.client-logo-banner {
    background: rgba(16, 16, 26, 0.65);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.client-logo-banner img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%) opacity(0.75);
    transition: all 0.4s ease;
}

.client-logo-banner:hover img {
    filter: grayscale(0%) opacity(1.0);
}


/* -------------------------------------------------------------
   ACCESSIBILITY & HIGH-CONTRAST READABILITY ENHANCEMENTS
   Clean Typography Without Blurry Text Glows + Re-architected Footer
   ------------------------------------------------------------- */

:root {
    /* Enhanced High-Contrast Colors */
    --text-primary: #FFFFFF !important;
    --text-secondary: #F1F5F9 !important;
    --text-muted: #94A3B8 !important;

    --electric-cyan: #00E5FF !important;
    --neon-pink: #FF2A85 !important;
    --logo-red: #FF0033 !important;
}

/* Remove Blurry Text Shadows on Small Text for AAA Accessibility */
.stat-num, .hero-pill, .card-title, .section-tag, .nav-links a, .nav-brand {
    text-shadow: none !important;
}

.hero-title .pink-accent {
    color: var(--neon-pink) !important;
    text-shadow: 0 4px 20px rgba(255, 0, 127, 0.4) !important;
}

.hero-title .cyan-mono {
    color: var(--electric-cyan) !important;
    text-shadow: 0 4px 20px rgba(0, 229, 255, 0.4) !important;
}

/* Card Descriptions High Readability */
.card-desc {
    color: var(--text-secondary) !important;
    font-size: 0.98rem !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

/* Company Focused Footer Structure */
.site-footer {
    background: #030307;
    border-top: 1px solid var(--border-glass);
    padding: 4rem 5% 1.8rem 5%;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

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

.footer-col-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit-lyons {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    font-size: 0.68rem !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-credit-lyons:hover {
    color: #FFFFFF !important;
}

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


/* Fix Portrait Image Cropping & Positioning */
.portrait-media-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-glass);
    background: #000000;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: top center !important;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.glass-card:hover .portrait-img, .portrait-img:hover {
    filter: grayscale(0%) contrast(1.05) saturate(1.15);
    transform: scale(1.03);
}


/* -------------------------------------------------------------
   SPLIT GRID CLIENT LOGO SHOWCASE (HIGH VISIBILITY)
   ------------------------------------------------------------- */
.client-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: center;
    margin: 4rem 0;
}

.client-logo-large-card {
    background: rgba(16, 16, 26, 0.80);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.4s ease;
}

.client-logo-large-card:hover {
    border-color: var(--border-cyan-glow);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.22);
}

.client-logo-large-card img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.1);
    transition: transform 0.4s ease;
}

.client-logo-large-card:hover img {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .client-showcase-grid {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------------------------------------
   100% MOBILE RESPONSIVE OPTIMIZATION (WCAG & TOUCH FRIENDLY)
   ------------------------------------------------------------- */
@media (max-width: 900px) {
    .client-showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.9rem 4% !important;
    }
    
    .nav-brand {
        font-size: 1.8rem !important;
    }

    .mobile-menu-toggle {
        display: block !important;
        background: transparent;
        border: 1px solid var(--border-glass);
        color: #FFFFFF;
        font-family: var(--font-mono);
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1.2rem;
    }

    .nav-links.active {
        display: flex !important;
    }

    .hero {
        min-height: 70vh !important;
        padding-top: 6rem !important;
    }

    .hero-title {
        font-size: 3.2rem !important;
        letter-spacing: 1.5px !important;
    }

    .hero-subtitle {
        font-size: 1.05rem !important;
    }

    .section-title {
        font-size: 2.5rem !important;
    }

    .container {
        width: 92% !important;
        padding: 4.5rem 0 3rem 0 !important;
    }

    .stats-bar {
        padding: 1.8rem 1rem !important;
        gap: 1.5rem !important;
    }

    .stat-num {
        font-size: 3.2rem !important;
    }

    .glass-card {
        padding: 1.5rem !important;
    }

    .btn-red-cta, .btn-miami-cta {
        width: 100% !important;
        text-align: center !important;
        min-height: 48px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem !important;
    }
    .stat-num {
        font-size: 2.6rem !important;
    }
    .section-title {
        font-size: 2.2rem !important;
    }
}


/* -------------------------------------------------------------
   MOBILE BUTTON PRECISION & STICKY BOTTOM CONVERSION BAR
   ------------------------------------------------------------- */
.nav-cta-btn {
    font-size: 0.95rem !important;
    padding: 0.55rem 1.2rem !important;
    font-family: var(--font-stage) !important;
    letter-spacing: 1.5px !important;
    border-radius: 6px !important;
    width: auto !important;
    min-height: auto !important;
    white-space: nowrap !important;
}

/* Sticky Bottom Mobile Bar */
.sticky-mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .nav-cta-btn {
        font-size: 0.82rem !important;
        padding: 0.4rem 0.85rem !important;
    }

    .sticky-mobile-cta-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 10, 0.96);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-glass);
        padding: 0.6rem 4%;
        z-index: 10000;
        justify-content: space-between;
        gap: 0.8rem;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    }

    .sticky-mobile-bar-btn-call {
        background: var(--logo-red);
        color: #FFFFFF !important;
        flex: 1;
        text-align: center;
        padding: 0.65rem 0.5rem;
        font-family: var(--font-stage);
        font-size: 1.05rem;
        letter-spacing: 1.5px;
        text-decoration: none;
        border-radius: 6px;
        text-transform: uppercase;
        box-shadow: 0 0 12px rgba(255, 0, 51, 0.5);
    }

    .sticky-mobile-bar-btn-book {
        background: linear-gradient(135deg, rgba(255, 0, 127, 0.3), rgba(0, 229, 255, 0.3));
        border: 1px solid var(--electric-cyan);
        color: #FFFFFF !important;
        flex: 1;
        text-align: center;
        padding: 0.65rem 0.5rem;
        font-family: var(--font-stage);
        font-size: 1.05rem;
        letter-spacing: 1.5px;
        text-decoration: none;
        border-radius: 6px;
        text-transform: uppercase;
    }

    body {
        padding-bottom: 60px !important;
    }
}


/* -------------------------------------------------------------
   ULTRA-CLEAN MOBILE NAVIGATION HEADER WITH RED LINK HIGHLIGHT
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Hide top CTA button in mobile header (handled by sticky bottom bar) */
    .navbar .nav-cta-btn {
        display: none !important;
    }

    /* Red Highlighted Action Line in Mobile Nav Drawer */
    .nav-links li a[href="/contact"], .nav-links li a[href*="contact"] {
        border-left: 3px solid var(--logo-red) !important;
        background: rgba(255, 0, 51, 0.16) !important;
        padding: 0.6rem 1rem !important;
        border-radius: 4px !important;
        color: #FFFFFF !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        box-shadow: 0 0 15px rgba(255, 0, 51, 0.25) !important;
    }
}


/* -------------------------------------------------------------
   MOBILE NAV TOGGLE & SLEEK FLOATING PILL BAR (JUST RIGHT)
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid var(--border-glass) !important;
        color: #FFFFFF !important;
        font-size: 1.4rem !important;
        width: 42px !important;
        height: 42px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        z-index: 10001 !important;
    }

    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        width: 100vw !important;
        height: auto !important;
        background: rgba(5, 5, 10, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-bottom: 1px solid var(--border-glass) !important;
        flex-direction: column !important;
        padding: 1.8rem 6% !important;
        gap: 1.2rem !important;
        z-index: 9999 !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    /* Floating Sleek Conversion Pill Bar */
    .sticky-mobile-cta-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 16px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 380px !important;
        background: rgba(12, 12, 22, 0.88) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-radius: 50px !important;
        padding: 0.4rem 0.5rem !important;
        z-index: 10000 !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.88), 0 0 15px rgba(0, 229, 255, 0.15) !important;
    }

    .sticky-mobile-bar-btn-call {
        background: var(--logo-red) !important;
        color: #FFFFFF !important;
        flex: 1 !important;
        text-align: center !important;
        padding: 0.55rem 0.6rem !important;
        font-family: var(--font-stage) !important;
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
        text-decoration: none !important;
        border-radius: 30px !important;
        text-transform: uppercase !important;
        box-shadow: 0 0 10px rgba(255, 0, 51, 0.4) !important;
    }

    .sticky-mobile-bar-btn-book {
        background: linear-gradient(135deg, rgba(255, 0, 127, 0.35), rgba(0, 229, 255, 0.35)) !important;
        border: 1px solid var(--electric-cyan) !important;
        color: #FFFFFF !important;
        flex: 1 !important;
        text-align: center !important;
        padding: 0.55rem 0.6rem !important;
        font-family: var(--font-stage) !important;
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
        text-decoration: none !important;
        border-radius: 30px !important;
        text-transform: uppercase !important;
    }

    body {
        padding-bottom: 75px !important;
    }
}


/* -------------------------------------------------------------
   EXPANDED PRODUCTION CASE STUDY MODAL & CARD STYLES
   ------------------------------------------------------------- */
.video-modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 10, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #080812;
    border-radius: 14px;
    border: 1px solid var(--border-pink-glow);
    box-shadow: 0 0 50px rgba(255, 0, 127, 0.35);
    overflow: hidden;
    margin: auto;
}

.video-modal-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* -------------------------------------------------------------
   POLAROID STORY TIMELINE GRID (ABOUT PAGE)
   ------------------------------------------------------------- */
.polaroid-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 14px 22px 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.polaroid-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-pink-glow);
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 0, 127, 0.25);
}

.polaroid-img-frame {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.polaroid-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.polaroid-card:hover .polaroid-img-frame img {
    filter: grayscale(0%) contrast(1.05) saturate(1.2);
    transform: scale(1.03);
}

.polaroid-caption {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-weight: 600;
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-row.reverse {
    grid-template-columns: 1.3fr 1fr;
}

@media (max-width: 900px) {
    .story-row, .story-row.reverse {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}


/* -------------------------------------------------------------
   LAYOUT HARMONY, PERFECT CENTERING & RESPONSIVE ALIGNMENT
   ------------------------------------------------------------- */
.container {
    width: 92% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 6rem 0 4rem 0 !important;
}

.hero {
    min-height: 80vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    position: relative !important;
    padding: 6rem 2rem 4rem 2rem !important;
    margin: 1rem auto 3rem auto !important;
    max-width: 1280px !important;
}

.hero-content-wrapper {
    position: relative !important;
    z-index: 2 !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.section-header {
    text-align: center !important;
    margin: 0 auto 3rem auto !important;
    max-width: 860px !important;
}

.grid-2, .grid-3, .stats-bar, .client-showcase-grid, .story-row {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1280px !important;
}

.glass-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
}

.client-logo-large-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.client-logo-large-card img {
    margin: 0 auto !important;
    display: block !important;
}

@media (max-width: 960px) {
    .client-showcase-grid, .story-row, .story-row.reverse {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin: 3rem auto !important;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .container {
        width: 94% !important;
        padding: 4rem 0 2rem 0 !important;
    }

    .hero {
        padding: 4.5rem 1rem 3rem 1rem !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1 !important;
    }

    .section-title {
        font-size: 2.4rem !important;
    }

    .stats-bar {
        flex-direction: column !important;
        gap: 1.8rem !important;
        padding: 2rem 1rem !important;
    }

    .stat-item {
        width: 100% !important;
        text-align: center !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .footer-links {
        align-items: center !important;
    }

    .footer-bottom-bar {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
}


/* -------------------------------------------------------------
   OPTICAL NAVBAR LOGO & FAVICON ALIGNMENT
   ------------------------------------------------------------- */
.nav-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    line-height: 1 !important;
}

.nav-brand img.nav-r-logo {
    height: 38px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 !important;
    filter: drop-shadow(0 0 10px rgba(255, 0, 51, 0.6)) !important;
}

@media (max-width: 768px) {
    .nav-brand img.nav-r-logo {
        height: 32px !important;
    }
}


/* -------------------------------------------------------------
   CLEAN UNCAPTIONED PHOTO FRAMES (ABOUT PAGE)
   ------------------------------------------------------------- */
.polaroid-card {
    padding: 12px !important;
}

.polaroid-img-frame {
    height: 380px !important;
    margin-bottom: 0 !important;
}

.polaroid-caption {
    display: none !important;
}


/* -------------------------------------------------------------
   BULLETPROOF HOMEPAGE MOBILE NAV Z-INDEX FIX
   ------------------------------------------------------------- */
.navbar {
    z-index: 20000 !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 20001 !important;
    }

    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100vw !important;
        height: auto !important;
        background: rgba(5, 5, 10, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-bottom: 1px solid var(--border-glass) !important;
        flex-direction: column !important;
        padding: 1.8rem 6% !important;
        gap: 1.2rem !important;
        z-index: 19999 !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.98) !important;
    }

    .nav-links.active {
        display: flex !important;
    }
}


/* -------------------------------------------------------------
   BULLETPROOF ZERO-DEPENDENCY MOBILE NAV TOGGLE (FAILSAFE)
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        color: #FFFFFF !important;
        font-size: 1.4rem !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        z-index: 20001 !important;
    }

    .nav-links {
        display: none;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100vw !important;
        height: auto !important;
        background: rgba(5, 5, 10, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-bottom: 1px solid var(--border-glass) !important;
        flex-direction: column !important;
        padding: 1.8rem 6% !important;
        gap: 1.2rem !important;
        z-index: 19999 !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.98) !important;
    }

    .nav-links.active {
        display: flex !important;
    }
}


/* -------------------------------------------------------------
   MOBILE SECTION HEADER CLEARANCE BELOW FIXED NAVBAR
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    .container {
        padding-top: 6.8rem !important; /* 108px top clearance below fixed navbar */
    }

    .section-header:first-child {
        margin-top: 0.5rem !important;
    }

    .hero {
        padding-top: 3rem !important;
        margin-top: 0 !important;
    }
}


/* -------------------------------------------------------------
   BILINGUAL LANGUAGE TOGGLE & FLOATING PROMPT BANNER
   ------------------------------------------------------------- */
.lang-toggle-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
}

.lang-toggle-pill span {
    color: var(--electric-cyan);
    font-weight: 600;
}

.lang-toggle-pill:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
}

/* Floating Language Prompt Banner */
.lang-prompt-banner {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background: rgba(12, 12, 22, 0.94);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--border-cyan-glow);
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
    font-size: 0.9rem;
    color: #FFFFFF;
}

.lang-prompt-action-btn {
    background: var(--logo-red);
    color: #FFFFFF;
    border: none;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-family: var(--font-stage);
    letter-spacing: 1px;
    font-size: 0.88rem;
    cursor: pointer;
    text-transform: uppercase;
}

.lang-prompt-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lang-prompt-close-btn:hover {
    color: var(--neon-pink);
}

@media (max-width: 768px) {
    .lang-prompt-banner {
        bottom: 75px;
        left: 5%;
        right: 5%;
        width: 90%;
        justify-content: space-between;
        font-size: 0.82rem;
        padding: 0.6rem 0.9rem;
    }
}


/* -------------------------------------------------------------
   REFINED EASY-TAP MOBILE LANGUAGE PROMPT (TOP POSITIONED)
   ------------------------------------------------------------- */
.lang-prompt-banner {
    position: fixed;
    bottom: 85px;
    right: 25px;
    background: rgba(12, 12, 22, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid var(--border-cyan-glow) !important;
    border-radius: 14px !important;
    padding: 0.85rem 1.2rem !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9) !important;
    font-size: 0.92rem !important;
    color: #FFFFFF !important;
}

.lang-prompt-close-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-left: 0.5rem !important;
}

.lang-prompt-close-btn:hover {
    background: var(--logo-red) !important;
    border-color: var(--logo-red) !important;
}

@media (max-width: 768px) {
    .lang-prompt-banner {
        top: 72px !important;
        bottom: auto !important;
        left: 4% !important;
        right: 4% !important;
        width: 92% !important;
        padding: 0.75rem 1rem !important;
        border-radius: 12px !important;
        justify-content: space-between !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95) !important;
    }
}


/* -------------------------------------------------------------
   MOBILE DRAWER LANGUAGE SWITCHER (TOP NAVBAR UNCLUTTERED)
   ------------------------------------------------------------- */
.mobile-lang-drawer-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem !important;
    margin-top: 0.5rem !important;
}

.mobile-lang-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
}

.mobile-lang-label {
    font-family: var(--font-mono) !important;
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
}

.mobile-lang-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--border-glass) !important;
    color: var(--text-muted) !important;
    font-family: var(--font-stage) !important;
    font-size: 1rem !important;
    padding: 0.35rem 0.9rem !important;
    border-radius: 6px !important;
    cursor: pointer !important;
}

.mobile-lang-btn.active {
    background: var(--electric-cyan) !important;
    color: #05050A !important;
    font-weight: 700 !important;
    border-color: var(--electric-cyan) !important;
}

@media (max-width: 768px) {
    /* Hide top header language pill on mobile so ☰ sits flush on right */
    .navbar .lang-toggle-pill {
        display: none !important;
    }
}


/* -------------------------------------------------------------
   HARDCODED DESKTOP & MOBILE LANGUAGE TOGGLE & FLOATING BANNER
   ------------------------------------------------------------- */
.lang-toggle-pill {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
    font-family: var(--font-mono) !important;
    font-size: 0.85rem !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.lang-toggle-pill:hover {
    border-color: var(--neon-pink) !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5) !important;
}

/* Floating Prompt Banner (Desktop: Bottom-Right | Mobile: Top) */
.lang-prompt-banner {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    background: rgba(12, 12, 22, 0.96) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid var(--electric-cyan) !important;
    border-radius: 14px !important;
    padding: 0.85rem 1.4rem !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.92) !important;
    font-size: 0.95rem !important;
    color: #FFFFFF !important;
}

.lang-prompt-action-btn {
    background: var(--logo-red) !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 0.45rem 1rem !important;
    border-radius: 6px !important;
    font-family: var(--font-stage) !important;
    letter-spacing: 1.5px !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    box-shadow: 0 0 12px rgba(255, 0, 51, 0.5) !important;
    transition: transform 0.2s ease !important;
}

.lang-prompt-action-btn:hover {
    transform: scale(1.04) !important;
}

.lang-prompt-close-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.lang-prompt-close-btn:hover {
    background: var(--logo-red) !important;
    border-color: var(--logo-red) !important;
}

@media (max-width: 768px) {
    /* Hide desktop header toggle pill on mobile */
    .navbar .lang-toggle-pill {
        display: none !important;
    }

    /* Move prompt banner to top below fixed navbar on mobile */
    .lang-prompt-banner {
        top: 72px !important;
        bottom: auto !important;
        left: 4% !important;
        right: 4% !important;
        width: 92% !important;
        padding: 0.75rem 1rem !important;
        border-radius: 12px !important;
        justify-content: space-between !important;
    }
}


/* -------------------------------------------------------------
   CONTACT PAGE MOBILE CONTAINER REVERSAL (FORM FIRST ON MOBILE)
   ------------------------------------------------------------- */
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .contact-grid-wrapper {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
    }
}


/* -------------------------------------------------------------
   MOBILE NAVBAR FAR RIGHT ALIGNMENT FIX
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto !important; /* Pushes ☰ button flush to far right */
        z-index: 20005 !important;
    }

    .navbar > div:not(.nav-brand) {
        display: none !important; /* Hide desktop right button cluster on mobile */
    }
}


/* -------------------------------------------------------------
   MASTER NAVBAR UNIFIED FLEX ALIGNMENT (LOGO LEFT // MENU RIGHT)
   ------------------------------------------------------------- */
.navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.1rem 5% !important;
    background: var(--bg-header) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border-bottom: 1px solid var(--border-glass) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 20000 !important;
}

.nav-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .nav-brand {
        margin-right: auto !important; /* Locks Brand Logo to Far Left */
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto !important; /* Locks ☰ Menu Button to Far Right */
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        color: #FFFFFF !important;
        font-size: 1.4rem !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        z-index: 20005 !important;
    }

    .navbar > div {
        display: none !important; /* Hides desktop right button cluster on mobile */
    }
}


/* -------------------------------------------------------------
   DESKTOP FLOATING HUD: BOTTOM-LEFT LANG PILL + BOTTOM-RIGHT CTAS
   ------------------------------------------------------------- */

/* Hide old header toggle pill & prompt banner overlay */
.navbar #lang-toggle-btn, #lang-prompt-banner {
    display: none !important;
}

/* Bottom-Left Desktop Language Pill */
.desktop-lang-pill-bottom-left {
    position: fixed !important;
    bottom: 25px !important;
    left: 25px !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
}

.desktop-lang-pill-btn {
    background: rgba(12, 12, 22, 0.90) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 0.55rem 1.1rem !important;
    color: #FFFFFF !important;
    font-family: var(--font-mono) !important;
    font-size: 0.88rem !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.desktop-lang-pill-btn:hover {
    border-color: var(--electric-cyan) !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Bottom-Right Desktop Action Pills */
.desktop-cta-pill-bottom-right {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 100000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    background: rgba(12, 12, 22, 0.90) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50px !important;
    padding: 0.45rem 0.6rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85) !important;
}

.desktop-pill-btn-call {
    background: var(--logo-red) !important;
    color: #FFFFFF !important;
    padding: 0.55rem 1.1rem !important;
    font-family: var(--font-stage) !important;
    font-size: 1rem !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    box-shadow: 0 0 12px rgba(255, 0, 51, 0.5) !important;
    transition: transform 0.2s ease !important;
}

.desktop-pill-btn-call:hover {
    transform: scale(1.04) !important;
}

.desktop-pill-btn-book {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.35), rgba(0, 229, 255, 0.35)) !important;
    border: 1px solid var(--electric-cyan) !important;
    color: #FFFFFF !important;
    padding: 0.55rem 1.1rem !important;
    font-family: var(--font-stage) !important;
    font-size: 1rem !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    transition: transform 0.2s ease !important;
}

.desktop-pill-btn-book:hover {
    transform: scale(1.04) !important;
}

@media (max-width: 768px) {
    /* Hide desktop floating HUD elements on mobile */
    .desktop-lang-pill-bottom-left, .desktop-cta-pill-bottom-right {
        display: none !important;
    }
}


/* -------------------------------------------------------------
   MINIMALIST INDUSTRY STANDARD EN / ES PILL (BOTTOM-LEFT)
   ------------------------------------------------------------- */
.desktop-lang-pill-bottom-left {
    position: fixed !important;
    bottom: 25px !important;
    left: 25px !important;
    z-index: 100000 !important;
}

.desktop-lang-pill-btn {
    background: rgba(12, 12, 22, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 50px !important;
    padding: 0.45rem 0.95rem !important;
    font-family: var(--font-mono) !important;
    font-size: 0.82rem !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    outline: none !important;
}

.desktop-lang-pill-btn .lang-active {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6) !important;
}

.desktop-lang-pill-btn .lang-slash {
    color: rgba(255, 255, 255, 0.35) !important;
    font-weight: 300 !important;
    margin: 0 1px !important;
}

.desktop-lang-pill-btn .lang-inactive {
    color: rgba(255, 255, 255, 0.45) !important;
    font-weight: 400 !important;
    transition: color 0.25s ease !important;
}

.desktop-lang-pill-btn:hover {
    border-color: var(--electric-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.35) !important;
}

.desktop-lang-pill-btn:hover .lang-inactive {
    color: var(--electric-cyan) !important;
}


/* -------------------------------------------------------------
   STRICT DESKTOP HIDING OF MOBILE DRAWER LANGUAGE ITEM
   ------------------------------------------------------------- */
.mobile-lang-drawer-item {
    display: none !important; /* Never display in desktop navbar */
}

@media (max-width: 768px) {
    .mobile-lang-drawer-item {
        display: block !important; /* Display only inside slide-down mobile nav drawer */
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 1rem !important;
        margin-top: 0.5rem !important;
    }
}


/* -------------------------------------------------------------
   CALENDLY / GOOGLE CALENDAR-STYLE GLASSMORPHIC MODAL SCHEDULER
   ------------------------------------------------------------- */
.call-scheduler-content {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: #080812 !important;
    border-radius: 16px !important;
    border: 1px solid var(--border-cyan-glow) !important;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.35) !important;
    overflow: hidden;
    margin: auto;
}


/* -------------------------------------------------------------
   CALENDLY / GOOGLE CALENDAR-STYLE INTERACTIVE MODAL STYLING
   ------------------------------------------------------------- */
.calendar-card-grid {
    background: rgba(5, 5, 10, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.2rem;
    max-width: 480px;
    margin: 0 auto;
}

.calendar-month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cal-nav-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #FFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--electric-cyan);
    margin-bottom: 0.6rem;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day {
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-day:hover:not(.disabled) {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--electric-cyan);
    color: #FFFFFF;
}

.cal-day.selected {
    background: var(--logo-red) !important;
    border-color: var(--logo-red) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.6);
}

.cal-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.time-pills-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.time-pill-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-pill-btn:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.time-pill-btn.selected {
    background: var(--neon-pink) !important;
    border-color: var(--neon-pink) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

.reveal-anim {
    animation: fadeInSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-bar {
    padding: 0.9rem 1.4rem;
    background: #05050A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--electric-cyan);
    text-transform: uppercase;
}

.wizard-step-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.step-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.step-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
    color: #FFF;
}

.step-pill.active {
    color: var(--electric-cyan);
    background: rgba(0, 229, 255, 0.12);
    border-color: var(--electric-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}

.step-pill.active span {
    background: var(--electric-cyan);
    color: #000;
    font-weight: 700;
}

.step-pill-divider {
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.wizard-step {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wizard-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-summary-banner {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.wizard-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-wizard-next {
    background: linear-gradient(135deg, var(--logo-red), #e60039);
    color: #FFFFFF;
    font-family: var(--font-stage);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
    transition: all 0.3s ease;
}

.btn-wizard-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 51, 0.7);
}

.btn-wizard-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-wizard-back {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-wizard-back:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #FFFFFF;
}

/* HIGH-AESTHETIC STYLIZED INPUT ENTRY BOXES */
.stylized-form-group {
    margin-bottom: 1.2rem;
}

.stylized-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--electric-cyan);
    margin-bottom: 0.45rem;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
}

.stylized-form-input,
.stylized-form-textarea,
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95), rgba(18, 18, 32, 0.85)) !important;
    border: 1px solid rgba(255, 0, 127, 0.3) !important;
    border-radius: 8px !important;
    padding: 0.85rem 1.1rem !important;
    color: #FFFFFF !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.3px !important;
    outline: none !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0,0,0,0.3) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.stylized-form-input::placeholder,
.stylized-form-textarea::placeholder,
.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
    font-style: italic !important;
}

.stylized-form-input:hover,
.stylized-form-textarea:hover,
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(0, 240, 255, 0.5) !important;
}

.stylized-form-input:focus,
.stylized-form-textarea:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--electric-cyan) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.35), 0 0 2px var(--electric-cyan) !important;
    background: linear-gradient(135deg, rgba(14, 14, 28, 0.98), rgba(22, 22, 40, 0.92)) !important;
}

.mobile-nav-utility {
    display: none;
}

@media (max-width: 992px) {
    .nav-desktop-utility {
        display: none !important;
    }

    .mobile-nav-utility {
        display: flex !important;
        gap: 0.8rem !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 1rem !important;
        margin-top: 0.8rem !important;
        border-top: 1px solid var(--border-glass) !important;
        width: 100% !important;
    }

    .mobile-nav-utility .theme-toggle-btn,
    .mobile-nav-utility .i18n-toggle-btn {
        display: inline-flex !important;
        padding: 0.45rem 0.95rem !important;
        font-size: 0.82rem !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 768px) {
    .video-modal-backdrop.mobile-fullscreen {
        padding: 0 !important;
    }
    .video-modal-backdrop.mobile-fullscreen .video-modal-content {
        max-width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        background: #000000 !important;
    }
    .video-modal-backdrop.mobile-fullscreen .video-modal-iframe-wrap {
        aspect-ratio: 16 / 9 !important;
        width: 100% !important;
    }
}

/* -------------------------------------------------------------
   DESKTOP & MOBILE PILL ALIGNMENT & LIGHT MODE BUTTON FIXES
   ------------------------------------------------------------- */
.i18n-toggle-btn,
.theme-toggle-btn {
    height: 38px !important;
    min-width: 80px !important;
    padding: 0 14px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-mono) !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    border: 1px solid var(--border-glass) !important;
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.desktop-bottom-left-hud {
    position: fixed !important;
    bottom: 25px !important;
    left: 25px !important;
    z-index: 100000 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}

.mobile-menu-toggle {
    display: none !important;
}

.mobile-nav-utility {
    display: none !important;
}

/* -------------------------------------------------------------
   CLEAN UNIFIED MOBILE NAV DRAWER (GUARANTEED OPEN/CLOSE TOGGLE)
   ------------------------------------------------------------- */
@media (max-width: 992px) {
    .desktop-bottom-left-hud {
        display: none !important; /* STRICTLY HIDDEN ON MOBILE SCREEN */
    }

    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        width: 100vw !important;
        height: auto !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        background: var(--bg-header) !important;
        backdrop-filter: var(--glass-blur) !important;
        -webkit-backdrop-filter: var(--glass-blur) !important;
        border-bottom: 1.5px solid var(--border-glass) !important;
        flex-direction: column !important;
        padding: 1.8rem 6% !important;
        gap: 1.2rem !important;
        z-index: 100000 !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links.active .mobile-nav-utility {
        display: flex !important;
        gap: 0.8rem !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 1rem !important;
        margin-top: 0.8rem !important;
        border-top: 1px solid var(--border-glass) !important;
        width: 100% !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid var(--border-glass) !important;
        color: var(--text-primary) !important;
        font-size: 1.4rem !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        z-index: 100001 !important;
        margin-left: auto !important;
    }
}



/* WCAG AAA LIGHT MODE BUTTONS & ACCENTS OVERRIDES */
[data-theme="light"] .btn-miami-cta {
    background: rgba(0, 122, 148, 0.12) !important;
    border: 1.5px solid #007A94 !important;
    color: #007A94 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 122, 148, 0.18) !important;
}

[data-theme="light"] .btn-miami-cta:hover {
    background: #007A94 !important;
    color: #FFFFFF !important;
}

[data-theme="light"] .btn-red-cta {
    background: #D6002B !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(214, 0, 43, 0.28) !important;
}

[data-theme="light"] .hero-pill,
[data-theme="light"] .pill-demo,
[data-theme="light"] .section-tag {
    background: rgba(0, 122, 148, 0.10) !important;
    border-color: #007A94 !important;
    color: #007A94 !important;
    font-weight: 600 !important;
}

[data-theme="light"] .mobile-menu-toggle {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
    color: #0A0A14 !important;
}






/* -------------------------------------------------------------
   STRICT LIGHT MODE HUD & NAV TOGGLE HIGH-CONTRAST OVERRIDES
   ------------------------------------------------------------- */
[data-theme="light"] .i18n-toggle-btn,
[data-theme="light"] .theme-toggle-btn {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(10, 10, 20, 0.28) !important;
    color: #0A0A14 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .i18n-toggle-btn:hover,
[data-theme="light"] .theme-toggle-btn:hover {
    border-color: #D6002B !important;
    box-shadow: 0 0 14px rgba(214, 0, 43, 0.28) !important;
}

/* -------------------------------------------------------------
   STRICT FOOTER BRAND WORDMARK COLOR LOCK (CRISP WHITE "EVENTS")
   ------------------------------------------------------------- */
footer .nav-brand,
.site-footer .nav-brand,
.footer-brand,
[data-theme="light"] footer .nav-brand,
[data-theme="light"] .site-footer .nav-brand,
[data-theme="light"] .footer-brand {
    color: #FFFFFF !important;
}

footer .nav-brand .red-logo,
.site-footer .nav-brand .red-logo,
.footer-brand .red-logo,
[data-theme="light"] footer .nav-brand .red-logo,
[data-theme="light"] .site-footer .nav-brand .red-logo,
[data-theme="light"] .footer-brand .red-logo {
    color: #FF0033 !important;
}

/* -------------------------------------------------------------
   PERFECT LIGHT MODE HEADER (WHITE) VS FOOTER (DARK) CONTRAST LOCK
   ------------------------------------------------------------- */

/* TOP HEADER NAVBAR (LIGHT PORCELAIN BACKDROP -> CHARCOAL TEXT & LOGO) */
[data-theme="light"] .navbar {
    background: rgba(244, 246, 251, 0.96) !important;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .navbar .nav-brand {
    color: #0A0A14 !important;
}

[data-theme="light"] .navbar .nav-brand .red-logo {
    color: #D6002B !important;
}

[data-theme="light"] .navbar .nav-links a {
    color: #0A0A14 !important;
    font-weight: 700 !important;
}

[data-theme="light"] .navbar .nav-links a:hover,
[data-theme="light"] .navbar .nav-links a.active {
    color: #D6002B !important;
}

[data-theme="light"] .navbar .mobile-menu-toggle {
    color: #0A0A14 !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: #FFFFFF !important;
}

/* BOTTOM FOOTER (DARK OBSIDIAN BACKDROP -> CRISP WHITE TEXT & LOGO) */
footer,
.site-footer,
[data-theme="light"] footer,
[data-theme="light"] .site-footer {
    background: #080812 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
}

footer .nav-brand,
.site-footer .nav-brand,
.footer-brand,
[data-theme="light"] footer .nav-brand,
[data-theme="light"] .site-footer .nav-brand,
[data-theme="light"] .footer-brand {
    color: #FFFFFF !important;
}

footer .nav-brand .red-logo,
.site-footer .nav-brand .red-logo,
.footer-brand .red-logo,
[data-theme="light"] footer .nav-brand .red-logo,
[data-theme="light"] .site-footer .nav-brand .red-logo,
[data-theme="light"] .footer-brand .red-logo {
    color: #FF0033 !important;
}

footer a,
.site-footer a,
[data-theme="light"] footer a,
[data-theme="light"] .site-footer a {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* -------------------------------------------------------------
   LIGHT MODE COOL BLUE-PINK-WHITE GRADIENT STATS BAR
   ------------------------------------------------------------- */
[data-theme="light"] .stats-bar {
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(0, 229, 255, 0.14) 50%, rgba(255, 0, 127, 0.10) 100%) !important;
    border: 1.5px solid rgba(0, 122, 148, 0.35) !important;
    box-shadow: 0 10px 30px rgba(0, 122, 148, 0.12), 0 4px 15px rgba(214, 0, 43, 0.08) !important;
    border-radius: 16px !important;
}

[data-theme="light"] .stats-bar .stat-num {
    color: #007A94 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

[data-theme="light"] .stats-bar .stat-label {
    color: #0A0A14 !important;
    font-weight: 700 !important;
}

/* -------------------------------------------------------------
   BULLETPROOF MOBILE NAVIGATION MENU DRAWER OVERRIDE (HIGH PRIORITY)
   ------------------------------------------------------------- */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        color: #FFFFFF !important;
        font-size: 1.5rem !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        z-index: 200005 !important;
    }

    [data-theme="light"] .mobile-menu-toggle {
        background: #FFFFFF !important;
        border: 1.5px solid rgba(10, 10, 20, 0.25) !important;
        color: #0A0A14 !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100vw !important;
        height: auto !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        background: #080812 !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
        padding: 1.8rem 6% !important;
        gap: 1.2rem !important;
        z-index: 200000 !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95) !important;
    }

    [data-theme="light"] .nav-links.active {
        background: #FFFFFF !important;
        border-bottom: 2px solid rgba(0, 0, 0, 0.15) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    }

    .nav-links.active a {
        color: #FFFFFF !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }

    [data-theme="light"] .nav-links.active a {
        color: #0A0A14 !important;
    }
}

/* -------------------------------------------------------------
   COMPREHENSIVE LIGHT MODE HIGH-CONTRAST LEGIBILITY OVERRIDES
   ------------------------------------------------------------- */

/* 1. All Paragraphs, Lists, Bullet Points, & Card Text in Light Mode */
[data-theme="light"] p,
[data-theme="light"] ul li,
[data-theme="light"] ol li,
[data-theme="light"] .glass-card li,
[data-theme="light"] .card-desc,
[data-theme="light"] .hero-subtitle,
[data-theme="light"] .content-highlight-text,
[data-theme="light"] .contact-info-text {
    color: #0A0A14 !important;
    font-weight: 500 !important;
}

[data-theme="light"] ul,
[data-theme="light"] ol {
    color: #0A0A14 !important;
}

/* 2. Contact Links & Details in Light Mode */
[data-theme="light"] .contact-info-link {
    color: #007A94 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

[data-theme="light"] .contact-info-link:hover {
    color: #D6002B !important;
    text-decoration: underline !important;
}

/* 3. Form Inputs, Select Dropdowns, Textareas & Placeholders in Light Mode */
[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(10, 10, 20, 0.28) !important;
    color: #0A0A14 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-select:focus,
[data-theme="light"] .form-textarea:focus {
    border-color: #D6002B !important;
    box-shadow: 0 0 12px rgba(214, 0, 43, 0.22) !important;
}

[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
    color: #555568 !important;
    opacity: 1 !important;
}

[data-theme="light"] .form-select option {
    background: #FFFFFF !important;
    color: #0A0A14 !important;
}

[data-theme="light"] .form-label {
    color: #007A94 !important;
    font-weight: 800 !important;
}

/* 4. Glass Cards in Light Mode */
[data-theme="light"] .glass-card {
    background: #FFFFFF !important;
    border: 1.5px solid rgba(10, 10, 20, 0.16) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    color: #0A0A14 !important;
}

[data-theme="light"] .card-title {
    color: #007A94 !important;
    font-weight: 800 !important;
}

[data-theme="light"] .card-num {
    color: #D6002B !important;
    font-weight: 800 !important;
}

/* -------------------------------------------------------------
   BULLETPROOF MOBILE VIDEO LIGHTBOX FLOATING CLOSE PILL (Z-INDEX 300000)
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    .video-modal-backdrop.mobile-fullscreen {
        padding: 0 !important;
        background: #000000 !important;
        z-index: 250000 !important;
    }

    .video-modal-backdrop.mobile-fullscreen .video-modal-content {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        border: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        background: #000000 !important;
        position: relative !important;
    }

    #lightbox-close,
    .video-modal-backdrop .modal-close-btn {
        position: fixed !important;
        top: 18px !important;
        right: 18px !important;
        z-index: 300000 !important;
        background: #D6002B !important;
        color: #FFFFFF !important;
        border: 1.5px solid #FFFFFF !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
        font-family: var(--font-mono, monospace) !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.85) !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
}

/* -------------------------------------------------------------
   SUBTLE LYONS LABS FOOTER SIGNATURE LOCK (GRAY -> WHITE ON HOVER)
   ------------------------------------------------------------- */
.footer-credit-lyons,
[data-theme="light"] .footer-credit-lyons,
[data-theme="light"] footer .footer-credit-lyons,
[data-theme="light"] .site-footer .footer-credit-lyons {
    font-family: 'Lato', 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    font-size: 0.72rem !important;
    letter-spacing: 1.5px !important;
    color: #666677 !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
    display: inline-block !important;
}

.footer-credit-lyons:hover,
[data-theme="light"] .footer-credit-lyons:hover,
[data-theme="light"] footer .footer-credit-lyons:hover,
[data-theme="light"] .site-footer .footer-credit-lyons:hover {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}
