@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg: #0a0a0a;
    --amber: #d86e4a;
    --amber-soft: rgba(216, 110, 74, 0.2);
    --white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: var(--amber);
}

.nav-cta {
    background: var(--amber);
    padding: 12px 28px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(216, 110, 74, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(216, 110, 74, 0.4);
}

/* Hero */
.hero {
    padding: 200px 0 100px;
    background: radial-gradient(circle at 20% 30%, var(--amber-soft), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.badge {
    color: var(--amber);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h1 span {
    background: linear-gradient(to right, #fff, var(--amber));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-dim);
    font-size: 20px;
    max-width: 550px;
    margin-bottom: 45px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    background: var(--amber);
    border: none;
    padding: 22px 48px;
    border-radius: 14px;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(216, 110, 74, 0.3);
    font-family: var(--font-heading);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(216, 110, 74, 0.4);
}

.guarantee-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-weight: 600;
}

/* Hero Video */
.hero-video {
    flex: 1;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.video-wrapper:hover {
    box-shadow: 0 0 80px rgba(216, 110, 74, 0.2);
    transform: scale(1.02);
}

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

/* Glass Design */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 45px;
    border-radius: 24px;
    transition: 0.3s;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.module-card h3,
.module-card p {
    position: relative;
    z-index: 2;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.05);
}

.icon-glow {
    width: 60px;
    height: 60px;
    background: var(--amber-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--amber);
}

/* Grids */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Social Proof */
.section-desc {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-top: -40px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--amber);
    box-shadow: 0 10px 30px rgba(216, 110, 74, 0.1);
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 🏷️ Pricing Bento */
.pricing-bento {
    background: radial-gradient(circle at bottom right, var(--amber-soft), transparent 30%);
}

.card-bento {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 80px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.offer-tag {
    background: var(--amber);
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 25px;
    display: inline-block;
}

.price-container {
    margin: 40px 0;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-dim);
    display: block;
    margin-bottom: 10px;
}

.installment-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 5px;
}

.installment-count {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.current-price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}

.full-price {
    font-size: 1.3rem;
    color: var(--text-dim);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4cd137;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-features-header {
    margin-top: 40px;
    text-align: left;
}

.pricing-features-header h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin: 30px 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.features-list i {
    color: var(--success-green);
    font-size: 1.2rem;
}

/* Guarantee Section */
.guarantee {
    background: radial-gradient(circle at 10% 80%, rgba(216, 110, 74, 0.05), transparent 40%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.guarantee-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    gap: 60px;
}

.guarantee-badge {
    text-align: center;
}

.guarantee-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(216, 110, 74, 0.2));
    transition: var(--transition);
}

.guarantee-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.guarantee-content {
    max-width: 700px;
}

@media (max-width: 992px) {
    .guarantee-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .guarantee-content .section-title {
        text-align: center !important;
    }

    .guarantee-badge img {
        max-width: 250px;
    }
}

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

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--amber-soft);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item[open] {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(216, 110, 74, 0.1);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: var(--transition);
    color: var(--white);
}

.faq-question i {
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--amber);
    font-size: 0.9rem;
}

.faq-item[open] .faq-question {
    color: var(--amber);
    padding-bottom: 15px;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 32px;
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--white);
}

.faq-answer p:not(:last-child) {
    margin-bottom: 15px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }
}

/* Main Footer Styles */
.main-footer {
    padding: 80px 0 50px;
    background: #050505;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.affiliate-disclaimer {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.affiliate-disclaimer strong {
    color: var(--amber);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.separator {
    color: var(--glass-border);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
    opacity: 0.6;
}

.ads-disclaimer {
    color: var(--text-dim);
    font-size: 0.75rem;
    line-height: 1.4;
    opacity: 0.4;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}