/*
 * VALEOGRAPH ENTERPRISE PLATFORM - STYLE SHEET
 * Ultra-Premium Healthcare & Biophysical Diagnostics Design System
 * Enforcing strictly British English B2B Brand Identity and actual PDF-extracted clinical colours
 * -------------------------------------------------------------------------------------------
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Synchronised with official Valeograph brand documents (Default Light Theme) */
    --bg-dark: #f8fafc;              /* 60% Dominant: Platinum Light Grey */
    --bg-surface: #ffffff;           /* Pure Clinical White for cards/surfaces */
    --bg-surface-glass: rgba(255, 255, 255, 0.85); /* Glassmorphic white */
    --border-glass: rgba(15, 23, 42, 0.08); /* Minimalist dark-navy border */
    --border-glass-hover: rgba(0, 163, 196, 0.35); /* Supporting data teal hover */
    
    /* Primary clinical accents from official palette */
    --primary: #0f172a;              /* 30% Headings & Text: Deep Navy Blue */
    --primary-light: #00a3c4;        /* Supporting Data: Original Medium Blue/Teal */
    --accent-gold: #00a3c4;          /* Map legacy gold classes to Supporting Data Teal */
    --accent-cyan: #00a3c4;          /* Map legacy cyan classes to Supporting Data Teal */
    --accent-blue: #0f172a;          /* Map legacy blue to Deep Navy */
    --accent-lime: #ccff00;          /* 10% Logo & Accents: Signature Lime Green */
    --accent-emerald: #05d5a1;       /* Safe Diagnostics Efficacy Green */
    
    /* Text colours */
    --text-main: #334155;            /* High Contrast Slate Gray for B2B readability */
    --text-muted: #64748b;           /* Muted Slate Gray for secondary copy */
    --text-bright: #0f172a;          /* Deep Navy for headings and active text */
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    --glow-shadow-strong: 0 10px 30px rgba(15, 23, 42, 0.08);

    /* Dynamic element themes */
    --btn-primary-text: #0f172a;
    --btn-secondary-bg: #ffffff;
    --btn-secondary-border: rgba(15, 23, 42, 0.15);
    --btn-secondary-text: #0f172a;
    --btn-secondary-hover-bg: rgba(15, 23, 42, 0.04);
    --btn-secondary-hover-border: #00a3c4;
    --card-glow-gradient: linear-gradient(90deg, var(--accent-lime), var(--primary-light));
    --svg-map-fill: #e2e8f0;
    --svg-map-stroke: #cbd5e1;
    --theme-btn-bg: rgba(15, 23, 42, 0.04);
}

/* Dark Theme Overrides - Restoring the high-fidelity dark version at will */
[data-theme="dark"] {
    --bg-dark: #040e14;              /* 60% Dominant: Deep clinical navy background */
    --bg-surface: #0a1e2c;           /* Deep surface card blue */
    --bg-surface-glass: rgba(10, 30, 44, 0.75); /* Translucent dark navy glass */
    --border-glass: rgba(12, 84, 147, 0.2);     /* Clinical blue border */
    --border-glass-hover: rgba(203, 179, 128, 0.45); /* Gold hover border */
    
    /* Primary clinical accents for Dark mode */
    --primary: #045493;              /* Authentic Valeograph Clinical Blue */
    --primary-light: #1e88e5;        /* High-tech Active Telemetry Blue */
    --accent-gold: #cbb380;          /* Luxury B2B Champagne Gold */
    --accent-cyan: #00a0e0;          /* Active Telemetry Vibrant Sky Blue */
    --accent-blue: #00a3ff;          /* High-intensity Sky Blue */
    --accent-lime: #cbb380;          /* Map lime to Luxury Gold in dark mode! */
    --accent-emerald: #05d5a1;       /* Safe Diagnostics Efficacy Green */
    
    /* Text colours */
    --text-main: #e6f1f5;            /* White/Teal main body text */
    --text-muted: #8fa7b0;           /* Muted telemetry gray text */
    --text-bright: #ffffff;          /* Pure white headers */
    
    /* Shadows */
    --glow-shadow: 0 0 20px rgba(4, 84, 147, 0.2);
    --glow-shadow-strong: 0 0 35px rgba(203, 179, 128, 0.25);

    /* Dynamic element themes */
    --btn-primary-text: #040e14;
    --btn-secondary-bg: rgba(10, 30, 44, 0.25);
    --btn-secondary-border: rgba(12, 84, 147, 0.2);
    --btn-secondary-text: #ffffff;
    --btn-secondary-hover-bg: rgba(10, 30, 44, 0.45);
    --btn-secondary-hover-border: #cbb380;
    --card-glow-gradient: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
    --svg-map-fill: #0c2027;
    --svg-map-stroke: rgba(203, 179, 128, 0.12);
    --theme-btn-bg: rgba(255, 255, 255, 0.08);
}

