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

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary: #E31B23;
            --primary-dark: #c4171e;
            --primary-light: #fff1f2;

            --dark-bg: #080808;
            --dark-section: #0d0d0d;

            --light-bg: #f7f7f8;
            --white: #ffffff;

            --text-dark: #151515;
            --text-medium: #3f3f3f;
            --text-light: #6b6b6b;
            --text-muted: #888888;

            --border: #e8e8e8;
            --success: #10b981;
            --gold: #FBBF24;

            --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.09);
            --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.13);

            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 30px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, Helvetica, Arial, sans-serif;

            background: #ffffff;
            color: var(--text-dark);

            line-height: 1.6;
            overflow-x: hidden;

            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        button,
        input,
        select,
        textarea {
            font: inherit;
        }

        button {
            cursor: pointer;
        }

        img {
            max-width: 100%;
        }


        /* =========================================================
   SHARED
========================================================= */

        .container {
            width: min(1200px, calc(100% - 40px));
            margin: 0 auto;
        }

        .page {
            display: none;
            animation: fadeIn 0.45s ease;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* =========================================================
   BUTTONS
========================================================= */

        .btn {
            min-height: 50px;

            padding: 0 1.4rem;

            border: none;
            border-radius: 50px;

            font-size: 0.95rem;
            font-weight: 750;

            text-decoration: none;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            gap: 8px;

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease;

            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg,
                    var(--primary),
                    #ff4148);

            color: white;

            box-shadow:
                0 8px 24px rgba(227, 27, 35, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);

            box-shadow:
                0 14px 32px rgba(227, 27, 35, 0.32);
        }

        .btn-secondary {
            background: white;

            color: var(--primary);

            border: 1.5px solid var(--primary);

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        }

        .btn-secondary:hover {
            background: var(--primary-light);

            transform: translateY(-2px);
        }


        /* =========================================================
   NAVBAR
========================================================= */

        .navbar {
            position: fixed;

            top: 0;
            left: 0;

            width: 100%;

            z-index: 1000;

            background: rgba(255, 255, 255, 0.94);

            border-bottom: 1px solid rgba(0, 0, 0, 0.07);

            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);

            padding: 0.8rem 0;
        }

        .navbar-content {
            width: min(1200px, calc(100% - 40px));

            margin: 0 auto;

            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;

            gap: 10px;

            font-size: 1.25rem;
            font-weight: 800;

            color: var(--primary);

            line-height: 1;
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;

            flex-shrink: 0;
        }

        .logo-icon img {
            width: 48px;
            height: 48px;

            object-fit: contain;

            display: block;
        }

        .logo-desktop-text {
            display: inline;
        }

        .logo-mobile-text {
            display: none;
        }

        .nav-right {
            display: flex;
            align-items: center;

            gap: 1.4rem;
        }

        .nav-right a {
            color: var(--text-light);

            text-decoration: none;

            font-size: 0.92rem;
            font-weight: 600;

            transition: color 0.25s ease;
        }

        .nav-right a:hover {
            color: var(--primary);
        }


        /* =========================================================
   LANDING
========================================================= */

        #landing {
            padding-top: 72px;

            position: relative;
            overflow: hidden;
        }


        /* =========================================================
   HERO
========================================================= */

        .hero {
            position: relative;

            min-height: calc(100vh - 72px);

            padding: 75px 0 90px;

            display: flex;
            align-items: center;

            overflow: hidden;
        }

        .hero .container {
            width: min(1240px, calc(100% - 40px));

            display: grid;

            grid-template-columns:
                minmax(0, 1.08fr) minmax(380px, 0.92fr);

            gap: 4.5rem;

            align-items: center;
        }


        /* =========================================================
   HERO DECORATIONS
========================================================= */

        .hero::before {
            content: "";

            position: absolute;

            width: 600px;
            height: 600px;

            left: -330px;
            top: -220px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(227, 27, 35, 0.14),
                    transparent 70%);

            filter: blur(30px);

            pointer-events: none;
        }

        .hero::after {
            content: "";

            position: absolute;

            width: 500px;
            height: 500px;

            right: -260px;
            bottom: -260px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(227, 27, 35, 0.13),
                    transparent 70%);

            filter: blur(30px);

            pointer-events: none;
        }

        .hero-left,
        .hero-right {
            position: relative;
            z-index: 2;
        }


        /* =========================================================
   HERO LEFT
========================================================= */

        .hero-left {
            max-width: 700px;
        }

        .hero-eyebrow {
            display: inline-flex;

            align-items: center;
            gap: 8px;

            padding: 7px 13px;

            margin-bottom: 1.35rem;

            border:
                1px solid rgba(227, 27, 35, 0.15);

            border-radius: 100px;

            background:
                rgba(255, 255, 255, 0.82);

            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);

            color: var(--primary);

            font-size: 0.72rem;
            font-weight: 800;

            letter-spacing: 0.08em;

            text-transform: uppercase;
        }

        .hero-eyebrow span {
            width: 7px;
            height: 7px;

            background: var(--primary);

            border-radius: 50%;

            box-shadow:
                0 0 0 4px rgba(227, 27, 35, 0.08);
        }

        .hero-left h1 {
            max-width: 720px;

            margin-bottom: 1.4rem;

            font-size: clamp(2.8rem, 5vw, 5rem);

            font-weight: 850;

            line-height: 1.02;

            letter-spacing: -0.055em;

            color: var(--text-dark);
        }

        .hero-left .highlight {
            color: var(--primary);
        }

        .hero-left>p {
            max-width: 650px;

            margin-bottom: 1.8rem;

            color: #555;

            font-size: 1.05rem;

            line-height: 1.75;
        }


        /* =========================================================
   HERO FEATURES
========================================================= */

        .hero-features {
            display: grid;

            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 0.8rem 1.8rem;

            max-width: 680px;

            padding: 0;
            margin: 0 0 2rem;

            list-style: none;
        }

        .hero-features li {
            display: flex;

            align-items: center;

            gap: 9px;

            color: #303030;

            font-size: 0.9rem;

            font-weight: 650;
        }

        .hero-features li::before {
            content: "✓";

            width: 22px;
            height: 22px;

            flex: 0 0 22px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(227, 27, 35, 0.09);

            color: var(--primary);

            font-size: 0.72rem;
            font-weight: 900;
        }


        /* =========================================================
   HERO BUTTONS
========================================================= */

        .hero-buttons {
            display: flex;

            align-items: center;

            gap: 0.8rem;

            flex-wrap: wrap;
        }

        .hero-buttons .btn {
            min-height: 52px;
        }

        .hero-trust {
            display: flex;

            align-items: center;

            gap: 9px;

            margin-top: 1.25rem;

            color: #777;

            font-size: 0.78rem;
        }

        .hero-trust>span:first-child {
            width: 20px;
            height: 20px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: rgba(16, 185, 129, 0.1);

            color: var(--success);

            font-weight: 900;
        }

        .hero-trust strong {
            color: #333;
        }


        /* =========================================================
   HERO RIGHT OFFER CARD
========================================================= */

        .hero-right {
            min-height: 540px;

            padding: 3rem;

            border-radius: var(--radius-xl);

            overflow: hidden;

            color: white;

            display: flex;

            align-items: center;
            justify-content: center;

            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.22);
        }

        .hero-image {
            position: absolute;

            inset: 0;

            background-image: url("hero-img.jpg");

            background-size: cover;

            background-position: center;

            transform: scale(1.03);

            z-index: 0;
        }

        .hero-overlay {
            position: absolute;

            inset: 0;

            background:
                linear-gradient(135deg,
                    rgba(155, 20, 20, 0.70),
                    rgba(225, 36, 43, 0.78));

            z-index: 1;
        }

        .hero-overlay::after {
            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, 0.38),
                    transparent 80%);
        }

        .offer-content {
            position: relative;

            z-index: 3;

            width: 100%;

            max-width: 430px;
        }

        .offer-badge {
            display: inline-flex;

            align-items: center;

            padding: 7px 12px;

            margin-bottom: 1.3rem;

            border:
                1px solid rgba(255, 255, 255, 0.30);

            border-radius: 100px;

            background:
                rgba(255, 255, 255, 0.13);

            backdrop-filter: blur(10px);

            font-size: 0.68rem;

            font-weight: 800;

            letter-spacing: 0.09em;
        }

        .hero-right h2 {
            max-width: 400px;

            margin-bottom: 1rem;

            font-size: 2.65rem;

            line-height: 1.05;

            letter-spacing: -0.045em;

            font-weight: 850;
        }

        .offer-subtitle {
            max-width: 400px;

            margin-bottom: 1.5rem;

            color:
                rgba(255, 255, 255, 0.88);

            font-size: 0.96rem;

            line-height: 1.65;
        }


        /* =========================================================
   PRICE
========================================================= */

        .price-box {
            padding: 1.2rem 1.3rem;

            margin-bottom: 1rem;

            border:
                1px solid rgba(255, 255, 255, 0.20);

            border-radius: 16px;

            background:
                rgba(0, 0, 0, 0.20);

            backdrop-filter: blur(12px);
        }

        .price-label {
            display: block;

            margin-bottom: 0.4rem;

            color:
                rgba(255, 255, 255, 0.68);

            font-size: 0.68rem;

            font-weight: 800;

            letter-spacing: 0.1em;
        }

        .price-row {
            display: flex;

            align-items: baseline;
        }

        .price-currency {
            font-size: 1.25rem;

            font-weight: 700;
        }

        .price-amount {
            font-size: 3.35rem;

            font-weight: 900;

            line-height: 1;

            letter-spacing: -0.05em;
        }

        .price-desc {
            margin-top: 0.5rem;

            color:
                rgba(255, 255, 255, 0.68);

            font-size: 0.73rem;
        }

        .hero-right .btn-primary {
            width: 100%;

            min-height: 55px;

            background: white;

            color: var(--primary);

            box-shadow:
                0 8px 25px rgba(0, 0, 0, 0.16);
        }

        .hero-right .btn-primary:hover {
            background: #fff;

            transform: translateY(-3px);

            box-shadow:
                0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .offer-note {
            margin-top: 0.85rem;

            text-align: center;

            color:
                rgba(255, 255, 255, 0.70);

            font-size: 0.7rem;
        }


        /* =========================================================
   GENERAL SECTION STYLES
========================================================= */

        .problem-section,
        .solution-section,
        .modules-section,
        .proof-section,
        .offer-section,
        .faq-section {
            padding: 100px 0;
        }

        .problem-section {
            background: #ffffff;
        }

        .solution-section {
            background: var(--light-bg);

            text-align: center;
        }

        .modules-section {
            background: #ffffff;
        }

        .proof-section {
            background: var(--dark-bg);

            color: white;
        }

        .offer-section {
            background: var(--light-bg);
        }

        .faq-section {
            background: white;
        }

        .section-eyebrow {
            display: inline-flex;

            align-items: center;

            margin-bottom: 1rem;

            color: var(--primary);

            font-size: 0.72rem;

            font-weight: 850;

            letter-spacing: 0.13em;

            text-transform: uppercase;
        }

        .section-eyebrow::before {
            content: "";

            width: 22px;
            height: 2px;

            margin-right: 8px;

            background: var(--primary);

            border-radius: 10px;
        }

        .problem-section h2,
        .solution-section h2,
        .modules-section h2,
        .proof-section h2,
        .faq-section h2 {
            max-width: 850px;

            margin-bottom: 1rem;

            font-size: clamp(2.1rem, 4vw, 3.6rem);

            line-height: 1.08;

            letter-spacing: -0.045em;

            font-weight: 850;
        }

        .solution-section h2 {
            margin-left: auto;
            margin-right: auto;
        }

        .highlight {
            color: var(--primary);
        }

        .section-intro {
            max-width: 700px;

            margin-bottom: 3rem;

            color: var(--text-light);

            font-size: 1rem;

            line-height: 1.75;
        }

        .solution-section .section-intro {
            margin-left: auto;
            margin-right: auto;
        }


        /* =========================================================
   PROBLEM SECTION
========================================================= */

        .problem-grid {
            display: grid;

            grid-template-columns:
                repeat(4, minmax(0, 1fr));

            gap: 1.2rem;

            margin-top: 3rem;
        }

        .problem-card {
            padding: 1.7rem;

            border:
                1px solid var(--border);

            border-radius: var(--radius-md);

            background: white;

            box-shadow: var(--shadow-sm);

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }

        .problem-card:hover {
            transform: translateY(-5px);

            border-color:
                rgba(227, 27, 35, 0.25);

            box-shadow: var(--shadow-md);
        }

        .problem-icon {
            width: 42px;
            height: 42px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 1.1rem;

            border-radius: 12px;

            background:
                rgba(227, 27, 35, 0.08);

            color: var(--primary);

            font-size: 1.4rem;

            font-weight: 700;
        }

        .problem-card h3 {
            margin-bottom: 0.55rem;

            font-size: 1.05rem;

            line-height: 1.3;
        }

        .problem-card p {
            color: var(--text-light);

            font-size: 0.88rem;

            line-height: 1.65;
        }


        /* =========================================================
   MODULES
========================================================= */

        .modules-grid {
            display: grid;

            grid-template-columns:
                repeat(3, minmax(0, 1fr));

            gap: 1.25rem;

            margin-top: 2.5rem;

            margin-bottom: 3rem;
        }

        .module-card {
            position: relative;

            padding: 2rem;

            min-height: 230px;

            border:
                1px solid var(--border);

            border-radius: var(--radius-md);

            background: white;

            box-shadow: var(--shadow-sm);

            overflow: hidden;

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
        }

        .module-card::after {
            content: "";

            position: absolute;

            right: -50px;
            bottom: -50px;

            width: 140px;
            height: 140px;

            border-radius: 50%;

            background:
                rgba(227, 27, 35, 0.04);

            pointer-events: none;
        }

        .module-card:hover {
            transform: translateY(-6px);

            border-color:
                rgba(227, 27, 35, 0.25);

            box-shadow: var(--shadow-md);
        }

        .module-number {
            display: inline-flex;

            align-items: center;
            justify-content: center;

            width: 42px;
            height: 42px;

            margin-bottom: 1.2rem;

            border-radius: 11px;

            background: var(--primary);

            color: white;

            font-size: 0.8rem;

            font-weight: 850;

            letter-spacing: 0.04em;
        }

        .module-card h3 {
            max-width: 330px;

            margin-bottom: 0.65rem;

            font-size: 1.12rem;

            line-height: 1.35;

            font-weight: 750;
        }

        .module-card p {
            color: var(--text-light);

            font-size: 0.88rem;

            line-height: 1.65;
        }


        /* =========================================================
   PROOF SECTION
========================================================= */

        .proof-section {
            position: relative;

            overflow: hidden;
        }

        .proof-section::before {
            content: "";

            position: absolute;

            width: 500px;
            height: 500px;

            top: -250px;
            right: -200px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(227, 27, 35, 0.22),
                    transparent 70%);

            filter: blur(30px);

            pointer-events: none;
        }

        .proof-section .container {
            position: relative;
            z-index: 2;
        }

        .proof-section h2 {
            color: white;
        }

        .proof-section .section-intro {
            color: rgba(255, 255, 255, 0.65);
        }

        .proof-stats {
            display: grid;

            grid-template-columns:
                repeat(4, minmax(0, 1fr));

            gap: 1rem;

            margin: 3rem 0;
        }

        .proof-card {
            padding: 1.5rem;

            border:
                1px solid rgba(255, 255, 255, 0.10);

            border-radius: 16px;

            background:
                rgba(255, 255, 255, 0.055);

            backdrop-filter: blur(10px);
        }

        .proof-card span {
            display: block;

            margin-bottom: 0.6rem;

            color:
                rgba(255, 255, 255, 0.60);

            font-size: 0.72rem;

            font-weight: 650;

            text-transform: uppercase;

            letter-spacing: 0.04em;
        }

        .proof-card strong {
            display: block;

            margin-bottom: 0.3rem;

            color: white;

            font-size: 1.8rem;

            line-height: 1.1;
        }

        .proof-card small {
            color:
                rgba(255, 255, 255, 0.48);

            font-size: 0.72rem;
        }


        /* =========================================================
   TESTIMONIALS
========================================================= */

        .student-results {
            display: grid;

            grid-template-columns:
                repeat(3, minmax(0, 1fr));

            gap: 1.2rem;
        }

        .testimonial-card {
            padding: 1.7rem;

            border:
                1px solid rgba(255, 255, 255, 0.10);

            border-radius: 18px;

            background:
                rgba(255, 255, 255, 0.045);
        }

        .testimonial-card p {
            margin-bottom: 1.4rem;

            color:
                rgba(255, 255, 255, 0.88);

            font-size: 0.94rem;

            line-height: 1.7;
        }

        .testimonial-card strong {
            display: block;

            color: white;

            font-size: 0.88rem;
        }

        .testimonial-card span {
            display: block;

            margin-top: 2px;

            color:
                rgba(255, 255, 255, 0.48);

            font-size: 0.75rem;
        }


        /* =========================================================
   OFFER SECTION
========================================================= */

        .offer-card {
            display: grid;

            grid-template-columns:
                minmax(0, 1.25fr) minmax(300px, 0.75fr);

            gap: 3rem;

            align-items: center;

            padding: 3.5rem;

            border-radius: var(--radius-xl);

            background:
                linear-gradient(135deg,
                    #111111,
                    #1c1c1c);

            color: white;

            box-shadow: var(--shadow-lg);

            overflow: hidden;

            position: relative;
        }

        .offer-card::before {
            content: "";

            position: absolute;

            width: 450px;
            height: 450px;

            right: -220px;
            top: -220px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(227, 27, 35, 0.30),
                    transparent 70%);
        }

        .offer-card-content,
        .offer-price {
            position: relative;

            z-index: 2;
        }

        .offer-card-content h2 {
            max-width: 650px;

            margin-bottom: 1rem;

            font-size: clamp(2rem, 4vw, 3.2rem);

            line-height: 1.08;

            letter-spacing: -0.04em;
        }

        .offer-card-content>p {
            max-width: 600px;

            margin-bottom: 1.6rem;

            color:
                rgba(255, 255, 255, 0.68);

            font-size: 0.95rem;

            line-height: 1.7;
        }

        .offer-list {
            display: grid;

            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 0.75rem;

            list-style: none;
        }

        .offer-list li {
            color:
                rgba(255, 255, 255, 0.88);

            font-size: 0.86rem;
        }


        /* =========================================================
   OFFER PRICE
========================================================= */

        .offer-price {
            padding: 2rem;

            border:
                1px solid rgba(255, 255, 255, 0.12);

            border-radius: 20px;

            background:
                rgba(255, 255, 255, 0.06);

            text-align: center;

            backdrop-filter: blur(10px);
        }

        .offer-price>span {
            display: block;

            margin-bottom: 1rem;

            color:
                rgba(255, 255, 255, 0.55);

            font-size: 0.7rem;

            font-weight: 800;

            letter-spacing: 0.08em;
        }

        .old-price {
            color:
                rgba(255, 255, 255, 0.4);

            font-size: 1rem;

            text-decoration: line-through;
        }

        .current-price {
            margin: 0.1rem 0;

            color: white;

            font-size: clamp(3rem, 5vw, 4.2rem);

            font-weight: 900;

            line-height: 1;

            letter-spacing: -0.06em;
        }

        .offer-price p {
            margin: 0.7rem 0 1.3rem;

            color:
                rgba(255, 255, 255, 0.55);

            font-size: 0.76rem;
        }

        .offer-price .btn {
            width: 100%;
        }

        .offer-price small {
            display: block;

            margin-top: 0.75rem;

            color:
                rgba(255, 255, 255, 0.45);

            font-size: 0.68rem;
        }


        /* =========================================================
   FAQ
========================================================= */

        .faq-section .container {
            max-width: 900px;
        }

        .faq-list {
            margin-top: 2.5rem;

            border-top:
                1px solid var(--border);
        }

        .faq-item {
            padding: 1.5rem 0;

            border-bottom:
                1px solid var(--border);
        }

        .faq-item h3 {
            margin-bottom: 0.55rem;

            color: var(--text-dark);

            font-size: 1rem;

            font-weight: 750;
        }

        .faq-item p {
            max-width: 760px;

            color: var(--text-light);

            font-size: 0.9rem;

            line-height: 1.7;
        }


        /* =========================================================
   FINAL CTA
========================================================= */

        .final-cta {
            padding: 110px 0;

            background:
                linear-gradient(135deg,
                    var(--primary),
                    #b9141b);

            color: white;

            text-align: center;

            position: relative;

            overflow: hidden;
        }

        .final-cta::before {
            content: "";

            position: absolute;

            width: 500px;
            height: 500px;

            left: -220px;
            top: -280px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, 0.07);
        }

        .final-cta::after {
            content: "";

            position: absolute;

            width: 400px;
            height: 400px;

            right: -180px;
            bottom: -240px;

            border-radius: 50%;

            background:
                rgba(0, 0, 0, 0.10);
        }

        .final-cta .container {
            position: relative;

            z-index: 2;
        }

        .final-cta .section-eyebrow {
            color: rgba(255, 255, 255, 0.75);

            justify-content: center;
        }

        .final-cta .section-eyebrow::before {
            background: rgba(255, 255, 255, 0.7);
        }

        .final-cta h2 {
            max-width: 800px;

            margin: 0 auto 1rem;

            font-size: clamp(2.3rem, 5vw, 4rem);

            line-height: 1.05;

            letter-spacing: -0.05em;
        }

        .final-cta p {
            max-width: 600px;

            margin: 0 auto 2rem;

            color:
                rgba(255, 255, 255, 0.82);

            font-size: 1rem;

            line-height: 1.7;
        }

        .final-cta .btn-primary {
            background: white;

            color: var(--primary);

            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.18);
        }

        .final-cta .btn-primary:hover {
            background: #fff;

            box-shadow:
                0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .youtube-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 12px;
            background: #000;
            margin-top: 1rem;
        }

        .youtube-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }


        /* =========================================================
   FOOTER
========================================================= */

        footer {
            padding: 2rem 0;

            background: #080808;

            color:
                rgba(255, 255, 255, 0.55);
        }

        footer .container {
            display: flex;

            justify-content: space-between;

            align-items: center;

            gap: 1rem;
        }

        footer p {
            font-size: 0.75rem;
        }


        /* =========================================================
   PAYMENT PAGE
========================================================= */

        .payment-container {
            width: min(600px, calc(100% - 40px));

            margin: 100px auto;

            padding: 3rem;

            background: white;

            border-radius: 20px;

            box-shadow: var(--shadow-lg);
        }

        .payment-container h2 {
            margin-bottom: 1.5rem;

            font-size: 2rem;

            line-height: 1.2;
        }

        .form-group {
            margin-bottom: 1.4rem;
        }

        .form-group label {
            display: block;

            margin-bottom: 0.5rem;

            color: var(--text-dark);

            font-size: 0.9rem;

            font-weight: 650;
        }

        .form-group input,
        .form-group select {
            width: 100%;

            padding: 0.9rem 1rem;

            border: 1.5px solid #ddd;

            border-radius: 10px;

            background: white;

            color: var(--text-dark);

            font-size: 1rem;

            transition:
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;

            border-color: var(--primary);

            box-shadow:
                0 0 0 4px rgba(227, 27, 35, 0.08);
        }

        .order-summary {
            padding: 1.5rem;

            margin-bottom: 1.5rem;

            border-radius: 12px;

            background: var(--light-bg);
        }

        .summary-row {
            display: flex;

            justify-content: space-between;

            gap: 1rem;

            margin-bottom: 0.75rem;
        }

        .summary-row.total {
            padding-top: 1rem;

            border-top: 1px solid #ddd;

            color: var(--primary);

            font-size: 1.1rem;

            font-weight: 750;
        }

        .payment-form {
            width: 100%;
        }

        .payment-form .btn-primary {
            width: 100%;

            min-height: 55px;

            font-size: 1rem;
        }


        /* =========================================================
   REGISTER
========================================================= */

        .register-container {
            width: min(600px, calc(100% - 40px));

            margin: 100px auto;

            padding: 3rem;

            background: white;

            border-radius: 20px;

            box-shadow: var(--shadow-lg);
        }

        .register-container h2 {
            margin-bottom: 0.5rem;

            font-size: 2rem;
        }

        .register-container p {
            margin-bottom: 2rem;

            color: var(--text-light);
        }


        /* =========================================================
   LOGIN
========================================================= */

        .login-container {
            width: min(500px, calc(100% - 40px));

            margin: 100px auto;

            padding: 3rem;

            background: white;

            border-radius: 20px;

            box-shadow: var(--shadow-lg);
        }

        .login-container h2 {
            margin-bottom: 2rem;

            font-size: 2rem;
        }

        .login-form .btn-primary {
            width: 100%;

            min-height: 52px;
        }

        .login-footer {
            margin-top: 1.5rem;

            text-align: center;
        }

        .login-footer a {
            color: var(--primary);

            text-decoration: none;

            font-weight: 650;
        }


        /* =========================================================
   DASHBOARD
========================================================= */

        .dashboard-header {
            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 1.5rem;

            padding: 2rem;

            margin-bottom: 2rem;

            border-radius: 18px;

            background:
                linear-gradient(135deg,
                    var(--primary),
                    #ff4444);

            color: white;
        }

        .dashboard-header h1 {
            margin-bottom: 0.2rem;

            font-size: 2rem;
        }

        .user-info {
            display: flex;

            align-items: center;

            gap: 1rem;
        }

        .user-avatar {
            width: 50px;
            height: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, 0.20);

            font-size: 1.3rem;
        }

        .logout-btn {
            padding: 0.6rem 1.3rem;

            border:
                1px solid rgba(255, 255, 255, 0.7);

            border-radius: 10px;

            background:
                rgba(255, 255, 255, 0.12);

            color: white;

            transition: background 0.25s ease;
        }

        .logout-btn:hover {
            background:
                rgba(255, 255, 255, 0.22);
        }


        /* =========================================================
   DASHBOARD MODULES
========================================================= */

        .module-status {
            display: inline-flex;

            align-items: center;

            padding: 0.4rem 0.9rem;

            border-radius: 20px;

            background: var(--light-bg);

            color: var(--primary);

            font-size: 0.78rem;

            font-weight: 650;
        }

        .module-status.completed {
            background:
                rgba(16, 185, 129, 0.1);

            color: var(--success);
        }

        .empty-state {
            padding: 4rem 2rem;

            border-radius: 15px;

            background: var(--light-bg);

            text-align: center;
        }

        .empty-state-icon {
            margin-bottom: 1rem;

            font-size: 4rem;
        }

        .empty-state h3 {
            margin-bottom: 0.5rem;

            font-size: 1.5rem;
        }

        .empty-state p {
            margin-bottom: 2rem;

            color: var(--text-light);
        }


        /* =========================================================
   SUCCESS MESSAGE
========================================================= */

        .success-message {
            display: none;

            padding: 1rem;

            margin-bottom: 2rem;

            border-left:
                4px solid var(--success);

            border-radius: 8px;

            background:
                rgba(16, 185, 129, 0.1);

            color: #087f5b;
        }

        .success-message.show {
            display: block;

            animation: slideIn 0.3s ease-out;
        }

        /* ==========================================
   MODULE PAGE
========================================== */

        #module {
            min-height: 100vh;
            padding-top: 90px;
            padding-bottom: 80px;
            background:
                radial-gradient(circle at top right,
                    rgba(227, 27, 35, 0.08),
                    transparent 35%),
                #f8fafc;
        }

        /* ==========================================
   MODULE HEADER
========================================== */

        .module-page-header {
            position: relative;
            overflow: hidden;

            padding: 55px 0 70px;

            /* Background image + dark overlay */
            background:
                linear-gradient(rgba(0, 0, 0, 0.78),
                    rgba(0, 0, 0, 0.78)),
                url("bls.jpeg");

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            color: white;
        }

        /* Optional subtle red overlay/glow */
        .module-page-header::before {
            content: "";

            position: absolute;
            inset: 0;

            background:
                linear-gradient(135deg,
                    rgba(227, 27, 35, 0.18),
                    transparent 55%);

            pointer-events: none;
        }

        /* Content stays above overlay */
        .module-page-header .container {
            position: relative;
            z-index: 2;
        }

        /* ==========================================
   BACK BUTTON
========================================== */

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            margin-bottom: 45px;

            padding: 11px 18px;

            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 10px;

            background: rgba(255, 255, 255, 0.08);

            color: white;

            font-size: 14px;
            font-weight: 600;

            cursor: pointer;

            transition:
                background 0.25s ease,
                transform 0.25s ease,
                border-color 0.25s ease;
        }

        .back-button:hover {
            background: #e31b23;
            border-color: #e31b23;
            transform: translateX(-4px);
        }

        .back-button i {
            font-size: 14px;
        }

        /* ==========================================
   MODULE ICON
========================================== */

        .module-page-icon {
            width: 78px;
            height: 78px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 25px;

            border-radius: 20px;

            background: linear-gradient(135deg,
                    #e31b23,
                    #b91c1c);

            box-shadow:
                0 15px 35px rgba(227, 27, 35, 0.3);

            font-size: 30px;

            color: white;
        }

        .module-page-icon i {
            font-size: 30px;
        }

        /* ==========================================
   MODULE TITLE
========================================== */

        .module-page-header h1 {
            position: relative;

            max-width: 850px;

            margin: 0 0 18px;

            font-size: clamp(2rem, 4vw, 3.5rem);

            line-height: 1.1;

            font-weight: 800;

            letter-spacing: -1px;
        }

        .module-page-header p {
            max-width: 750px;

            margin: 0;

            color: rgba(255, 255, 255, 0.72);

            font-size: 17px;

            line-height: 1.7;
        }

        /* ==========================================
   VIDEOS SECTION
========================================== */

        .videos-section {
            padding: 60px 0 20px;
        }

        .videos-section h2 {
            margin: 0 0 10px;

            color: #111827;

            font-size: clamp(1.7rem, 3vw, 2.3rem);

            font-weight: 800;
        }

        .section-description {
            margin: 0 0 35px;

            color: #6b7280;

            font-size: 15px;

            line-height: 1.7;
        }

        /* ==========================================
   VIDEO CONTAINER
========================================== */

        .videos-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* ==========================================
   VIDEO CARD
========================================== */

        .video-card {
            display: grid;

            grid-template-columns: 55px 1fr;

            gap: 22px;

            padding: 25px;

            background: white;

            border: 1px solid #e5e7eb;

            border-radius: 18px;

            box-shadow:
                0 8px 30px rgba(15, 23, 42, 0.06);

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }

        .video-card:hover {
            transform: translateY(-4px);

            border-color: rgba(227, 27, 35, 0.25);

            box-shadow:
                0 18px 45px rgba(15, 23, 42, 0.1);
        }

        /* ==========================================
   VIDEO NUMBER
========================================== */

        .video-number {
            width: 50px;
            height: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 14px;

            background: rgba(227, 27, 35, 0.08);

            color: #e31b23;

            font-size: 18px;

            font-weight: 800;
        }

        /* ==========================================
   VIDEO CONTENT
========================================== */

        .video-content {
            min-width: 0;
        }

        .video-content h3 {
            margin: 0 0 8px;

            color: #111827;

            font-size: 20px;

            font-weight: 750;
        }

        .video-content>p {
            margin: 0 0 20px;

            color: #6b7280;

            font-size: 14px;

            line-height: 1.6;
        }

        /* ==========================================
   YOUTUBE VIDEO
========================================== */

        .youtube-wrapper {
            position: relative;

            width: 100%;

            overflow: hidden;

            aspect-ratio: 16 / 9;

            background: #000;

            border-radius: 14px;

            box-shadow:
                0 12px 35px rgba(0, 0, 0, 0.12);
        }

        .youtube-wrapper iframe {
            position: absolute;

            inset: 0;

            width: 100%;
            height: 100%;

            border: none;
        }

        /* ==========================================
   EMPTY VIDEOS
========================================== */

        .videos-container:empty::before {
            content: "No videos are available for this module yet.";

            display: block;

            padding: 50px;

            text-align: center;

            background: white;

            border: 1px dashed #d1d5db;

            border-radius: 16px;

            color: #6b7280;

            font-size: 15px;
        }

        .video-coming-soon {
            min-height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;

            padding: 40px 20px;

            background:
                linear-gradient(135deg,
                    #f8fafc,
                    #f1f5f9);

            border: 1px solid #e5e7eb;
            border-radius: 16px;
        }

        .coming-soon-icon {
            width: 70px;
            height: 70px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 18px;

            background: rgba(227, 27, 35, 0.1);
            color: #e31b23;

            border-radius: 50%;

            font-size: 28px;
        }

        .video-coming-soon h4 {
            margin: 0 0 8px;

            font-size: 22px;
            font-weight: 700;

            color: #111827;
        }

        .video-coming-soon p {
            max-width: 450px;

            margin: 0;

            color: #6b7280;
            font-size: 15px;
            line-height: 1.6;
        }

        /* ==========================================
   MOBILE
========================================== */

        @media (max-width: 768px) {

            #module {
                padding-top: 70px;
            }

            .module-page-header {
                padding: 40px 0 55px;
            }

            .back-button {
                margin-bottom: 32px;
            }

            .module-page-icon {
                width: 65px;
                height: 65px;

                border-radius: 16px;
            }

            .module-page-icon i {
                font-size: 25px;
            }

            .module-page-header h1 {
                font-size: 2rem;
            }

            .module-page-header p {
                font-size: 15px;
            }

            .videos-section {
                padding-top: 40px;
            }

            .video-card {
                grid-template-columns: 1fr;

                gap: 18px;

                padding: 18px;
            }

            .video-number {
                width: 42px;
                height: 42px;

                border-radius: 12px;

                font-size: 15px;
            }

            .video-content h3 {
                font-size: 18px;
            }

            .youtube-wrapper {
                border-radius: 10px;
            }
        }

        /* ==========================================
   SMALL MOBILE
========================================== */

        @media (max-width: 480px) {

            #module {
                padding-top: 60px;
            }

            .module-page-header {
                padding: 30px 0 45px;
            }

            .module-page-header h1 {
                font-size: 1.75rem;
            }

            .module-page-header p {
                font-size: 14px;
            }

            .videos-section h2 {
                font-size: 1.6rem;
            }

            .video-card {
                padding: 15px;
                border-radius: 14px;
            }
        }


        @keyframes slideIn {
            from {
                transform: translateX(-20px);

                opacity: 0;
            }

            to {
                transform: translateX(0);

                opacity: 1;
            }
        }





        /* =========================================================
   TABLET
========================================================= */

        @media (max-width: 1050px) {

            .hero .container {
                grid-template-columns:
                    minmax(0, 1fr) minmax(340px, 0.8fr);

                gap: 2.5rem;
            }

            .hero-right {
                min-height: 500px;

                padding: 2.5rem;
            }

            .hero-left h1 {
                font-size: clamp(2.6rem, 5vw, 4rem);
            }

            .problem-grid {
                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }

            .modules-grid {
                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }

            .proof-stats {
                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }

            .offer-card {
                padding: 2.5rem;

                gap: 2rem;
            }
        }


        /* =========================================================
   TABLET / MOBILE
========================================================= */

        @media (max-width: 850px) {

            .hero {
                min-height: auto;

                padding: 55px 0 70px;
            }

            .hero .container {
                display: flex;

                flex-direction: column;

                align-items: stretch;

                gap: 3rem;
            }

            .hero-left {
                max-width: 750px;
            }

            .hero-right {
                width: 100%;

                min-height: 500px;
            }

            .student-results {
                grid-template-columns: 1fr;
            }

            .offer-card {
                grid-template-columns: 1fr;
            }

            .offer-price {
                max-width: 500px;

                width: 100%;

                margin: 0 auto;
            }
        }


        /* =========================================================
   MOBILE
========================================================= */

        @media (max-width: 650px) {

            .container {
                width: min(100% - 30px, 1200px);
            }

            /* Navbar */

            .navbar {
                padding: 0.65rem 0;
            }

            .navbar-content {
                width: calc(100% - 30px);
            }

            .logo {
                gap: 7px;

                font-size: 1.05rem;
            }

            .logo-icon img {
                width: 40px;
                height: 40px;
            }

            .logo-desktop-text {
                display: none !important;
            }

            .logo-mobile-text {
                display: inline !important;
            }

            .nav-right {
                gap: 0.5rem;
            }

            .nav-right a {
                display: none;
            }

            .nav-right .btn {
                min-height: 42px;

                padding: 0 1rem;

                border-radius: 8px;

                font-size: 0.82rem;
            }

            /* Landing */

            #landing {
                padding-top: 60px;
            }

            /* Hero */

            .hero {
                padding: 40px 0 55px;
            }

            .hero .container {
                width: calc(100% - 30px);

                gap: 2.5rem;
            }

            .hero-eyebrow {
                padding: 6px 10px;

                font-size: 0.62rem;

                letter-spacing: 0.05em;
            }

            .hero-left h1 {
                margin-bottom: 1.15rem;

                font-size:
                    clamp(2.35rem, 11vw, 3.4rem);

                line-height: 1.02;

                letter-spacing: -0.05em;
            }

            .hero-left>p {
                margin-bottom: 1.5rem;

                font-size: 0.93rem;

                line-height: 1.7;
            }

            .hero-features {
                grid-template-columns: 1fr;

                gap: 0.65rem;

                margin-bottom: 1.7rem;
            }

            .hero-features li {
                align-items: flex-start;

                font-size: 0.84rem;
            }

            .hero-features li::before {
                margin-top: 1px;
            }

            .hero-buttons {
                flex-direction: column;

                align-items: stretch;

                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-trust {
                font-size: 0.7rem;
            }

            /* Hero card */

            .hero-right {
                min-height: 520px;

                padding: 2rem 1.4rem;

                border-radius: 22px;
            }

            .hero-right h2 {
                font-size:
                    clamp(2rem, 9vw, 2.5rem);
            }

            .offer-subtitle {
                font-size: 0.88rem;
            }

            .price-box {
                padding: 1.1rem;
            }

            .price-amount {
                font-size: 3rem;
            }

            /* Sections */

            .problem-section,
            .solution-section,
            .modules-section,
            .proof-section,
            .offer-section,
            .faq-section {
                padding: 70px 0;
            }

            .section-eyebrow {
                font-size: 0.65rem;
            }

            .problem-section h2,
            .solution-section h2,
            .modules-section h2,
            .proof-section h2,
            .faq-section h2 {
                font-size:
                    clamp(2rem, 9vw, 2.7rem);

                letter-spacing: -0.045em;
            }

            .section-intro {
                margin-bottom: 2rem;

                font-size: 0.9rem;
            }

            /* Problem */

            .problem-grid {
                grid-template-columns: 1fr;

                gap: 1rem;

                margin-top: 2rem;
            }

            .problem-card {
                padding: 1.4rem;
            }

            /* Modules */

            .modules-grid {
                grid-template-columns: 1fr;

                gap: 1rem;

                margin-top: 2rem;
            }

            .module-card {
                min-height: auto;

                padding: 1.5rem;
            }

            .module-card h3 {
                font-size: 1.05rem;
            }

            /* Proof */

            .proof-stats {
                grid-template-columns: 1fr;

                gap: 0.8rem;

                margin: 2rem 0;
            }

            .proof-card {
                padding: 1.3rem;
            }

            .proof-card strong {
                font-size: 1.7rem;
            }

            .student-results {
                gap: 0.9rem;
            }

            .testimonial-card {
                padding: 1.4rem;
            }

            /* Offer */

            .offer-card {
                padding: 2rem 1.2rem;

                border-radius: 22px;

                gap: 2rem;
            }

            .offer-card-content h2 {
                font-size: 2rem;
            }

            .offer-list {
                grid-template-columns: 1fr;

                gap: 0.65rem;
            }

            .offer-list li {
                font-size: 0.82rem;
            }

            .offer-price {
                padding: 1.5rem 1.2rem;
            }

            .current-price {
                font-size: 3.4rem;
            }

            /* FAQ */

            .faq-list {
                margin-top: 2rem;
            }

            .faq-item {
                padding: 1.25rem 0;
            }

            .faq-item h3 {
                font-size: 0.95rem;
            }

            .faq-item p {
                font-size: 0.84rem;
            }

            /* Final CTA */

            .final-cta {
                padding: 75px 0;
            }

            .final-cta h2 {
                font-size:
                    clamp(2.2rem, 10vw, 3rem);
            }

            .final-cta p {
                font-size: 0.9rem;
            }

            /* Footer */

            footer {
                padding: 1.5rem 0;
            }

            footer .container {
                flex-direction: column;

                align-items: center;

                text-align: center;

                gap: 0.35rem;
            }

            footer p {
                font-size: 0.68rem;
            }

            /* Forms */

            .payment-container,
            .register-container,
            .login-container {
                width: calc(100% - 30px);

                margin: 85px auto;

                padding: 1.5rem;

                border-radius: 16px;
            }

            .payment-container h2,
            .register-container h2,
            .login-container h2 {
                font-size: 1.5rem;
            }

            /* Dashboard */

            .dashboard-header {
                flex-direction: column;

                align-items: flex-start;

                padding: 1.3rem;

                gap: 1rem;

                border-radius: 13px;
            }

            .dashboard-header h1 {
                font-size: 1.35rem;
            }

            .user-info {
                width: 100%;

                justify-content: space-between;

                gap: 0.6rem;
            }

            .user-avatar {
                width: 40px;
                height: 40px;

                font-size: 1rem;
            }

            .logout-btn {
                padding: 0.5rem 0.9rem;

                font-size: 0.78rem;
            }

            .module-card {
                border-radius: 13px;
            }
        }


        /* =========================================================
   VERY SMALL PHONES
========================================================= */

        @media (max-width: 380px) {

            .container {
                width: calc(100% - 24px);
            }

            .hero .container {
                width: calc(100% - 24px);
            }

            .hero-left h1 {
                font-size: 2.15rem;
            }

            .hero-right {
                min-height: 500px;

                padding: 1.5rem 1rem;
            }

            .hero-right h2 {
                font-size: 1.9rem;
            }

            .price-amount {
                font-size: 2.7rem;
            }

            .offer-card {
                padding: 1.5rem 1rem;
            }

            .current-price {
                font-size: 3rem;
            }
        }