/* ===== PREMIUM $100K COLOR VARIABLES ===== */
:root {
    /* Executive Authority Colors */
    --premium-navy: #0f1729;
    --executive-navy: #1e293b;
    --ultra-authority: #0c1017;
    
    /* Enhanced Gold Premium */
    --premium-gold: #fbbf24;
    --luxury-gold: #f59e0b;
    --elite-gold: #d97706;
    
    /* Medical Trust Blues */
    --medical-blue: #1e40af;
    --healthcare-trust: #1d4ed8;
    --medical-authority: #1e3a8a;
    
    /* ROI Success Greens */
    --roi-green: #059669;
    --money-success: #047857;
    --growth-green: #065f46;
    
    /* Original Colors (Enhanced) */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #10b981;
    --text-color: #e5e7eb;
    --text-light: #9ca3af;
    --bg-primary: var(--premium-navy);
    --bg-secondary: var(--executive-navy);
    --bg-card: #374151;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, var(--medical-blue) 100%);
    --gradient-authority: linear-gradient(135deg, var(--premium-navy) 0%, var(--executive-navy) 100%);
    --gradient-premium: linear-gradient(135deg, var(--premium-gold) 0%, var(--luxury-gold) 100%);
    --gradient-success: linear-gradient(135deg, var(--roi-green) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: var(--bg-primary);
    /* ENHANCED FONT RENDERING FOR ALL TEXT */
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: optimizeLegibility;
    font-smooth: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons - Executive Premium Styling */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: var(--gradient-premium);
    color: var(--premium-navy);
    border: 2px solid var(--premium-gold);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
    font-weight: 700;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #92400e 100%);
    color: white;
}

.btn--outline {
    background: transparent;
    color: var(--premium-gold);
    border: 2px solid var(--premium-gold);
}

.btn--outline:hover {
    background: var(--premium-gold);
    color: var(--premium-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.btn--contact {
    background: var(--gradient-success);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border: 2px solid var(--roi-green);
}

.btn--contact:hover {
    background: linear-gradient(135deg, var(--money-success) 0%, var(--growth-green) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

/* Header - Premium Executive Authority */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--premium-navy) 0%, var(--executive-navy) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--premium-gold);
    box-shadow: 0 4px 20px rgba(15, 23, 41, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--premium-gold);
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav__icon {
    font-size: 1.5rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #3b82f6;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.nav__toggle i {
    font-size: 1.25rem;
    color: #e5e7eb;
}

/* Hero Section - Executive Authority & Premium Trust */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--premium-navy) 0%, var(--medical-authority) 25%, var(--medical-blue) 50%, var(--healthcare-trust) 75%, var(--executive-navy) 100%);
    background-attachment: fixed;
    padding-top: 12rem !important;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    /* Remove top margin to prevent header collision */
    margin: 0 auto clamp(1rem, 2vw, 4rem) auto;
    /* Fluid padding that scales smoothly */
    padding: 0 clamp(1rem, 3vw, 2rem);
    /* Ensure vertical layout - content on top, visual on bottom */
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 4rem);
}