/* Base Resets & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-bright);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-cyan { color: var(--primary-light); }
.text-gold { color: var(--accent-gold); }
.text-emerald { color: var(--accent-emerald); }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Visual Highlights & Background Glows */
.bg-glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 84, 147, 0.12) 0%, rgba(10, 30, 44, 0.0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Typography styles */
.hero-title {
    font-size: clamp(2.75rem, 4vw, 4rem);
    line-height: 1.06;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 40%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 880px;
    white-space: nowrap;
}

.hero-content .hero-title {
    font-size: clamp(2.1rem, 5.5vw, 4rem);
    max-width: 100%;
    white-space: nowrap;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 50px auto;
}

/* Interactive Navigation bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-glass-hover);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
    height: 80px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 218px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-bright);
}

.logo-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #a7c64b;
    line-height: 1;
    white-space: nowrap;
}

.logo-o {
    display: inline-flex;
    width: 34px;
    height: 34px;
    margin: 0 1px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 34px;
    box-shadow: 0 0 12px rgba(128, 177, 37, 0.28);
}

.logo-o img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: logoOrbSpin 10s linear infinite;
}

nav ul.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links > li {
    position: relative;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
    text-shadow: none;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 280px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
}

.nav-links > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dropdown-link:hover {
    background: rgba(203, 179, 128, 0.06);
    color: var(--text-bright);
    border-left: 2px solid var(--accent-gold);
}

.dropdown-link i {
    font-size: 16px;
    color: var(--primary-light);
}

.dropdown-link-title {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.dropdown-link-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Header Utilities */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 6px 16px 6px 36px;
    color: var(--text-main);
    font-size: 0.85rem;
    width: 160px;
    transition: var(--transition-smooth);
}

.search-input:focus {
    width: 240px;
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: var(--glow-shadow);
}

.search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

.lang-selector {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border-glass);
    padding: 4px 8px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
}

.lang-btn {
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    padding: 2px 4px;
    border-radius: 4px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.lang-btn.active, .lang-btn:hover {
    color: var(--accent-gold);
    background: rgba(15, 23, 42, 0.06);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-lime);
    color: var(--btn-primary-text);
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    box-shadow: var(--glow-shadow-strong);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-border);
    color: var(--btn-secondary-text);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--btn-secondary-hover-bg);
    border-color: var(--btn-secondary-hover-border);
    color: var(--btn-secondary-text);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* Hero Section Styles */
.hero-wrapper {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 30%, rgba(0, 163, 196, 0.08) 0%, rgba(248, 250, 252, 0) 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    min-width: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border-glass);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-ctas .btn {
    white-space: nowrap;
}

.hero-visual {
    position: relative;
}

/* Premium Visual Showcase (Interactive Video Component) */
.video-preview-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    position: relative;
    box-shadow: var(--glow-shadow);
    background: var(--bg-surface);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: var(--transition-smooth);
}

.video-preview-wrapper:hover .video-element {
    opacity: 0.85;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(4, 14, 20, 0.55), rgba(4, 14, 20, 0.05));
    padding: 24px;
    text-align: center;
}

.play-pulse-btn {
    width: 72px;
    height: 72px;
    background: var(--accent-lime);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    animation: pulseGlow 2.5s infinite;
    transition: var(--transition-smooth);
}

.play-pulse-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-shadow-strong);
}

/* Paradox & Challenge Cards Section */
.paradox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.glass-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-glow-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--glow-shadow-strong);
}

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

