:root {
    --bg-white: #FFFFFF;
    --text-main: #1C1C1C;
    --title-dark: #0A0A0A;
    --blue-vibrant: #C5A028;
    /* Polished Gold */
    --blue-hover: #A3841E;
    /* Deep Gold */
    --whatsapp-green: #25D366;
    --gray-light: #FBFBFA;
    --gray-border: #EAEAEA;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1100px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
    --red-alert: #D32F2F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--title-dark);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Countdown Bar - Premium Refinement */
.countdown-bar {
    background: linear-gradient(90deg, #8B1A1A 0%, #B91C1C 50%, #8B1A1A 100%);
    color: white;
    padding: 8px 1.5rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2000;
    position: sticky;
    top: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown-bar i {
    width: 14px;
    height: 14px;
    opacity: 0.9;
    animation: icon-pulse 1.5s infinite ease-in-out;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

#timer {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 10px;
    border-radius: 6px;
    margin-left: 2px;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header / Hero Section */
.hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top, #FFFBF0 0%, #FFFFFF 70%);
}

.headline {
    font-size: 2.25rem;
    max-width: 950px;
    margin: 0 auto 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .headline {
        font-size: 1.6rem;
    }
}

.subheadline {
    font-size: 1.15rem;
    color: #475569;
    max-width: 750px;
    margin: 0 auto 2rem;
}

/* New Simple VSL Style */
.vsl-wrapper {
    margin: 30px auto;
    max-width: 320px;
    /* Portrait size */
}

.vsl-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748B;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.vsl-header svg {
    width: 16px;
    height: 16px;
    color: var(--blue-vibrant);
}

.vsl-box {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid #f1f5f9;
}

.vsl-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.vsl-play-btn {
    background: #C5A028;
    color: white;
    padding: 25px 15px;
    border-radius: 20px;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 75%;
    max-width: 210px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    animation: gold-vibe 2.5s infinite ease-in-out;
}

.vsl-btn-top {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vsl-btn-icon {
    width: 45px !important;
    height: 45px !important;
    color: white;
}

.vsl-btn-bottom {
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes gold-vibe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}




/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 42px;
    border-radius: 60px;
    /* Fully rounded for luxury feel */
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-vibrant), var(--blue-hover));
    color: white;
    box-shadow: 0 15px 30px -10px rgba(197, 160, 40, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(197, 160, 40, 0.6);
}

.btn-large {
    width: 100%;
    max-width: 500px;
}

.trust-badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-item svg {
    color: var(--blue-vibrant);
    width: 18px;
    height: 18px;
}



/* Problems Section */
.problems-section {
    padding: 100px 0;
}

.problem-list {
    max-width: 700px;
    margin: 40px auto 0;
    list-style: none;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.problem-item span.icon {
    color: #EF4444;
    font-weight: bold;
}

/* Solution Section */
.solution-section {
    background-color: #F1F5F9;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.solution-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 40, 0.2);
}

.solution-card i {
    color: var(--blue-vibrant);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .check-list {
        grid-template-columns: 1fr;
    }
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.check-item svg {
    color: var(--blue-vibrant);
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 450px));
    justify-content: center;
    gap: 2rem;
    margin-top: 50px;
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 44px;
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    min-height: 650px;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

.pricing-card.premium {
    background: radial-gradient(100% 100% at 50% 0%, #FFFFFF 0%, #FFF9EB 100%);
    border: 2px solid #D4AF37;
    box-shadow: 0 40px 100px -20px rgba(197, 160, 40, 0.18);
    transform: scale(1.06);
    z-index: 10;
}

.pricing-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.pricing-card.premium:hover {
    transform: scale(1.08) translateY(-12px);
}

@media (max-width: 768px) {
    .pricing-card.premium {
        transform: scale(1);
    }

    .pricing-card.premium:hover {
        transform: translateY(-12px);
    }
}

.badge-popular {
    position: absolute;
    top: 25px;
    right: -40px;
    transform: rotate(43deg);
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #1A1A1A;
    padding: 8px 50px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #64748B;
    margin-bottom: 0.25rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.plan-old-price {
    font-size: 0.85rem;
    color: #D32F2F;
    margin-top: 1rem;
    margin-bottom: -5px;
    font-weight: 600;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--title-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -2px;
}

.plan-price span {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

.plan-installment {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin: 0 auto 2.5rem;
    flex-grow: 1;
    display: inline-block;
    text-align: left;
    max-width: 90%;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li i,
.plan-features li svg {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--blue-vibrant);
}

/* Testimonials */
.testimonials-section {
    background: #F8FAFC;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-vibrant);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Receive Section Premium Refinement */
.receive-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.receive-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.receive-mockup {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.receive-mockup img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.receive-section:hover .receive-mockup img {
    transform: scale(1.02) rotate(-1deg);
}

.receive-content {
    flex: 1.2;
    min-width: 300px;
    z-index: 2;
}

.receive-title {
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 35px;
    line-height: 1.1;
}

.receive-list {
    list-style: none;
    padding: 0;
}

.receive-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 22px;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.receive-list li:hover {
    transform: translateX(8px);
    color: #FFFFFF;
}

.receive-list li i {
    color: var(--blue-vibrant);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Modules / Chapters Section */
.modules-section {
    background-color: #FAFAFA;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.module-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(197, 160, 40, 0.2);
}

.module-tag {
    display: inline-block;
    color: var(--blue-vibrant);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.module-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--title-dark);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--gray-border);
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--title-dark);
}

/* Modal / Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    max-width: 360px;
    width: 90%;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-title {
    color: #EF4444;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-text {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}