.hero__content {
    background: linear-gradient(145deg, var(--premium-navy) 0%, var(--executive-navy) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid var(--premium-gold);
    /* Better border radius scaling */
    border-radius: clamp(20px, 3vw, 32px);
    /* Improved padding scaling */
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
    margin: 0 auto;
    box-shadow: 
        0 12px 40px rgba(15, 23, 41, 0.5),
        0 4px 20px rgba(251, 191, 36, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    position: relative;
    text-align: center;
    /* Better max-width scaling - wider for desktop stats */
    max-width: min(100%, clamp(400px, 85vw, 1100px));
    overflow: hidden;
}

.hero__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Hero Title - Fluid Responsive Scaling */
.hero__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    /* Fluid margin that scales smoothly */
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.hero__title-container {
    margin-bottom: clamp(2rem, 3.5vw, 2.5rem);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    line-height: 1 !important;
}

.hero__title-line {
    margin-bottom: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1 !important;
    margin-top: -0.2rem;
    margin-bottom: -0.2rem;
}

/* PREMIUM EXECUTIVE HERO TITLES */

/* WEBKIT GRADIENT TEXT SMOOTHING FIX */
.hero__title-word {
    /* Force text to render smoothly even with gradients */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    
    /* Hardware acceleration for smooth rendering */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    
    /* Force GPU acceleration */
    will-change: transform, filter, opacity;
}
.hero__title-word {
    display: inline-block;
    /* REFINED EXECUTIVE SIZING - More balanced and professional */
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 0.95;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.03em;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    font-smooth: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* REMOVE ALL FUZZY EFFECTS */
    filter: none !important;
    transform: none !important;
    will-change: auto;
}

/* FORCE 3D EFFECTS - OVERRIDE ALL CONFLICTS */
.hero__title-word.hero__title-word--primary,
.hero__content .hero__title-word--primary,
.hero .hero__title-word--primary {
    /* CLEAN SOLID COLOR - NO FUZZY BOXES */
    color: #fbbf24 !important;
    font-weight: 900 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
    /* OPTIMIZED FONT SMOOTHING */
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: auto !important;
    font-smooth: auto !important;
    text-rendering: optimizeLegibility !important;
    
    /* FORCE 3D TEXT SHADOWS - MAXIMUM SPECIFICITY */
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.9),
        0 2px 0 rgba(0, 0, 0, 0.8),
        0 3px 0 rgba(0, 0, 0, 0.7),
        0 4px 0 rgba(0, 0, 0, 0.6),
        0 5px 0 rgba(0, 0, 0, 0.5),
        0 6px 1px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(251, 191, 36, 0.6),
        0 2px 15px rgba(0, 0, 0, 0.3) !important;
    
    position: relative !important;
    /* FORCE 3D TRANSFORM - MAXIMUM SPECIFICITY */
    transform: perspective(1000px) rotateX(3deg) translateZ(5px) !important;
    /* REMOVE FUZZY EFFECTS */
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

/* OLD CONFLICTING STYLES REMOVED - PREMIUM 3D STYLES NOW CONTROL ALL TEXT */

/* ALL FUZZY OVERLAY BOXES REMOVED - CLEAN TEXT ONLY */

/* CLEAN 3D HOVER EFFECTS - NO FUZZY BOXES */
.hero__title-word:hover {
    transform: perspective(1000px) rotateX(6deg) translateZ(10px) scale(1.02);
    transition: all 0.3s ease-out;
}

.hero__title-word--primary:hover {
    text-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.9),
        0 4px 0 rgba(0, 0, 0, 0.8),
        0 6px 0 rgba(0, 0, 0, 0.7),
        0 8px 0 rgba(0, 0, 0, 0.6),
        0 10px 0 rgba(0, 0, 0, 0.5),
        0 12px 2px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(251, 191, 36, 0.8),
        0 4px 25px rgba(0, 0, 0, 0.4);
}

.hero__title-word--secondary:hover {
    text-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.9),
        0 4px 0 rgba(0, 0, 0, 0.8),
        0 6px 0 rgba(0, 0, 0, 0.7),
        0 8px 0 rgba(0, 0, 0, 0.6),
        0 10px 0 rgba(0, 0, 0, 0.5),
        0 12px 2px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(251, 191, 36, 0.8),
        0 4px 25px rgba(0, 0, 0, 0.4);
}

.hero__title-word--accent:hover {
    text-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.9),
        0 4px 0 rgba(0, 0, 0, 0.8),
        0 6px 0 rgba(0, 0, 0, 0.7),
        0 8px 0 rgba(0, 0, 0, 0.6),
        0 10px 0 rgba(0, 0, 0, 0.5),
        0 12px 2px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(5, 150, 105, 0.8),
        0 4px 25px rgba(0, 0, 0, 0.4);
}

/* EXECUTIVE TITLE CONTAINER */
.hero__title-container {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    text-align: center;
}

.hero__title-line {
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
}

/* PREMIUM SPARKLE ENHANCEMENT */
.hero__title-sparkle {
    font-size: clamp(2rem, 4vw, 3rem);
    animation: sparkleRotate 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* PREMIUM 3D ANIMATIONS */
@keyframes goldPulse3D {
    0%, 100% { 
        filter: 
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
        transform: perspective(1000px) rotateX(12deg) translateZ(40px) scale(1.03);
    }
    50% { 
        filter: 
            drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 40px rgba(251, 191, 36, 0.7));
        transform: perspective(1000px) rotateX(15deg) translateZ(50px) scale(1.05);
    }
}

@keyframes greenGlow3D {
    0%, 100% { 
        filter: 
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 20px rgba(5, 150, 105, 0.3));
        transform: perspective(1000px) rotateX(12deg) translateZ(40px) scale(1.03);
    }
    50% { 
        filter: 
            drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 40px rgba(5, 150, 105, 0.7));
        transform: perspective(1000px) rotateX(15deg) translateZ(50px) scale(1.05);
    }
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1.2); }
    75% { transform: rotate(-5deg) scale(1.1); }
}

/* Hero Description - Clean Base Styling */
.hero__description {
    font-size: clamp(1.05rem, 2.8vw, 1.25rem);
    margin-bottom: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.65;
    text-align: center;
    max-width: clamp(300px, 75vw, 600px);
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero__description::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, transparent, rgba(129, 212, 250, 0.1), transparent) !important;
    border-radius: 12px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: borderGlow 3s ease-in-out infinite !important;
}

