 /* --- 1. CORE VARIABLES (LIGHT THEME) --- */
        :root {
            /* Light Theme Palette */
            --bg-body: #ffffff; 
            --bg-soft: #f8fafc; /* Very light slate for sections */
            --bg-card: #ffffff; 
            
            --text-main: #0f172a; /* Dark Slate for Headings */
            --text-muted: #64748b; /* Slate 500 for body text */
            
            --brand-teal: #0d9488; /* Slightly darker teal for contrast on white */
            --brand-glow: #2dd4bf;
            --accent-purple: #c026d3; /* Slightly darker purple for contrast */
            --accent-light: #fdf4ff;
            
            --border-light: rgba(0, 0, 0, 0.08);
            --border-hover: rgba(0, 0, 0, 0.15);
            --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
            
            --font-main: 'Plus Jakarta Sans', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --max-width: 1200px;
        }

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

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: var(--font-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Ambient Background Mesh (Subtle & Light) */
        .ambient-mesh {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -1;
            background: 
                radial-gradient(circle at 15% 50%, rgba(45, 212, 191, 0.05), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(192, 38, 211, 0.05), transparent 25%);
            pointer-events: none;
        }

        /* --- 2. TYPOGRAPHY & UTILS --- */
        h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; color: var(--text-main); }
        
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .highlight-text {
            background: linear-gradient(to right, var(--brand-teal), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .highlight-accent {
            background: linear-gradient(to right, var(--accent-purple), var(--brand-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            background: var(--accent-light);
            border: 1px solid rgba(192, 38, 211, 0.2);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--accent-purple);
        }

        /* --- 3. PREMIUM BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

img.main_logo {
    width: 23%;
}

        .btn-primary {
            background: var(--text-main);
            color: #fff;
            box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            background: #000;
            box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.4);
        }

        .btn-glass {
            background: #fff;
            border: 1px solid var(--border-light);
            color: var(--text-main);
            box-shadow: var(--shadow-card);
        }
        .btn-glass:hover {
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        
        .btn-gradient {
            background: linear-gradient(90deg, var(--text-main), #334155);
            color: #fff;
            font-weight: 700;
            margin-top: 20px;
            box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
        }

        /* --- 4. NAVIGATION --- */
        nav {
            position: fixed;
            top: 20px; left: 50%; transform: translateX(-50%);
            width: 90%; max-width: var(--max-width); z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 16px;
            padding: 14px 24px;
            display: flex; justify-content: space-between; align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }
        .nav-links { display: flex; align-items: center; }
        .nav-links a {
            color: var(--text-muted); font-size: 0.9rem; font-weight: 500; margin: 0 16px; transition: color 0.2s; text-decoration: none;
            white-space: nowrap;
        }
        .nav-links a:hover { color: var(--text-main); }
        
        .nav-actions { display: flex; gap: 12px; align-items: center; }

        /* --- 5. HERO SECTION --- */
        .hero {
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 3.75rem; 
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 40px;
        }


img.footer_logo {
    width: 41%;
}
section.faq-section.thank--- {
    padding-top: 192px;
}
        .hero-banner-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 60px auto 0;
            border-radius: 24px;
            padding: 10px;
            background: #fff;
            border: 1px solid var(--border-light);
            box-shadow: 0 20px 60px -10px rgba(0,0,0,0.1);
        }

        .hero-banner-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 16px;
            display: block;
        }
        
        /* --- THERAPIST SCROLLING SECTION --- */
        .therapist-strip {
            margin-top: 80px;
            text-align: center;
            overflow: hidden;
            position: relative;
        }
        
        /* White Fade for Slider */
        .therapist-strip::before, .therapist-strip::after {
            content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none;
        }
        .therapist-strip::before { left: 0; background: linear-gradient(to right, var(--bg-body), transparent); }
        .therapist-strip::after { right: 0; background: linear-gradient(to left, var(--bg-body), transparent); }

        .scroll-track-container {
            width: 100%; margin-top: 40px; display: flex; overflow: hidden;
        }
        .scroll-track {
            display: flex; gap: 40px; animation: scroll 40s linear infinite; width: max-content;
        }
        .scroll-track:hover { animation-play-state: paused; }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .t-card {
            display: flex; flex-direction: column; align-items: center;
            transition: transform 0.2s; cursor: pointer; min-width: 120px;
        }
        .t-card:hover { transform: translateY(-5px); }

        .t-img {
            width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
            border: 3px solid #fff; 
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 12px; transition: all 0.2s;
        }
        .t-card:hover .t-img { border-color: var(--brand-teal); box-shadow: 0 0 15px rgba(20, 184, 166, 0.3); }

        .t-name { font-weight: 700; font-size: 1rem; color: var(--text-main); }
        .t-role { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

        /* --- 7. MODULE FEATURE ROWS --- */
        .section-padding { padding: 120px 0; }
        
        .feature-row {
            display: flex; align-items: center; gap: 80px; margin-bottom: 180px;
        }
        .feature-row.reverse { flex-direction: row-reverse; }

        .feature-text { flex: 1; min-width: 300px; }
        .feature-visual { flex: 1; perspective: 1000px; width: 100%; }

        .step-number {
            font-size: 5rem; font-weight: 800; color: rgba(0,0,0,0.03);
            line-height: 1; margin-bottom: -30px; margin-left: -10px; position: relative; z-index: 0;
            font-family: var(--font-main);
        }

        .tag {
            display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 1px; color: var(--brand-teal); margin-bottom: 15px; position: relative; z-index: 1;
        }

        .feature-text h2 {
            font-size: 2.75rem; 
            margin-bottom: 24px; color: var(--text-main); position: relative; z-index: 1;
        }
        .feature-text p {
            font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px;
        }

        .check-list { list-style: none; margin-bottom: 30px; }
        .check-list li {
            margin-bottom: 15px; color: var(--text-main); display: flex; gap: 12px; align-items: flex-start; font-size: 1rem;
        }
        .check-icon { 
            color: var(--brand-teal); font-weight: bold; flex-shrink: 0; margin-top: 3px; 
            background: rgba(20, 184, 166, 0.1); width: 20px; height: 20px; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
        }

        .ui-graphic {
            height: 450px; width: 100%;
            background-size: cover; background-position: center;
            border-radius: 24px; position: relative;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            background-color: #fff;
        }
        
        .glass-overlay {
            position: absolute; bottom: 30px; right: 30px; left: 30px;
            background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);
            border: 1px solid rgba(0,0,0,0.05); padding: 24px; border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .glass-overlay-center {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 80%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
            border: 1px solid rgba(0,0,0,0.05); padding: 24px; border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .data-row {
            display: flex; justify-content: space-between; margin-bottom: 12px;
            border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 8px;
            font-size: 0.9rem; color: var(--text-muted);
        }
        .data-val { font-weight: 700; color: var(--text-main); }

        .chat-bubble {
            background: #f1f5f9; padding: 15px; border-radius: 12px; margin-bottom: 10px;
            border: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; color: var(--text-main);
        }
        .chat-bubble.bot { border-left: 3px solid var(--brand-teal); background: #fff; }
        .chat-bubble.user { background: var(--text-main); color: #fff; align-self: flex-end; margin-left: 40px; }


        /* --- CHECKERBOARD SPA GRID --- */
        .checkerboard-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .checker-item {
            height: 500px;
            position: relative;
            overflow: hidden;
        }
        .checker-img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .checker-item:hover .checker-img { transform: scale(1.05); }
        
        .checker-content {
            height: 100%;
            background: var(--bg-soft); 
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
        }
        .checker-icon {
            font-size: 2rem; margin-bottom: 20px; color: var(--brand-teal);
        }
        .checker-title {
            font-family: var(--font-serif);
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 400;
        }
        .checker-text {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 400px;
        }

        /* --- NEW ROI TESTIMONIALS SECTION (UPDATED) --- */
        .roi-section {
            padding: 120px 0;
            background: #fff;
        }
        .roi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }
        .roi-card {
            display: flex;
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease;
            height: 400px;
        }
        .roi-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        
        .roi-image-wrapper {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        .roi-img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s ease;
        }
        .roi-card:hover .roi-img { transform: scale(1.05); }
        
        .play-btn-overlay {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 60px; height: 60px;
            background: rgba(255,255,255,0.3); backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.8);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 1.2rem;
            transition: all 0.3s;
        }
        .roi-card:hover .play-btn-overlay { transform: translate(-50%, -50%) scale(1.1); background: #fff; color: #000; }

        .roi-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid var(--border-light);
        }
        
        .roi-category {
            font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
        }

        /* --- CTA (THE PORTAL) --- */
        .cta-portal {
            position: relative;
            padding: 120px 20px;
            text-align: center;
            overflow: hidden;
            background: #000; /* Kept Dark for Impact */
        }
        .portal-glow {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, var(--brand-teal) 0%, transparent 60%);
            filter: blur(100px);
            opacity: 0.2;
            z-index: 0;
        }
        .cta-card {
            position: relative; z-index: 1;
            max-width: 900px; margin: 0 auto;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 32px;
            padding: 80px 40px;
            box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 50px rgba(0,0,0,0.5);
        }
        .cta-title {
            font-family: var(--font-serif);
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #fff;
        }
        .magnetic-btn {
            background: #fff; color: #000;
            padding: 20px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 0 30px rgba(255,255,255,0.2);
            display: inline-block;
            margin-top: 30px;
            text-decoration: none;
        }
        .magnetic-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(255,255,255,0.4);
        }

        /* --- FOOTER --- */
        .editorial-footer {
            background: #002b36; 
            color: #fff;
            padding: 80px 0 30px;
        }
        /* Specific Override for Footer Text to be White */
        .editorial-footer h1, .editorial-footer h2, .editorial-footer h3, .editorial-footer h4, .editorial-footer h5 {
            color: #ffffff;
        }
        
        .footer-top {
            display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 80px; flex-wrap: wrap; gap: 40px;
        }
        .newsletter-form {
            display: flex; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 10px; width: 100%; max-width: 300px;
        }
        .newsletter-input {
            background: transparent; border: none; color: #fff; font-size: 1rem; width: 100%; outline: none;
        }
        .newsletter-btn {
            background: transparent; border: none; color: #fff; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; cursor: pointer;
        }
        .footer-cols { display: flex; gap: 80px; flex-wrap: wrap; }
        .footer-col h5 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; font-weight: 400; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
        .footer-col a:hover { color: #fff; text-decoration: underline; }

        /* --- RESPONSIVE --- */
        @media(max-width: 1200px) {
            .hero h1 { font-size: 3.25rem; }
            .feature-row { gap: 40px; }
        }

        @media(max-width: 900px) {
            nav { padding: 12px 16px; top: 10px; width: 95%; }
            .nav-links { display: none; } 
            
            .hero { padding: 140px 0 60px; }
            .hero h1 { font-size: 2.5rem; }
            .hero-banner-img { height: 300px; }
            
            .section-padding { padding: 60px 0; }
            
            .feature-row { flex-direction: column; margin-bottom: 100px; gap: 30px; }
            .feature-row.reverse { flex-direction: column; }
            
            .step-number { font-size: 4rem; }
            .feature-text h2 { font-size: 2rem; }
            
            .checkerboard-grid { display: flex; flex-direction: column; }
            .checker-item { height: auto !important; min-height: 300px; }
            .checker-content { padding: 60px 24px !important; }
            
            /* Order Fix for Mobile */
            .checker-item:nth-child(1) { order: 2; } /* Text */
            .checker-item:nth-child(2) { order: 1; } /* Image */
            .checker-item:nth-child(3) { order: 3; } /* Image */
            .checker-item:nth-child(4) { order: 4; } /* Text */
            .checker-item:nth-child(5) { order: 6; } /* Text */
            .checker-item:nth-child(6) { order: 5; } /* Image */

            /* ROI Section Mobile */
            .roi-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
            .roi-card { flex-direction: column; height: auto; }
            .roi-image-wrapper { height: 250px; flex: none; }
            .roi-content { padding: 30px 24px; border-left: none; border-top: 1px solid var(--border-light); }


            .cta-title { font-size: 2.2rem; }
            .footer-top { flex-direction: column; }
            .footer-cols { gap: 40px; width: 100%; justify-content: space-between; }
        }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-main);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 246px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.dropdown-menu a:hover {
    background: #f5f7fa;
}

/* Hover effect */
.dropdown:hover .dropdown-menu {
    display: block;
}


.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #c7b299; /* optional hover color */
}
a.main_logo {
    text-decoration: none;
    color: black;
}
