* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        :root {
            --primary-teal: #74a49d;
            --dark-teal: #2c5f57;
            --accent-gold: #d4a574;
            --light-blue: #e8f4f8;
            --off-white: #f8f9fa;
            --dark-text: #2c2c2c;
            --gray-text: #6b7280;
            --light-gray: #e5e7eb;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background: #ffffff;
            font-size: 16px;
            max-width: 100%;
            overflow-x: hidden;
        }       
        h1, h2, h3, h4 {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        /* Placeholder image styling */
        .img-placeholder {
            background: linear-gradient(135deg, var(--light-blue), var(--off-white));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-text);
            font-size: 0.9rem;
            text-align: center;
            padding: 1rem;
            font-weight: 500;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
            max-width: 100%;
            overflow-x: hidden;
        }
       
        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.98);
            padding: 1.25rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
       
        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
       
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-image {
            height: 50px;
            width: auto;
            background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
            padding: 0.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
        }
       
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            letter-spacing: 0.5px;
            font-family: 'Sora', sans-serif;
        }
       
        .logo-text span {
            color: var(--accent-gold);
            font-weight: 800;
        }
       
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
            margin-left: auto;
        }

        @media (max-width: 968px) {
            nav ul {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                cursor: pointer;
            }

            nav .container {
                position: relative;
            }

            nav.menu-open ul {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                position: absolute;
                top: 100%;
                left: 5%;
                right: 5%;
                margin: 0;
                padding: 1rem 1.25rem 1.25rem;
                background: #ffffff;
                border-radius: 12px;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
                z-index: 200;
            }
        }
       
        nav a {
            text-decoration: none;
            color: var(--dark-text);
            font-size: 0.97rem;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 0.35rem;
            margin-left: 1.5rem;
        }

        nav a:hover::after {
            width: 100%;
        }
       
        nav a:hover {
            color: var(--accent-gold);
        }

        .nav-cta {
            background: var(--primary-teal);
            color: white !important;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.14rem;
            font-weight: 700;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            background: var(--dark-teal);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(116, 164, 157, 0.3);
        }

        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark-text);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
       
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 6rem 5%;
            text-align: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('hero-doctor-image.jpg') center/cover no-repeat;
            z-index: 1;
        }

        .hero-background.img-placeholder {
            font-size: 1.2rem;
        }

        /* Dark gradient overlay for text readability */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(44, 95, 87, 0.85) 0%, 
                rgba(44, 44, 44, 0.75) 50%,
                rgba(116, 164, 157, 0.80) 100%);
            z-index: 2;
        }

        /* Decorative elements */
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
            z-index: 3;
        }
       
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 244, 248, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
            z-index: 3;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }
       
        .hero-content {
            max-width: 900px;
            margin: 0 auto 3vh auto;
            position: relative;
            z-index: 4;
            color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }
       
        .hero h1 {
    font-size: 6.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-family: "Garamond", "Times New Roman", serif;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
}
       
        .hero .tagline {
            font-size: 1.6rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
            animation: fadeInUp 0.8s ease 0.2s backwards;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
       
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            animation: fadeInUp 0.8s ease 0.4s backwards;
            line-height: 1.7;
            text-shadow: 0 1px 10px rgba(0,0,0,0.4);
        }

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

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        @media (max-width: 968px) {
            .hero {
                padding: 4.25rem 5% 4.5rem;
                min-height: 75vh;
                align-items: center;
                text-align: center;
            }

            .hero h1 {
    font-size: 6.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-family: "Garamond", "Times New Roman", serif;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
}

            .hero-content {
                padding: 0 1rem;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }
        }
       
        .cta-button {
            display: inline-block;
            background: var(--primary-teal);
            color: white;
            padding: 1.1rem 2.75rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.3px;
        }
       
        .cta-button:hover {
            background: var(--dark-teal);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
       
        .cta-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid white;
            color: white;
        }
       
        .cta-secondary:hover {
            background: white;
            color: var(--dark-teal);
            border-color: white;
        }

        /* Trust badges below hero */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            padding: 3rem 5%;
            max-width: 1000px;
            margin: 0 auto;
            background: white;
        }

        @media (max-width: 768px) {
            .trust-badges {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 2rem 1.25rem;
                max-width: 480px;
                margin: 0 auto 2.5rem;
            }

            .badge-item {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }

        .badge-item {
    border: 2px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;

            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-text);
            font-size: 0.95rem;
            font-weight: 600;
        }

        .badge-icon {
    background: none;
    color: var(--accent-gold);
    border: none;

            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            text-align: center;
            padding: 0.5rem;
            line-height: 1.2;
        }

        .badge-icon.img-placeholder {
            background: linear-gradient(135deg, var(--light-blue), var(--off-white));
            color: var(--gray-text);
        }
       
        /* Section Styles */
        section {
            width: 100%;
            padding: 5rem 5%;
            margin: 0;
        }

        section:nth-child(even) {
            background: var(--off-white);
        }
      
        .section-subtitle {
            color: var(--gray-text);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 500;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
            padding: 4rem 5%;
            color: white;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Sora', sans-serif;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }
       
        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--gray-text);
            line-height: 1.8;
        }

        .about-text h3 {
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            font-size: 1.85rem;
        }

        .about-image {
            height: 550px;
            border-radius: 20px;
            background: url('doctor-about-photo.jpg') center/cover no-repeat;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            position: relative;
        }

        .about-image.img-placeholder {
            font-size: 1rem;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 200px;
            height: 200px;
            background: var(--accent-gold);
            opacity: 0.15;
            border-radius: 20px;
            z-index: -1;
        }

        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .credential-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--off-white);
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .credential-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

        .credential-icon.img-placeholder {
            background: linear-gradient(135deg, var(--light-blue), var(--off-white));
            color: var(--gray-text);
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--light-blue), white);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-teal);
            margin-top: 2rem;
        }

        .highlight-box h4 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .highlight-box p {
            color: var(--dark-text);
            line-height: 1.7;
        }
       
        /* Services Section */
        .services {
            background: white;
        }

        .transformation-program {
            background: linear-gradient(135deg, var(--off-white), white);
            padding: 3rem;
            border-radius: 20px;
            margin-top: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .transformation-program > h3 {
            font-size: 2rem;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        .transformation-program > p {
            color: var(--gray-text);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .program-price {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-teal);
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            font-family: 'Sora', sans-serif;
        }

        .price-strike {
            text-decoration: line-through;
            color: var(--gray-text);
            font-size: 2.25rem;
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .inaugural-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), #c49563);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: 1rem;
            letter-spacing: 0.5px;
        }

        .program-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .feature-item::before {
            content: '✓';
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: var(--primary-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .ideal-for {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .ideal-for h4 {
            color: var(--primary-teal);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .ideal-for ul {
            list-style: none;
            display: grid;
            gap: 0.75rem;
        }

        .ideal-for li {
            padding-left: 2rem;
            position: relative;
            color: var(--gray-text);
            line-height: 1.6;
        }

        .ideal-for li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .special-note {
            background: #fff3e0;
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 2rem;
            font-style: italic;
            border-left: 4px solid var(--accent-gold);
            line-height: 1.7;
        }

        .special-note strong {
            color: var(--accent-gold);
            font-style: normal;
        }
       
        /* How It Works Section */
        .how-it-works {
            background: var(--off-white);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .step {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            position: relative;
        }

        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            font-family: 'Sora', sans-serif;
            box-shadow: 0 6px 20px rgba(116, 164, 157, 0.3);
        }

        .step h3 {
            color: var(--dark-text);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .step p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* Why Choose Section */
        .why-choose {
            background: white;
        }
        .why-choose h2,
        .why-choose .section-subtitle {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }


        .reasons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-choose .reasons {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (max-width: 1024px) {
            .why-choose .reasons {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .why-choose .reasons {
                grid-template-columns: 1fr;
            }
        }

        .reason-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* center image and text */
    text-align: center;  /* center text */
    gap: 1.25rem;
}

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary-teal);
            transition: height 0.3s ease;
        }

        .reason-card:hover::before {
            height: 100%;
        }

        .reason-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
            background: white;
        }

        .reason-icon {
    flex: 0 0 351px;
    width: 351px;
    height: 351px;
    min-width: 351px;
    min-height: 351px;
    max-width: 351px;
    max-height: 351px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

        .reason-icon.img-placeholder {
            background: linear-gradient(135deg, var(--light-blue), var(--off-white));
            color: var(--gray-text);
        }

        .reason-card h3 {
            color: var(--dark-text);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .reason-card p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* Pricing/Membership Section */
        .membership {
            background: linear-gradient(135deg, var(--light-blue), var(--off-white));
            position: relative;
        }

        .coming-soon-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), #c49563);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .tier-preview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .tier-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .tier-card:nth-child(2) {
            border: 3px solid var(--primary-teal);
            transform: scale(1.05);
        }

        .tier-card:nth-child(2)::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-teal);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .tier-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .tier-card h3 {
            color: var(--dark-text);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .tier-price {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--primary-teal);
            margin: 1.5rem 0;
            font-family: 'Sora', sans-serif;
        }

        .tier-card p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        .tier-card ul {
            list-style: none;
            margin-top: 1.5rem;
            text-align: left;
            color: var(--gray-text);
            line-height: 2;
        }

        .tier-card li {
            padding-left: 0.5rem;
        }

        /* Waitlist Form */
        .waitlist-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 600px;
            margin: 3rem auto 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .waitlist-form h4 {
            text-align: center;
            color: var(--dark-text);
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .waitlist-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .waitlist-form input,
        .waitlist-form textarea,
        .waitlist-form select {
            padding: 1rem;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .waitlist-form input:focus,
        .waitlist-form textarea:focus,
        .waitlist-form select:focus {
            outline: none;
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 3px rgba(116, 164, 157, 0.1);
        }

        .waitlist-form button {
            background: var(--primary-teal);
            color: white;
            padding: 1.25rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .waitlist-form button:hover {
            background: var(--dark-teal);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(116, 164, 157, 0.3);
        }

        /* FAQ Section */
        .faq {
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .faq-item {
            background: var(--off-white);
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--dark-text);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--primary-teal);
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--primary-teal);
            transition: transform 0.3s ease;
            font-weight: 700;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
            color: white;
            text-align: center;
        }

        .contact h2 {
            color: white;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-method {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: white;
            color: var(--primary-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 0.85rem;
            font-weight: 700;
            text-align: center;
            padding: 0.5rem;
            line-height: 1.2;
        }

        .contact-icon.img-placeholder {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .contact-method h3 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .contact-method p {
            opacity: 0.9;
        }

        .contact-method a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 700;
            transition: opacity 0.3s ease;
        }

        .contact-method a:hover {
            opacity: 0.8;
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: left;
        }

        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Page-specific sections will be shown/hidden */
        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            h1 {
                font-size: 2.75rem;
            }

            h2 {
                font-size: 2rem;
            }

            nav ul {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .steps,
            .reasons,
            .tier-preview {
                grid-template-columns: 1fr;
            }

            .hero {
                padding: 4rem 5% 5rem;
                min-height: 75vh;
            }

            .hero h1 {
    font-size: 6.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-family: "Garamond", "Times New Roman", serif;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
}

            .hero .tagline {
                font-size: 1.3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            section {
                padding: 3rem 5%;
            }

            .tier-card:nth-child(2) {
                transform: scale(1);
            }
        }

        @media (max-width: 640px) {
            .cta-secondary {
                margin-left: 0;
                margin-top: 1rem;
            }

            .program-features {
                grid-template-columns: 1fr;
            }

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

            .credentials-grid {
                grid-template-columns: 1fr;
            }

            .trust-badges {
                gap: 1.5rem;
            }
        }
    

/* Logo overrides */
.logo-image {
    background: none;
    padding: 0;
    height: 90px; /* 15% larger than previous 78px */
    width: 90px;
}

.logo-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: "Garamond", "Times New Roman", serif;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 2.6rem; /* 15% larger than previous 2.25rem */
    white-space: nowrap;
}




/* Gold tile styling */
.gold-tile {
    background: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
}



/* Updated tile styling */
.gold-tile {
    background: white;
    border: none;
    border-top: 4px solid var(--primary-teal);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-teal);
    box-shadow: 0 0 12px rgba(0,0,0,0.18);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover effect: black border + gold glow intensifies */
.gold-tile:hover {
    border: 2px solid black;
    box-shadow: 0 0 22px rgba(0,0,0,0.25);
    transform: translateY(-3px);
}

/* Keep tiles in one line on larger screens only */
@media (min-width: 769px) {
    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: nowrap;
    }
}

.reason-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center; /* center title + paragraph */
    text-align: center;
}

        .reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.comparison-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table-wrapper table {
        min-width: 640px;
        table-layout: fixed;
    }

    .comparison-table-wrapper th,
    .comparison-table-wrapper td {
        padding: 0.9rem 0.5rem;
        font-size: 0.95rem;
        word-wrap: break-word;
    }
}
/* === Evenly Balanced Stats Section === */
.stats-section {
    padding: 3rem 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    white-space: normal;
    min-width: 140px;
}


@media (min-width: 769px) {
    .stats-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto;
    }
}


/* Mobile hero fix — correct font size and wrapping */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem !important;
        line-height: 1.15;
        white-space: normal !important;
        text-align: center;
        margin-bottom: 1.25rem;
    }
}
