/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Perfect Color Palette */
    --primary-teal: #14B8A6;
    --primary-teal-dark: #0D9488;
    --primary-teal-light: #5EEAD4;
    --secondary-blue: #3B82F6;
    --secondary-blue-dark: #1E40AF;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;
    
    /* Perfect Contrast Neutrals */
    --dark-navy: #0F172A;
    --medium-navy: #1E293B;
    --light-navy: #334155;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    
    /* Perfect Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-blue) 100%);
    --gradient-hero: linear-gradient(135deg, #F0FDFA 0%, #ECFEFF 25%, #E6FFFA 50%, #F0F9FF 75%, #F8FAFC 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 100%);
    --gradient-medium: linear-gradient(135deg, #f1f9ff 0%, #32a0c2 100%);
    
    --gradient-light: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    
    /* Professional Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Perfect Font Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
    
    /* Perfect Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Modern Border Radius */
    --radius-sm: 0.375rem;
    --radius-base: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;
    
    /* Professional Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Animation Durations */
    --duration-200: 200ms;
    --duration-300: 300ms;
    --duration-500: 500ms;
    --duration-700: 700ms;
    
    /* Timing Functions */
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Perfect Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1.3;
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-extrabold);
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: var(--fw-bold);
}
h3 { 
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: var(--fw-semibold);
}

p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
    color: var(--gray-600);
    font-size: var(--text-base);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: var(--space-5);
    right: var(--space-6);
    z-index: 9999;
    background: var(--white);
    border: 2px solid var(--primary-teal);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--duration-300) var(--ease-out);
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--primary-teal);
    transition: all var(--duration-300) var(--ease-out);
    transform-origin: center;
    border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: var(--z-fixed);
    transition: all var(--duration-300) var(--ease-in-out);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    transition: padding var(--duration-300) var(--ease-out);
}

.header.scrolled .nav {
    padding: var(--space-3) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration-300) var(--ease-out);
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-icon i {
    color: var(--white);
    font-size: var(--text-xl);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--dark-navy);
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: var(--fw-medium);
    font-size: var(--text-sm);
    transition: all var(--duration-300) var(--ease-out);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--duration-300) var(--ease-out);
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--duration-300) var(--ease-in-out);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-sm);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

/* CLEAN HERO SECTION - NO MESSY FLOATING CARDS */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
    z-index: 10;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: slideInLeft 0.8s var(--ease-out);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--primary-teal-dark);
    border: 1px solid rgba(20, 184, 166, 0.2);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--primary-teal);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: var(--space-6);
    color: var(--dark-navy);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(var(--text-base), 1.2vw, var(--text-lg));
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 95%;
    font-weight: var(--fw-regular);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(20, 184, 166, 0.1);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-300) var(--ease-out);
    animation: slideInLeft 0.6s var(--ease-out);
    animation-fill-mode: both;
}

.feature-pill:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(20, 184, 166, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-icon i {
    color: var(--white);
    font-size: var(--text-lg);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.feature-title {
    font-weight: var(--fw-semibold);
    color: var(--medium-navy);
    font-size: var(--text-base);
    line-height: 1.4;
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
}

.hero-cta {
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.primary-cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--duration-300) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
    margin-bottom: var(--space-4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--duration-500) var(--ease-out);
}

.primary-cta-btn:hover .btn-shine {
    left: 100%;
}

.primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-600);
    font-size: var(--text-sm);
    justify-content: center;
    font-weight: var(--fw-medium);
}

.cta-note i {
    color: var(--primary-teal);
}

/* CLEAN HERO VISUAL - Professional Image with Clean Stats */
.hero-right {
    animation: slideInRight 0.8s var(--ease-out) 0.3s both;
    position: relative;
}

.hero-visual {
    position: relative;
    height: 600px;
    z-index: 1;
}

.consultation-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.15) 0%, 
        rgba(255, 255, 255, 0.3) 30%, 
        rgba(59, 130, 246, 0.15) 70%, 
        rgba(139, 92, 246, 0.1) 100%);
    backdrop-filter: blur(1px);
}

/* CLEAN STATS OVERLAY - No messy floating cards */
.hero-stats {
    position: absolute;
    bottom: var(--space-8);
    left: var(--space-8);
    right: var(--space-8);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    z-index: 10;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform var(--duration-300) var(--ease-out);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-extrabold);
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: var(--space-1);
    display: block;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--gray-600);
    font-weight: var(--fw-medium);
}

