:root {
    --bg-color: #0a0a0a;
    --card-bg: #111827;
    --primary-blue: #1E90FF;
    --electric-blue: #00BFFF;
    --text-white: #FFFFFF;
    --text-muted: #9ca3af;
    --accent-gradient: linear-gradient(90deg, #1E90FF 0%, #00BFFF 100%);
    --glow-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
    --glow-shadow-strong: 0 0 30px rgba(30, 144, 255, 0.5);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Utilities */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text span {
    -webkit-text-fill-color: var(--text-white);
    background: none;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    box-shadow: var(--glow-shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow-strong);
    background-color: var(--electric-blue);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(30, 144, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 144, 255, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
#hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, rgba(30, 144, 255, 0.15) 0%, rgba(10, 10, 10, 1) 60%);
}

.top-badge {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    padding: 20px 50px;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary-blue);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-text p strong {
    color: var(--text-white);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

#instructor-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(30, 144, 255, 0.2));
}

/* Ticker Section */
.ticker-wrapper {
    background-color: var(--primary-blue);
    overflow: hidden;
    padding: 15px 0;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.ticker span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    padding-right: 20px;
    color: white;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.description {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-muted);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--glow-shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Special Card Styles */
.learning-card h3, .skill-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.learning-card p, .skill-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Icons (Placeholder) */
.icon-camera::before { content: "📸"; font-size: 1.5rem; }
.icon-rocket::before { content: "🚀"; font-size: 1.5rem; }
.icon-screen::before { content: "💻"; font-size: 1.5rem; }
.icon-email::before { content: "📧"; font-size: 1.2rem; margin-right: 10px; }
.icon-whatsapp::before { content: "💬"; font-size: 1.2rem; margin-right: 10px; }
.icon-insta::before { content: "📸"; font-size: 1.2rem; margin-right: 10px; }

/* Pain Section */
.pain-section {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('https://images.unsplash.com/photo-1516534775068-ba3e84529519?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.pain-content {
    max-width: 700px;
    margin-left: auto;
}

.pain-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
}

.pain-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Carousel Section */
.section-header-left {
    margin-bottom: 50px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    max-width: 800px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.modulo-card {
    min-width: 300px;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.modulo-img {
    height: 200px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.modulo-card h3 {
    padding: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.carousel-nav button {
    background: var(--card-bg);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.carousel-nav button:hover {
    background: var(--primary-blue);
    color: white;
}

/* Video Section */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--glow-shadow-strong);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-footer {
    text-align: center;
    margin-top: 30px;
}

.youtube-btn {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    color: white;
    border-color: white;
}
/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.result-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.result-item img:hover {
    transform: scale(1.05);
}

/* Price Objection */
.comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.phone-card {
    text-align: center;
}

.phone-label {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.phone-screen {
    width: 250px;
    height: 450px;
    background: #000;
    border: 8px solid #333;
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.phone-screen p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.phone-screen h3 {
    font-size: 1.8rem;
    margin-top: 10px;
}

.red-glow {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.red-glow h3 {
    color: #ff4d4d;
}

.blue-glow {
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.3);
    border-color: rgba(30, 144, 255, 0.4);
}

.blue-glow h3 {
    color: var(--primary-blue);
}

/* Offer Section */
.offer-box {
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--glow-shadow-strong);
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 50px;
}

.offer-features ul {
    list-style: none;
}

.offer-features li {
    margin-bottom: 10px;
    font-weight: 600;
}

.price-container {
    background: rgba(30, 144, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
}

.from-price {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.final-price {
    margin-bottom: 30px;
}

.final-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.final-price .amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.large {
    width: 100%;
    max-width: 500px;
    font-size: 1.2rem;
    padding: 25px;
}

.secure-payment {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Instructor Section */
.instructor-section {
    background: linear-gradient(rgba(30, 144, 255, 0.05), rgba(30, 144, 255, 0.05));
    border-top: 1px solid rgba(30, 144, 255, 0.1);
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.instructor-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.instructor-image-box {
    flex: 1;
    position: relative;
}

.instructor-image-box img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: var(--glow-shadow-strong);
}

.instructor-bio {
    flex: 1.5;
}

.instructor-bio h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.instructor-bio p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.instructor-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    margin-top: 20px;
}

/* Guarantee & FAQ */
.guarantee-box {
    background: var(--card-bg);
    border: 1px solid #FFD700; /* Gold-ish for guarantee */
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-text h2 {
    margin-bottom: 10px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 144, 255, 0.1);
    color: var(--primary-blue);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Final Responsive Tweaks */
/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-blue);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.testimonial-content span {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
}
.footer {
    background: #000;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
}

.footer h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #555;
}

@media (max-width: 992px) {
    .hero-content, .instructor-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1, .instructor-bio h2 {
        font-size: 2.2rem;
    }
    .comparison-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .offer-box {
        padding: 30px;
    }
    .final-price .amount {
        font-size: 3rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer li {
        justify-content: center;
    }
}