.card-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var(--accent-gold);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.glass-card:hover .card-icon-box {
    background: rgba(203, 179, 128, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(203, 179, 128, 0.2);
}

.card-metric {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin: 16px 0 8px 0;
    font-family: 'Outfit', sans-serif;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-tagline::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
}

/* 4-Quadrant Institutional Solution */
.quadrant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.quadrant-card {
    display: flex;
    gap: 24px;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: rgba(10, 30, 44, 0.05);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.quadrant-card:hover {
    background: rgba(10, 30, 44, 0.12);
    border-color: var(--border-glass-hover);
    box-shadow: var(--glow-shadow);
}

.quadrant-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(4, 84, 147, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-light);
    transition: var(--transition-smooth);
}

.quadrant-card:hover .quadrant-icon {
    background: var(--accent-lime);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(203, 179, 128, 0.4);
}

.quadrant-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.quadrant-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.quadrant-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.quadrant-link i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.quadrant-link:hover i {
    transform: translateX(4px);
}

/* Solutions Sector Selection Cards */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(203, 179, 128, 0.08) 0%, rgba(4, 14, 20, 0) 70%);
    pointer-events: none;
}

.sector-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-shadow-strong);
    transform: scale(1.02);
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sector-icon {
    font-size: 22px;
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    background: rgba(203, 179, 128, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sector-card:hover .sector-icon {
    background: rgba(203, 179, 128, 0.15);
    border-color: var(--accent-gold);
}

.sector-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.sector-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sector-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Global Deployment Map Section */
.deployment-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(203, 179, 128, 0.25);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    background: var(--bg-surface-glass);
    padding: 24px;
    box-shadow: var(--glow-shadow);
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
    fill: var(--svg-map-fill);
    stroke: var(--svg-map-stroke);
    stroke-width: 0.5px;
}

.map-hotspot {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.map-hotspot circle.core {
    fill: var(--accent-gold);
    filter: drop-shadow(0 0 4px var(--accent-gold));
}

.map-hotspot circle.pulse {
    fill: transparent;
    stroke: var(--accent-gold);
    stroke-width: 1px;
    transform-origin: center;
    animation: ripple 2s infinite ease-out;
}

.map-hotspot:hover circle.core {
    fill: var(--text-bright);
    scale: 1.3;
}

.map-tooltip {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), var(--glow-shadow-strong);
    z-index: 10;
    width: 220px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.map-tooltip-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--accent-gold);
}