/* Services Overview */
.services-overview {
    padding: var(--space-24) 0;
    background: var(--gradient-medium);
    position: relative;
    z-index: 20;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--duration-500) var(--ease-in-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: all var(--duration-300) var(--ease-out);
}

.service-card.clinical-analysis::before {
    background: var(--gradient-primary);
}

.service-card.treatment-assessment::before {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-green));
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-lg);
    transition: transform var(--duration-300) var(--ease-out);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.clinical-analysis .service-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
}

.treatment-assessment .service-icon {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-dark));
}

.service-icon i {
    color: var(--white);
    font-size: var(--text-3xl);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.service-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.service-feature i {
    color: var(--accent-green);
    font-size: var(--text-sm);
    width: 16px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
    font-weight: var(--fw-extrabold);
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.services-overview .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-overview .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works */
.how-it-works {
    padding: var(--space-24) 0;
    background: var(--gradient-light);
    position: relative;
    z-index: 30;
}

.how-it-works .section-header h2 {
    color: var(--dark-navy);
}

.how-it-works .section-header p {
    color: var(--gray-600);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--duration-500) var(--ease-in-out);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
}

.step-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--text-lg);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-8) auto var(--space-6);
    border: 2px solid rgba(20, 184, 166, 0.2);
    transition: all var(--duration-300) var(--ease-out);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    border-color: rgba(20, 184, 166, 0.4);
}

.step-icon i {
    color: var(--primary-teal);
    font-size: var(--text-3xl);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.step-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-teal-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
}

.step-highlight i {
    font-size: var(--text-sm);
}

/* Clinical Trials */
.clinical-trials {
    padding: var(--space-24) 0;
    background: var(--white);
    position: relative;
    z-index: 40;
}

.clinical-trials .section-header h2 {
    color: var(--dark-navy);
}

.clinical-trials .section-header p {
    color: var(--gray-600);
}

.trial-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    align-items: start;
}

.trial-visual {
    position: sticky;
    top: 120px;
}

.lab-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.lab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--duration-700) var(--ease-out);
}

.trial-visual:hover .lab-image {
    transform: scale(1.05);
}

.lab-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.9) 0%, 
        rgba(59, 130, 246, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-out);
}

.trial-visual:hover .lab-overlay {
    opacity: 1;
}

.lab-stats {
    display: flex;
    gap: var(--space-8);
    text-align: center;
}

.lab-stat {
    color: var(--white);
}

.lab-stat .stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--fw-extrabold);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.lab-stat .stat-label {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    opacity: 0.9;
}

.trial-example-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.trial-example-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.trial-example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
}

.trial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.trial-badge {
    background: linear-gradient(135deg, var(--accent-orange), #F97316);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.5px;
}

.trial-header h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    color: var(--dark-navy);
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.trial-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: var(--text-sm);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.trial-status i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.trial-description {
    background: rgba(20, 184, 166, 0.05);
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-8);
    border-left: 4px solid var(--primary-teal);
}

.trial-description p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: var(--text-base);
    margin: 0;
}

.trial-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.process-content h4 {
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: var(--dark-navy);
    margin-bottom: var(--space-2);
}

.process-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 0;
}

.trial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.study-id {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.study-id strong {
    color: var(--dark-navy);
}

.trial-cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--duration-300) var(--ease-out);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-sm);
}

.trial-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

/* Treatment Options */
.treatment-options {
    padding: var(--space-24) 0;
    background: var(--gradient-light);
    position: relative;
    z-index: 50;
}

.treatment-options .section-header h2 {
    color: var(--dark-navy);
}

.treatment-options .section-header p {
    color: var(--gray-600);
}

.confusion-banner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--duration-500) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.treatment-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.treatment-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.treatment-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--text-xl);
    box-shadow: var(--shadow-lg);
}

.treatment-header {
    margin-bottom: var(--space-6);
    padding-right: 4rem;
}

.treatment-header h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--dark-navy);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.approval-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.approval-badge.revolutionary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border-color: rgba(139, 92, 246, 0.2);
}

.treatment-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.treatment-indication {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(20, 184, 166, 0.05);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-teal);
    margin-bottom: var(--space-6);
}

.treatment-indication i {
    color: var(--primary-teal);
    font-size: var(--text-lg);
}

