/* 
 * LuckyGeneMDx Main Stylesheet
 * Consolidated from individual page styles
 */

:root {
    /* Colors */
    --primary-blue: #0A1F44;
    --medical-teal: #00B3A4;
    --teal-glow: rgba(0,179,164,0.35);
    --teal-ice: #4ef0e6;
    --navy: #0A1F44;
    --navy2: #0d2554;
    --white: #FFFFFF;
    --off-white: #f4f6fa;
    --light-bg: #F7FAFC;
    --gray: #6b7a99;
    --text-gray: #4A5568;
    --border-color: #E2E8F0;
    --warning-amber: #D97706;
    --soft-purple: #6C63FF;
    --color-primary-deep-blue: #0A1F44;
    --color-medical-teal: #00B3A4;
    --color-white: #FFFFFF;
    --color-light-gray: #F8F9FA;
    --color-medium-gray: #E9ECEF;
    --color-dark-gray: #6C757D;
    --color-purple-accent: #6C63FF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--medical-teal) 100%);
    --brand-gradient: linear-gradient(135deg, #0A1F44 0%, #00B3A4 100%);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', sans-serif; 
    background: var(--white); 
    color: var(--navy); 
    overflow-x: hidden; 
    line-height: 1.5;
    width: 100%;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col {
    padding: 0 15px;
    flex: 1;
}
.col-2 { flex: 0 0 50%; max-width: 50%; }
.col-3 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-4 { flex: 0 0 25%; max-width: 25%; }
.text-center { text-align: center; }
.section { padding: 5rem 0; }

/* Components */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--medical-teal);
    color: white;
}
.btn-primary:hover {
    background: #00968a;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}
.btn-large {
    padding: 16px 38px;
    font-size: 1.1rem;
}
.btn-pulse {
    animation: pulse-btn 2s infinite;
}
@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(0, 179, 164, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 179, 164, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 179, 164, 0); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px 16px;
    background: var(--medical-teal);
    color: white;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
    font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* Page Headers (Common) */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem 0 2rem;
    text-align: center;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* ── INDEX HERO ────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%;  }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,31,68,0.88) 0%, rgba(10,31,68,0.62) 45%, rgba(0,179,164,0.22) 100%);
    z-index: 1;
}
.hero-scan {
    position: absolute; inset: 0; z-index: 2;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,179,164,0.018) 3px, rgba(0,179,164,0.018) 4px);
    pointer-events: none;
}
.hero-orb {
    position: absolute; width: 700px; height: 700px; top: -180px; right: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,179,164,0.22) 0%, transparent 68%);
    z-index: 2;
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(-20px,30px) scale(1.05); }
    66% { transform: translate(15px,-20px) scale(0.97); }
}
.hero-fade-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
    background: linear-gradient(to bottom, transparent, var(--navy));
    z-index: 3;
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 4; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; width: 100%;
}
.hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,179,164,0.12); border: 1px solid rgba(0,179,164,0.45);
    color: var(--teal-ice); padding: 8px 20px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 2rem; animation: slideUp 0.8s ease both;
}
.hero-pill-dot {
    width: 7px; height: 7px; background: var(--teal-ice); border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
.hero h1 {
    font-size: clamp(3.2rem, 6.5vw, 6rem); font-weight: 800; color: var(--white);
    line-height: 1.02; letter-spacing: -2px; margin-bottom: 1.75rem; max-width: 850px;
    animation: slideUp 0.9s 0.12s ease both;
}
.hero h1 .accent {
    background: linear-gradient(90deg, var(--teal-ice) 0%, var(--medical-teal) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.72);
    max-width: 540px; line-height: 1.8; font-weight: 300; margin-bottom: 2.75rem;
    animation: slideUp 1s 0.25s ease both;
}
.hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem;
    animation: slideUp 1s 0.38s ease both;
}
.btn-primary-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #00cfbe, var(--medical-teal));
    color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
    padding: 16px 38px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 0 50px rgba(0,179,164,0.5); transition: all 0.35s ease;
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 0 70px rgba(0,179,164,0.7); }
.btn-primary-hero .btn-arrow { transition: transform 0.3s ease; }
.btn-primary-hero:hover .btn-arrow { transform: translateX(5px); }
.btn-ghost-hero {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.82); font-weight: 500; font-size: 1rem;
    padding: 16px 30px; border-radius: 50px; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-ghost-hero:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: white;
}
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 1.75rem; animation: slideUp 1s 0.5s ease both;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.85rem;
}
.hero-trust-check {
    width: 18px; height: 18px; background: rgba(0,179,164,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-trust-check::after {
    content: ''; width: 8px; height: 5px;
    border-left: 1.5px solid var(--teal-ice); border-bottom: 1.5px solid var(--teal-ice);
    transform: rotate(-45deg) translateY(-1px);
}
.scroll-cue {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    animation: slideUp 1s 1.2s ease both;
}
.scroll-cue-mouse {
    width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 12px; position: relative;
}
.scroll-cue-mouse::after {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
@keyframes slideUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

/* ── STATS BAND ────────────────────────────── */
.stats-band { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-band-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
    padding: 2.75rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.07);
    position: relative; transition: background 0.3s; cursor: default;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(0,179,164,0.05); }
.stat-cell::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0);
    width: 50%; height: 2px; background: var(--medical-teal); transition: transform 0.4s ease;
}
.stat-cell:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-num {
    font-family: 'Poppins', sans-serif; font-size: 2.75rem; font-weight: 800;
    color: var(--medical-teal); line-height: 1; margin-bottom: 0.5rem;
}
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }

/* ── AWARENESS ─────────────────────────────── */
.sec-awareness { padding: 8rem 2.5rem; max-width: 1280px; margin: 0 auto; }
.awareness-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.sec-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--medical-teal); margin-bottom: 1.25rem;
}
.awareness-grid h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.5px; margin-bottom: 1.25rem;
}
.awareness-grid p { color: var(--gray); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1rem; }
.check-list { list-style: none; margin: 1.75rem 0 2.25rem; }
.check-list li {
    display: flex; align-items: flex-start; gap: 12px; padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.055); font-size: 0.97rem; line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
    width: 22px; min-width: 22px; height: 22px; border-radius: 50%; background: rgba(0,179,164,0.12);
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-icon::after {
    content: ''; width: 9px; height: 5.5px; border-left: 2px solid var(--medical-teal);
    border-bottom: 2px solid var(--medical-teal); transform: rotate(-45deg) translateY(-1px);
}
.btn-learn {
    display: inline-flex; align-items: center; gap: 8px; color: var(--medical-teal);
    font-weight: 600; font-size: 0.95rem; padding: 14px 26px; border-radius: 50px;
    text-decoration: none; border: 1.5px solid rgba(0,179,164,0.35); transition: all 0.3s ease;
}
.btn-learn:hover {
    background: rgba(0,179,164,0.07); border-color: var(--medical-teal); transform: translateX(4px);
}
.diagram-card {
    background: var(--off-white); border-radius: 28px; padding: 3rem 2.5rem 2.5rem;
    position: relative; overflow: hidden; box-shadow: 0 4px 32px rgba(10,31,68,0.06);
}
.diagram-card::before {
    content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px;
    border-radius: 50%; background: radial-gradient(circle, rgba(0,179,164,0.1), transparent 70%);
}
.diagram-card h4 {
    font-size: 1.05rem; font-weight: 700; text-align: center; margin-bottom: 1.75rem; color: var(--navy);
}

/* ── STANDARDS ─────────────────────────────── */
.sec-standards {
    background: var(--navy); padding: 7rem 2.5rem; position: relative; overflow: hidden;
}
.sec-standards::before {
    content: ''; position: absolute; top: -250px; left: -250px; width: 700px; height: 700px;
    border-radius: 50%; background: radial-gradient(circle, rgba(0,179,164,0.1), transparent 65%); pointer-events: none;
}
.sec-standards::after {
    content: ''; position: absolute; bottom: -200px; right: -150px; width: 550px; height: 550px;
    border-radius: 50%; background: radial-gradient(circle, rgba(0,179,164,0.07), transparent 65%); pointer-events: none;
}
.standards-inner {
    position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; text-align: center;
}
.standards-inner h2 {
    font-size: clamp(1.9rem, 3vw, 2.75rem); color: var(--white); font-weight: 800;
    letter-spacing: -0.5px; margin-bottom: 1rem;
}
.standards-inner > p {
    color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 620px; margin: 0 auto 3.5rem; line-height: 1.8;
}
.standards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem;
}
.std-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px; padding: 2.75rem 2rem; transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.std-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,179,164,0.08), transparent);
    opacity: 0; transition: opacity 0.4s ease;
}
.std-card:hover { transform: translateY(-6px); border-color: rgba(0,179,164,0.3); }
.std-card:hover::before { opacity: 1; }
.std-num {
    font-family: 'Poppins', sans-serif; font-size: 2.75rem; font-weight: 800;
    color: var(--medical-teal); margin-bottom: 0.5rem; position: relative; z-index: 1;
}
.std-card p {
    color: rgba(255,255,255,0.5); font-size: 0.9rem; position: relative; z-index: 1;
}
.std-disclaimer {
    color: rgba(255,255,255,0.25); font-size: 0.78rem; font-style: italic;
}

/* ── TIMELINE ──────────────────────────────── */
.sec-timeline { padding: 8rem 2.5rem; background: var(--white); }
.timeline-wrap { max-width: 980px; margin: 0 auto; }
.tl-header { text-align: center; margin-bottom: 5.5rem; }
.tl-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 1rem;
}
.tl-header p { color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.tl-track { position: relative; }
.tl-track::before {
    content: ''; position: absolute; left: 38px; top: 24px; bottom: 24px; width: 2px;
    background: linear-gradient(to bottom, var(--medical-teal) 0%, rgba(0,179,164,0.08) 100%);
}
.tl-row {
    display: flex; gap: 2rem; align-items: flex-start; padding: 1.25rem 0;
    opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.tl-row.in-view { opacity: 1; transform: none; }
.tl-bubble {
    width: 78px; min-width: 78px; height: 78px; border-radius: 50%; background: var(--off-white);
    border: 2px solid var(--medical-teal); display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; position: relative; z-index: 1; box-shadow: 0 0 0 7px white;
    transition: all 0.35s ease; cursor: default;
}
.tl-row:hover .tl-bubble {
    background: var(--medical-teal); transform: scale(1.12);
    box-shadow: 0 0 0 7px white, 0 0 24px rgba(0,179,164,0.3);
}
.tl-text { padding-top: 1.1rem; }
.tl-text h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.tl-text p { color: var(--gray); font-size: 0.97rem; line-height: 1.72; }

/* ── TESTIMONIALS ──────────────────────────── */
.sec-testimonials { background: var(--off-white); padding: 7rem 2.5rem; overflow: hidden; }
.test-header { text-align: center; margin-bottom: 4rem; }
.test-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.75rem;
}
.test-header p { color: var(--gray); font-size: 1.02rem; }
.test-track-wrap { max-width: 780px; margin: 0 auto; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; display: flex; justify-content: center; }
.test-card {
    background: white; border-radius: 24px; padding: 3rem 3.5rem; width: 100%;
    box-shadow: 0 6px 48px rgba(10,31,68,0.07); text-align: center; position: relative;
}
.test-card::before {
    content: '"'; position: absolute; top: 1.5rem; left: 2.5rem; font-family: 'Poppins', sans-serif;
    font-size: 7rem; color: var(--medical-teal); opacity: 0.09; line-height: 1; pointer-events: none;
}
.test-quote {
    font-size: 1.1rem; line-height: 1.9; color: var(--navy); margin-bottom: 1.75rem;
    font-weight: 300; font-style: italic;
}
.test-author {
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--medical-teal); margin-bottom: 4px;
}
.test-location { font-size: 0.85rem; color: var(--gray); }
.carousel-nav-controls {
    display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2.5rem;
}
.carousel-nav-btn {
    width: 46px; height: 46px; border-radius: 50%; background: white;
    border: 2px solid var(--medical-teal); color: var(--medical-teal); cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: bold;
    transition: all 0.3s ease; box-shadow: 0 2px 16px rgba(0,179,164,0.12);
}
.carousel-nav-btn:hover:not(:disabled) {
    background: var(--medical-teal); color: white; transform: scale(1.1);
}
.carousel-nav-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.carousel-indicator-dots { display: flex; gap: 8px; }
.carousel-indicator-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #cdd5e0;
    cursor: pointer; transition: all 0.3s ease;
}
.carousel-indicator-dot.active { background: var(--medical-teal); width: 28px; border-radius: 5px; }