.map-tooltip-stat {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Regulatory Trust Badges */
.regulatory-badges-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item {
    background: rgba(10, 30, 44, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.badge-item:hover {
    border-color: var(--accent-gold);
    background: rgba(10, 30, 44, 0.16);
    box-shadow: var(--glow-shadow);
}

.badge-logo {
    font-size: 26px;
    color: var(--accent-gold);
}

.badge-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Strategic Decision Suite (3 CTA paths) */
.decision-suite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.decision-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.decision-card:hover {
    box-shadow: var(--glow-shadow-strong);
    border-color: var(--accent-gold);
}

.decision-icon {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.decision-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.decision-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: auto;
    padding-bottom: 32px;
}

/* Solutions Sub-Navigation & Hub Pages */
.solutions-hub-wrapper {
    padding-top: 120px;
}

.sector-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid rgba(203, 179, 128, 0.1);
    margin-bottom: 48px;
    padding-bottom: 4px;
}

.sector-tabs {
    display: flex;
    gap: 16px;
    min-width: max-content;
    padding: 4px 8px;
}

.sector-tab-btn {
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.sector-tab-btn:hover {
    color: var(--accent-gold);
    background: rgba(15, 23, 42, 0.04);
}

.sector-tab-btn.active {
    color: #030a0d;
    background: var(--accent-lime);
    box-shadow: var(--glow-shadow);
}

.solutions-hub-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.solutions-hub-panel.active {
    display: block;
}

.solution-grid-two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    margin-bottom: 60px;
}

.pain-points-list {
    margin-top: 24px;
}

.pain-point-item {
    background: var(--bg-surface);
    border: 1px solid rgba(4, 84, 147, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
}

.pain-point-bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ff5252;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pain-point-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pain-point-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Solutions Benefits Mapping */
.solution-benefits-map {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
}

.benefits-mapping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mapping-card {
    background: rgba(6, 18, 22, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
}

.mapping-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mapping-card-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.mapping-card-item:last-child {
    margin-bottom: 0;
}

.mapping-bullet-green {
    width: 24px;
    height: 24px;
    background: rgba(5, 213, 161, 0.08);
    border: 1px solid rgba(5, 213, 161, 0.3);
    border-radius: 50%;
    color: var(--accent-emerald);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Interactive Roadmap (Horizontal / Vertical Timeline) */
.roadmap-container {
    position: relative;
    margin-bottom: 60px;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(10, 30, 44, 0.2) 100%);
    z-index: 0;
}

.roadmap-step {
    position: relative;
    z-index: 1;
    text-align: center;
    cursor: pointer;
}

.roadmap-node {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.roadmap-step.active .roadmap-node, .roadmap-step:hover .roadmap-node {
    border-color: var(--accent-gold);
    background: var(--accent-lime);
    color: #030a0d;
    box-shadow: var(--glow-shadow-strong);
    transform: scale(1.1);
}

.roadmap-step-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.roadmap-step-timeline {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
}

.roadmap-details-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 32px;
    animation: fadeIn 0.4s ease-out;
}

/* Fleshed Out Case Studies Templates */
.case-study-banner {
    background: linear-gradient(to right, rgba(10, 30, 44, 0.25), rgba(4, 14, 20, 0.8)), var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 60px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.cs-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.cs-meta-tag {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(203, 179, 128, 0.2);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.cs-outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.cs-outcome-card {
    background: rgba(4, 14, 20, 0.4);
    border: 1px solid rgba(203, 179, 128, 0.06);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.cs-outcome-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
}

.cs-outcome-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.cs-testimonial {
    background: var(--bg-surface);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 24px;
    margin-top: 32px;
    font-style: italic;
    color: var(--text-bright);
}

.cs-author {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 600;
}

/* Accordion FAQ Component */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    background: var(--bg-surface-glass);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-header {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--accent-gold);
    color: #030a0d;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 28px;
}

.faq-content-inner {
    padding-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.open .faq-content {
    max-height: 500px;
}

/* Clinical Evidence Page styling */
.clinical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.clinical-summary-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(16px);
}

.clinical-list-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.clinical-list-item i {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 4px;
}

.clinical-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dashboard-radial-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.percentage-ring-container {
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 12px;
}

.percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-bright);
}

/* Research Engine Filters & Table */
.research-filters {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-pill-btn {
    background: rgba(10, 30, 44, 0.2);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-pill-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.filter-pill-btn.active {
    background: var(--accent-gold);
    color: #030a0d;
    border-color: var(--accent-gold);
    box-shadow: var(--glow-shadow-strong);
}

.research-search-box {
    position: relative;
    min-width: 260px;
}

.research-search-input {
    background: rgba(4, 14, 20, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 8px 16px 8px 36px;
    color: var(--text-bright);
    width: 100%;
    font-size: 0.85rem;
}

.research-search-input:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: var(--glow-shadow);
}

/* Publications Grid */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.pub-card {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(4, 84, 147, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.pub-card:hover {
    border-color: var(--accent-gold);
    background: rgba(10, 30, 44, 0.8);
    transform: translateY(-4px);
    box-shadow: var(--glow-shadow-strong);
}

.pub-badge {
    background: rgba(10, 30, 44, 0.3);
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.pub-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text-bright);
}

.pub-authors {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pub-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(203, 179, 128, 0.04);
    padding-top: 12px;
    margin-top: auto;
}

.pub-journal {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.pub-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pub-link:hover {
    color: var(--accent-gold);
}

/* Medical Advisory Board */
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.advisor-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.advisor-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-shadow-strong);
}

.advisor-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(10, 30, 44, 0.4), rgba(4, 14, 20, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(203, 179, 128, 0.08);
}

.advisor-avatar-placeholder {
    font-size: 48px;
    color: rgba(203, 179, 128, 0.2);
}

.advisor-info {
    padding: 20px;
    text-align: center;
}

.advisor-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.advisor-title {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.advisor-institution {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Diagnostic Comparative Matrix Table */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    background: var(--bg-surface-glass);
    box-shadow: var(--glow-shadow);
    margin-bottom: 60px;
}

table.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

table.compare-table th, table.compare-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(203, 179, 128, 0.08);
}

table.compare-table th {
    background: var(--bg-surface);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-bright);
}

table.compare-table tr:last-child td {
    border-bottom: none;
}

table.compare-table td.highlight-col {
    background: rgba(203, 179, 128, 0.03);
    font-weight: 600;
    border-left: 1px solid rgba(203, 179, 128, 0.08);
    border-right: 1px solid rgba(203, 179, 128, 0.08);
}

table.compare-table th.highlight-col {
    background: rgba(15, 23, 42, 0.04);
    color: var(--accent-gold);
    border-left: 1px solid rgba(203, 179, 128, 0.08);
    border-right: 1px solid rgba(203, 179, 128, 0.08);
}

table.compare-table tr:hover td {
    background: rgba(10, 30, 44, 0.08);
}

/* Page 9: Regulatory Approvals Hub */
.compliance-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.matrix-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(16px);
}

.matrix-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.matrix-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(203, 179, 128, 0.06);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--accent-gold);
}

.matrix-card:hover .matrix-logo {
    background: var(--accent-gold);
    color: #030a0d;
    box-shadow: 0 0 15px rgba(203, 179, 128, 0.3);
}

/* Premium B2B Document Download Center */
.document-center-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.doc-download-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.doc-download-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-shadow-strong);
    transform: translateY(-4px);
}

