:root {
    /* Colors */
    --bg-main: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: #1a1a1a;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --primary-blue: #0056b3;
    --primary-blue-hover: #007bff;
    --gold: #d4af37;
    --border-color: #2a2a2a;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    
    /* Effects */
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #fff;
}

.highlight {
    color: var(--primary-blue-hover);
    font-weight: bold;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================================
   Top Bar
   ================================== */
.topbar {
    background: linear-gradient(90deg, #001f3f, var(--primary-blue));
    color: #fff;
    text-align: center;
    padding: 15px var(--spacing-sm);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.topbar p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    gap: 10px;
}

.time-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.time-box span {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.time-box small {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ==================================
   Buttons
   ================================== */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: #ffdb58;
}

.btn-small {
    padding: 10px 20px;
    font-size: 1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==================================
   Hero Section
   ================================== */
.hero {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid var(--border-color);
    cursor: pointer;
    background: #000;
}

.video-thumbnail {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-thumbnail {
    opacity: 0.7;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 86, 179, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.5);
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}

.video-container:hover .play-button {
    background: var(--primary-blue-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero .description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.cta-subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.payment-methods {
    margin: 20px auto 0 auto;
    max-width: 300px;
    opacity: 0.8;
}

/* ==================================
   Features
   ================================== */
.features {
    padding: var(--spacing-lg) 0;
    background: var(--bg-secondary);
    text-align: center;
}

.features h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.features h3 {
    font-size: 1.5rem;
    color: var(--primary-blue-hover);
    margin-bottom: 20px;
}

.features p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2);
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    color: var(--primary-blue-hover);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ==================================
   Testimonials
   ================================== */
.testimonials {
    padding: var(--spacing-lg) 0;
    background: var(--bg-main);
    text-align: center;
}

.testimonials h3 {
    color: var(--primary-blue-hover);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    overflow: hidden;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 33.333%;
    padding: 0 10px;
}

.carousel-slide img {
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-blue-hover);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

@media (max-width: 768px) {
    .carousel-slide { min-width: 50%; }
}

@media (max-width: 480px) {
    .carousel-slide { min-width: 100%; }
}

/* ==================================
   Target Audience
   ================================== */
.target-audience {
    padding: var(--spacing-lg) 0;
    background: var(--bg-secondary);
    text-align: center;
}

.target-audience h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.target-audience h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.audience-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-blue-hover);
    text-align: left;
}

.audience-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

/* ==================================
   Modules
   ================================== */
.modules {
    padding: var(--spacing-lg) 0;
    background: var(--bg-main);
    text-align: center;
}

.modules p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 10px auto 40px auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.module-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.module-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.module-card h4 {
    margin: 15px 15px 5px 15px;
    font-size: 1.2rem;
}

.module-card p {
    margin: 0 15px 15px 15px;
    font-size: 0.9rem;
    text-align: left;
}

.modules-footer {
    margin-top: 40px;
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

/* ==================================
   Ticker
   ================================== */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-blue);
    padding: 15px 0;
    display: flex;
}

.ticker-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll-infinito 30s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
    letter-spacing: 1px;
}

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

/* ==================================
   Bonuses
   ================================== */
.bonuses {
    padding: var(--spacing-lg) 0;
    background: var(--bg-secondary);
    text-align: center;
}

.bonuses h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--radius);
    border: 1px dashed var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.bonus-card h4 {
    font-size: 1.1rem;
    color: var(--gold);
}

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

/* ==================================
   Guarantee
   ================================== */
.guarantee {
    padding: var(--spacing-lg) 0;
    background: var(--bg-main);
    text-align: center;
}

.guarantee img {
    max-width: 200px;
    margin: 0 auto 20px auto;
}

.guarantee p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==================================
   Pricing
   ================================== */
.pricing {
    padding: var(--spacing-lg) 0;
    background: var(--bg-secondary);
    text-align: center;
}

.pricing-card {
    max-width: 500px;
    margin: 40px auto 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.old-price {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.new-price {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: #fff;
    font-weight: 500;
}

.secure-checkout {
    margin-top: 20px;
}

.secure-checkout img {
    max-width: 100%;
    opacity: 0.9;
}

/* ==================================
   FAQ
   ================================== */
.faq {
    padding: var(--spacing-lg) 0;
    background: var(--bg-main);
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

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

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue-hover);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
}

/* ==================================
   Footer & WhatsApp
   ================================== */
footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
