/* CSS Variables */
        :root {
            --primary-purple: #6C2BD9;
            --primary-blue: #2D9CDB;
            --bg-dark: #0A0E27;
            --text-white: #FFFFFF;
            --text-gray: #B4B4C4;
            --success: #10B981;
            --warning: #F59E0B;
            --accent-pink: #EC4899;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
		
        /* Grid Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(108, 43, 217, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108, 43, 217, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .logo {			
			font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
		   
        }
		
		.logo img {		
			height: 48px;
			margin-top:6px;
		}
		
		/* Mobile logo size */
		@media (max-width: 768px) {
			.logo img {
				height: 48px;
			}
		}
		
		@media (max-width: 360px) {
			.logo img {
				height: 40px;
			}
		}

        .nav-cta {
            padding: 12px 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            color: var(--text-white);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 1rem;
        }

        .nav-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(108, 43, 217, 0.4);
        }
        
        /* Mobile nav CTA */
        @media (max-width: 480px) {
            .nav-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 360px) {
            .nav-cta {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108, 43, 217, 0.2), transparent);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 30px) scale(1.05); }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-visual {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 4 / 3; /* 4:3 aspect ratio */
            max-height: 450px;
            background: linear-gradient(135deg, rgba(108, 43, 217, 0.2), rgba(45, 156, 219, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(108, 43, 217, 0.3);
            overflow: hidden;
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Maintain 4:3 ratio */
        }        

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.1;
            font-weight: 800;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .trust-line {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .trust-line .divider {
            width: 3px;
            height: 3px;
            background: var(--text-gray);
            border-radius: 50%;
        }

        .hero-cta {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            color: var(--text-white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(108, 43, 217, 0.3);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(108, 43, 217, 0.5);
        }

        .cta-note {
            display: block;
            margin-top: 15px;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .cta-secondary {
            display: inline-block;
            padding: 14px 32px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--text-white);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: transparent;
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.5);
        }       

        /* Section Styles */
        section {
            padding: 60px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Problem Section */
        .problem-section {
            background: linear-gradient(180deg, transparent, rgba(108, 43, 217, 0.05));
            position: relative;
        }

        .problem-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .problem-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 50px;
        }

        .problem-side {
            padding-right: 20px;
        }

        .problem-side h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--text-white);
        }

        .problem-list {
            list-style: none;
        }

        .problem-list li {
            padding: 15px 0;
            padding-left: 35px;
            position: relative;
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .problem-list li:last-child {
            border-bottom: none;
        }

        .problem-list li::before {
            content: '⚠';
            position: absolute;
            left: 0;
            color: var(--warning);
            font-size: 1.2rem;
        }

        .solution-side {
            padding-left: 20px;
            border-left: 2px solid rgba(16, 185, 129, 0.3);
        }

        .solution-side h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--success);
        }

        .solution-side p {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .solution-side .highlight-text {
            color: var(--text-white);
            font-weight: 600;
        }

        /* How We Help */
        .help-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .help-card {
           background: rgba(22, 26, 50, 1);		
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .help-card:hover {
            background: rgba(20, 33, 56, 1);
            border-color: var(--primary-purple);
            transform: translateY(-5px);
        }

        .help-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .help-card .icon {
            font-size: 1.6rem;
        }

        .help-card p {
            color: var(--text-gray);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Featured Webinar */
        .featured-webinar {
            background: linear-gradient(135deg, rgba(108, 43, 217, 0.1), rgba(45, 156, 219, 0.1));
            border-radius: 30px;
            padding: 40px 50px;
            position: relative;
            overflow: hidden;
            max-height: 650px;
        }

        .webinar-content-wrapper {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .webinar-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--success), #059669);
            color: white;
            padding: 10px 24px;
            border-radius: 20px;
            font-weight: 600;
            animation: pulse 2s ease-in-out infinite;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .webinar-main-title {
            font-size: 2rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .webinar-intro {
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .learning-points {
            max-width: 700px;
            margin: 0 auto 30px;
            text-align: left;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px 30px;
            list-style: none;
        }

        .learning-points li {
            padding: 0;
            padding-left: 25px;
            position: relative;
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .learning-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .webinar-meta-bottom {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            font-size: 0.85rem;
            color: var(--text-gray);
            flex-wrap: wrap;
        }

        .webinar-meta-bottom span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Founder Section */
        .founder-section {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 40px;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .founder-image {
            width: 400px;
            height: 400px;
            border-radius: 20px;
           <!-- background: linear-gradient(135deg, rgba(108, 43, 217, 0.3), rgba(45, 156, 219, 0.3));-->
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            border: 3px solid rgba(108, 43, 217, 0.5);
            position: relative;
            overflow: hidden;
        }
        

        .founder-content h3 {
            font-size: 1.6rem;
            margin-bottom: 5px;
        }

        .founder-title {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .founder-content p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
			
        }

        .credibility-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .credibility-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .credibility-list li::before {
            content: '▸';
            color: var(--primary-blue);
            font-weight: bold;
        }

        /* Outcomes Grid */
        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
        }

        .outcome-card {
            background: rgba(22, 26, 50, 1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .outcome-card:hover {
           background: rgba(20, 33, 56, 1);
            transform: translateY(-5px);
        }

        .outcome-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .outcome-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .supporting-line {
            text-align: center;
            color: var(--text-gray);
            margin-top: 40px;
            font-style: italic;
        }

        /* Programs Section */
        .programs-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.05rem;
            color: var(--text-gray);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .program-card {
            background: rgba(22, 26, 50, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .program-card:hover {
           background: rgba(20, 33, 56, 1);
            border-color: var(--primary-purple);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(108, 43, 217, 0.3);
        }

        .program-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(108, 43, 217, 0.3), rgba(45, 156, 219, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .program-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 40%, rgba(10, 14, 39, 0.3));
        }

        .program-icon {
            font-size: 4rem;
            position: relative;
            z-index: 1;
        }

        .program-content {
            padding: 30px;
            text-align: center;
        }

        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .program-card p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .program-cta {
            display: inline-block;
            padding: 12px 28px;
            border: 2px solid var(--primary-purple);
            color: var(--text-white);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .program-cta:hover {
            background: rgba(108, 43, 217, 0.2);
            border-color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* Program specific gradients */
        .program-card:nth-child(1) .program-image {
            background: linear-gradient(135deg, rgba(108, 43, 217, 0.3), rgba(139, 92, 246, 0.3));
        }

        .program-card:nth-child(2) .program-image {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(219, 39, 119, 0.3));
        }

        .program-card:nth-child(3) .program-image {
            background: linear-gradient(135deg, rgba(45, 156, 219, 0.3), rgba(59, 130, 246, 0.3));
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
           background: rgba(22, 26, 50, 1);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
             background: rgba(20, 33, 56, 1);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: var(--primary-blue);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--text-gray);
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Final CTA */
        .final-cta {
            text-align: center;
            background: linear-gradient(135deg, rgba(108, 43, 217, 0.2), rgba(45, 156, 219, 0.2));
            border-radius: 30px;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(108, 43, 217, 0.1), transparent);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .final-cta > * {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 40px 0 20px;
            margin-top: 100px;
            text-align: center;
            color: var(--text-gray);
        }

        .footer-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-blue);
        }

        /* Sticky Mobile CTA */
        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-top: 2px solid var(--primary-purple);
            padding: 15px 20px;
            z-index: 1001;
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-sticky-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100%;
        }

        .mobile-sticky-logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
		.mobile-sticky-logo img {
			height: 24px;
		}

        .mobile-sticky-btn {
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-icon {
            font-size: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                position: relative;
            }

            nav.scrolled {
                background: transparent;
                backdrop-filter: none;
                box-shadow: none;
            }

            .mobile-sticky-cta {
                display: block;
            }

            .hero {
                min-height: auto;
                padding-top: 80px;
                padding-bottom: 60px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual {
                order: -1;
            }

            .hero-image {
                max-height: 280px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .hero-cta {
                display: block;
                text-align: center;
                font-size: 1.1rem;
            }

            .countdown-timer {
                padding: 15px 20px;
            }

            .countdown-number {
                font-size: 1.5rem;
            }

            section {
                padding: 50px 0;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .help-grid,
            .outcomes-grid,
            .programs-grid {
                grid-template-columns: 1fr;
            }

            .problem-wrapper {
                grid-template-columns: 1fr;
                padding: 30px;
            }

            .problem-side,
            .solution-side {
                padding: 0;
                border: none;
            }

            .solution-side {
                padding-top: 30px;
                margin-top: 30px;
                border-top: 2px solid rgba(16, 185, 129, 0.3);
                border-left: none;
            }

            .founder-section {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .founder-image {
                margin: 0 auto;
            }

            .credibility-list {
                align-items: flex-start;
                text-align: left;
            }

            .featured-webinar {
                padding: 30px 20px;
            }

            .webinar-main-title {
                font-size: 1.5rem;
            }

            .webinar-intro {
                font-size: 1rem;
            }

            .learning-points {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .webinar-meta-bottom {
                flex-direction: row;
                gap: 12px;
                font-size: 0.8rem;
            }

            .final-cta h2 {
                font-size: 1.8rem;
            }

            .floating-whatsapp {
                bottom: 80px;
                right: 15px;
            }
        }

        /* Extra small mobile (360px) */
        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.75rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-image {
                max-height: 240px;
                border-radius: 16px;
            }

            .section-header h2 {
                font-size: 1.4rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .webinar-main-title {
                font-size: 1.3rem;
            }

            .webinar-intro {
                font-size: 0.95rem;
            }

            .hero-cta,
            .cta-secondary {
                padding: 14px 24px;
                font-size: 0.95rem;
            }

            .problem-wrapper {
                padding: 25px 20px;
            }

            .problem-side h3,
            .solution-side h3 {
                font-size: 1.3rem;
            }

            .help-card,
            .outcome-card,
            .program-content {
                padding: 20px;
            }

            .founder-image {
                width: 100%;                
                font-size: 3rem;
            }

            .founder-content h3 {
                font-size: 1.4rem;
            }

            .founder-content p {
                font-size: 0.9rem;
				text-align:left;
            }
            
            .trust-line {
                flex-wrap: wrap;
                font-size: 0.85rem;
                gap: 8px;
            }
            
            .countdown-timer {
                padding: 12px 16px;
            }
            
            .countdown-number {
                font-size: 1.3rem;
            }
            
            .countdown-label {
                font-size: 0.7rem;
            }
            
            .mobile-sticky-btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            
            .mobile-sticky-logo {
                font-size: 1.1rem;
            }
        }
        
        /* Ultra small mobile (320px) - Critical fixes */
        @media (max-width: 320px) {
            .container {
                padding: 0 12px;
            }
            
            .hero h1 {
                font-size: 1.5rem;
                line-height: 1.25;
            }
            
            .hero-subtitle {
                font-size: 0.95rem;
            }
            
            .hero-image {
                max-height: 200px;
                border-radius: 12px;
            }
            
            .hero-cta {
                padding: 12px 20px;
                font-size: 0.9rem;
                width: 100%;
            }
            
            .section-header h2 {
                font-size: 1.25rem;
                line-height: 1.3;
            }
            
            .section-header p {
                font-size: 0.9rem;
            }
            
            .trust-line {
                font-size: 0.8rem;
            }
            
            .countdown-number {
                font-size: 1.2rem;
            }
            
            .countdown-label {
                font-size: 0.65rem;
            }
            
            .help-card h3,
            .outcome-card h3,
            .program-content h3 {
                font-size: 1.1rem;
            }
            
            .help-card p,
            .outcome-card p,
            .program-content p {
                font-size: 0.85rem;
            }
            
            .problem-wrapper {
                padding: 20px 16px;
            }
            
            .problem-side h3,
            .solution-side h3 {
                font-size: 1.2rem;
            }
            
            .problem-side p,
            .solution-side p {
                font-size: 0.85rem;
            }
            
            .webinar-main-title {
                font-size: 1.15rem;
                line-height: 1.3;
            }
            
            .webinar-intro {
                font-size: 0.85rem;
            }
            
            .learning-point {
                padding: 12px;
                font-size: 0.85rem;
            }
            
            .webinar-meta-bottom {
                font-size: 0.75rem;
                gap: 8px;
            }
            
            .final-cta h2 {
                font-size: 1.5rem;
            }
            
            .final-cta p {
                font-size: 0.9rem;
            }
            
            .cta-secondary {
                padding: 12px 20px;
                font-size: 0.85rem;
            }
            
            .founder-content h3 {
                font-size: 1.25rem;
            }
            
            .founder-content p {
                font-size: 0.85rem;
				text-align: left;
            }
            
            .credibility-item {
                font-size: 0.85rem;
            }
            
            .mobile-sticky-content {
                padding: 12px;
            }
            
            .mobile-sticky-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            
            .mobile-sticky-logo {
                font-size: 1rem;
            }
            
            .floating-whatsapp {
                bottom: 75px;
                right: 12px;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-icon {
                font-size: 1.6rem;
            }
            
            .faq-question {
                font-size: 0.9rem;
                padding: 16px;
            }
            
            .faq-answer-content {
                font-size: 0.85rem;
                padding: 12px 16px;
            }
            
            section {
                padding: 40px 0;
            }
            
            .featured-webinar {
                padding: 25px 16px;
            }
            
            .nav-content {
                padding: 16px 12px;
            }
        }

            .credibility-list li {
                font-size: 0.85rem;
            }

            .program-image {
                height: 180px;
            }

            .program-card h3 {
                font-size: 1.3rem;
            }

            .final-cta {
                padding: 60px 25px;
            }

            .final-cta h2 {
                font-size: 1.6rem;
            }

            .final-cta p {
                font-size: 1rem;
            }
        }

        /* Ultra small mobile (325px) */
        @media (max-width: 325px) {
            .container {
                padding: 0 12px;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .hero-image {
                height: 220px;
            }

            .hero-cta,
            .cta-secondary {
                padding: 12px 18px;
                font-size: 0.9rem;
            }

            .cta-note {
                font-size: 0.8rem;
            }

            .countdown-timer {
                padding: 12px 15px;
            }

            .countdown-number {
                font-size: 1.3rem;
            }

            .countdown-text {
                font-size: 0.7rem;
            }

            .section-header h2 {
                font-size: 1.3rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .problem-wrapper {
                padding: 20px 15px;
            }

            .problem-side h3,
            .solution-side h3 {
                font-size: 1.2rem;
            }

            .problem-list li,
            .solution-side p {
                font-size: 0.9rem;
            }

            .help-card h3 {
                font-size: 1.1rem;
            }

            .help-card p {
                font-size: 0.85rem;
            }

            .featured-webinar {
                padding: 25px 15px;
            }

            .webinar-badge {
                padding: 8px 18px;
                font-size: 0.85rem;
            }

            .webinar-main-title {
                font-size: 1.2rem;
            }

            .webinar-intro {
                font-size: 0.9rem;
            }

            .learning-points li {
                font-size: 0.85rem;
                padding-left: 20px;
            }

            .webinar-meta-bottom {
                font-size: 0.75rem;
                gap: 10px;
            }

            .founder-image {
                width: 100%;                
            }

            .founder-content h3 {
                font-size: 1.3rem;
            }

            .founder-content p {
                font-size: 0.85rem;
            }

            .credibility-list li {
                font-size: 0.8rem;
            }

            .outcome-card {
                padding: 20px 15px;
            }

            .outcome-icon {
                font-size: 2rem;
            }

            .outcome-card h3 {
                font-size: 1rem;
            }

            .program-image {
                height: 160px;
            }

            .program-icon {
                font-size: 3rem;
            }

            .program-content {
                padding: 20px 15px;
            }

            .program-card h3 {
                font-size: 1.2rem;
            }

            .program-card p {
                font-size: 0.9rem;
            }

            .program-cta {
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            .faq-question {
                padding: 20px;
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
                font-size: 0.9rem;
            }

            .final-cta {
                padding: 50px 20px;
            }

            .final-cta h2 {
                font-size: 1.5rem;
            }

            .final-cta p {
                font-size: 0.95rem;
            }

            .cta-microcopy {
                font-size: 0.8rem;
                gap: 12px;
            }

            .mobile-sticky-logo {
                font-size: 1.1rem;
            }

            .mobile-sticky-btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }

            .whatsapp-btn {
                width: 50px;
                height: 50px;
            }

            .whatsapp-icon {
                font-size: 1.6rem;
            }
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }