:root {
    --bg-color: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --neon-blue: #00f0ff;
    --neon-green: #00ff88;
    --gradient-main: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    --font-main: 'Outfit', sans-serif;
    --spacing-container: 1200px;
}

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

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

/* Background Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

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

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 50px;
    width: auto;
    /* Reset text fill color for the image so it shows properly if parents have it set */
    -webkit-text-fill-color: initial;
}

/* Buttons */
.cta-button-small,
.cta-button-large {
    background: var(--gradient-main);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.cta-button-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cta-button-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-large:hover,
.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
}

.whatsapp-btn:hover {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}


/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: left;
    /* Changed from center */
    overflow: hidden;
}

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


.hero-content .badge-container {
    justify-content: flex-start;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-img {
    transform: scale(1.1);
}

.sub-headline {
    margin: 0 0 40px 0;
    /* Reset margin */
}

/* Differentiator Grid */
.differentiator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    /* Match content-box radius */
    background: #0f0f0f;
    /* Move background here */
}

.differentiator-grid .content-box {
    text-align: left;
    background: transparent;
    /* Remove bg from inner box */
    padding-right: 20px;
}

.differentiator-grid .features-grid {
    justify-content: flex-start;
}

.image-box {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.diff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Increased from 15px */
    margin-bottom: 35px;
    /* Increased from 30px */
    flex-wrap: wrap;
}

.badge-urgent,
.badge-promo {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    /* Increased padding */
    border-radius: 50px;
    font-size: 0.95rem;
    /* Slightly larger text */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    /* Increased gap */
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.badge-urgent:hover,
.badge-promo:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-urgent {
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff6b6b;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.deadline-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

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

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

/* Context Section */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.context-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    flex-shrink: 0;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight {
    color: var(--neon-blue);
    font-weight: 600;
}

/* Differentiator Section */
.glow-border-box {
    position: relative;
    padding: 3px;
    background: linear-gradient(45deg, transparent, var(--neon-blue), transparent);
    border-radius: 20px;
}

.content-box {
    background: #0f0f0f;
    padding: 50px;
    border-radius: 18px;
    text-align: center;
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    color: var(--neon-green);
    font-weight: bold;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.timeline-content span.phase,
.timeline-content span.date {
    display: block;
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.bonus-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.bonus-card.highlight {
    border: 1px solid var(--neon-green);
    position: relative;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--neon-green);
    color: #000;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* Info Grid */
.info-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.info-item .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-item .value {
    font-size: 1.2rem;
    font-weight: 700;
}

.payment-methods {
    text-align: center;
    color: var(--text-secondary);
}

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

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

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

.accordion-content p {
    padding-bottom: 20px;
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(10, 10, 10, 1), rgba(0, 50, 60, 0.4));
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

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

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-top: 10px;
}

.timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
}

.timer div span {
    font-size: 3rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    .hero-grid,
    .differentiator-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content .badge-container {
        justify-content: center;
    }

    .sub-headline {
        margin: 0 auto 40px;
    }

    .hero-image-container {
        order: -1;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .features-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .image-box {
        min-height: 250px;
        order: -1;
    }

    .context-grid {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -9px;
    }

    .timer div span {
        font-size: 2rem;
    }

    .header {
        position: relative;
    }
}