@media (max-width: 768px) {
    
     /* --- BRAND COLORS --- */
        :root {
            --brand-pink: #ff3399;
            --brand-purple: #4A144B;
            --text-light: #ffffff;
            --bg-gray: #f0f2f5;
            --gradient-bg: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
            --gradient-horizontal: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff; /* Dark background to highlight the phone frame */
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 0px;
        }
        
    /* --- MOBILE FRAME --- */
        .mobile-frame {
            width: 375px; 
            height: 812px; 
            background-color: white;
            border-radius: 35px;
            overflow: hidden; 
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 10px solid #111;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .menu-overlay, .menu-drawer {
            display:none;
        }

        /* --- HEADER --- */
        header {
            height: 70px;
            background: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 25px;
            z-index: 20; 
            position: relative;
            box-shadow: 0 2px 15px rgba(0,0,0,0.03);
        }
        
        .logo-container {
            width:100%;
        }
        .logo-text-fallback {
            display:inline-block;
        }
        .logo-img { height: 32px; width: auto; }

        .menu-btn {
            font-size: 22px;
            color: var(--brand-purple);
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s;
            display: inline-block;
            float: right;
        }
        .menu-btn:hover {
            color: var(--brand-pink);
        }
        
        .breadcrumb-img-box {
            display:none;
        }
        .breadcrumb-text { 
            padding-right: 0px;
        }
        /* --- CONTENT --- */
        .app-content {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        /* --- HERO --- */
        .home-mobile { display:block; }
        .home-web { display:none; }
        .hero-section {
            background: var(--gradient-bg);
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hero-text {
            padding: 35px 25px 20px 25px;
            text-align: center;
            color: white;
            z-index: 2;
        }

        .hero-title { font-size: 26px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
        .hero-sub { font-size: 13px; opacity: 0.95; margin-bottom: 25px; line-height: 1.6; font-weight: 300; }
    
        .hero-btn {
            color:var(--brand-purple);
            background-color:#fff;
            border-radius:35px;
        }
        .btn-cta {
            background: white;
            color: var(--brand-purple);
            padding: 14px 35px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            display: inline-block;
        }

        .hero-image-wrapper {
            flex: 1;
            width: 100%;
            position: relative;
            margin-top: -10px; 
            border-top-left-radius: 80%;
            border-top-right-radius: 80%;
            overflow: hidden;
            background-color: white;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }
        .hero-text-content {
            padding-top:20px;
        }
        ..step-connector-line { display:none; }

        /* --- FEATURES --- */
        .features-strip {
            background: white;
            padding: 18px 0;
            display: flex;
            justify-content: space-around;
            border-top: 1px solid #f8f8f8;
        }
        .f-item { text-align: center; width: 30%; }
        .f-icon { font-size: 22px; color: var(--brand-pink); margin-bottom: 6px; }
        .f-text { font-size: 11px; color: var(--brand-purple); font-weight: 600; opacity: 0.8; }


        /* =========================================
           SLIDE-OUT MENU STYLES
           ========================================= */
        
        .menu-overlay {
            position: absolute;
            display:none;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(74, 20, 75, 0.6); 
            backdrop-filter: blur(2px);
            z-index: 40;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .menu-overlay.active { opacity: 1; visibility: visible;
     }

        .menu-drawer {
    position: fixed; /* fix drawer on screen */
    top: 0;
    right: 0;
    width: 300px;         /* max width */
    height: 100vh;        /* full viewport height */
    background: #fff;

    display: flex;
    flex-direction: column;

    box-shadow: -10px 0 30px rgba(0,0,0,0.15);

    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);

    pointer-events: none;

    overflow-y: auto;      /* scroll vertically if content overflows */
    overflow-x: hidden;    /* prevent horizontal scroll */
}

.menu-drawer.active {
    transform: translateX(0);
    pointer-events: auto;
    z-index: 999;
}





        /* --- 1. Menu Header (Text = Menu) --- */
        .menu-header-bg {
            background: var(--gradient-horizontal);
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            border-bottom-left-radius: 30px; 
        }

        .menu-title-text { 
            font-weight: 700; 
            font-size: 22px; 
            letter-spacing: 0.5px;
        }
        
        .close-btn { 
            font-size: 24px; color: white; cursor: pointer; opacity: 0.9;
            transition: transform 0.2s;
        }
        .close-btn:hover { transform: rotate(90deg); opacity: 1; }

        /* --- 2. Menu List --- */
        .menu-content {
            padding: 30px;
            flex: 1;
            overflow-y: auto;
        }

        .menu-list { list-style: none; }
        .menu-item { margin-bottom: 20px; }
        
        .menu-link {
            text-decoration: none;
            color: var(--brand-purple);
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.2s;
        }
        
        .menu-link i {
            width: 35px;
            color: #ccc; 
            font-size: 18px;
            transition: color 0.2s;
        }

        .menu-link:hover { color: var(--brand-pink); transform: translateX(5px); }
        .menu-link:hover i { color: var(--brand-pink); }

        /* --- Separator --- */
        .separator {
            height: 1px;
            background: #eee;
            margin: 20px 0;
        }

        /* --- Prominent Links (Employers & Psych) --- */
        .highlight-link {
            font-weight: 700;
            color: var(--brand-purple);
        }
        
        .highlight-link i {
            color: var(--brand-pink); /* Icon always pink for these */
        }

        /* Special styling for "Find Psychologist" to make it pop most */
        .psych-link {
            color: var(--brand-pink);
        }
        
        /* --- FEATURES --- */
        .features-section {
            padding: 30px 20px;
            background: white;
        }
        
        .features-layout {
            display: block !important;
            justify-content: space-around;
            text-align: center;
        }

        .feature-row {
            display: flex;
            align-items: center;
            background: #fff;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }

        .f-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 51, 153, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-pink);
            font-size: 20px;
            margin-right: 15px;
        }

        .f-text {
            font-weight: 600;
            color: var(--brand-purple);
            font-size: 15px;
        }
        
        .faq-section-grid {
            padding: 20px 20px 100px;
        }
        
        .blog-hero-title {
            font-size: 2.5rem;
            
        }
        .blog-section-header-wrap {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        .blog-see-all-pill {
            width: 100%;
            justify-content: center;
        }
        
        .submit-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .guidance-box {
            order: -1;
            position: static;
        } /* Tips on top for mobile */
        .page-title {
            font-size: 2.2rem;
        }

        /* --- HIDDEN MENU SIMULATION --- */
        /* Just for visual context, normally hidden */
        .menu-overlay {
            display: none; /* Change to flex to see menu */
            position: absolute;
            top: 70px; left: 0; width: 100%; height: calc(100% - 70px);
            background: rgba(255,255,255,0.98);
            z-index: 20;
            flex-direction: column;
            padding: 30px;
        }
        .menu-item {
            font-size: 18px; color: var(--brand-purple); margin-bottom: 20px; font-weight: 600; text-decoration: none; border-bottom: 1px solid #eee; padding-bottom: 10px;
        }
        
        
        
        /* EMployer */
        .employer-hero-section {
            padding: 60px 0 60px 0;
        }
        .employer-video {
            margin: 0% 5% 15%;
        }
        .employer-hero-h1 {
            font-size: 2.5rem;
        }
        .employer-hero-p {
            font-size: 0.8rem;
        }
        .info-head {
            font-size: 1.5rem;
            line-height:1.5;
        }
        .cta-group {
            display:grid;
        }
        .cards-overlap {
            display:block;
        }
        .stat-banner {
            text-align:center;
            padding:15px;
            margin-bottom:7%;
        }
        .big-stat {
            font-size:3.5rem;
        }
        .stat-desc {
            font-size:1rem;
        }
        .solution-wrapper, .safety-grid {
            display:block;
        }
        .sol-graphic {
            display:none;
        }
        .sol-title, .sol-subtitle {
            text-align:center;
        }
        
        
        /* Footer */
        .footer-grid {
            display: block;
        }
        .foot-brand {
            width: 100%;
            display: block;
            text-align: center;
        }
        .foot-brand h3 {
            display: block;
        }
        .foot-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 7%;
        }
        .foot-social {
            text-align: center;
            margin-top: 7%;
        }
        .social-icons {
            display: flex;
            justify-content: center;
        }
        .foot-bottom {
            margin-top: 30px;
            padding-bottom:30px;
        }
        .foot-bottom-left {
            width: 100%;
            text-align: left;
            margin-left: 0px;
            text-align: center;
        }
        .foot-bottom-right {
            width: 100%;
            right: 0;
            margin-top: 30px;
            text-align: center;
        }
        .foot-bottom-right ul li {
            display: inline-block;
            float: none;
        }
}