/* ── CTA SECTION ───────────────────────────── */
.sec-cta { padding: 6rem 2.5rem; background: var(--white); }
.cta-box {
    max-width: 1100px; margin: 0 auto; 
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%);
    border-radius: 40px;
    padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(10, 31, 68, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
    border-radius: 50%; background: radial-gradient(circle, rgba(0,179,164,0.15), transparent 70%);
    filter: blur(40px);
}
.cta-box::after {
    content: ''; position: absolute; bottom: -50%; left: -10%; width: 500px; height: 500px;
    border-radius: 50%; background: radial-gradient(circle, rgba(108, 99, 255, 0.15), transparent 70%);
    filter: blur(40px);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--teal-ice); padding: 8px 24px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 2rem; backdrop-filter: blur(5px);
}
.cta-box h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: white;
    letter-spacing: -1px; line-height: 1.1; margin-bottom: 1.5rem;
}
.cta-box > p {
    color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 600px;
    margin: 0 auto 3rem; line-height: 1.6; font-weight: 300;
}
.cta-pricing {
    margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 16px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 1.5rem 3rem; display: inline-flex;
    backdrop-filter: blur(10px);
}
.cta-price { 
    font-family:'Poppins',sans-serif; font-size: 3.5rem; font-weight: 700; 
    color: white; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.2); 
}
.cta-strike { 
    font-size: 1.5rem; color: rgba(255,255,255,0.4); text-decoration: line-through; font-weight: 500; 
}
.btn-cta-main {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--white); color: var(--navy);
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem;
    padding: 20px 48px; border-radius: 100px; text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 2rem; display: block; width: fit-content; margin-left: auto; margin-right: auto;
}
.btn-cta-main:hover { 
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: var(--teal-ice);
    color: var(--navy);
}
.btn-cta-main svg { transition: transform 0.3s ease; }
.btn-cta-main:hover svg { transform: translateX(5px); }
.cta-meta {
    display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
}
.cta-meta-item {
    display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); 
    font-size: 0.95rem; font-weight: 500;
}
.cta-meta-item::before {
    display: none;
}
.cta-meta-item svg {
    width: 20px; height: 20px; color: var(--teal-ice);
}

/* ── SCROLL REVEAL ─────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity:1; transform:none; }
.reveal-d1 { transition-delay:0.1s; }
.reveal-d2 { transition-delay:0.2s; }
.reveal-d3 { transition-delay:0.3s; }
.reveal-d4 { transition-delay:0.4s; }

/* ── FAQ STYLES ────────────────────────────── */
.faq-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-deep-blue) 0%, var(--color-medical-teal) 75%, var(--color-purple-accent) 100%);
    color: var(--white);
    padding: 60px 20px 80px;
    text-align: center;
}
.hero-dna-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.05;
    background-image: radial-gradient(var(--medical-teal) 1px, transparent 1px); background-size: 30px 30px;
}
.faq-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; }
.faq-container {
    max-width: 900px; margin: -40px auto 80px; position: relative; z-index: 20; padding: 0 20px;
}
.faq-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.tab-btn {
    padding: 12px 25px; background: var(--white); border: 1px solid #e2e8f0; border-radius: 50px;
    cursor: pointer; font-weight: 600; color: var(--text-gray); transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.tab-btn.active { background: var(--medical-teal); color: white; border-color: var(--medical-teal); }
.faq-item {
    background: var(--white); border-radius: 12px; margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.05); overflow: hidden; border: 1px solid #edf2f7;
}
.faq-question {
    padding: 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; color: var(--primary-blue); font-family: 'Poppins', sans-serif;
}
.faq-answer { padding: 0 25px 25px; color: var(--text-gray); line-height: 1.6; display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .plus-icon { transform: rotate(45deg); }
.plus-icon { transition: transform 0.3s ease; color: var(--medical-teal); font-size: 1.2rem; }
.cta-footer {
    text-align: center; margin-top: 60px; padding: 40px; background: var(--light-bg); border-radius: 20px;
}

/* ── LEGAL HERO & CONTENT ──────────────────── */
.legal-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-deep-blue) 0%, var(--color-medical-teal) 75%, var(--color-purple-accent) 100%);
    color: var(--white);
    padding: 60px 20px 80px;
    text-align: center;
    overflow: hidden;
}
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
    border: 1px solid rgba(0, 179, 164, 0.3); background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2);
}
.legal-hero h1 {
    font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
    margin-bottom: 20px; line-height: 1.2;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif; font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px;
    opacity: 0.9; line-height: 1.6;
}
.legal-content {
    max-width: 1000px; margin: -40px auto 80px; background: var(--white); padding: 60px;
    border-radius: 24px; box-shadow: 0 25px 50px rgba(10, 31, 68, 0.1); position: relative; z-index: 20;
}
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 30px 0; }
.info-card {
    background: var(--light-bg); padding: 25px; border-radius: 16px; text-align: center;
    border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); border-color: var(--medical-teal); }
