.elementor-1086465 .elementor-element.elementor-element-47b0cb5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-306a335 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0B0D17;
            --bg-secondary: #13162A;
            --bg-tertiary: #1A1F3A;
            --bg-card: #1E2440;
            --accent-primary: #8671FF;
            --accent-dark: #8811FF;
            --accent-secondary: #B87CF9;
            --accent-pink: #FF7FC2;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-tertiary: #64748B;
            --border-subtle: rgba(148, 163, 184, 0.1);
            --free-border: #10B981;
        }

        body {
            font-family: 'Poppins', -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* Capitalize all text */
        h1, h2, h3, h4, h5, h6, p, a, span, div, li, button {
            text-transform: capitalize;
        }

        /* Grid Background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(134, 113, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(134, 113, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        section {
            padding: 3rem 0;
            position: relative;
        }

        /* Pattern background */
        .pattern-bg {
            position: relative;
        }

        .pattern-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(134, 113, 255, 0.02) 10px,
                    rgba(134, 113, 255, 0.02) 20px
                );
            pointer-events: none;
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 5rem 0 3rem;
        }

        .hero-glow {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(134, 113, 255, 0.15) 0%, transparent 70%);
            filter: blur(120px);
            animation: float 10s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -55%) scale(1.1); }
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #F8FAFC 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.35rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero-support {
            font-size: 1.1rem;
            color: var(--text-tertiary);
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
            border: none;
            border-radius: 12px;
            color: #FFFFFF !important;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(134, 113, 255, 0.4);
        }

        .btn-secondary {
            padding: 1.25rem 3rem;
            background: transparent;
            border: 2px solid var(--border-subtle);
            border-radius: 12px;
            color: #FFFFFF !important;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-primary);
            transform: translateY(-3px);
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -1.5px;
            background: linear-gradient(135deg, #F8FAFC 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .section-header p.wrap-mobile {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Intro Section - Smaller */
        .intro {
            background: var(--bg-secondary);
            padding: 2.5rem 0;
        }

        .intro-visual {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .intro-text {
            padding: 2rem;
        }

        .intro-text h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .intro-text p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .intro-text p strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .intro-visual-box {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(134, 113, 255, 0.1) 0%, rgba(184, 124, 249, 0.1) 100%);
            border: 2px solid rgba(134, 113, 255, 0.3);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .intro-visual-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(134, 113, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .journey-flow {
            position: relative;
            z-index: 1;
        }

        .journey-flow .step {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.25rem;
            padding-left: 2rem;
            position: relative;
        }

        .journey-flow .step::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-primary);
            font-size: 1.5rem;
        }

        .journey-flow .step span {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Programs Overview */
        .programs-overview {
            padding: 3rem 0;
        }

        .programs-grid {
            max-width: 1300px;
            margin: 0 auto;
        }

        /* FREE Program - Full Width */
        .free-program {
            margin-bottom: 2.5rem;
            padding: 2rem 3rem;
            background: var(--bg-card);
            border: 3px solid var(--free-border);
            border-radius: 20px;
            display: grid;
            grid-template-columns: auto 1fr auto auto;
            gap: 2.5rem;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
        }

        .free-program:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
        }

        .program-badge {
            padding: 0.65rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            width: auto;
            max-width: 50%;
        }

        .badge-free {
            background: rgba(16, 185, 129, 0.2);
            color: var(--free-border);
            border: 2px solid var(--free-border);
            width: auto;
            display: inline-block;
            min-width: 100px;
            padding: 0.65rem 1.5rem;
        }

        /* Badge Images */
        .badge-image-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            position: relative;
            display: inline-block;
        }

        .badge-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* For FREE program - larger badge */
        .free-program .badge-image-wrapper {
            width: 100px;
            height: 100px;
            margin: 0;
        }

        /* For program cards in grid */
        .program-card .badge-image-wrapper {
            width: 70px;
            height: 70px;
            margin: 0;
        }

        /* For detail sections */
        .level-header .badge-image-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 0 1.5rem 0;
        }

        /* For journey milestones */
        .journey-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .journey-step .badge-image-wrapper {
            width: 80px;
            height: 80px;
            margin: 0;
        }

        .program-info h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .program-info .tagline {
            font-size: 1rem;
            color: var(--text-tertiary);
        }

        .program-price {
            text-align: center;
            padding: 0 2rem;
            border-left: 1px solid var(--border-subtle);
        }

        .program-price .amount {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--free-border);
            line-height: 1.2;
        }

        .program-price .period {
            font-size: 0.9rem;
            color: var(--text-tertiary);
            margin-top: 0.5rem;
        }

        .program-arrow {
            font-size: 2rem;
            color: var(--accent-primary);
        }

        /* Paid Programs - 4 Columns */
        .paid-programs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.75rem;
        }

        .program-card {
            padding: 2rem 1.5rem;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: 20px;
            transition: all 0.4s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .program-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-primary);
            box-shadow: 0 20px 50px rgba(134, 113, 255, 0.2);
        }

        /* Program card tier header - LEFT ALIGNED for desktop */
        .program-tier-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;  /* LEFT ALIGNED on desktop */
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .program-card .badge-image-wrapper {
            width: 70px;
            height: 70px;
            margin: 0;
        }

        .program-tier-label {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tier-silver { color: #C0C0C0; }
        .tier-gold { color: #FFD700; }
        .tier-diamond { color: #B9F2FF; }
        .tier-quantum { color: var(--accent-pink); }

        .badge-silver {
            background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
            color: #000;
        }

        .badge-gold {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000;
        }

        .badge-diamond {
            background: linear-gradient(135deg, #B9F2FF 0%, #7DD3FC 100%);
            color: #000;
        }

        .badge-quantum {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
            color: #FFF;
        }

        .program-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 1.25rem 0 0.5rem;
        }

        .program-card .tagline {
            font-size: 0.9rem;
            color: var(--text-tertiary);
            margin-bottom: 1.25rem;
            min-height: 40px;
        }

        .program-card .price {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .program-card .period {
            font-size: 0.85rem;
            color: var(--text-tertiary);
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .program-features {
            list-style: none;
            margin-bottom: auto;
            flex-grow: 1;
        }

        .program-features li {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 0.7rem;
            padding-left: 1.25rem;  /* REDUCED from 1.5rem */
            position: relative;
            line-height: 1.6;
        }

        .program-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-primary);
            font-weight: 700;
        }

        .program-cta {
            margin-top: 1.25rem;
            padding: 0.85rem 1.5rem;
            background: transparent;
            border: 2px solid var(--border-subtle);
            border-radius: 10px;
            color: #FFFFFF !important;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .program-cta:hover {
            background: rgba(134, 113, 255, 0.1);
            border-color: var(--accent-primary);
        }

        /* Detail Sections - Alternating CLEAN Version */
        .level-detail {
            padding: 3rem 0;
        }

        .level-detail:nth-child(even) {
            background: var(--bg-secondary);
        }

        .level-layout {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .level-layout.reverse {
            grid-template-columns: 1fr 2fr;
        }

        .level-header {
            margin-bottom: 2rem;
        }

        .level-tier {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        /* Clickable badge link in detail sections - VERTICAL stack */
        .level-badge-link {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: transform 0.3s ease;
            margin-bottom: 1rem;
            cursor: pointer;
        }

        .level-badge-link:hover {
            transform: scale(1.05);
        }

        .level-tier-label {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .level-tier-basic { color: var(--free-border); }
        .level-tier-silver { color: #C0C0C0; }
        .level-tier-gold { color: #FFD700; }
        .level-tier-diamond { color: #B9F2FF; }
        .level-tier-quantum { color: var(--accent-pink); }

        /* Increase detail section badge size */
        .level-header .badge-image-wrapper {
            width: 140px;
            height: 140px;
        }

        .level-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .level-header .subtitle {
            font-size: 1rem;
            color: var(--accent-secondary);
            font-weight: 600;
        }

        .level-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
        }

        .benefit-grid {
            display: grid;
            gap: 0.85rem;
        }

        .benefit-item {
            padding: 1rem 1.5rem;
            background: rgba(134, 113, 255, 0.25);
            border-left: 3px solid var(--accent-primary);
            border-radius: 8px;
            font-size: 1.05rem;
            color: var(--text-primary);
        }

        /* Pricing Box - No Longer Sticky */
        .level-pricing-box {
            padding: 2rem;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: 20px;
            text-align: center;
        }

        /* VyaparPrarambh pricing box - STICKY (no What It Includes section) */
        .level-pricing-box.sticky-free {
            position: sticky;
            top: 2rem;
        }

        .level-pricing-box .price-tag {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .level-pricing-box .price-period {
            font-size: 0.95rem;
            color: var(--text-tertiary);
            margin-bottom: 1.5rem;
        }

        .level-pricing-box .cta-button {
            display: block;
            width: 100%;
            padding: 1.15rem;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-dark));
            border: none;
            border-radius: 12px;
            color: #FFFFFF !important;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }

        .level-pricing-box .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(134, 113, 255, 0.4);
        }

        /* What's Included - Separate Section Below Pricing */
        .includes-section {
            margin-top: 2.5rem;
        }

        .includes-section h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .includes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .include-card {
            padding: 1rem 1.25rem;
            background: rgba(134, 113, 255, 0.2);
            border: 1px solid rgba(134, 113, 255, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .include-card:hover {
            background: rgba(134, 113, 255, 0.28);
            border-color: var(--accent-primary);
        }

        .include-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .include-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        /* Progression */
        .progression {
            background: var(--bg-secondary);
            padding: 3rem 0;
        }

        .progression-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .progression-card {
            text-align: center;
            padding: 1.5rem 1.25rem;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .progression-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-5px);
        }

        .progression-card .badge-image-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
        }

        .progression-card .tier {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }

        .progression-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .progression-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Where to Start */
        .start-guide {
            padding: 3rem 0;
        }

        .guide-interactive {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .guide-option {
            padding: 2rem 1.5rem;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .guide-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .guide-option:hover::before {
            transform: scaleX(1);
        }

        .guide-option:hover {
            border-color: var(--accent-primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(134, 113, 255, 0.2);
        }

        .guide-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: #FFFFFF;
        }

        .guide-option h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .guide-condition {
            font-size: 0.95rem;
            color: var(--accent-primary);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .guide-recommendation {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Center bottom 2 cards */
        .guide-interactive .guide-option:nth-child(4),
        .guide-interactive .guide-option:nth-child(5) {
            grid-column: span 1;
        }

        .guide-row-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 750px;
            margin: 1.5rem auto 0;
        }

        /* Gamification */
        .gamification {
            background: var(--bg-secondary);
            padding: 3rem 0;
            text-align: center;
        }

        .journey-path {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2.5rem;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 1rem 0;
        }

        .journey-step {
            padding: 1.5rem 2rem;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: 16px;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            transition: all 0.3s ease;
            white-space: nowrap;
            min-width: fit-content;
        }

        .journey-step:hover {
            border-color: var(--accent-primary);
            transform: scale(1.05);
        }

        .journey-arrow {
            font-size: 1.5rem;
            color: var(--accent-primary);
            flex-shrink: 0;
        }

        /* Weekly Support */
        .weekly-support {
            padding: 3rem 0;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .support-card {
            padding: 2rem 1.5rem;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .support-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-5px);
        }

        .support-day {
            font-size: 0.85rem;
            color: var(--accent-primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .support-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.4;
        }

        /* FAQ */
        .faq {
            background: var(--bg-secondary);
            padding: 3rem 0;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--accent-primary);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-question h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            background: rgba(134, 113, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem;
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Final CTA */
        .final-cta {
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(134, 113, 255, 0.15) 0%, transparent 70%);
            filter: blur(100px);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
            background: linear-gradient(135deg, #F8FAFC 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .final-cta .emphasis {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 2rem 0;
        }

        .final-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2.5rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .paid-programs {
                grid-template-columns: repeat(2, 1fr);
            }

            .level-layout,
            .level-layout.reverse {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .includes-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            /* Prevent horizontal scroll on mobile */
            body {
                overflow-x: hidden;
                max-width: 100vw;
                width: 100%;
            }

            .container {
                overflow-x: hidden;
                max-width: 100%;
                padding: 0 1.5rem;
            }

            section {
                overflow-x: hidden;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
                line-height: 1.2;
            }

            h1, h2, h3 {
                line-height: 1.2;
            }

            .section-header p,
            .hero-subtitle,
            .gamification p {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Mobile badge sizing */
            .badge-image-wrapper {
                width: 60px;
                height: 60px;
            }

            .free-program .badge-image-wrapper {
                width: 80px;
                height: 80px;
            }

            .program-card .badge-image-wrapper {
                width: 60px;
                height: 60px;
            }

            /* Mobile: LEFT ALIGN badge and title in cards */
            .program-tier-header {
                flex-direction: column;
                align-items: flex-start;  /* LEFT ALIGNED on mobile */
                gap: 0.4rem;
                margin-bottom: 0.75rem;
            }

            .program-card .badge-image-wrapper {
                width: 60px;
                height: 60px;
                margin: 0;  /* Remove auto margin for left alignment */
            }

            .program-tier-label {
                font-size: 0.8rem;
            }

            .level-header .badge-image-wrapper {
                width: 100px;
                height: 100px;
            }

            /* Mobile detail section - left aligned */
            .level-badge-link {
                flex-direction: column;
                align-items: flex-start;  /* LEFT ALIGNED on mobile */
                gap: 0.5rem;
                margin-bottom: 0.75rem;
            }

            .level-tier-label {
                font-size: 0.95rem;
            }

            .level-header h2 {
                margin-top: 0;
            }

            .journey-step .badge-image-wrapper {
                width: 70px;
                height: 70px;
            }

            .free-program {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
                justify-items: center;
                align-items: center;
                padding: 1.5rem;
            }

            .free-program .program-badge,
            .free-program .program-info,
            .free-program .program-price,
            .free-program .program-arrow {
                width: 100%;
                max-width: 100%;
            }

            .program-price {
                border-left: none;
                border-top: 1px solid var(--border-subtle);
                padding: 1.5rem 0 0;
            }

            .paid-programs {
                grid-template-columns: 1fr;
            }

            .intro-visual {
                grid-template-columns: 1fr;
            }

            .progression-grid {
                grid-template-columns: 1fr;
            }

            .guide-interactive {
                grid-template-columns: 1fr;
            }

            .guide-row-2 {
                grid-template-columns: 1fr;
            }

            .journey-path {
                flex-direction: column;
                gap: 0;
                overflow-x: visible;
                overflow-y: visible;
                padding: 1rem 0;
                width: 100%;
            }

            .journey-step {
                width: 100%;
                max-width: 100%;
                padding: 1.25rem 1rem;
                white-space: normal;
                text-align: center;
                min-width: auto;
                font-size: 1rem;
            }

            .journey-arrow {
                transform: rotate(90deg);
                font-size: 2rem;
                margin: 0.5rem 0;
            }

            .support-grid {
                grid-template-columns: 1fr;
            }

            /* Fix mobile layout - always content first, pricing below */
            .level-layout {
                display: flex;
                flex-direction: column;
            }

            .level-layout.reverse {
                display: flex;
                flex-direction: column;
            }

            /* Ensure pricing always comes second on mobile */
            .level-layout.reverse > div:first-child {
                order: 2;
            }

            .level-layout.reverse > div:last-child {
                order: 1;
            }

            /* Remove sticky on mobile for FREE card */
            .level-pricing-box.sticky-free {
                position: static;
            }

            /* MOBILE: Full width pricing boxes */
            .level-pricing-box {
                margin: 0;
                max-width: 100%;
                width: 100%;
            }

            .level-content {
                width: 100%;
            }

            .level-content h3 {
                width: 100%;
            }

            .benefit-grid {
                gap: 0.75rem;
                width: 100%;
            }

            .benefit-item {
                padding: 0.85rem 1.25rem;
                width: 100%;
            }

            /* MOBILE: Full width includes section */
            .includes-section {
                margin-top: 2rem;
                width: 100%;
            }

            .includes-grid {
                grid-template-columns: 1fr;
                width: 100%;
            }

            .include-card {
                padding: 1.25rem;
                width: 100%;
            }

            .intro {
                padding: 2rem 0;
            }

            .intro-text {
                padding: 1.5rem;
            }

            .intro-text p {
                margin-bottom: 0.75rem;
            }

            .intro-visual-box {
                padding: 2rem 1.5rem;
            }

            .final-cta h2 {
                font-size: 2rem;
            }

            .faq-question {
                padding: 1.15rem 1.5rem;
            }

            .faq-question h3 {
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 1.5rem 1.5rem;
                font-size: 0.9rem;
            }

            .support-card {
                padding: 1.5rem 1.25rem;
            }

            .support-day {
                font-size: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .support-card h3 {
                font-size: 1.1rem;
            }

            .weekly-support .section-header p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .final-cta-buttons {
                flex-direction: column;
            }

            .support-card h3 br {
                display: none;
            }

            .support-card h3 {
                font-size: 1.1rem;
            }

            .program-badge {
                max-width: 60%;
                min-width: fit-content;
            }

            .badge-free {
                width: auto;
                display: inline-block;
            }
        }/* End custom CSS */