:root {
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #111111;
    --gold: #D4AF37;
    --gold-hover: #F0C940;
    --gold-gradient: linear-gradient(135deg, #C8972A 0%, #F0C940 50%, #C8972A 100%);
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --border-gold: rgba(212, 175, 55, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    background-color: var(--bg-primary);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Grain Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -1px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utility */
.text-gold { color: var(--gold); }
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 20px 42px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 201, 64, 0.5);
    filter: brightness(1.1);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

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

.section-bg-dark {
    background-color: var(--bg-secondary);
}

/* Grid Separator */
.separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 50px 0;
    opacity: 0.3;
}

/* Hero Section */
.hero {
    min-height: auto;
    padding: 160px 0 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.85) 0%, rgba(0, 0, 0, 1) 100%), 
                url('./assets/WhatsApp Image 2026-03-17 at 21.29.02.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.vsl-container {
    width: 100%;
    max-width: 800px;
    background: #000;
    border: 1px solid var(--border-gold);
    margin: 40px auto 60px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    z-index: 5;
}

.vsl-container video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background-color: #000;
}

.vsl-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.play-icon:hover {
    transform: scale(1.1);
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.module-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-gold);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.module-number {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 10px;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #FFF;
}

.module-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Authority Section */
.authority-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.authority-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.authority-image img {
    width: 100%;
    display: block;
    filter: grayscale(0.2);
}

.authority-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.4));
}

.authority-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 600;
}

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

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

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

/* Offer Box */
.offer-box {
    max-width: 600px;
    margin: 60px auto 0;
    background: var(--bg-secondary);
    border: 2px solid var(--gold);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    margin: 20px 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    color: var(--text-secondary);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding: 130px 0 60px 0; }
    .vsl-container { margin: 30px auto 40px; }
    .vsl-container video { max-height: 50vh; }
    .modules-grid { grid-template-columns: 1fr; }
    .authority-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .authority-image { order: -1; }
    .price { font-size: 3rem; }
    .btn-gold { width: 100%; }
}