.icon-circle {
    width: 60px; height: 60px; background: var(--white); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.info-card h4 { color: var(--primary-blue); font-size: 1rem; margin-bottom: 8px; }
.info-card p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.4; }
.security-banner {
    background: var(--primary-blue); color: white; border-radius: 16px; padding: 40px;
    margin: 40px 0; display: flex; align-items: center; gap: 30px;
}
.security-icon-large { font-size: 4rem; opacity: 0.9; }
.security-text h3 { color: var(--medical-teal); margin-bottom: 10px; }
.rights-list { list-style: none; padding: 0; }
.right-item { display: flex; align-items: flex-start; gap: 15px; padding: 20px; border-bottom: 1px solid #edf2f7; }
.right-check { color: var(--medical-teal); font-weight: bold; font-size: 1.2rem; }
.disclaimer-box {
    background: rgba(217, 119, 6, 0.05); border: 1px dashed var(--warning-amber); border-radius: 12px;
    padding: 30px; margin: 30px 0; display: flex; gap: 20px; align-items: center;
}
.warning-icon { font-size: 2.5rem; color: var(--warning-amber); }
.service-steps {
    display: flex; justify-content: space-between; gap: 20px; margin: 40px 0; padding: 20px 0;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.step { flex: 1; text-align: center; }
.step-num {
    width: 35px; height: 35px; background: var(--medical-teal); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-weight: 700;
}
.compliance-badges {
    display: flex; justify-content: center; gap: 40px; margin-top: 50px; opacity: 0.6; filter: grayscale(1);
}
.badge-item { text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--primary-blue); }

/* ── CONTACT STYLES ────────────────────────── */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-deep-blue) 0%, var(--color-medical-teal) 75%, var(--color-purple-accent) 100%);
    color: var(--white);
    padding: 100px 20px 140px;
    text-align: center;
    overflow: hidden;
}
.contact-hero h1 {
    font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 20px;
}
.contact-container {
    max-width: 1100px; margin: -80px auto 80px; position: relative; z-index: 20; padding: 0 20px;
}
.contact-triage {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 50px;
}
.triage-card {
    background: var(--white); padding: 40px; border-radius: 20px;
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.08); border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}
.triage-card:hover { transform: translateY(-5px); }
.triage-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; }
.triage-card h3 { color: var(--primary-blue); margin-bottom: 10px; }
.triage-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; }
.main-contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; background: var(--white);
    border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px rgba(10, 31, 68, 0.1);
}
.contact-info-sidebar { background: var(--light-bg); padding: 50px; border-right: 1px solid var(--border-color); }
.contact-form-wrapper { padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary-blue); font-size: 0.9rem;
}
.form-control, .form-input, .form-select {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: 8px;
    font-family: 'Inter', sans-serif; transition: all 0.3s ease;
}
.form-control:focus, .form-input:focus, .form-select:focus {
    outline: none; border-color: var(--medical-teal); box-shadow: 0 0 0 3px rgba(0, 179, 164, 0.1);
}
.submit-btn {
    background: var(--medical-teal); color: white; border: none; padding: 15px 30px;
    border-radius: 8px; font-weight: 600; cursor: pointer; width: 100%; transition: background 0.3s ease;
}
.submit-btn:hover { background: #00968a; }
.info-detail-item { display: flex; gap: 15px; margin-bottom: 30px; }
.info-detail-item strong { color: var(--primary-blue); display: block; }

/* ── TRACK ORDER ───────────────────────────── */
.progress-tracker { max-width: 800px; margin: 3rem auto; position: relative; }
.progress-line {
    position: absolute; top: 50px; left: 40px; right: 40px; height: 4px; background: var(--color-medium-gray); z-index: 0;
}
.progress-line-fill { height: 100%; background: var(--gradient-primary); transition: width 0.5s ease; }
.progress-steps { display: flex; justify-content: space-between; position: relative; z-index: 1; }
.progress-step { text-align: center; flex: 1; }
.progress-step-circle {
    width: 100px; height: 100px; margin: 0 auto 1rem; border-radius: 50%; background: white;
    border: 4px solid var(--color-medium-gray); display: flex; align-items: center; justify-content: center;
    font-size: 2rem; transition: all 0.3s ease;
}
.progress-step.active .progress-step-circle {
    border-color: var(--color-medical-teal); background: rgba(0, 179, 164, 0.1);
    box-shadow: 0 0 20px rgba(0, 179, 164, 0.3);
}
.progress-step.completed .progress-step-circle {
    border-color: var(--color-medical-teal); background: var(--color-medical-teal); color: white;
}
.progress-step-title { font-weight: 600; color: var(--color-primary-deep-blue); margin-bottom: 0.5rem; }
.progress-step-desc { font-size: 0.85rem; color: var(--color-dark-gray); }

/* ── RESOURCES ─────────────────────────────── */
.marquee-section {
    background: #f8fafc; padding: 80px 0; overflow: hidden; position: relative;
}
.marquee-section::before, .marquee-section::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 10; pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%); }
.marquee-section::after { right: 0; background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%); }
.marquee-container {
    display: flex; width: max-content; animation: scroll-infinite 40s linear infinite; will-change: transform;
}
.marquee-track { display: flex; gap: 30px; padding-right: 30px; }
@keyframes scroll-infinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-container:hover { animation-play-state: paused; }
.resource-card {
    width: 420px; flex-shrink: 0; background: white; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none; color: inherit; display: block; position: relative;
}
.resource-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
.card-accent {
    height: 6px; background: linear-gradient(90deg, var(--card-color) 0%, var(--card-color-light) 100%);
    position: relative; overflow: hidden;
}
.card-accent::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: shimmer 1s infinite;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 100%; } }
.card-header { padding: 30px 30px 20px; position: relative; }
.card-icon {
    width: 60px; height: 60px; background: var(--white); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px; color: white;
    margin-bottom: 20px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.card-domain {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 179, 164, 0.08);
    color: #00B3A4; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 12px;
}
.card-domain::before { content: '🌐'; font-size: 14px; }
.card-title {
    font-size: 1.5rem; font-weight: 700; color: #0A1F44; margin-bottom: 12px; line-height: 1.3;
}
.card-body { padding: 0 30px 25px; }
.card-description {
    color: #64748b; font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-footer {
    padding: 20px 30px; background: #f8fafc; display: flex; align-items: center;
    justify-content: space-between; border-top: 1px solid #e2e8f0;
}
.visit-btn {
    display: flex; align-items: center; gap: 8px; background: var(--card-color); color: white;
    padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease;
}
.resource-card:hover .visit-btn { gap: 12px; padding-right: 24px; }
.visit-btn::after { content: '→'; font-size: 1.2rem; transition: transform 0.3s ease; }
.resource-card:hover .visit-btn::after { transform: translateX(4px); }
.resource-type { display: flex; align-items: center; gap: 6px; color: #64748b; font-size: 0.85rem; font-weight: 500; }
.resource-type::before {
    content: ''; width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    display: inline-block; animation: pulse 6s infinite;
}
.stats-badge {
    position: absolute; top: 30px; right: 30px; background: white; padding: 8px 12px;
    border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); font-size: 0.75rem;
    font-weight: 600; color: var(--card-color);
}

