:root {
            /* Bristol Bay inspired palette */
            --white: #FFFFFF;
            --ivory: #FDFCFA;
            --cream: #F5F3EF;
            --pearl: #ECEAE5;
            --marble-gray: #E2E0DB;
            --warm-gray: #B5AFA6;
            --warm-gray-dark: #9A948B;
            --slate: #6B7178;
            --blue-gray: #333232;
            --blue-gray-dark: #252424;
            --blue-gray-light: #444343;
            --near-black: #2A2A2A;
            
            /* Antique gold accents */
            --gold: #927A46;
            --gold-light: #A8904F;
            --gold-dark: #7A6639;
            --gold-pale: #E8DFD2;
            
            --text-dark: #2A2A2A;
            --text-mid: #5A5A58;
            --text-light: #8A8A88;
            
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Montserrat', sans-serif;
            
            --shadow-sm: 0 2px 8px rgba(42,42,42,0.06);
            --shadow-md: 0 8px 30px rgba(42,42,42,0.08);
            --shadow-lg: 0 20px 50px rgba(42,42,42,0.12);
            
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.7;
            font-weight: 400;
            overflow-x: hidden;
        }

        /* Clean subtle background */
        .marble-bg {
            background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
            position: relative;
        }

        /* Typography */
        h1, h2, h3, h4, h5 { 
            font-family: var(--font-display); 
            font-weight: 500; 
            line-height: 1.2;
            color: var(--blue-gray);
        }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
        h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
        p { font-size: 1rem; color: var(--text-mid); }
        a { color: inherit; text-decoration: none; }

        .container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

        .mobile-break { display: none; }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            display: block;
        }
        
        .gold-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin: 1.5rem 0;
        }
        .gold-line-center { margin: 1.5rem auto; }

        /* Buttons - Unique luxury style */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.1rem 2.5rem;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background-color: var(--blue-gray-dark);
            color: white;
            font-family: var(--font-body);
            font-size: 1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
        }
        .btn-primary:hover {
            background-color: var(--blue-gray);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--blue-gray-dark);
            box-shadow: var(--shadow-md);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            filter: brightness(1.05);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--blue-gray);
            border: 2px solid var(--blue-gray);
        }
        .btn-outline:hover {
            background: var(--blue-gray);
            color: var(--white);
        }

        .btn-coral {
            background-color: #E8634F;
            color: white;
            box-shadow: var(--shadow-md);
        }
        .btn-coral:hover {
            background-color: #D14F3C;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Rounded card frames */
        .card-frame {
            background: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: var(--transition);
        }
        .card-frame:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        /* ==========================================
           HEADER (Combined dark header)
        ========================================== */
        header {
            background: var(--blue-gray-dark);
            padding: 0.4rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        header.header-hidden {
            transform: translateY(-100%);
        }
        .header-spacer {
            height: 95px;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img { 
            height: 85px; 
            filter: brightness(0) invert(1);
            margin-top: 8px;
        }
        
        header nav { display: none; }
        nav a {
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.9);
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }
        nav a:hover::after { width: 100%; }
        nav a:hover { color: var(--gold-light); }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--blue-gray-dark) !important;
            padding: 0.85rem 1.75rem;
            border-radius: var(--radius-lg);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .nav-cta::after { display: none; }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .mobile-header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mobile-schedule-btn {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--blue-gray-dark);
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            padding: 0.85rem 1.75rem;
            border-radius: var(--radius-lg);
            text-decoration: none;
            white-space: nowrap;
        }

        .mobile-header-divider {
            width: 1px;
            height: 24px;
            background-color: var(--gold);
        }

        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .mobile-menu-btn span {
            width: 28px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--blue-gray-dark);
            z-index: 10000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            display: flex;
        }
        .mobile-menu-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .mobile-menu-content {
            width: 100%;
            height: 100%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-menu-close {
            align-self: flex-end;
            background: none;
            border: none;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            padding: 10px;
            line-height: 1;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            flex-shrink: 0;
        }
        .mobile-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        @media (max-width: 600px) {
            .mobile-nav {
                justify-content: flex-start;
                flex: none;
                padding: 1.5rem 0 3rem;
            }
        }
        @media (min-width: 601px) {
            .mobile-nav {
                justify-content: center;
                flex: 1;
            }
        }
        .mobile-nav a {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            font-weight: 500;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--gold-light);
        }
        .mobile-nav-divider {
            width: 60px;
            height: 1px;
            background: rgba(255,255,255,0.2);
            margin: 0.5rem 0;
        }
        .mobile-nav-cta {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--blue-gray-dark) !important;
            padding: 1rem 2rem;
            border-radius: var(--radius-lg);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-top: 1rem;
        }

        /* Desktop Menu - Minimal Dropdown */
        @media (min-width: 601px) {
            .mobile-menu-overlay {
                top: 95px;
                left: auto;
                right: 2rem;
                width: auto;
                height: auto;
                background: var(--blue-gray-dark);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-lg);
            }
            .mobile-menu-content {
                width: auto;
                height: auto;
                padding: 1.5rem 2rem;
            }
            .mobile-menu-close {
                display: none;
            }
            .mobile-nav {
                align-items: flex-start;
                justify-content: flex-start;
                flex: none;
                gap: 1rem;
            }
            .mobile-nav a {
                font-size: 0.95rem;
            }
            .mobile-nav-cta {
                padding: 0.75rem 1.5rem;
                font-size: 0.75rem;
                margin-top: 0.5rem;
            }
        }

        /* ==========================================
           HERO
        ========================================== */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--pearl) 100%);
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        /* When viewport is short, don't center - align to top with padding */
        @media (max-height: 800px) {
            .hero {
                align-items: flex-start;
                padding-top: 3rem;
            }
        }

        @media (max-height: 650px) {
            .hero {
                padding-top: 2rem;
                min-height: auto;
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text h1 {
            margin-bottom: 1.5rem;
            color: var(--blue-gray);
        }
        .hero-text h1 span {
            color: var(--gold);
        }
        .hero-tagline {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-style: normal;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            line-height: 1.8;
        }
        .hero-tagline span {
            color: var(--gold);
            font-weight: 600;
        }
        .hero-cta {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-bottom: 0;
        }
        
        
        .hero-image {
            position: relative;
            padding-bottom: 40px;
            padding-left: 40px;
        }
        .hero-image-frame {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .hero-image-frame img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        
        .hero-stat-card {
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 1.5rem 2rem;
            box-shadow: var(--shadow-lg);
            text-align: center;
            z-index: 10;
        }
        .hero-stat-card .number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }
        .hero-stat-card p {
            font-size: 0.85rem;
            color: var(--text-mid);
            margin-top: 0.25rem;
        }

        /* ==========================================
           PRESS BAR
        ========================================== */
        .media-section {
            background: var(--white);
            padding: 5rem 0;
            text-align: center;
        }
        .media-section h2 {
            margin-bottom: 1rem;
        }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .video-item {
            text-align: center;
        }
        .video-thumb {
            position: relative;
            cursor: pointer;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            aspect-ratio: 16/9;
        }
        .video-thumb:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: var(--transition);
        }
        .play-btn svg {
            width: 68px;
            height: 48px;
        }
        .video-thumb:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.1);
        }
        .video-caption {
            margin-top: 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-mid);
        }
        
        /* Featured In / Press Section */
        .featured-section {
            padding: 5rem 0;
            background: var(--cream);
            text-align: center;
        }
        .featured-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
        }
        .featured-item {
            transition: var(--transition);
            max-width: 500px;
            width: 90%;
        }
        .featured-item:hover {
            transform: scale(1.02);
        }
        .featured-item img {
            width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
        }
        
        /* Video Lightbox */
        .video-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
        }
        .video-lightbox.active {
            display: block;
        }
        .video-lightbox-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.92);
        }
        .video-lightbox-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 900px;
        }
        .video-lightbox-close {
            position: absolute;
            top: -45px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 2.5rem;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            transition: var(--transition);
        }
        .video-lightbox-close:hover {
            color: var(--gold);
        }
        .video-lightbox-player {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            background: #000;
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        .video-lightbox-player iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        /* Full overlay that passes through clicks except blocked zones */
        .video-click-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            pointer-events: none;
        }
        /* Block YouTube logo area (bottom right) */
        .video-click-layer::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 120px;
            height: 60px;
            pointer-events: auto;
            cursor: default;
            /* background: rgba(255,0,0,0.3); */
        }
        /* Block top bar with title/share */
        .video-click-layer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50px;
            pointer-events: auto;
            cursor: default;
            /* background: rgba(0,255,0,0.3); */
        }
        
        /* Pause overlay to block related videos */
        .pause-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 9998;
            display: none;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        .pause-overlay.active {
            display: flex;
        }
        .pause-overlay-content {
            text-align: center;
            color: #fff;
        }
        .pause-overlay-content svg {
            width: 80px;
            height: 56px;
            transition: transform 0.2s;
        }
        .pause-overlay:hover svg {
            transform: scale(1.1);
        }
        .pause-overlay-content p {
            margin-top: 1rem;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* ==========================================
           STATS SECTION - THE WAKE-UP CALL
        ========================================== */
        .stats-section {
            padding: 0;
            background: var(--cream);
            position: relative;
        }
        .stats-section .container {
            max-width: 100%;
            padding: 0;
        }
        
        .stat-hero {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            padding: 5rem 2rem;
            border-bottom: 1px solid var(--marble-gray);
        }
        .stat-hero {
            background: var(--cream);
        }
        .stat-hero-conditions {
            background: var(--white);
        }

        /* Dual stat cards - side by side */
        .stat-hero-dual {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .stat-dual-cards {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 6rem;
        }

        .stat-dual-text {
            font-size: 2rem;
            color: var(--text-mid);
            text-align: center;
            line-height: 1.5;
        }

        .stat-flip-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            perspective: 1000px;
        }

        .stat-flip-inner {
            position: relative;
            width: 300px;
            height: 300px;
            transition: transform 0.7s ease-in-out;
            transform-style: preserve-3d;
        }

        .stat-flip-card.flipped .stat-flip-inner {
            transform: rotateY(180deg);
        }

        .stat-flip-front,
        .stat-flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .stat-flip-back {
            transform: rotateY(180deg);
        }

        .stat-flip-icon {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
        }

        .stat-flip-card[data-flip="man"] .stat-flip-icon {
            transform: scale(1.12) translateY(5%);
        }

        .stat-flip-card .stat-hero-content {
            margin-top: 1.5rem;
            text-align: center;
        }

        .stat-hero-icon {
            height: 180px;
            width: auto;
            flex-shrink: 0;
        }
        
        .stat-hero-content {
            text-align: left;
        }
        .stat-hero-number {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 600;
            color: var(--blue-gray);
            line-height: 1;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.2em;
        }
        .stat-in {
            font-size: 0.5em;
        }
        .stat-gender {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.7em;
        }
        .stat-hero-text {
            font-size: 1.5rem;
            color: var(--text-mid);
            max-width: 400px;
            line-height: 1.5;
        }
        
        /* Conditions row - heart, ribbon, brain */
        .stat-hero-conditions {
            flex-direction: column;
            gap: 0.5rem;
            padding: 4rem 2rem 4rem;
        }
        .condition-group {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 0;
            margin-bottom: 1rem;
            max-width: 100%;
            padding: 0 1rem;
        }
        .condition-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            flex-shrink: 1;
            min-width: 0;
        }
        .condition-item-center {
            margin-left: 0;
        }
        .condition-img {
            height: min(432px, 22vw);
            width: auto;
            max-width: 100%;
            margin-bottom: 25px;
        }
        .condition-img-ribbon {
            height: min(440px, 22vw);
            margin-bottom: 0;
        }
        .condition-img-stroke {
            height: min(480px, 24vw);
            margin-bottom: 20px;
        }
        .condition-plus {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--gold);
            font-weight: 300;
            align-self: center;
            margin-bottom: 2rem;
        }
        .condition-label {
            font-size: 1rem;
            color: var(--text-mid);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
        }
        
        .stat-hero-conditions .stat-hero-content {
            text-align: center;
            margin-top: 4rem;
        }
        .stat-hero-conditions .stat-hero-number {
            font-size: 4rem;
            color: var(--blue-gray);
        }
        .stat-hero-conditions .stat-hero-text {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.6rem;
            color: var(--text-mid);
        }

        .stat-conditions-headline {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            color: var(--blue-gray);
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.3;
        }
        
        /* CTA at bottom of stats */
        .stat-cta {
            padding: 4rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        }
        .stat-cta p {
            font-family: var(--font-display);
            font-size: 3rem;
            font-style: italic;
            color: var(--blue-gray-dark);
            margin-bottom: 1.5rem;
        }
        .stat-cta .cta-arrow {
            display: inline-block;
            font-style: normal;
            font-weight: 200;
            margin-left: 0.5rem;
        }
        .stat-cta .btn {
            background: var(--blue-gray-dark);
            color: var(--white);
            font-size: 0.9rem;
            padding: 1.25rem 3rem;
        }
        .stat-cta .btn:hover {
            background: var(--blue-gray);
        }

        /* Intermediate breakpoint for shrunk desktop windows */
        @media (max-width: 1100px) {
            .condition-img {
                height: 280px;
                margin-bottom: 15px;
            }
            .condition-img-ribbon {
                height: 290px;
            }
            .condition-img-stroke {
                height: 320px;
                margin-bottom: 12px;
            }
            .condition-plus {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 900px) {
            .condition-group {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .condition-img {
                height: 200px;
                margin: 0 !important;
            }
            .condition-img-ribbon {
                height: 200px;
                margin: 0 !important;
            }
            .condition-img-stroke {
                height: 220px;
                margin: 0 !important;
            }
            .condition-plus {
                font-size: 2rem;
                margin: 1rem 0;
            }
        }

        @media (max-width: 768px) {
            .stat-hero {
                flex-direction: column;
                gap: 2rem;
                padding: 4rem 2rem;
                text-align: center;
            }
            .stat-hero-icon {
                height: 120px;
            }
            .stat-hero-content {
                text-align: center;
            }
            .stat-hero-number {
                font-size: 3.5rem;
            }
            .stat-hero-text {
                font-size: 1.2rem;
            }
            .condition-group {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .condition-item {
                gap: 0.3rem;
                margin: 0;
                padding: 0;
            }
            .condition-item-center {
                margin-left: 0;
            }
            .condition-img {
                height: 180px;
                margin: 0 !important;
                padding: 0;
            }
            .condition-img-stroke {
                height: 180px;
                margin: 0 !important;
                padding: 0;
            }
            .condition-img-ribbon {
                height: 180px;
                margin: 0 !important;
                padding: 0;
            }
            .condition-plus {
                font-size: 2rem;
                margin: 1.5rem 0;
                padding: 0;
                line-height: 1;
            }
            .condition-label {
                font-size: 0.9rem;
                margin: 0;
                padding: 0;
            }
            .stat-hero-conditions .stat-hero-number {
                font-size: 2.5rem;
            }
            .stat-hero-conditions .stat-hero-text {
                font-size: 1.2rem;
            }
            .stat-conditions-headline {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }
            .stat-cta p {
                font-size: 2rem;
            }
            .stat-dual-cards {
                flex-direction: column;
                gap: 2rem;
            }
            .stat-dual-text {
                font-size: 1.2rem;
            }
            .stat-flip-inner {
                width: 200px;
                height: 200px;
            }
        }

        /* ==========================================
           INTRO SECTION
        ========================================== */
        .intro-section {
            padding: 7rem 0;
            position: relative;
        }
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .intro-content h2 {
            margin-bottom: 1.5rem;
        }
        .intro-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--cream) 0%, var(--pearl) 100%);
            padding: 2rem 2.5rem;
            border-radius: var(--radius-md);
            border-left: 4px solid var(--gold);
            margin: 2.5rem 0;
        }
        .highlight-box p {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-style: italic;
            color: var(--blue-gray);
            margin: 0;
            line-height: 1.6;
        }
        .intro-image {
            position: relative;
        }
        .intro-image img {
            width: 100%;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
        }
        .intro-image::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            border-radius: var(--radius-md);
            z-index: -1;
        }

        /* Understanding Osteoporosis - new grid layout */
        .intro-grid-v2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            grid-template-areas:
                "header image"
                "body image";
            gap: 2rem 5rem;
            align-items: start;
        }
        .intro-grid-v2 .intro-header {
            grid-area: header;
        }
        .intro-grid-v2 .intro-image {
            grid-area: image;
            align-self: center;
        }
        .intro-grid-v2 .intro-body {
            grid-area: body;
        }
        .intro-grid-v2 .intro-header h2,
        .intro-grid-v2 .intro-body h2 {
            margin-bottom: 1.5rem;
        }
        .intro-grid-v2 .intro-header > p,
        .intro-grid-v2 .intro-body > p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .intro-grid-v2 .intro-header > p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 900px) {
            .intro-grid-v2 {
                grid-template-columns: 1fr;
                grid-template-areas:
                    "header"
                    "image"
                    "body";
                gap: 2rem;
            }
            .intro-grid-v2 .intro-image {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        /* ==========================================
           APPROACH SECTION
        ========================================== */
        .approach-section {
            padding: 7rem 0;
            background: var(--cream);
            position: relative;
        }
        .approach-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,30 Q80,10 120,40 T200,30' stroke='%238B9BA4' stroke-width='0.4' fill='none' opacity='0.08'/%3E%3Cpath d='M0,100 Q50,80 100,110 T200,90' stroke='%238B9BA4' stroke-width='0.3' fill='none' opacity='0.06'/%3E%3Cpath d='M20,170 Q70,150 130,180 T200,160' stroke='%236B7B84' stroke-width='0.4' fill='none' opacity='0.07'/%3E%3C/svg%3E");
            background-size: 500px 500px;
            pointer-events: none;
        }
        
        .approach-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            position: relative;
            z-index: 1;
        }
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }
        .approach-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            text-align: center;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
        }
        .approach-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: var(--radius-md) var(--radius-md) 0 0;
            transform: scaleX(0);
            transition: var(--transition);
        }
        .approach-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .approach-card:hover::before { transform: scaleX(1); }
        
        .approach-card img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            margin-bottom: 1.5rem;
        }
        .approach-card h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .approach-card p {
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* ==========================================
           DIFFERENTIATOR SECTION
        ========================================== */
        .differentiator-section {
            padding: 7rem 0;
            background: var(--blue-gray-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .differentiator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .differentiator-content .section-label {
            color: var(--gold-light);
            font-size: 1.5rem;
        }
        .differentiator-content h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        .differentiator-content p {
            color: rgba(255,255,255,0.85);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .differentiator-content .emphasis {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-style: italic;
            color: var(--gold-light);
            border-left: 3px solid var(--gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .differentiator-image img {
            width: 100%;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
        }

        /* ==========================================
           DXA DIFFERENCE SECTION
        ========================================== */
        .dxa-section {
            padding: 5rem 0;
            background: var(--pearl);
        }
        .dxa-header {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
        }
        .dxa-header h2 {
            margin-bottom: 1.5rem;
        }

        /* DXA Accordion */
        .dxa-accordion {
            max-width: 600px;
            margin: 0 auto 3rem;
            text-align: center;
        }
        .dxa-accordion-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--white);
            border: 2px solid var(--gold);
            border-radius: var(--radius-lg);
            padding: 1rem 2rem;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            color: var(--gold-dark);
            cursor: pointer;
            transition: var(--transition);
        }
        .dxa-accordion-toggle:hover {
            background: var(--gold);
            color: var(--white);
        }
        .dxa-accordion-toggle:hover .accordion-icon {
            stroke: var(--white);
        }
        .accordion-icon {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            transition: transform 0.3s ease, stroke 0.3s ease;
        }
        .dxa-accordion.open .accordion-icon {
            transform: rotate(180deg);
        }
        .dxa-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .dxa-accordion.open .dxa-accordion-content {
            max-height: 1000px;
        }
        .dxa-accordion-inner {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 2rem;
            margin-top: 1.5rem;
            text-align: left;
            box-shadow: var(--shadow-md);
        }
        .dxa-accordion-inner p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-mid);
            margin-bottom: 1rem;
        }
        .dxa-accordion-inner ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        .dxa-accordion-inner li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: var(--text-mid);
            line-height: 1.6;
        }
        .dxa-accordion-inner li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 600;
        }

        .dxa-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .dxa-comparison {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: var(--shadow-md);
        }
        .dxa-comparison h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--blue-gray);
        }
        .dxa-table {
            width: 100%;
            border-collapse: collapse;
        }
        .dxa-table th,
        .dxa-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--pearl);
        }
        .dxa-table th {
            background: var(--blue-gray);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .dxa-table th:first-child {
            border-radius: var(--radius-sm) 0 0 0;
        }
        .dxa-table th:last-child {
            border-radius: 0 var(--radius-sm) 0 0;
            background: var(--gold);
            color: var(--blue-gray-dark);
        }
        .dxa-table td {
            font-size: 0.95rem;
            color: var(--text-mid);
        }
        .dxa-table td:last-child {
            color: var(--blue-gray);
            font-weight: 500;
        }
        .dxa-table tr:last-child td {
            border-bottom: none;
        }
        .dxa-content {
            text-align: left;
        }
        .dxa-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-mid);
            margin-bottom: 1.25rem;
        }
        .dxa-emphasis {
            font-family: var(--font-display);
            font-size: 1.2rem !important;
            font-style: italic;
            color: var(--gold-dark) !important;
            border-left: 3px solid var(--gold);
            padding-left: 1.25rem;
            margin: 1.5rem 0 !important;
        }
        .dxa-content h4 {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--blue-gray);
            margin-bottom: 1rem;
            margin-top: 1.5rem;
        }
        .dxa-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .dxa-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: var(--text-mid);
            line-height: 1.6;
        }
        .dxa-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 600;
        }

        .dxa-cta {
            text-align: center;
            margin-top: 3rem;
        }

        @media (max-width: 900px) {
            .dxa-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .dxa-comparison {
                order: 2;
            }
            .dxa-content {
                order: 1;
            }
            .dxa-accordion {
                max-width: 100%;
                margin-bottom: 2rem;
            }
            .dxa-accordion-toggle {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }
            .dxa-accordion.open .dxa-accordion-content {
                max-height: 1200px;
            }
            .dxa-accordion-inner {
                padding: 1.5rem;
                padding-bottom: 2rem;
            }
        }

        .credential-row {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .credential-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255,255,255,0.08);
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-lg);
            font-size: 0.85rem;
            font-weight: 500;
        }
        .credential-item svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
        }

        /* ==========================================
           WHAT TO EXPECT
        ========================================== */
        .expect-section {
            padding: 7rem 0;
            background: var(--white);
        }
        .expect-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        .expect-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }
        .expect-timeline::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--blue-gray), var(--gold));
        }
        .timeline-step {
            text-align: center;
            position: relative;
        }
        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--blue-gray) 0%, var(--blue-gray-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--white);
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-md);
            border: 4px solid var(--white);
        }
        .timeline-step h3 {
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
        }
        .timeline-step p {
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ==========================================
           TEAM SECTION
        ========================================== */
        .team-section {
            padding: 7rem 0;
            background: url("../images/marble-bg.jpg") center/cover no-repeat;
            position: relative;
        }
        .team-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.82);
            pointer-events: none;
        }
        .team-section .container {
            position: relative;
            z-index: 1;
        }
        .team-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }
        .team-card {
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .team-card.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .team-photo {
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--pearl) 0%, var(--marble-gray) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-align: center;
            padding: 1.5rem;
        }
        .team-photo span {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--text-mid);
        }
        .team-card.featured .team-photo {
            aspect-ratio: auto;
        }
        .team-info {
            padding: 2rem;
        }
        .team-card.featured .team-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .team-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.25rem;
        }
        .team-info .role {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        .team-info p {
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .team-info .credentials-list {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .team-info .cred-tag {
            background: var(--pearl);
            padding: 0.4rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--slate);
        }

        /* ==========================================
           INSURANCE CTA
        ========================================== */
        .insurance-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            text-align: center;
        }
        .insurance-section h2 {
            color: var(--blue-gray-dark);
            margin-bottom: 1rem;
        }
        .insurance-section p {
            color: var(--blue-gray-dark);
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
        .insurance-section .btn {
            background: var(--blue-gray-dark);
            color: var(--white);
        }
        .insurance-section .btn:hover {
            background: var(--blue-gray);
        }

        /* ==========================================
           FOR PROVIDERS
        ========================================== */
        .providers-section {
            padding: 7rem 0;
            background: var(--white);
        }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .providers-content h2 {
            margin-bottom: 1.5rem;
        }
        .providers-content p {
            margin-bottom: 1.5rem;
            font-size: 1.02rem;
        }
        .providers-content ul {
            list-style: none;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .providers-content li {
            padding: 0.5rem 0 0.5rem 1.75rem;
            position: relative;
            color: var(--text-mid);
        }
        .providers-content li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 600;
        }
        .providers-image img {
            width: 100%;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }

        /* ==========================================
           MEMBER LOGIN CTA
        ========================================== */
        .member-section {
            padding: 5rem 0;
            background: var(--blue-gray-dark);
        }
        .member-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: center;
        }
        .member-content h3 {
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        .member-content p {
            color: rgba(255,255,255,0.75);
        }
        .member-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .member-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-lg);
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.15);
        }
        .member-link:hover {
            background: rgba(255,255,255,0.18);
            border-color: var(--gold);
        }
        .member-link svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        /* ==========================================
           SCREENING CTA (Demand the Scan)
        ========================================== */
        .screening-cta-section {
            padding: 5rem 0;
            background: var(--blue-gray-dark);
        }
        .screening-cta-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: center;
        }
        .screening-cta-content h3 {
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        .screening-cta-content p {
            color: rgba(255,255,255,0.75);
        }
        .screening-cta-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* ==========================================
           CONTACT
        ========================================== */
        .contact-section {
            padding: 7rem 0;
            background: url("../images/marble-bg.jpg") center/cover no-repeat;
            position: relative;
        }
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.82);
            pointer-events: none;
        }
        .contact-section .container {
            position: relative;
            z-index: 1;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        .contact-info h2 {
            margin-bottom: 2rem;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .contact-item svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .contact-item a {
            color: var(--blue-gray);
            font-weight: 500;
            transition: var(--transition);
        }
        .contact-item a:hover { color: var(--gold); }
        .contact-item p {
            margin-top: 0.25rem;
            font-size: 0.9rem;
        }
        
        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }
        .contact-form h3 {
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--cream);
            border: 2px solid transparent;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--text-dark);
            outline: none;
            transition: var(--transition);
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--text-light);
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--gold);
            background: var(--white);
        }
        .contact-form textarea {
            min-height: 130px;
            resize: vertical;
        }

        /* ==========================================
           FOOTER
        ========================================== */
        footer {
            background: var(--blue-gray-dark);
            padding: 4rem 0 2rem;
            color: var(--white);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-brand img {
            height: 60px;
            margin-bottom: 1.25rem;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }
        .footer-brand p {
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .footer-links h4 {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            color: var(--gold);
        }
        .footer-links a {
            display: block;
            padding: 0.4rem 0;
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom a {
            color: rgba(255,255,255,0.5);
            margin-left: 2rem;
            transition: var(--transition);
        }
        .footer-bottom a:hover { color: var(--gold-light); }
        
        .dexology-badge {
            margin-top: 2rem;
        }
        .dexology-badge img {
            height: 60px;
            opacity: 0.7;
            transition: var(--transition);
        }
        .dexology-badge img:hover { opacity: 1; }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--blue-gray);
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }
        .social-icons svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        /* ==========================================
           GOOGLE REVIEWS SECTION
        ========================================== */
        .reviews-section {
            padding: 5rem 0;
            background: var(--pearl);
        }
        .reviews-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .google-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .google-logo {
            height: 24px;
            width: auto;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .stars {
            display: flex;
            gap: 2px;
        }
        .star {
            width: 20px;
            height: 20px;
            fill: #FBBC04;
        }
        .rating-number {
            font-family: var(--font-body);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--blue-gray);
        }
        .review-count {
            font-size: 0.9rem;
            color: var(--text-mid);
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .review-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--pearl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--gold);
            font-size: 1rem;
            flex-shrink: 0;
        }
        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        .reviewer-info {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 600;
            color: var(--blue-gray);
            font-size: 0.95rem;
        }
        .review-date {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .review-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 0.75rem;
        }
        .review-stars .star {
            width: 16px;
            height: 16px;
        }
        .review-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-mid);
            margin: 0;
        }
        .reviews-loading {
            text-align: center;
            padding: 2rem;
            color: var(--text-light);
            grid-column: 1 / -1;
        }
        .reviews-cta {
            text-align: center;
            margin-top: 2rem;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            border: 2px solid var(--gold);
            border-radius: var(--radius-lg);
            background: transparent;
            color: var(--gold-dark);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--white);
        }

        @media (max-width: 768px) {
            .google-rating {
                flex-direction: column;
                gap: 0.75rem;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ==========================================
           CHAT WIDGET
        ========================================== */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }
        .chat-toggle {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .chat-toggle:hover {
            transform: scale(1.08);
        }
        .chat-toggle svg {
            width: 28px;
            height: 28px;
            fill: var(--blue-gray-dark);
        }
        .chat-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 380px;
            height: 500px;
            background: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }
        .chat-window.active {
            display: flex;
            animation: slideUp 0.3s ease-out;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .chat-header {
            background: linear-gradient(135deg, var(--blue-gray) 0%, var(--blue-gray-dark) 100%);
            padding: 1.25rem 1.5rem;
            color: var(--white);
        }
        .chat-header h4 {
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 0.25rem;
        }
        .chat-header p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
        }
        .chat-messages {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
            background: var(--cream);
        }
        .chat-message {
            margin-bottom: 1rem;
            padding: 1rem 1.25rem;
            border-radius: var(--radius-md);
            max-width: 85%;
            font-size: 0.9rem;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .chat-message.bot {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            color: var(--text-dark);
        }
        .chat-message.bot p {
            margin: 0 0 0.5rem 0;
        }
        .chat-message.bot p:last-child {
            margin-bottom: 0;
        }
        .chat-message.bot ul {
            margin: 0.5rem 0;
            padding-left: 1.25rem;
        }
        .chat-message.bot li {
            margin-bottom: 0.25rem;
        }
        .chat-message.user {
            background: var(--blue-gray);
            color: var(--white);
            margin-left: auto;
        }
        .chat-input-area {
            padding: 1rem;
            background: var(--white);
            border-top: 1px solid var(--pearl);
            display: flex;
            gap: 0.75rem;
        }
        .chat-input-area input {
            flex: 1;
            padding: 0.85rem 1.25rem;
            border: 2px solid var(--pearl);
            border-radius: var(--radius-lg);
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
        }
        .chat-input-area input:focus {
            border-color: var(--gold);
        }
        .chat-input-area button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .chat-input-area button:hover {
            background: var(--gold-dark);
        }
        .chat-input-area button svg {
            width: 20px;
            height: 20px;
            fill: var(--blue-gray-dark);
        }

        /* Chat Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 1rem 1.25rem;
            align-items: center;
        }
        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: var(--warm-gray);
            border-radius: 50%;
            animation: typingBounce 1.4s infinite ease-in-out;
        }
        .typing-indicator span:nth-child(1) { animation-delay: 0s; }
        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typingBounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-6px); }
        }

        /* Chat Error State */
        .chat-message.error {
            background: #fff5f5;
            border-left: 3px solid #e53e3e;
        }

        /* Chat Disclaimer */
        .chat-disclaimer {
            padding: 0.5rem 1rem;
            background: var(--pearl);
            font-size: 0.7rem;
            color: var(--text-light);
            text-align: center;
            border-top: 1px solid var(--marble-gray);
        }

        /* Chat Inline Callback Form */
        .chat-callback-form {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--pearl);
        }

        .chat-callback-form h5 {
            font-family: var(--font-display);
            font-size: 1rem;
            color: var(--blue-gray);
            margin-bottom: 1rem;
        }

        .chat-callback-form .form-row {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .chat-callback-form .form-field {
            flex: 1;
        }

        .chat-callback-form label {
            display: block;
            font-size: 0.75rem;
            color: var(--text-light);
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .chat-callback-form input {
            width: 100%;
            padding: 0.7rem 0.9rem;
            border: 1px solid var(--pearl);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: border-color 0.2s ease;
        }

        .chat-callback-form input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .chat-callback-form input::placeholder {
            color: #aaa;
        }

        .chat-callback-form .form-actions {
            margin-top: 1rem;
        }

        .chat-callback-form button {
            width: 100%;
            padding: 0.85rem;
            background: var(--gold);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .chat-callback-form button:hover {
            background: var(--gold-dark);
        }

        .chat-callback-form button:disabled {
            background: var(--pearl);
            color: var(--text-light);
            cursor: not-allowed;
        }

        /* ==========================================
           RESPONSIVE
        ========================================== */
        @media (max-width: 1100px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-image { order: 1; max-width: 400px; margin: 0 auto; }
            .hero-cta { justify-content: center; }
            .hero-credentials { justify-content: center; }
            .hero-stat-card { left: auto; right: -20px; }
            
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .team-card.featured { grid-column: span 2; }
        }
        
        @media (max-width: 900px) {
            .intro-grid,
            .differentiator-grid,
            .providers-grid,
            .contact-grid { grid-template-columns: 1fr; }
            
            .approach-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .expect-timeline { grid-template-columns: repeat(2, 1fr); }
            .expect-timeline::before { display: none; }
            
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            
            .footer-grid { grid-template-columns: 1fr 1fr; }
            
            .member-grid { grid-template-columns: 1fr; text-align: center; }
            .member-links { justify-content: center; }

            .screening-cta-grid { grid-template-columns: 1fr; text-align: center; }
            .screening-cta-links { justify-content: center; }
        }
        
        @media (max-width: 768px) {
            nav { display: none; }

            .section-label { font-size: 1.05rem !important; }

            .hero { min-height: auto; padding: 4rem 0; }
            .hero-image { display: none; }

            .team-grid { grid-template-columns: 1fr; }
            .team-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
            
            .expect-timeline { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
            
            .stats-grid { grid-template-columns: 1fr; }
            
            .providers-content ul { grid-template-columns: 1fr; }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .footer-bottom a { margin: 0 0.75rem; }
            
            /* Chat window handled in separate 600px breakpoint below */
            
            .video-grid { grid-template-columns: 1fr; }
        }
/* Concierge Care Section */
.concierge-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
}

.concierge-section h2 {
    text-align: center;
    color: #2d5a5a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.concierge-section .gold-line {
    width: 80px;
    height: 3px;
    background: #c9a227;
    margin: 0 auto 1.5rem;
}

.concierge-tagline {
    text-align: center;
    font-size: 1.25rem;
    color: #c9a227;
    font-weight: 600;
    margin-bottom: 1rem;
}

.concierge-section > .container > p:not(.concierge-tagline) {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #555;
    line-height: 1.7;
}

.concierge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.concierge-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.concierge-item svg {
    width: 24px;
    height: 24px;
    color: #c9a227;
    flex-shrink: 0;
    margin-top: 2px;
}

.concierge-item span {
    color: #333;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .concierge-grid {
        grid-template-columns: 1fr;
    }

    .concierge-section h2 {
        font-size: 2rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero-tagline {
        text-align: left;
    }

    .mobile-break {
        display: block;
    }

    header .container {
        padding: 0 0.5rem;
    }

    header .header-inner {
        width: 100%;
    }

    header .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    header .logo img {
        height: 50px;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .mobile-schedule-btn {
        font-size: 0.5rem;
        padding: 0.5rem 0.6rem;
    }

    .mobile-menu-btn {
        flex-shrink: 0;
    }

    .mobile-header-divider {
        width: 1px;
        height: 18px;
        background-color: var(--gold);
    }

    .mobile-menu-btn {
        padding: 8px !important;
    }

    .stat-hero-conditions {
        text-align: center;
        padding-left: 15px !important;
        padding-right: 0 !important;
        overflow-x: hidden;
    }

    .condition-group {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        margin: 0 auto;
    }

    .condition-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        width: 100%;
        margin: 0 auto;
    }

    .condition-img {
        height: 276px;
        max-width: 100%;
        margin: 0 !important;
        margin-top: -20px !important;
        margin-bottom: -15px !important;
    }

    .condition-img-ribbon {
        height: 240px;
        max-width: 100%;
        margin: 0 !important;
    }

    .condition-img-stroke {
        height: 480px;
        max-width: 100%;
        margin: 0 !important;
        margin-top: -132px !important;
        margin-bottom: -105px !important;
    }

    .condition-label {
        margin: 0 !important;
        font-size: 1.35rem !important;
    }

    .condition-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .condition-plus {
        font-size: 2rem;
        margin: 1.5rem 0 0.5rem 0 !important;
        padding: 0;
        text-align: center;
        width: 100%;
        line-height: 1;
    }
}

/* ==========================================
   MODAL POPUPS
========================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    background: var(--blue-gray);
    color: var(--white);
    padding: 1.5rem 2rem;
    padding-right: 3.5rem;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 1;
    padding: 0.75rem 1rem;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--blue-gray);
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.modal-body a {
    color: var(--gold);
    text-decoration: underline;
}

/* Quiz Modal Specific Styles */
.modal-quiz {
    max-width: 500px;
}

.quiz-intro {
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.quiz-question {
    padding: 2rem;
    text-align: center;
}

.quiz-number {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.quiz-question p {
    font-size: 1.1rem;
    color: var(--blue-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quiz-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.quiz-btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--blue-gray);
    background: var(--white);
    color: var(--blue-gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.quiz-btn:hover {
    background: var(--blue-gray);
    color: var(--white);
}

/* Quiz Summary */
.quiz-summary {
    padding: 1.25rem 2rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.quiz-summary h4 {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.quiz-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.quiz-summary li {
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.quiz-summary .answer-icon {
    font-weight: 600;
}

.quiz-summary .answer-yes .answer-icon {
    color: #2e7d32;
}

.quiz-summary .answer-no .answer-icon {
    color: #c62828;
}

.quiz-result {
    padding: 2.5rem 2rem;
    text-align: center;
}

.quiz-result-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.quiz-result-icon.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.quiz-result-icon.alternative {
    background: var(--gold);
    color: var(--white);
}

.quiz-result h3 {
    font-family: var(--font-primary);
    color: var(--blue-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quiz-result p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quiz-result .btn {
    display: inline-block;
}

/* Modal Mobile Styles */
@media (max-width: 600px) {
    .modal-overlay {
        align-items: flex-start;
        padding: 3rem 0.75rem 1rem;
    }

    .modal-content {
        margin: 0;
        max-height: calc(100vh - 4rem);
        max-height: calc(100dvh - 4rem);
    }

    .modal-content h2 {
        font-size: 1.25rem;
        padding: 1.25rem 1.5rem;
        padding-right: 3.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .quiz-intro {
        padding: 1.25rem 1.5rem;
    }

    .quiz-question {
        padding: 1.5rem;
    }

    .quiz-question p {
        font-size: 1rem;
    }

    .quiz-btn {
        padding: 0.65rem 1.75rem;
    }

    .quiz-result {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   CHAT WIDGET - MOBILE BOTTOM SHEET
========================================== */

/* Hide elements that are only for mobile */
.chat-backdrop,
.chat-drag-handle,
.chat-close-mobile {
    display: none;
}

@media (max-width: 600px) {
    /* Backdrop overlay */
    .chat-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .chat-backdrop.active {
        display: block;
        opacity: 1;
    }

    /* Chat toggle button - larger on mobile */
    .chat-toggle {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    /* Chat window - bottom sheet style */
    .chat-window {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        height: 85vh;
        height: 85dvh;
        max-height: 85vh;
        max-height: 85dvh;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
    }

    .chat-window.active {
        display: flex;
        transform: translateY(0);
        animation: none;
    }

    /* Drag handle */
    .chat-drag-handle {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0 8px;
        background: linear-gradient(135deg, var(--blue-gray) 0%, var(--blue-gray-dark) 100%);
        border-radius: 20px 20px 0 0;
        cursor: grab;
        touch-action: none;
    }

    .chat-drag-handle span {
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
    }

    .chat-drag-handle:active {
        cursor: grabbing;
    }

    /* Header adjustments */
    .chat-header {
        position: relative;
        border-radius: 0;
        padding: 1rem 1.5rem;
    }

    /* Mobile close button */
    .chat-close-mobile {
        display: flex;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border: none;
        background: rgba(255, 255, 255, 0.15);
        color: var(--white);
        font-size: 1.5rem;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

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

    /* Messages area */
    .chat-messages {
        flex: 1;
        padding: 1.25rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Input area - account for mobile keyboard */
    .chat-input-area {
        padding: 1rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .chat-input-area input {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 1rem;
    }

    /* Disclaimer */
    .chat-disclaimer {
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    }
}

/* ==========================================
   LANDSCAPE MODE FIXES
   Target: phones in landscape (short viewports)
========================================== */

/* Landscape - all phones (max-height ~500px typically) */
@media (max-height: 500px) and (orientation: landscape) {

    /* ----- CHAT WIDGET ----- */
    .chat-window {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .chat-header {
        padding: 0.75rem 1rem;
    }

    .chat-header h4 {
        font-size: 1rem;
    }

    .chat-header p {
        display: none;
    }

    .chat-drag-handle {
        padding: 8px 0 4px;
        border-radius: 0;
    }

    .chat-messages {
        padding: 0.75rem;
    }

    .chat-message {
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .chat-input-area {
        padding: 0.5rem 0.75rem;
    }

    .chat-input-area input {
        padding: 0.6rem 0.9rem;
    }

    .chat-input-area button {
        width: 40px;
        height: 40px;
    }

    .chat-disclaimer {
        padding: 0.35rem 0.75rem;
        font-size: 0.65rem;
    }

    /* ----- MODALS ----- */
    .modal-overlay {
        padding: 0.5rem;
        align-items: center;
    }

    .modal-content {
        max-height: 95vh;
        max-height: 95dvh;
    }

    .modal-content h2 {
        padding: 1rem 1.5rem;
        padding-right: 3rem;
        font-size: 1.2rem;
    }

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

    .modal-body h3 {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .modal-body p {
        font-size: 0.85rem;
    }

    /* Quiz modal landscape */
    .quiz-intro {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }

    .quiz-question {
        padding: 1rem 1.5rem;
    }

    .quiz-question p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .quiz-number {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.75rem;
    }

    .quiz-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .quiz-result {
        padding: 1.5rem;
    }

    .quiz-result-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .quiz-result h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .quiz-result p {
        margin-bottom: 1rem;
    }

    .quiz-summary {
        padding: 0.75rem 1.5rem;
    }

    /* ----- STATS SECTION ----- */
    .stat-hero {
        padding: 2rem 1.5rem;
    }

    .stat-hero-dual {
        gap: 1rem;
    }

    .stat-dual-cards {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-flip-inner {
        width: 120px;
        height: 120px;
    }

    .stat-flip-card .stat-hero-content {
        margin-top: 0.75rem;
    }

    .stat-hero-number {
        font-size: 2.5rem;
    }

    .stat-dual-text {
        font-size: 1rem;
    }

    /* ----- COMBINED SECTION (Heart/Ribbon/Brain) ----- */
    .stat-hero-conditions {
        padding: 2rem 1rem;
    }

    .stat-conditions-headline {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .condition-group {
        flex-direction: row;
        align-items: flex-end;
        gap: 0.5rem;
    }

    .condition-img {
        height: 100px;
        margin: 0 !important;
    }

    .condition-img-ribbon {
        height: 100px;
        margin: 0 !important;
    }

    .condition-img-stroke {
        height: 110px;
        margin: 0 !important;
    }

    .condition-label {
        font-size: 0.7rem !important;
    }

    .condition-plus {
        font-size: 1.5rem;
        margin: 0 0.25rem !important;
        align-self: center;
    }

    .stat-hero-conditions .stat-hero-content {
        margin-top: 1.5rem;
    }

    .stat-hero-conditions .stat-hero-number {
        font-size: 2rem;
    }

    /* Gold CTA */
    .stat-cta {
        padding: 2rem 1.5rem;
    }

    .stat-cta p {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* ----- HERO SECTION ----- */
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* ----- APPROACH SECTION ----- */
    .approach-section {
        padding: 3rem 0;
    }

    .approach-header {
        margin-bottom: 2rem;
    }

    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: none;
    }

    .approach-card {
        padding: 1.5rem 1rem;
    }

    .approach-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .approach-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .approach-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* ----- WHAT TO EXPECT ----- */
    .expect-section {
        padding: 3rem 0;
    }

    .expect-header {
        margin-bottom: 2rem;
    }

    .expect-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .expect-timeline::before {
        display: block;
        top: 35px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .timeline-step h3 {
        font-size: 1rem;
    }

    .timeline-step p {
        font-size: 0.8rem;
    }

    /* ----- DIFFERENTIATOR SECTION ----- */
    .differentiator-section {
        padding: 3rem 0;
    }

    .differentiator-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .differentiator-content h2 {
        font-size: 1.5rem;
    }

    .differentiator-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .differentiator-content .emphasis {
        font-size: 1.1rem;
        margin: 1rem 0;
    }

    /* ----- CONCIERGE SECTION ----- */
    .concierge-section {
        padding: 3rem 1.5rem;
    }

    .concierge-section h2 {
        font-size: 1.75rem;
    }

    .concierge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .concierge-item {
        padding: 1rem;
    }

    /* ----- INSURANCE CTA ----- */
    .insurance-section {
        padding: 2.5rem 0;
    }

    .insurance-section h2 {
        font-size: 1.5rem;
    }

    .insurance-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* ----- INTRO/UNDERSTANDING OSTEOPOROSIS ----- */
    .intro-section {
        padding: 3rem 0;
    }

    .intro-grid-v2 {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "header image"
            "body image";
        gap: 1.5rem 2rem;
    }

    .intro-grid-v2 .intro-header > p,
    .intro-grid-v2 .intro-body > p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .highlight-box {
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 0;
    }

    .highlight-box p {
        font-size: 1rem;
    }

    /* ----- SCREENING CTA ----- */
    .screening-cta-section {
        padding: 2.5rem 0;
    }

    .screening-cta-grid {
        grid-template-columns: 1fr auto;
    }

    /* ----- TEAM SECTION ----- */
    .team-section {
        padding: 3rem 0;
    }

    .team-header {
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .team-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr 1fr;
    }

    .team-card.featured .team-photo {
        max-height: 250px;
    }

    .team-photo {
        aspect-ratio: 1/1;
    }

    .team-info {
        padding: 1rem;
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .team-info .role {
        font-size: 0.75rem;
    }

    .team-info p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* ----- FEATURED IN ----- */
    .featured-section {
        padding: 2.5rem 0;
    }

    .featured-item {
        max-width: 350px;
    }

    /* ----- MEDIA/VIDEO SECTION ----- */
    .media-section {
        padding: 2.5rem 0;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    /* ----- PROVIDERS SECTION ----- */
    .providers-section {
        padding: 3rem 0;
    }

    .providers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .providers-content ul {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    /* ----- MEMBER SECTION ----- */
    .member-section {
        padding: 2.5rem 0;
    }

    .member-grid {
        grid-template-columns: 1fr auto;
    }

    /* ----- CONTACT SECTION ----- */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* ----- FOOTER ----- */
    footer {
        padding: 2rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-brand img {
        height: 45px;
        margin-bottom: 0.75rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-links h4 {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }

    /* ----- VIDEO LIGHTBOX ----- */
    .video-lightbox-close {
        top: -35px;
        font-size: 2rem;
    }

    .video-lightbox-container {
        width: 85%;
        max-width: 700px;
    }
}

/* Landscape - smaller phones specifically (iPhone SE, small Android) */
@media (max-height: 400px) and (orientation: landscape) {
    .stat-flip-inner {
        width: 100px;
        height: 100px;
    }

    .stat-hero-number {
        font-size: 2rem;
    }

    .condition-img,
    .condition-img-ribbon {
        height: 80px;
    }

    .condition-img-stroke {
        height: 90px;
    }

    .approach-grid {
        gap: 0.75rem;
    }

    .approach-card {
        padding: 1rem 0.75rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-card.featured {
        grid-column: span 3;
    }
}