.treatment-indication span {
    font-weight: var(--fw-medium);
    color: var(--dark-navy);
    font-size: var(--text-sm);
}

.treatment-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.treatment-stat {
    text-align: center;
    padding: var(--space-3);
    background: rgba(248, 250, 252, 0.8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.treatment-stat .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.treatment-stat .stat-label {
    font-size: var(--text-xs);
    color: var(--gray-600);
    font-weight: var(--fw-medium);
}

.important-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    background: rgba(239, 68, 68, 0.05);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border-left: 6px solid var(--accent-red);
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-icon {
    color: var(--accent-red);
    font-size: var(--text-2xl);
    flex-shrink: 0;
    margin-top: var(--space-1);
}

.disclaimer-content {
    color: var(--dark-navy);
    line-height: 1.7;
    font-size: var(--text-base);
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
    z-index: 50;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-6);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--white);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-10);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta-btn {
    background: var(--white);
    color: var(--dark-navy);
    border: none;
    padding: var(--space-6) var(--space-12);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: all var(--duration-500) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta-btn .btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-out);
}

.final-cta-btn:hover .btn-glow {
    opacity: 1;
}

.final-cta-btn:hover .btn-content {
    color: var(--white);
}

.final-cta-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-16);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--fw-extrabold);
    color: #36a594;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    color: rgb(53 138 234);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PERFECT RESPONSIVE DESIGN */

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-content {
        gap: var(--space-12);
    }
    
    .trial-showcase {
        gap: var(--space-8);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-8);
        box-shadow: var(--shadow-2xl);
        transition: right var(--duration-500) var(--ease-in-out);
        z-index: 9998;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: var(--text-lg);
        padding: var(--space-4);
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .trial-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .trial-visual {
        position: static;
    }
    
    .trial-process {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .cta-stats {
        gap: var(--space-8);
    }
    
    .treatments-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero {
        padding: calc(80px + var(--space-8)) 0 var(--space-8);
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        max-width: 100%;
    }
    
    .hero-features {
        gap: var(--space-3);
    }
    
    .feature-pill {
        padding: var(--space-3) var(--space-4);
        gap: var(--space-3);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: var(--text-sm);
    }
    
    .feature-desc {
        font-size: var(--text-xs);
    }
    
    .hero-visual {
        height: 400px;
    }
    
    /* CLEAN MOBILE STATS */
    .hero-stats {
        position: static;
        margin-top: var(--space-6);
        padding: 0;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
    }
    
    .stat-item {
        padding: var(--space-3);
    }
    
    .stat-number {
        font-size: var(--text-lg);
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .primary-cta-btn,
    .final-cta-btn {
        width: 100%;
        justify-content: center;
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
    
    .service-card,
    .step-card,
    .treatment-card,
    .trial-example-card {
        padding: var(--space-6);
    }
    
    .trial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .trial-header h3 {
        font-size: var(--text-lg);
        min-width: auto;
    }
    
    .trial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .important-disclaimer {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .cta-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    
    .section-header p {
        font-size: var(--text-base);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero {
        padding: calc(80px + var(--space-6)) 0 var(--space-6);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
        line-height: 1.2;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-2);
        max-width: 200px;
        margin: var(--space-4) auto 0;
    }
    
    .service-card,
    .step-card,
    .treatment-card,
    .trial-example-card {
        padding: var(--space-5);
    }
    
    .treatment-stats {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .treatment-number {
        width: 48px;
        height: 48px;
        font-size: var(--text-lg);
        top: var(--space-5);
        right: var(--space-5);
    }
    
    .treatment-header {
        padding-right: 3rem;
    }
    
    .lab-stats {
        gap: var(--space-6);
    }
    
    .lab-stat .stat-number {
        font-size: var(--text-3xl);
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
    
    .confusion-banner {
        font-size: var(--text-xs);
        padding: var(--space-3) var(--space-4);
    }
    
    .mobile-nav-toggle {
        width: 44px;
        height: 44px;
        top: var(--space-4);
        right: var(--space-4);
    }
}

/* Quick fix for mobile header overlap */
@media (max-width: 1024px) {
    .header-cta-btn {
        display: none;
    }
}


/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.25rem, 12vw, 1.75rem);
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .feature-pill {
        padding: var(--space-2) var(--space-3);
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon i {
        font-size: var(--text-base);
    }
    
    .mobile-nav-toggle span {
        width: 18px;
    }
}