/* ── PROCESS CONTACT ───────────────────────── */
.success-page { text-align: center; padding: 100px 20px; font-family: 'Poppins', sans-serif; }
.success-icon { font-size: 4rem; color: #00B3A4; margin-bottom: 20px; }
.btn-home {
    display: inline-block; margin-top: 30px; padding: 12px 25px; background: #0A1F44;
    color: white; text-decoration: none; border-radius: 8px;
}

/* ── RESPONSIVE ────────────────────────────── */
@media(max-width:960px) {
    .stats-band-inner { grid-template-columns:repeat(2,1fr); }
    .stat-cell:nth-child(2) { border-right:none; }
    .stat-cell:nth-child(3) { border-top:1px solid rgba(255,255,255,0.07); }
    .awareness-grid { grid-template-columns:1fr; gap:3rem; }
    .standards-grid { grid-template-columns:1fr; }
    .main-contact-grid { grid-template-columns: 1fr; }
    .contact-info-sidebar { border-right: none; border-bottom: 1px solid var(--border-color); }
}
@media(max-width:768px) {
    .faq-tabs { flex-wrap: wrap; }
    .faq-hero { padding: 50px 20px 70px; }
    .legal-content { padding: 40px 20px; margin-top: -40px; }
    .security-banner { flex-direction: column; text-align: center; }
    .service-steps { flex-direction: column; gap: 30px; }
    .disclaimer-box { flex-direction: column; text-align: center; }
    .progress-steps { flex-direction: column; }
    .progress-line { display: none; }
    .progress-step { margin-bottom: 2rem; }
    .resource-card { width: 100%; max-width: 340px; margin: 0 auto 1.5rem; }
    .marquee-section::before, .marquee-section::after { width: 50px; }
    
    /* Responsive Grid System */
    .col-2, .col-3, .col-4 { flex: 0 0 100%; max-width: 100%; margin-bottom: 1.5rem; }
    .row { margin: 0; }
    .col { padding: 0; }
    .container { padding: 0 1.5rem; }
    .hero-content { padding: 0 1.5rem; }
    .section { padding: 3rem 0; }
}
@media(max-width:600px) {
    .hero h1 { font-size: 2.5rem; letter-spacing:-0.5px; }
    .hero-trust { gap:1rem; }
    .stats-band-inner { grid-template-columns:repeat(2,1fr); }
    .stat-cell { padding:1.5rem 0.5rem; }
    .stat-num { font-size: 2rem; }
    .sec-awareness,.sec-timeline,.sec-cta,.sec-standards { padding:4rem 1.5rem; }
    .test-card { padding:2.5rem 1.5rem; }
    .cta-box { padding:3.5rem 1.5rem; }
    .cta-price { font-size:4rem; }
}

/* ── UTILITIES & NEW COMPONENTS ──────────────── */

/* Section Variants */
.section-light { background: var(--color-light-gray); }
.section-padded { padding: 6rem 0; }

/* Text Utilities */
.text-teal { color: var(--color-medical-teal); }
.text-deep-blue { color: var(--color-primary-deep-blue); }
.text-purple { color: var(--color-purple-accent); }
.text-dark-gray { color: var(--color-dark-gray); }
.text-white { color: var(--color-white); }
.text-error { color: #c33; }

.font-sm { font-size: 0.85rem; }
.font-xs { font-size: 0.75rem; }
.font-lg { font-size: 1.25rem; }
.font-xl { font-size: 2rem; }
.font-xxl { font-size: 2.5rem; }
.font-huge { font-size: 4rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-italic { font-style: italic; }

.opacity-80 { opacity: 0.8; }
.opacity-95 { opacity: 0.95; }

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

.lh-1-6 { line-height: 1.6; }
.lh-1-8 { line-height: 1.8; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-4 { margin-top: 2rem !important; }
.ml-2 { margin-left: 1rem !important; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.img-rounded { border-radius: 8px; }

/* Card Variants */
.glass-card-teal-left { background: rgba(0, 179, 164, 0.1); border-left: 4px solid var(--color-medical-teal); }
.glass-card-purple-left { background: rgba(108, 99, 255, 0.1); border-left: 4px solid var(--color-purple-accent); }
.glass-card-teal-top { border-top: 4px solid var(--color-medical-teal); }
.glass-card-blue-top { border-top: 4px solid var(--color-primary-deep-blue); }
.glass-card-error { background: rgba(220, 53, 69, 0.1); border: 1px solid rgba(220, 53, 69, 0.3); }

/* Specific Components */
.pill-badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 0.75rem; font-weight: bold; }
.pill-badge-teal { background: var(--color-medical-teal); color: white; }
.pill-badge-outline-teal { background: rgba(0, 179, 164, 0.1); color: var(--color-medical-teal); padding: 8px 20px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }

.icon-box { font-size: 3rem; margin-bottom: 1rem; }
.icon-box-lg { font-size: 4rem; margin-bottom: 1rem; opacity: 0.2; }

.section-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

.cta-card-large { background: var(--color-white); border-radius: 20px; box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1); padding: 4rem; text-align: center; border: 1px solid var(--color-medium-gray); max-width: 1000px; margin: 0 auto; }

.price-display { font-size: 4rem; font-weight: 800; color: var(--color-primary-deep-blue); }
.price-strike { font-size: 1.5rem; color: var(--color-dark-gray); text-decoration: line-through; opacity: 0.6; margin-left: 10px; }

.check-list-horizontal { display: flex; justify-content: center; gap: 2.5rem; opacity: 0.8; border-top: 1px solid var(--color-medium-gray); padding-top: 2rem; flex-wrap: wrap; }
.check-item { font-size: 0.9rem; color: var(--color-primary-deep-blue); font-weight: 500; display: flex; align-items: center; }
.check-item span { color: var(--color-medical-teal); margin-right: 8px; }

/* Request Kit Specific */
.sticky-summary { position: sticky; top: 100px; }
.summary-row { padding: 1.5rem 0; border-bottom: 1px solid var(--color-medium-gray); }
.summary-row:last-child { border-bottom: none; }
.summary-flex { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }

.account-info-box { background: rgba(0, 179, 164, 0.1); padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; }

.trust-badges-vertical { flex-direction: column; align-items: flex-start; margin-top: 1.5rem; }
.trust-badges-vertical .trust-badge { width: 100%; justify-content: flex-start; }

.ordering-as-box { background: rgba(0, 179, 164, 0.1); border-left: 4px solid var(--color-medical-teal); padding: 1.5rem; border-radius: 8px; margin-bottom: 2rem; }
.ordering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; }
.ordering-label { font-size: 0.8rem; color: var(--color-dark-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
.ordering-value { font-weight: 600; color: var(--color-primary-deep-blue); }
.ordering-footer { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(0, 179, 164, 0.2); }

.success-container { text-align: center; padding: 3rem; }
.order-number-box { background: rgba(0, 179, 164, 0.1); padding: 2rem; margin: 2rem 0; }
.next-steps-list { text-align: left; max-width: 600px; margin: 0 auto; }

/* Track Order Specific */
.track-order-form-card { max-width: 600px; margin: 3rem auto 3rem; }
.track-order-form-group { margin-bottom: 0; }
.track-order-input-group { display: flex; gap: 1rem; }
.track-order-input { flex: 1; }
.track-order-btn { padding: 0.875rem 2rem; }
.track-order-help { color: var(--color-dark-gray); display: block; margin-top: 0.5rem; }
.track-order-error { max-width: 600px; margin: 0 auto; background: rgba(220, 53, 69, 0.1); border: 1px solid rgba(220, 53, 69, 0.3); }
.track-order-error-text { margin: 0; color: #c33; }
.track-order-details { max-width: 800px; margin: 0 auto 3rem; }
.track-order-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 2rem; }
.track-order-status-box { padding: 1rem; background: var(--color-light-gray); border-radius: 4px; }
.track-order-next-steps { max-width: 800px; margin: 0 auto; }
.track-order-help-section { max-width: 800px; margin: 3rem auto 3rem; text-align: center; }

/* Resources Specific */
.resources-intro { text-align: center; margin-bottom: 50px; }
.resources-intro h2 { font-size: 2.5rem; color: #0A1F44; margin-bottom: 12px; font-weight: 700; }
.resources-intro p { color: #64748b; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.resources-footer { text-align: center; margin-top: 40px; }
.resources-footer p { color: #64748b; font-size: 0.95rem; font-weight: 500; }
/* Track Order Specific */
.track-order-form-card { max-width: 600px; margin: 3rem auto 3rem; }
.track-order-form-group { margin-bottom: 0; }
.track-order-input-group { display: flex; gap: 1rem; }
.track-order-input { flex: 1; }
.track-order-btn { padding: 0.875rem 2rem; }
.track-order-help { color: var(--color-dark-gray); display: block; margin-top: 0.5rem; }
.track-order-error { max-width: 600px; margin: 0 auto; background: rgba(220, 53, 69, 0.1); border: 1px solid rgba(220, 53, 69, 0.3); }
.track-order-error-text { margin: 0; color: #c33; }
.track-order-details { max-width: 800px; margin: 0 auto 3rem; }
.track-order-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 2rem; }
.track-order-status-box { padding: 1rem; background: var(--color-light-gray); border-radius: 4px; }
.track-order-next-steps { max-width: 800px; margin: 0 auto; }
.track-order-help-section { max-width: 800px; margin: 3rem auto 3rem; text-align: center; }

/* Resources Specific */
.resources-intro { text-align: center; margin-bottom: 50px; }
.resources-intro h2 { font-size: 2.5rem; color: #0A1F44; margin-bottom: 12px; font-weight: 700; }
.resources-intro p { color: #64748b; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.resources-footer { text-align: center; margin-top: 40px; }
.resources-footer p { color: #64748b; font-size: 0.95rem; font-weight: 500; }

/* ── DARK MODE ─────────────────────────────── */
body.dark-theme {
    --white: #3B3B3B;
    --off-white: #454545;
    --light-bg: #454545;
    --navy: #B2B2B2;
    --primary-blue: #B2B2B2;
    --text-gray: #909090;
    --gray: #909090;
    --border-color: #606060;
    
    --color-primary-deep-blue: #B2B2B2;
    --color-white: #3B3B3B;
    --color-light-gray: #454545;
    --color-medium-gray: #606060;
    --color-dark-gray: #909090;
    --color-black: #B2B2B2;
    --color-purple-accent: #909090;
    --color-medical-teal: #00B3A4;
}

body.dark-theme .page-header,
body.dark-theme .faq-hero,
body.dark-theme .contact-hero,
body.dark-theme .legal-hero {
    background: linear-gradient(135deg, #3B3B3B 0%, #454545 100%);
    color: #B2B2B2;
}

body.dark-theme .stats-band,
body.dark-theme .sec-standards,
body.dark-theme .cta-box {
    background: #3B3B3B;
    border-color: #606060;
}

body.dark-theme .stats-band .stat-lbl,
body.dark-theme .sec-standards p,
body.dark-theme .cta-box p {
    color: #909090;
    opacity: 0.8;
}

body.dark-theme .standards-inner h2,
body.dark-theme .cta-box h2 {
    color: #B2B2B2;
}

body.dark-theme .glass-card,
body.dark-theme .resource-card,
body.dark-theme .test-card,
body.dark-theme .triage-card,
body.dark-theme .info-card,
body.dark-theme .faq-item,
body.dark-theme .track-order-status-box,
body.dark-theme .account-info-box,
body.dark-theme .ordering-as-box,
body.dark-theme .order-number-box {
    background: #454545;
    border-color: #606060;
    color: #B2B2B2;
}

body.dark-theme .resource-card h3,
body.dark-theme .triage-card h3,
body.dark-theme .info-card h4,
body.dark-theme .faq-question,
body.dark-theme .card-title {
    color: #B2B2B2;
}

body.dark-theme .form-control,
body.dark-theme .form-input,
body.dark-theme .form-select {
    background-color: #3B3B3B;
    border-color: #606060;
    color: #B2B2B2;
}

body.dark-theme .card-footer {
    background-color: #3B3B3B;
    border-top-color: #606060;
}

body.dark-theme .progress-step-circle {
    background-color: #454545;
    border-color: #606060;
    color: #B2B2B2;
}

body.dark-theme .contact-info-sidebar {
    background-color: #3B3B3B;
    border-right-color: #606060;
}

body.dark-theme .main-contact-grid {
    background-color: #454545;
}

body.dark-theme .tab-btn {
    background-color: #454545;
    border-color: #606060;
    color: #909090;
}

body.dark-theme .tab-btn.active {
    background-color: #B2B2B2;
    color: #3B3B3B;
    border-color: #B2B2B2;
}

/* Fix Buttons in Dark Mode */
body.dark-theme .btn-outline {
    border-color: #00B3A4;
    color: #00B3A4;
}
body.dark-theme .btn-outline:hover {
    background: #00B3A4;
    color: #3B3B3B;
}
body.dark-theme .btn-home {
    background: #00B3A4;
    color: #3B3B3B;
}

/* Fix Marquee Section in Dark Mode */
body.dark-theme .marquee-section {
    background: #3B3B3B;
}
body.dark-theme .marquee-section::before {
    background: linear-gradient(to right, #3B3B3B 0%, rgba(59, 59, 59, 0) 100%);
}
body.dark-theme .marquee-section::after {
    background: linear-gradient(to left, #3B3B3B 0%, rgba(59, 59, 59, 0) 100%);
}

/* Fix Security Banner & Disclaimer */
body.dark-theme .security-banner {
    background: #454545;
    border: 1px solid #606060;
    color: #B2B2B2;
}
body.dark-theme .disclaimer-box {
    background: rgba(217, 119, 6, 0.1);
    border-color: #d97706;
    color: #B2B2B2;
}

/* Hero Video Grayscale in Dark Mode */
body.dark-theme .hero-video-wrap video {
    filter: brightness(0.2) grayscale(0.6);
}

/* ── INTEREST LIST PAGE ────────────────────── */
.interest-list-page {
    background: var(--color-light-gray);
    color: var(--color-primary-deep-blue);
    min-height: 100vh;
}

.interest-list-page::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 179, 164, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 85% 80%, rgba(10, 31, 68, 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.interest-list-page .page-wrap { position: relative; z-index: 1; }

.interest-list-page header {
    text-align: center;
    padding: 72px 24px 0;
    animation: fadeUp .9s ease both;
}

.interest-list-page .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--color-medical-teal);
    color: var(--white);
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    padding: 6px 18px; border-radius: 100px;
    font-family: 'Inter', sans-serif; font-weight: 600;
    margin-bottom: 28px;
}

.interest-list-page .badge::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    animation: pulse-shadow 2s ease infinite;
}

.interest-list-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -.01em;
    color: var(--color-primary-deep-blue);
    max-width: 720px;
    margin: 0 auto 20px;
}

.interest-list-page h1 em { font-style: italic; color: var(--color-medical-teal); }

.interest-list-page .subtitle {
    font-size: 1.05rem;
    color: var(--color-dark-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.interest-list-page .partner-strip {
    max-width: 820px;
    margin: 52px auto 0;
    background: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    animation: fadeUp .9s .15s ease both;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.interest-list-page .partner-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--color-medical-teal), #008c7a);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
    color: white;
}

.interest-list-page .partner-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--color-primary-deep-blue);
    margin-bottom: 4px;
}

.interest-list-page .partner-text p {
    font-size: .9rem; color: var(--color-dark-gray); line-height: 1.65;
}

.interest-list-page .stats {
    max-width: 820px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    animation: fadeUp .9s .25s ease both;
}

.interest-list-page .stat-card {
    background: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.interest-list-page .stat-card .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem; font-weight: 600;
    color: var(--color-medical-teal);
    line-height: 1;
}

.interest-list-page .stat-card .label {
    font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--color-dark-gray); margin-top: 6px;
}

.interest-list-page .divider {
    max-width: 820px;
    margin: 56px auto 0;
    display: flex; align-items: center; gap: 20px;
}

.interest-list-page .divider::before, 
.interest-list-page .divider::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, rgba(10,31,68,.15));
}

.interest-list-page .divider::after { background: linear-gradient(to left, transparent, rgba(10,31,68,.15)); }

.interest-list-page .divider span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; font-style: italic;
    color: var(--color-dark-gray); white-space: nowrap;
}

.interest-list-page .form-card {
    max-width: 820px;
    margin: 40px auto 80px;
    background: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: clamp(32px, 6vw, 56px);
    box-shadow: 0 8px 64px rgba(10,31,68,.06), 0 2px 8px rgba(10,31,68,.04);
    animation: fadeUp .9s .35s ease both;
}

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

.interest-list-page .form-grid .full { grid-column: 1 / -1; }

.interest-list-page label {
    display: block;
    font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--color-primary-deep-blue); font-weight: 600;
    margin-bottom: 8px;
}

.interest-list-page .errors {
    background: #fdf3f3; border: 1px solid #f5c6c6;
    border-radius: 12px; padding: 16px 20px;
    margin-bottom: 24px;
    font-size: .875rem; color: #b94a4a; line-height: 1.6;
}

.interest-list-page .form-input, 
.interest-list-page .form-select { 
    background: var(--light-bg); 
    border-radius: 12px; 
    padding: 14px 18px; 
}

.interest-list-page textarea.form-input { min-height: 100px; resize: vertical; }

.interest-list-page .privacy-note {
    text-align: center; margin-top: 16px;
    font-size: .78rem; color: var(--color-dark-gray);
}

.interest-list-page .privacy-note svg { vertical-align: middle; margin-right: 4px; }

.interest-list-page .success-state {
    text-align: center; padding: 20px 0;
}

.interest-list-page .success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--color-medical-teal), #008c7a);
    border-radius: 50%;
    margin: 0 auto 28px;
    display: grid; place-items: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 179, 164, 0.3);
    animation: popIn .5s cubic-bezier(.175,.885,.32,1.275) both;
}

.interest-list-page .success-state h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem; font-weight: 400;
    margin-bottom: 12px;
}

