* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0e27;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(56, 178, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(56, 178, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .brand-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #38b2ff;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: -189px
        }

        .brand-logo img {
            height: auto;
            width: 20%;
            max-width: 600px;
            object-fit: contain;
            object-position: center;
            clip-path: inset(20% 20% 20% 20%);
        }

        .hero-section h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            position: relative;
        }

        .hero-section .highlight {
            background: linear-gradient(135deg, #38b2ff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section .subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 600;
        }

        .video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #000;
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.video-container video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-container video {
        height: 400px;
    }
}

/* Tablet portrait y móvil grande */
@media (max-width: 768px) {
    .video-container {
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        max-width: 100%;
    }
    
    .video-container video {
        height: 280px;
        border-radius: 12px;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .video-container {
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .video-container video {
        height: 220px;
        border-radius: 8px;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 320px) {
    .video-container video {
        height: 180px;
    }
}

/* Pantallas grandes (1200px+) */
@media (min-width: 1200px) {
    .video-container video {
        height: 600px;
    }
}

/* Para usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .video-container,
    .video-container video {
        transition: none;
    }
    
    .video-container:hover {
        transform: none;
    }
}

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #38b2ff, #0099cc);
            color: white;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(56, 178, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 30px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(56, 178, 255, 0.4);
        }

        .content-section {
            padding: 100px 0;
            background: #0a0e27;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            color: #38b2ff;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* COUNTDOWN TIMER STYLES */
        .countdown-section {
            background: linear-gradient(135deg, #141B36 0%, #1a1f3a 50%, #0a0e27 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(56, 178, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(56, 178, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .countdown-container {
            background: rgba(20, 27, 54, 0.8);
            border: 2px solid rgba(56, 178, 255, 0.3);
            border-radius: 25px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(56, 178, 255, 0.2);
            max-width: 800px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
        }

        .countdown-container::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #38b2ff, #00d4ff, #38b2ff);
            border-radius: 25px;
            z-index: -1;
            opacity: 0.1;
            animation: pulse-border 3s ease-in-out infinite;
        }

        .discount-badge {
            display: block;
            color: #38b2ff;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-align: center;
        }

        .countdown-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            position: relative;
        }

        .countdown-title .highlight {
            background: linear-gradient(135deg, #38b2ff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .countdown-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .time-unit {
            background: rgba(56, 178, 255, 0.1);
            border: 1px solid rgba(56, 178, 255, 0.3);
            border-radius: 15px;
            padding: 25px 20px;
            min-width: 100px;
            position: relative;
            transition: all 0.3s ease;
        }

        .time-unit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(56, 178, 255, 0.3);
            background: rgba(56, 178, 255, 0.15);
        }

        .time-number {
            font-size: 3rem;
            font-weight: 800;
            color: #38b2ff;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 0 20px rgba(56, 178, 255, 0.3);
        }

        .time-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            color: #ffffff;
        }

        .separator {
            font-size: 3rem;
            color: #38b2ff;
            font-weight: 800;
            display: flex;
            align-items: center;
            animation: blink 1s ease-in-out infinite;
        }

        .coupon-section {
            background: rgba(56, 178, 255, 0.05);
            border: 1px solid rgba(56, 178, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
        }

        .coupon-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #38b2ff;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .coupon-code {
            background: linear-gradient(135deg, #38b2ff, #00d4ff);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: 2px;
            margin: 15px 0;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
        }

        .coupon-code:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(56, 178, 255, 0.4);
        }

        .coupon-instruction {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-top: 10px;
            font-style: italic;
        }

        .urgent-message {
            background: linear-gradient(135deg, #ff4757, #ff6b7d);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            margin-top: 25px;
            animation: pulse-urgent 2s ease-in-out infinite;
        }

        .expired-message {
            font-size: 1.5rem;
            color: #ff4757;
            font-weight: 800;
            text-align: center;
            margin: 20px 0;
        }

        @keyframes bounce-badge {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes pulse-border {

            0%,
            100% {
                opacity: 0.1;
            }

            50% {
                opacity: 0.3;
            }
        }

        @keyframes pulse-urgent {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        @keyframes blink {

            0%,
            50% {
                opacity: 1;
            }

            51%,
            100% {
                opacity: 0.3;
            }
        }

        /* Carousel Styles */
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            background: transparent;
            border-radius: 0;
            overflow: hidden;
            border: none;
            box-shadow: none;
        }

        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            padding: 60px 40px;
            gap: 60px;
            background: transparent;
            border-radius: 0;
            border: none;
            margin-bottom: 20px;
        }

        .carousel-image {
            flex: 1;
            height: 400px;
            border-radius: 0;
            overflow: visible;
            background: transparent;
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: transparent;
        }

        .carousel-content {
            flex: 1;
        }

        .phase-number {
            color: #38b2ff;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .phase-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .phase-description {
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .phase-features {
            list-style: none;
        }

        .phase-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .phase-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #38b2ff;
            font-size: 1.1rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .carousel-btn {
            background: rgba(56, 178, 255, 0.2);
            border: 1px solid rgba(56, 178, 255, 0.3);
            color: #38b2ff;
            padding: 12px 16px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .carousel-btn:hover {
            background: rgba(56, 178, 255, 0.3);
            transform: translateY(-2px);
        }

        .carousel-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(56, 178, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #38b2ff;
            transform: scale(1.2);
        }

        .testimonials-section {
            background: #141B36;
            padding: 100px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: #0a0e27;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(56, 178, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(56, 178, 255, 0.3);
        }

        .testimonial-result {
            color: #38b2ff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonial-image {
            width: 100%;
            height: 350px;
            background: #1a1f3a;
            border-radius: 10px;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 1px solid rgba(56, 178, 255, 0.1);
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .mentor-section {
            background: #0a0e27;
            padding: 100px 0;
        }

        .mentor-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .mentor-image {
            width: 100%;
            height: 500px;
            background: #1a1f3a;
            border-radius: 20px;
            border: 1px solid rgba(56, 178, 255, 0.1);
            overflow: hidden;
        }

        .mentor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mentor-text h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .mentor-text p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .results-proof {
            background: rgba(56, 178, 255, 0.1);
            border: 1px solid rgba(56, 178, 255, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .results-proof .chart-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #38b2ff;
        }

        /* NEW PRICING SECTION - GRID LAYOUT */
        .pricing-section {
            background: #141B36;
            padding: 100px 0;
            text-align: center;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: #0a0e27;
            border: 2px solid rgba(56, 178, 255, 0.2);
            border-radius: 25px;
            padding: 40px 30px;
            position: relative;
            box-shadow: 0 20px 60px rgba(56, 178, 255, 0.1);
            text-align: left;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #38b2ff, #00d4ff, #38b2ff);
            border-radius: 25px;
            z-index: -1;
            opacity: 0.3;
        }

        .pricing-logo {
            width: 100%;
            max-width: 300px;
            height: 200px;
            background: transparent;
            border-radius: 15px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            overflow: hidden;
            padding: 20px;
        }

        .pricing-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
        }

        .price-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .price {
            font-size: 4rem;
            font-weight: 800;
            color: #38b2ff;
            margin-bottom: 10px;
            line-height: 1;
        }

        .price-label {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .what-you-get {
            color: #38b2ff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .module-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .module-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .module-title {
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 3px;
        }

        .module-description {
            color: #ccc;
            font-size: 0.9rem;
        }

        .pricing-section .separator {
            border-top: 1px solid rgba(56, 178, 255, 0.2);
            margin: 20px 0;
        }

        .bonus-section {
            margin-top: 20px;
        }

        .bonus-title {
            color: #38b2ff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .bonus-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .bonus-item::before {
            margin-right: 8px;
            margin-top: 1px;
        }

        .pro-badge {
            background: linear-gradient(135deg, #ffd700, #ffed4a);
            color: #0a0e27;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: absolute;
            top: -10px;
            right: 20px;
        }

        .exclusive-content {
            background: rgba(56, 178, 255, 0.05);
            border: 1px solid rgba(56, 178, 255, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
        }

        .exclusive-item {
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .exclusive-title {
            color: #38b2ff;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .exclusive-description {
            color: #ccc;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .highlight-text {
            background: rgba(56, 178, 255, 0.1);
            border-left: 3px solid #38b2ff;
            padding: 10px 15px;
            margin: 15px 0;
            font-size: 0.9rem;
            font-style: italic;
        }

        .payment-info {
            text-align: center;
            margin-top: 20px;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .pricing-section .cta-button {
            width: 100%;
            background: linear-gradient(135deg, #38b2ff, #0099cc);
            color: white;
            padding: 18px 20px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(56, 178, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 25px;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        .pricing-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(56, 178, 255, 0.4);
        }

        .course-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .old-price {
            text-decoration: line-through;
            color: #666;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .current-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #38b2ff;
            margin-bottom: 40px;
        }

        .member-avatars {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin: 30px 0;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #38b2ff;
            background-size: cover;
            background-position: center;
            background-color: #1a1f3a;
        }

        .avatar:nth-child(1) {
            background-image: url('imagenes/P1.jpg');
        }

        .avatar:nth-child(2) {
            background-image: url('imagenes/P2.jpg');
        }

        .avatar:nth-child(3) {
            background-image: url('imagenes/P3.jpg');
        }

        .avatar:nth-child(4) {
            background-image: url('imagenes/P4.jpg');
        }

        .member-count {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 10px;
        }

        .guarantee-section {
            background: rgba(56, 178, 255, 0.05);
            border: 1px solid rgba(56, 178, 255, 0.2);
            border-radius: 15px;
            padding: 40px;
            margin: 60px 0;
            text-align: center;
        }

        .bonus-section {
            background: #0a0e27;
            padding: 0px 0;
        }

        .bonus-section .section-subtitle::before {
            content: "\f017";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 8px;
            color: #38b2ff;
        }

        .bonus-section .bonus-title::before {
            content: "\f06b";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 8px;
            color: #38b2ff;
        }

        .bonus-item {
            background: #141B36;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 4px solid #38b2ff;
        }

        .faq-section {
            background: #0a0e27;
            padding: 100px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #141B36;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(56, 178, 255, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #38b2ff;
        }

        .faq-answer {
            padding: 0 30px 25px;
            color: #ccc;
            line-height: 1.6;
            display: none;
        }

        .faq-toggle {
            color: #38b2ff;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .footer {
            background: #141B36;
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid rgba(56, 178, 255, 0.1);
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #38b2ff;
            margin-bottom: 20px;
        }

        .footer-text {
            opacity: 0.7;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #38b2ff;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 0.7;
        }

        .mindset-section {
            background: #141B36;
            padding: 80px 0;
            text-align: center;
        }

        .mindset-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .mindset-content h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .mindset-content p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .mindset-with-image {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            text-align: left;
        }

        .mindset-image {
            width: 100%;
            height: 500px;
            background: #1a1f3a;
            border-radius: 20px;
            border: 1px solid rgba(56, 178, 255, 0.1);
            overflow: hidden;
        }

        .mindset-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #141B36;
            margin: 5% auto;
            padding: 30px;
            border: 1px solid rgba(56, 178, 255, 0.3);
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(56, 178, 255, 0.3);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(56, 178, 255, 0.2);
            padding-bottom: 15px;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #38b2ff;
            margin: 0;
        }

        .close {
            color: #38b2ff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #ffffff;
        }

        .modal-body {
            color: #ffffff;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .modal-body h3 {
            color: #38b2ff;
            font-weight: 700;
            margin: 20px 0 10px 0;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .modal-body strong {
            color: #38b2ff;
        }

        /* Mobile Modal Styles */
        @media (max-width: 768px) {
            .modal-content {
                margin: 10% auto;
                padding: 20px;
                width: 95%;
                max-height: 75vh;
            }

            .modal-title {
                font-size: 1.3rem;
            }

            .modal-body {
                font-size: 0.9rem;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }

            .hero-section h1 {
                font-size: 3.2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .carousel-slide {
                padding: 30px;
                gap: 30px;
            }

            .mentor-content,
            .mindset-with-image {
                gap: 60px;
            }

            .countdown-container {
                padding: 50px 30px;
            }

            .countdown-title {
                font-size: 2.2rem;
            }

            .time-unit {
                padding: 20px 15px;
                min-width: 90px;
            }

            .time-number {
                font-size: 2.5rem;
            }

            .pricing-grid {
                gap: 30px;
                max-width: 900px;
            }

            .pricing-card {
                padding: 35px 25px;
            }

            .pricing-logo {
                max-width: 250px;
                height: 180px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .hero-section {
                padding: 80px 0;
            }

            .hero-section h1 {
                font-size: 2.8rem;
                margin-bottom: 25px;
                line-height: 1.2;
            }

            .hero-section .subtitle {
                font-size: 1.3rem;
                margin-bottom: 35px;
            }

            .section-title {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .section-description {
                font-size: 1.3rem;
                line-height: 1.7;
            }

            .carousel-slide {
                flex-direction: column;
                text-align: center;
                padding: 25px;
                gap: 25px;
            }

            .carousel-image {
                height: 300px;
            }

            .phase-title {
                font-size: 1.8rem;
                margin-bottom: 18px;
            }

            .phase-description {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            .phase-features li {
                font-size: 1rem;
                margin-bottom: 15px;
                line-height: 1.6;
            }

            .mentor-content,
            .mindset-with-image {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mindset-image {
                height: 400px;
            }

            .mentor-text h3,
            .mindset-content h3 {
                font-size: 2.2rem;
                margin-bottom: 25px;
                line-height: 1.3;
            }

            .mentor-text p,
            .mindset-content p {
                font-size: 1.2rem;
                margin-bottom: 20px;
                line-height: 1.6;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .testimonial-card {
                padding: 25px;
            }

            .testimonial-result {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }

            .testimonial-image {
                height: 280px;
            }

            .cta-button {
                padding: 20px 35px;
                font-size: 1.1rem;
                margin-top: 25px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .pricing-card {
                padding: 30px 25px;
            }

            .pricing-logo {
                max-width: 250px;
                height: 150px;
                margin-bottom: 20px;
                padding: 15px;
            }

            .price {
                font-size: 3rem;
            }

            .module-item {
                font-size: 0.9rem;
            }

            .module-description {
                font-size: 0.85rem;
            }

            .faq-question {
                padding: 20px 25px;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 25px 20px;
                font-size: 1rem;
                line-height: 1.6;
            }

            .bonus-item {
                padding: 25px;
                margin-bottom: 25px;
            }

            .bonus-title {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            /* Countdown Mobile Styles */
            .countdown-section {
                padding: 60px 0;
            }

            .countdown-container {
                padding: 40px 20px;
                margin: 0 10px;
            }

            .countdown-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .countdown-subtitle {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .countdown-timer {
                gap: 10px;
                margin: 25px 0;
                justify-content: center;
                flex-wrap: wrap;
            }

            .time-unit {
                padding: 15px 12px;
                min-width: 75px;
                flex: none;
            }

            .time-number {
                font-size: 2.2rem;
                margin-bottom: 5px;
            }

            .time-label {
                font-size: 0.75rem;
            }

            .separator {
                font-size: 2.2rem;
                display: none;
            }

            .coupon-section {
                padding: 20px 15px;
                margin: 25px 0;
            }

            .coupon-title {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .coupon-code {
                font-size: 1rem;
                padding: 12px 20px;
                letter-spacing: 1px;
            }

            .coupon-instruction {
                font-size: 0.85rem;
                margin-top: 8px;
            }

            .discount-badge {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .urgent-message {
                padding: 12px;
                font-size: 0.9rem;
                margin-top: 20px;
            }
        }

        /* Small Mobile Responsive */
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero-section {
                padding: 60px 0;
            }

            .hero-section h1 {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .hero-section .subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .brand-logo img {
                width: 65%;
                margin-top: 84px;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }

            .section-subtitle {
                font-size: 0.9rem;
            }

            .section-description {
                font-size: 1.1rem;
            }

            .carousel-slide {
                padding: 20px;
                gap: 20px;
            }

            .carousel-image {
                height: 250px;
            }

            .phase-title {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .phase-description {
                font-size: 1rem;
                margin-bottom: 18px;
            }

            .phase-features li {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .mentor-text h3,
            .mindset-content h3 {
                font-size: 1.8rem;
                margin-bottom: 20px;
                line-height: 1.2;
            }

            .mentor-text p,
            .mindset-content p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-result {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .testimonial-image {
                height: 220px;
                margin-bottom: 15px;
            }

            .cta-button {
                padding: 18px 30px;
                font-size: 1rem;
                margin-top: 20px;
            }

            .pricing-card {
                padding: 25px 20px;
            }

            .price {
                font-size: 2.5rem;
            }

            .pricing-logo {
                max-width: 200px;
                height: 120px;
                margin-bottom: 15px;
                padding: 10px;
            }

            .old-price {
                font-size: 1.3rem;
            }

            .course-title {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }

            .member-avatars {
                gap: 8px;
                margin: 25px 0;
            }

            .avatar {
                width: 35px;
                height: 35px;
            }

            .member-count {
                font-size: 0.85rem;
                margin-top: 8px;
            }

            .faq-question {
                padding: 18px 20px;
                font-size: 0.95rem;
            }

            .faq-answer {
                padding: 0 20px 18px;
                font-size: 0.95rem;
            }

            .bonus-item {
                padding: 20px;
                margin-bottom: 20px;
            }

            .bonus-title {
                font-size: 0.95rem;
                margin-bottom: 10px;
            }

            .carousel-nav {
                margin-top: 25px;
                gap: 15px;
            }

            .carousel-btn {
                padding: 10px 12px;
                font-size: 1rem;
            }

            .indicator {
                width: 8px;
                height: 8px;
            }

            .guarantee-section {
                padding: 30px 20px;
                margin: 40px 0;
            }

            .guarantee-section h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .guarantee-section p {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .results-proof {
                padding: 15px;
                margin: 15px 0;
            }

            .results-proof .chart-icon {
                font-size: 2rem;
                margin-bottom: 8px;
            }

            .footer-links {
                gap: 20px;
            }

            .footer-links a {
                font-size: 0.9rem;
            }

            .content-section,
            .testimonials-section,
            .mentor-section,
            .pricing-section,
            .bonus-section,
            .faq-section,
            .mindset-section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 50px;
            }

            /* Small Mobile Countdown Styles */
            .countdown-section {
                padding: 40px 0;
            }

            .countdown-container {
                padding: 25px 15px;
                margin: 0 5px;
            }

            .countdown-title {
                font-size: 1.5rem;
                margin-bottom: 12px;
                line-height: 1.2;
            }

            .countdown-subtitle {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .countdown-timer {
                gap: 8px;
                margin: 20px 0;
                flex-wrap: wrap;
            }

            .time-unit {
                padding: 12px 10px;
                min-width: 65px;
                border-radius: 10px;
            }

            .time-number {
                font-size: 1.8rem;
                margin-bottom: 3px;
            }

            .time-label {
                font-size: 0.7rem;
            }

            .separator {
                display: none;
            }

            .coupon-section {
                padding: 15px 10px;
                margin: 20px 0;
            }

            .coupon-title {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .coupon-code {
                font-size: 0.9rem;
                padding: 10px 18px;
                letter-spacing: 1px;
            }

            .coupon-instruction {
                font-size: 0.8rem;
                margin-top: 6px;
            }

            .discount-badge {
                font-size: 0.85rem;
                margin-bottom: 12px;
            }

            .urgent-message {
                padding: 10px;
                font-size: 0.85rem;
                margin-top: 15px;
            }

            .expired-message {
                font-size: 1.2rem;
                margin: 15px 0;
            }
        }