.hero__description:hover {
    transform: scale(1.02) !important;
    text-shadow: 0 0 50px rgba(129, 212, 250, 0.6), 0 0 100px rgba(129, 212, 250, 0.3) !important;
}

.hero__description:hover::before {
    opacity: 0.5 !important;
}

/* REMOVED - Hero description styling moved to nuclear-gradient.css for centralized gradient control */

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    p.hero__description {
        color: rgba(255, 255, 255, 0.9) !important;
        text-shadow: 0 0 30px rgba(129, 212, 250, 0.6) !important;
        background: none !important;
    }
}

/* Hero Buttons - Improved Layout */
.hero__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    padding: 0 clamp(1rem, 2vw, 2rem);
}

.hero__buttons .btn {
    /* Better responsive sizing */
    padding: clamp(0.875rem, 1.8vw, 1.125rem) clamp(1.75rem, 4vw, 2.25rem);
    font-size: clamp(0.95rem, 2.2vw, 1.125rem);
    font-weight: 600;
    border-radius: clamp(0.5rem, 1vw, 0.75rem);
    min-width: clamp(140px, 20vw, 180px);
    text-align: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero__buttons .btn--primary {
    background: var(--gradient-premium);
    border: 2px solid var(--premium-gold);
    color: var(--premium-navy);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__buttons .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.hero__buttons .btn--outline {
    background: rgba(var(--premium-gold), 0.08);
    border: 2px solid var(--premium-gold);
    color: var(--premium-gold);
    backdrop-filter: blur(15px);
}

.hero__buttons .btn--outline:hover {
    background: var(--premium-gold);
    border-color: var(--luxury-gold);
    color: var(--premium-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* Responsive button layout */
@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (min-width: 481px) {
    .hero__buttons {
        flex-direction: row;
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .hero__buttons .btn {
        flex: 0 1 auto;
        min-width: clamp(160px, 22vw, 200px);
        max-width: clamp(180px, 25vw, 220px);
    }
}

/* Hero Stats - Better Layout */
.hero__stats {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important; /* Mobile: 1x4 vertical stack */
    gap: clamp(1rem, 2.5vw, 2rem);
    padding: clamp(2rem, 3vw, 2.5rem) 0 clamp(2rem, 3vw, 2.5rem) 0;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tablet: 2x2 grid */
@media (min-width: 768px) {
    .hero {
        padding-top: 13rem !important;
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Desktop: 4x1 single row */
@media (min-width: 1200px) {
    .hero {
        padding-top: 15rem !important;
    }
    
    .hero__stats {
        grid-template-columns: repeat(4, 1fr) !important;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero__stat {
    text-align: center;
    padding: clamp(0.75rem, 1.5vw, 1rem);
    border-radius: clamp(0.5rem, 1vw, 0.75rem);
    background: linear-gradient(145deg, var(--executive-navy) 0%, var(--premium-navy) 100%);
    border: 2px solid var(--premium-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero__stat:hover {
    background: linear-gradient(145deg, var(--premium-navy) 0%, var(--ultra-authority) 100%);
    border-color: var(--luxury-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.hero__stat-number {
    display: block;
    /* Fluid font size - scales smoothly from 1.5rem to 3rem */
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* ROI and Money-related stats get success green */
.hero__stat:nth-child(1) .hero__stat-number,
.hero__stat:nth-child(4) .hero__stat-number {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    display: block;
    /* Fluid font size - scales smoothly */
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Remove old hero stat effects - keep it clean for the card design */

.hero__stat::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 0;
}

.hero__stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(255, 255, 255, 0.2) inset,
        0 0 30px rgba(59, 130, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero__stat:hover::before {
    left: 100%;
}

.hero__stat:hover::after {
    width: 120px;
    height: 120px;
}

.hero__stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.hero__stat:hover .hero__stat-number {
    color: #60a5fa;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
    transform: scale(1.1);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero__stat:hover .hero__stat-label {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Enhanced Hero Visual Section */
.hero__visual {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__main-image {
    width: clamp(280px, 35vw, 380px);
    height: clamp(280px, 35vw, 380px);
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, 
            rgba(37, 99, 235, 0.95) 0%, 
            rgba(59, 130, 246, 0.9) 25%,
            rgba(96, 165, 250, 0.95) 50%,
            rgba(147, 197, 253, 0.9) 75%,
            rgba(59, 130, 246, 0.95) 100%);
    background-size: 100% 100%, 300% 300%;
    border-radius: clamp(20px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 25px 50px rgba(37, 99, 235, 0.4),
        0 15px 30px rgba(59, 130, 246, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(96, 165, 250, 0.3) inset,
        0 0 15px rgba(255, 255, 255, 0.15) inset;
    position: relative;
    overflow: hidden;
    animation: heroImageFloat 6s ease-in-out infinite, 
               modernGradientShift 10s ease-in-out infinite;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    transform-style: preserve-3d;
}

.hero__main-image::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 50%,
        rgba(96, 165, 250, 0.2) 75%,
        transparent
    );
    animation: imageShineEnhanced 6s linear infinite;
    z-index: 1;
    border-radius: inherit;
}

.hero__main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4),
        rgba(96, 165, 250, 0.6),
        rgba(59, 130, 246, 0.4),
        rgba(255, 255, 255, 0.4));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 4s ease-in-out infinite;
    z-index: 0;
}

.hero__main-image:hover {
    transform: scale(1.06) rotateY(6deg) rotateX(-2deg) translateZ(15px);
    box-shadow: 
        0 35px 70px rgba(37, 99, 235, 0.5),
        0 20px 40px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(96, 165, 250, 0.4) inset,
        0 0 25px rgba(255, 255, 255, 0.25) inset;
    filter: brightness(1.1) saturate(1.1);
}

.hero__main-image:hover::before {
    animation-duration: 2s;
}

.hero__main-image:hover::after {
    animation-duration: 2s;
}

.hero__main-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: contentPulse 4s ease-in-out infinite;
    transform-style: preserve-3d;
    padding: clamp(1rem, 3vw, 2rem);
}

.hero__logo-circle {
    width: clamp(70px, 8vw, 100px);
    height: clamp(70px, 8vw, 100px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.3) inset,
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: logoFloat 6s ease-in-out infinite, 
               logoGlow 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    border-radius: 50%;
    animation: logoBorder 3s linear infinite;
    z-index: -1;
}

.hero__logo-circle i {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: white;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);
    animation: rocketLaunch 3s ease-in-out infinite,
               iconGlow 2s ease-in-out infinite alternate;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.hero__logo-circle:hover i {
    transform: scale(1.1) translateY(-2px);
    animation-duration: 1s, 1s;
}

.hero__brand-title {
    color: white;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
    animation: titleShimmer 3s ease-in-out infinite;
    background: linear-gradient(90deg, 
        white 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        white 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__brand-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    animation: subtitleGlow 4s ease-in-out infinite;
}

.hero__mini-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero__mini-stat {
    text-align: center;
    animation: miniStatPulse 2s ease-in-out infinite;
}

.hero__mini-stat:nth-child(1) {
    animation-delay: 0s;
}

.hero__mini-stat:nth-child(3) {
    animation-delay: -1s;
}

.hero__mini-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
}

.hero__mini-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero__divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    border-radius: 2px;
    animation: dividerGlow 2s ease-in-out infinite;
}

.hero__pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
    pointer-events: none;
}

.hero__pulse-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite reverse;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-10px) rotateZ(1deg);
    }
}

@keyframes imageShine {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes logoBorder {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes contentPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes miniStatPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes dividerGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Enhanced Floating Achievement Cards */
.hero__floating-card {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 255, 255, 0.1) inset;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatingCard 6s ease-in-out infinite;
    max-width: 170px;
    z-index: 3;
    pointer-events: auto;
}

/* Better spread out positioning */
.hero__floating-card--1 {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    top: 10%;
    right: -8%;
    animation-delay: -2s;
}

.hero__floating-card--3 {
    bottom: 30%;
    left: -10%;
    animation-delay: -4s;
}

.hero__floating-card--4 {
    bottom: 25%;
    right: -10%;
    animation-delay: -1s;
}

/* Hide floating cards on smaller screens to prevent overlap */
@media (max-width: 1024px) {
    .hero__floating-card {
        display: none;
    }
    
    /* Premium tablet sizing for executives */
    .hero__title-main {
        font-size: 4rem;
    }
    
    .hero__title-sub {
        font-size: 2.5rem;
    }
    
    .hero__description {
        /* Keep our sexy gradient and animations - just adjust font size if needed */
        font-size: clamp(1.05rem, 2.8vw, 1.4rem) !important;
        /* All other sexy styling preserved from main declaration */
    }
    
    .btn {
        padding: 1.1rem 2.2rem;
        font-size: 1rem;
    }

    /* Achievements Tablet Responsive */
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .achievement__card {
        padding: 2rem 1.5rem;
    }

    .achievement__card .achievement-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Premium mobile experience */
@media (max-width: 768px) {
    .hero__title-main {
        font-size: 3.5rem;
    }
    
    .hero__title-sub {
        font-size: 2rem;
    }
    
    .hero__description {
        /* Keep our sexy gradient and animations - just adjust size/margin if needed */
        font-size: clamp(1.05rem, 2.8vw, 1.3rem) !important;
        margin-bottom: clamp(2.25rem, 4vw, 2.5rem) !important;
        /* All other sexy styling preserved from main declaration */
    }
    
    .hero__buttons {
        gap: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
}

/* Executive large screen optimization */
@media (min-width: 1400px) {
    .hero__title-main {
        font-size: 5.5rem;
    }
    
    .hero__description {
        /* Keep our sexy gradient and animations - just adjust font size */
        font-size: clamp(1.05rem, 2.8vw, 1.6rem) !important;
        /* All other sexy styling preserved from main declaration */
    }
    
    .hero__content {
        max-width: 1300px;
    }
}

.hero__floating-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(255, 255, 255, 0.2) inset;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.achievement-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.hero__floating-card:hover .achievement-icon::before {
    left: 100%;
}

.achievement-icon--success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.achievement-icon--warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.achievement-icon i {
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

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

.achievement-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.achievement-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Enhanced Background Particles */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle--2 {
    top: 40%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.particle--3 {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.particle--4 {
    top: 60%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.particle--5 {
    bottom: 20%;
    right: 10%;
    animation-delay: -20s;
    animation-duration: 26s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Sections - Medical Authority & Trust */
.achievements, .services, .about, .contact {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.achievements {
    background: linear-gradient(145deg, var(--premium-navy) 0%, var(--medical-authority) 100%);
    border-top: 2px solid var(--medical-blue);
}

.services {
    background: var(--bg-secondary);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Achievements */
.achievements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement__card {
    background: linear-gradient(145deg, var(--executive-navy) 0%, var(--premium-navy) 100%);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--medical-blue);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.achievement__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(30, 64, 175, 0.3),
        0 0 40px rgba(251, 191, 36, 0.2);
    border-color: var(--premium-gold);
    background: linear-gradient(145deg, var(--medical-blue) 0%, var(--healthcare-trust) 100%);
}

.achievement__card .achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--premium-navy);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.4s ease;
}

.achievement__card .achievement-icon--success {
    background: var(--gradient-success);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
    color: white;
}

.achievement__card .achievement-icon--warning {
    background: var(--gradient-premium);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: var(--premium-navy);
}

.achievement__card .achievement-icon--emergency {
    background: linear-gradient(135deg, var(--medical-blue), var(--healthcare-trust));
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
    color: white;
}

.achievement__card:hover .achievement-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.achievement__card .achievement-content {
    text-align: center;
}

.achievement__card .achievement-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.achievement__card .achievement-subtitle {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.achievement__card .achievement-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service__card {
    background: #374151;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #4b5563;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
}

.service__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service__description {
    color: #9ca3af;
    line-height: 1.6;
}

/* About */
.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #374151;
    border-radius: 0.75rem;
    border: 1px solid #4b5563;
}

.about__feature i {
    color: #10b981;
    font-size: 1.25rem;
}

.about__feature span {
    color: white;
    font-weight: 500;
}

/* Contact */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #374151;
    border-radius: 0.75rem;
    border: 1px solid #4b5563;
}

.contact__icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact__details h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: #9ca3af;
    line-height: 1.6;
}

.contact__details a {
    color: #3b82f6;
    text-decoration: none;
}

.contact__details a:hover {
    text-decoration: underline;
}

.contact__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #374151;
    border-radius: 0.75rem;
    border: 1px solid #4b5563;
}

.contact__cta h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact__cta p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar Section - Medical Authority & Premium Certification */
.trust-bar {
    background: linear-gradient(135deg, var(--medical-authority) 0%, var(--medical-blue) 50%, var(--healthcare-trust) 100%);
    background-size: 200% 200%;
    animation: trustBarShimmer 8s ease-in-out infinite;
    padding: 2rem 0;
    border-bottom: 2px solid var(--premium-gold);
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent);
    animation: trustBarSweep 10s linear infinite;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(0.75rem, 2vw, 1.5rem);
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    animation: trustItemFadeIn 0.8s ease-out forwards;
    width: 100%;
}

/* Staggered animations for trust items */
.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }
.trust-item:nth-child(5) { animation-delay: 0.5s; }

/* Add certification status indicators */
.trust-badge::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    animation: certificationPulse 2s ease-in-out infinite;
    opacity: 0.8;
}

/* Different colors for different certification types */
.trust-item:nth-child(1) .trust-badge::after { background: #10b981; } /* HIPAA - Green */
.trust-item:nth-child(2) .trust-badge::after { background: #f59e0b; } /* AAPC - Orange */
.trust-item:nth-child(3) .trust-badge::after { background: #3b82f6; } /* SOC 2 - Blue */
.trust-item:nth-child(4) .trust-badge::after { background: #ef4444; } /* Medicare - Red */
.trust-item:nth-child(5) .trust-badge::after { background: #8b5cf6; } /* SSL - Purple */

.trust-badge {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    padding: clamp(0.7rem, 2vw, 1rem) clamp(0.8rem, 2.5vw, 1.2rem);
    background: linear-gradient(145deg, var(--executive-navy) 0%, var(--premium-navy) 100%);
    border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
    border: 2px solid var(--premium-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    width: 100%;
    min-height: clamp(60px, 8vw, 70px);
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: trustBadgeFloat 6s ease-in-out infinite;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    background: linear-gradient(145deg, var(--medical-blue) 0%, var(--healthcare-trust) 100%);
    border-color: var(--luxury-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(30, 64, 175, 0.4),
        0 0 30px rgba(251, 191, 36, 0.2) inset;
    animation-play-state: paused;
}

.trust-badge i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--premium-gold);
    min-width: clamp(20px, 4vw, 24px);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s ease-in-out infinite;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.trust-badge i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.trust-badge:hover i {
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
}

.trust-badge:hover i::after {
    width: 40px;
    height: 40px;
    animation: iconRipple 0.8s ease-out;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.badge-title {
    font-weight: 600;
    color: white;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    position: relative;
}

.badge-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transition: width 0.4s ease;
}

.trust-badge:hover .badge-title {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transform: translateX(2px);
}

.trust-badge:hover .badge-title::after {
    width: 100%;
}

.badge-subtitle {
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    color: #cbd5e1;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.trust-badge:hover .badge-subtitle {
    color: #e2e8f0;
    opacity: 1;
    transform: translateX(2px);
}

/* Mobile Responsive for Trust Bar */
@media (max-width: 768px) {
    .trust-bar {
        padding: 1.5rem 0;
    }
    
    .trust-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: clamp(0.5rem, 2vw, 1rem);
    }
    
    .trust-badge {
        min-height: clamp(55px, 7vw, 65px);
        gap: clamp(0.4rem, 1.2vw, 0.6rem);
    }
}

@media (max-width: 480px) {
    .trust-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .trust-badge {
        min-height: 55px;
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
    }
}

/* Footer - Executive Authority */
.footer {
    background: var(--ultra-authority);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--premium-gold);
    margin-top: auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer__brand {
    padding-right: 1rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer__logo i {
    margin-right: 0.75rem;
    color: #3b82f6;
    font-size: 1.5rem;
}

.footer__description {
    color: #9ca3af;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer__social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.footer__section {
    display: flex;
    flex-direction: column;
}

.footer__title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 0.75rem;
}

.footer__list a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer__list a:hover {
    color: #3b82f6;
    padding-left: 8px;
}

.footer__list a:hover::before {
    content: "→";
    position: absolute;
    left: -8px;
    color: #3b82f6;
}

.footer__contact p {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.footer__bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer__bottom a:hover {
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 4rem;
        right: -100%;
        width: 280px;
        height: calc(100vh - 4rem);
        background: #1f2937;
        border-left: 1px solid #4b5563;
        transition: right 0.3s ease;
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }
    
    .nav__link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #4b5563;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__contact .btn--contact span {
        display: none;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero__title-main {
        font-size: 2.5rem;
    }
    
    .hero__title-sub {
        font-size: 2rem;
    }
    
    .hero__title-accent {
        font-size: 1.5rem;
    }
    
    .hero__description {
        /* Keep our sexy gradient and animations - just adjust for mobile */
        font-size: clamp(0.95rem, 3vw, 1rem) !important;
        margin-bottom: clamp(1.5rem, 4vw, 2rem) !important;
        /* All other sexy styling preserved from main declaration */
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero__stat {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .hero__stat-number {
        font-size: 1.5rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__buttons {
        flex-direction: column;
    }
    
    .contact__buttons .btn {
        width: 100%;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer__brand {
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer__social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer__section {
        text-align: center;
    }
    
    .footer__list a:hover {
        padding-left: 0;
    }
    
    .footer__list a:hover::before {
        display: none;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
}

/* ===== HELPFUL SUPPORT SYSTEM ===== */
/* Floating Support Button */
 .floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
     /* Switched to success (green) gradient for higher contrast */
     background: var(--grad-success) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    /* Shadow keyed to green-400 tone (#25C999) */
    box-shadow: 0 8px 32px rgba(37, 201, 153, 0.35) !important; /* green-400 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentlePulse 4s infinite !important;
    user-select: none;
}

 .floating-support:hover {
    transform: scale(1.1);
     box-shadow: 0 12px 40px rgba(37, 201, 153, 0.5) !important; /* green-400 */
}

 .floating-support .support-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     border: 3px solid rgba(37, 201, 153, 0.45) !important; /* green-400 */
    border-radius: 50%;
    animation: gentlePulsateSupport 3s infinite !important;
}

.floating-support .support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.floating-support .support-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 0.25rem;
}

.floating-support .support-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
    animation: bounceNotification 2s infinite;
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(37, 201, 153, 0.35); }
    50% { box-shadow: 0 12px 40px rgba(37, 201, 153, 0.5); }
}

@keyframes gentlePulsateSupport {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

@keyframes bounceNotification {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Enhanced Trust Badge Animations */
@keyframes trustBarShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes trustBarSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes trustItemFadeIn {
    0% {
        opacity: 0.8;
        transform: translateY(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes trustBadgeFloat {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-2px); }
    50% { transform: translateY(0px); }
    75% { transform: translateY(-1px); }
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05); 
        filter: brightness(1.2);
    }
}

@keyframes iconRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }
    50% {
        width: 30px;
        height: 30px;
        opacity: 0.3;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

@keyframes certificationPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    }
}

/* Enhanced Hero Image Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes modernGradientShift {
    0%, 100% { background-position: 0% 0%, 0% 50%; }
    25% { background-position: 0% 0%, 100% 50%; }
    50% { background-position: 0% 0%, 100% 100%; }
    75% { background-position: 0% 0%, 50% 100%; }
}

@keyframes imageShineEnhanced {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

@keyframes borderGlow {
    0%, 100% { 
        opacity: 0.6;
        filter: brightness(1) hue-rotate(0deg);
    }
    25% { 
        opacity: 0.8;
        filter: brightness(1.2) hue-rotate(30deg);
    }
    50% { 
        opacity: 1;
        filter: brightness(1.4) hue-rotate(60deg);
    }
    75% { 
        opacity: 0.8;
        filter: brightness(1.2) hue-rotate(30deg);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-3px) scale(1.02); }
    50% { transform: translateY(0px) scale(1); }
    75% { transform: translateY(-2px) scale(1.01); }
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 255, 255, 0.3) inset,
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    50% { 
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(255, 255, 255, 0.4) inset,
            0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    }
}

@keyframes rocketLaunch {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-4px) rotate(-2deg); 
    }
    50% { 
        transform: translateY(-2px) rotate(2deg); 
    }
    75% { 
        transform: translateY(-6px) rotate(-1deg); 
    }
}

@keyframes iconGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes subtitleGlow {
    0%, 100% { 
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        opacity: 0.95;
    }
    50% { 
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(255, 255, 255, 0.3);
        opacity: 1;
    }
}

/* Emergency Modal */
.emergency-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px;
}

.emergency-modal.active {
    opacity: 1;
    visibility: visible;
}

.emergency-modal-content {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    /* Use viewport minus padding to avoid bleed at bottom */
    max-height: calc(100vh - 60px);
    display: flex;              /* establish column layout */
    flex-direction: column;
    overflow: hidden;           /* clip any decorative overflow, body will scroll */
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.emergency-modal.active .emergency-modal-content {
    transform: scale(1) translateY(0);
}

.emergency-modal-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.emergency-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerSupport 3s ease-in-out infinite;
}

.emergency-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.emergency-modal-body {
    padding: 2rem 2rem 2.25rem 2rem; /* ensure bottom spacing so last item not flush */
    overflow-y: auto;               /* internal scroll instead of whole modal content */
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;                 /* fill remaining space under header */
}

.emergency-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.emergency-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #374151, #4b5563);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.emergency-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.emergency-option--call {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-color: rgba(14, 165, 233, 0.5);
}

.emergency-option--call:hover {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.emergency-option--chat {
    background: linear-gradient(135deg, #059669, #10b981);
    border-color: rgba(16, 185, 129, 0.5);
}

.emergency-option--chat:hover {
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.emergency-option--email {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-color: rgba(59, 130, 246, 0.5);
}

.emergency-option--email:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.emergency-option .option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-option .option-content {
    flex: 1;
}

.emergency-option .option-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.emergency-option .option-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.emergency-option .option-content span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.emergency-option .option-status {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-monitored {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.emergency-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(75, 85, 99, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.info-item i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

@keyframes shimmerSupport {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Live Chat Widget Integration */
.live-chat-widget {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(100%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: none;
}

.live-chat-widget.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 1rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: visible;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-details {
    overflow: visible;
}

.chat-details h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    overflow: visible;
}

.online-indicator {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    margin-right: 4px;
    display: inline-block;
    position: relative;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #111827;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.chat-message--sent {
    flex-direction: row-reverse;
}

.chat-message--sent .message-content {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.chat-message--received .message-content {
    background: #374151;
    color: #e5e7eb;
    border-radius: 18px 18px 18px 4px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.message-content {
    padding: 0.75rem 1rem;
    max-width: 250px;
    word-wrap: break-word;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    display: block;
}

.sender-label {
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.chat-input {
    padding: 1rem;
    background: #1f2937;
    border-radius: 0 0 16px 16px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-top: 1px solid rgba(75, 85, 99, 0.5);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #4b5563;
    border-radius: 20px;
    background: #111827;
    color: #e5e7eb;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input input:focus {
    border-color: #3b82f6;
}

.chat-input input::placeholder {
    color: #9ca3af;
}

.chat-send {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Emergency Modal Mobile Responsive */
@media (max-width: 768px) {
    .floating-support {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-support .support-text {
        font-size: 0.6rem;
    }

    .emergency-modal {
        padding: 10px;
    }

    .emergency-modal-content {
        max-height: 95vh;
        border-radius: 16px;
    }

    .emergency-modal-header {
        padding: 1.5rem 1rem;
        border-radius: 16px 16px 0 0;
    }

    .emergency-modal-header h3 {
        font-size: 1.3rem;
    }

    .emergency-modal-body {
        padding: 1.5rem 1rem;
    }

    .emergency-option {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 10px;
    }

    .emergency-option .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .emergency-option .option-content h4 {
        font-size: 1rem;
    }

    .emergency-option .option-content p {
        font-size: 0.9rem;
    }

    .emergency-option .option-content span {
        font-size: 0.8rem;
    }

    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 80vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
        border-radius: 12px;
    }

    .chat-messages {
        padding: 0.75rem;
    }

    .message-content {
        max-width: 80%;
    }

    .emergency-info {
        padding: 1rem;
    }

    /* Achievements Mobile Responsive */
    .achievements {
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        padding: 3rem 0;
    }

    .achievements__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .achievement__card {
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .achievement__card:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.15);
    }

    .achievement__card .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .achievement__card .achievement-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .achievement__card .achievement-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .achievement__card .achievement-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .floating-support {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .floating-support .support-text {
        display: none;
    }

    .emergency-options {
        gap: 0.75rem;
    }

    .emergency-option {
        padding: 0.875rem;
    }

    .emergency-option .option-content p {
        font-size: 0.85rem;
    }

    .emergency-option .option-content span {
        font-size: 0.75rem;
    }

    .emergency-modal-header {
        padding: 1.25rem 1rem;
    }

    .emergency-modal-body {
        padding: 1.25rem 1rem;
    }

    /* Achievements Extra Small Mobile */
    .achievements__grid {
        gap: 1rem;
    }

    .achievement__card {
        padding: 1.5rem 1rem;
    }

    .achievement__card .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .achievement__card .achievement-title {
        font-size: 1.2rem;
    }
}

/* ===== PREMIUM 3D HERO TEXT EFFECTS - LOAD LAST ===== */
.hero__title-word--primary {
    color: var(--premium-gold) !important;
    text-shadow: 
        2px 2px 0px #d69e2e,
        4px 4px 0px #b7791f,
        6px 6px 0px #975a16,
        8px 8px 0px #744310,
        10px 10px 0px #553210,
        12px 12px 20px rgba(0, 0, 0, 0.4) !important;
    font-weight: 700 !important;
    transform: perspective(1000px) rotateX(3deg) !important;
}

.hero__title-word--secondary {
    /* SAME GOLD STYLING AS FASTRACK */
    color: #fbbf24 !important;
    font-weight: 900 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
    /* OPTIMIZED FONT SMOOTHING */
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: auto !important;
    font-smooth: auto !important;
    text-rendering: optimizeLegibility !important;
    
    /* FORCE 3D TEXT SHADOWS - SAME AS FASTRACK */
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.9),
        0 2px 0 rgba(0, 0, 0, 0.8),
        0 3px 0 rgba(0, 0, 0, 0.7),
        0 4px 0 rgba(0, 0, 0, 0.6),
        0 5px 0 rgba(0, 0, 0, 0.5),
        0 6px 1px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(251, 191, 36, 0.6),
        0 2px 15px rgba(0, 0, 0, 0.3) !important;
    
    position: relative !important;
    /* FORCE 3D TRANSFORM - SAME AS FASTRACK */
    transform: perspective(1000px) rotateX(3deg) translateZ(5px) !important;
    /* REMOVE FUZZY EFFECTS */
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.hero__title-word--accent {
    color: var(--roi-green) !important;
    text-shadow: 
        2px 2px 0px #047857,
        4px 4px 0px #065f46,
        6px 6px 0px #064e3b,
        8px 8px 0px #022c22,
        10px 10px 0px #14532d,
        12px 12px 20px rgba(0, 0, 0, 0.4) !important;
    font-weight: 600 !important;
    transform: perspective(1000px) rotateX(3deg) !important;
}

/* HERO TITLE BALANCED SPACING OVERRIDE - ADDED DIRECTLY */