.interest-list-page .success-state p { color: var(--color-dark-gray); line-height: 1.7; max-width: 400px; margin: 0 auto; }

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

@keyframes pulse-shadow {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0.1); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(.5); }
    to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
    .interest-list-page .form-grid { grid-template-columns: 1fr; }
    .interest-list-page .stats { grid-template-columns: 1fr; }
    .interest-list-page .partner-strip { grid-template-columns: 1fr; }
}

/* Dark Mode Support for Interest List */
body.dark-theme.interest-list-page {
    background: #3B3B3B;
    color: #B2B2B2;
}

body.dark-theme.interest-list-page::before {
    background-image:
      radial-gradient(ellipse 80% 60% at 20% 10%, rgba(178, 178, 178, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 85% 80%, rgba(144, 144, 144, 0.08) 0%, transparent 55%);
}

body.dark-theme.interest-list-page .partner-strip,
body.dark-theme.interest-list-page .stat-card,
body.dark-theme.interest-list-page .form-card {
    border-color: #606060;
    box-shadow: none;
}

body.dark-theme.interest-list-page .divider::before, 
body.dark-theme.interest-list-page .divider::after {
    background: linear-gradient(to right, transparent, rgba(255,255,255,.15));
}

body.dark-theme.interest-list-page .divider::after {
    background: linear-gradient(to left, transparent, rgba(255,255,255,.15));
}

body.dark-theme.interest-list-page .form-input, 
body.dark-theme.interest-list-page .form-select {
    background: #3B3B3B;
    border-color: #606060;
    color: #B2B2B2;
}

body.dark-theme.interest-list-page .stat-card .label, 
body.dark-theme.interest-list-page .partner-text p, 
body.dark-theme.interest-list-page .subtitle, 
body.dark-theme.interest-list-page .privacy-note { 
    color: #909090; 
}