.doc-icon-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.doc-type-icon {
    font-size: 32px;
    color: #ff5252;
}

.doc-size-badge {
    background: rgba(10, 30, 44, 0.2);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.doc-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-bright);
}

.doc-info-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-download {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border-glass);
    color: var(--accent-gold);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.doc-download-card:hover .btn-download {
    background: var(--accent-gold);
    color: #030a0d;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(203, 179, 128, 0.25);
}

/* Universal Modals & Consultation multi-step popup form */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-window {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 680px;
    box-shadow: var(--glow-shadow-strong);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-window {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 30, 44, 0.2);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.modal-header {
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(203, 179, 128, 0.08);
    padding: 32px 40px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.modal-body {
    padding: 40px;
}

/* Multi-Step B2B Consultation Form styling */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-step.active {
    display: block;
}

.form-step-indicators {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.indicator-dot {
    height: 6px;
    flex-grow: 1;
    border-radius: 3px;
    background: rgba(10, 30, 44, 0.3);
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    width: 100%;
    background: rgba(4, 14, 20, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-bright);
    font-family: inherit;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: var(--glow-shadow);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.options-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.option-select-card {
    border: 1px solid var(--border-glass);
    background: rgba(4, 14, 20, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.option-select-card i {
    font-size: 20px;
    color: var(--text-muted);
}

.option-select-card.selected {
    border-color: var(--accent-gold);
    background: rgba(203, 179, 128, 0.05);
    color: var(--accent-gold);
}

.option-select-card.selected i {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--accent-gold);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    border-top: 1px solid rgba(203, 179, 128, 0.08);
    padding-top: 24px;
}

/* Footer layout */
footer {
    background: #02070a;
    border-top: 1px solid rgba(203, 179, 128, 0.08);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 260px;
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-bright);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(203, 179, 128, 0.05);
    padding-top: 32px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* Animations System Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(203, 179, 128, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(203, 179, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(203, 179, 128, 0); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

@keyframes logoOrbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Large video modal (Showcase player) */
.video-modal-container {
    width: 100%;
    max-width: 960px !important;
}

.video-modal-player-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-glass);
}

.video-modal-player-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Responsiveness Rules */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
        white-space: normal;
        text-wrap: balance;
    }
    .hero-content .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        white-space: nowrap;
        text-wrap: initial;
    }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { order: -1; }
    .paradox-grid { grid-template-columns: 1fr; }
    .quadrant-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .deployment-grid { grid-template-columns: 1fr; }
    .decision-suite-grid { grid-template-columns: 1fr; }
    .solution-grid-two-col { grid-template-columns: 1fr; }
    .benefits-mapping-grid { grid-template-columns: 1fr; }
    .roadmap-timeline { grid-template-columns: 1fr; }
    .roadmap-timeline::before { display: none; }
    .case-study-grid { grid-template-columns: 1fr; }
    .clinical-grid { grid-template-columns: 1fr; }
    .publications-grid { grid-template-columns: 1fr; }
    .advisory-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-matrix { grid-template-columns: 1fr; }
    .document-center-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .header-actions .search-box { display: none; }
    .nav-container { gap: 18px; }
    .logo-group { min-width: 172px; }
    .logo-wordmark { font-size: 18px; }
    .logo-o {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }
    .hero-title {
        font-size: 2.35rem;
        line-height: 1.1;
    }
    .hero-content .hero-title {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
        white-space: nowrap;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .advisory-grid { grid-template-columns: 1fr; }
}
