:root {
    --bg-color: #030305;
    --card-bg: #111116;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --primary: #ef4444;
    --primary-hover: #dc2626;
    --accent: #b91c1c;
    --border-color: #1f1f25;
}

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

section {
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at top center, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.08) 0%, transparent 40%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
}

.highlight-text {
    color: var(--primary);
}

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

.section-title {
    font-size: clamp(28px, 6vw, 42px);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Top Bar */
.top-bar {
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navbar */
.top-nav {
    position: sticky;
    top: 20px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 20px auto;
    background: rgba(11, 11, 14, 0.7);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 16px 0;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--primary-hover);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}

.sub-headline {
    color: var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.headline {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 24px;
}

.hero-description {
    font-size: clamp(18px, 4vw, 24px);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Videos */
.hero-videos {
    margin-bottom: 50px;
}

.hero-video-title {
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 18px;
    text-transform: uppercase;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.video-carousel {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px calc(50% - 150px);
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.video-carousel::-webkit-scrollbar {
    display: none; 
}

.video-card {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/16;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 2px solid var(--border-color);
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 768px) {
    .carousel-btn { 
        width: 40px; 
        height: 40px; 
    }
    .video-card { width: 260px; }
    .video-carousel { padding: 20px calc(50% - 130px); }
}

/* Mega CTA Button */
.btn-mega {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f87171 0%, #dc2626 100%);
    color: #fff;
    font-size: clamp(16px, 3.5vw, 22px);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #1e40af;
}
.btn-mega:active {
    transform: scale(0.98);
}
.btn-mega .btn-mega-sub {
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
    text-transform: none;
}
.btn-mega-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulsar {
    animation: pulseMega 2s infinite;
}

@keyframes pulseMega {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4); }
}

.secure-checkout {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background-color: #000;
}

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

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

.stars {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    color: #e4e4e7;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: #fff;
}

.reviewer-name {
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--card-bg);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.step-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    padding: 80px 0;
}

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

.benefit-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-muted);
}

/* Bonus Highlight */
.bonus-highlight {
    padding: 40px 0;
}

.pulsar-border {
    position: relative;
}

.pulsar-border::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #b91c1c, #f87171, #b91c1c);
    background-size: 200%;
    animation: borderGlow 3s linear infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.bonus-box {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
}

.bonus-header {
    background: rgba(239, 68, 68, 0.1);
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.urgency-badge {
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.bonus-body {
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.bonus-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.bonus-content p {
    font-size: 18px;
    color: #d4d4d8;
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 20px;
}

.bonus-value strike {
    color: #ef4444;
}

.free {
    color: var(--accent);
    font-size: 24px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .bonus-body {
        flex-direction: column;
        text-align: center;
    }
}

/* Pricing Offer Redesign (Reference Style) */
.pricing-offer {
    padding: 40px 0 80px;
}

.offer-box {
    background: #050505;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

.offer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
}

.offer-logo span {
    background: linear-gradient(90deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-anchoring-ref {
    margin-bottom: 25px;
}

.price-old-new {
    font-size: 16px;
    color: var(--text-muted);
}

.price-massive-ref {
    font-size: 64px;
    font-weight: 900;
    color: #e4e4e7;
    line-height: 1;
    margin-top: 5px;
}



.btn-ref {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 50px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.2s;
}

.btn-ref:hover {
    transform: scale(1.02);
}

.checkout-badges-ref {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: #a1a1aa;
    font-size: 12px;
}

.checkout-badges-ref .brand {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 768px) {
    /* Top Nav & Bar */
    .top-nav { width: 95%; padding: 8px 12px; }
    .nav-links { display: none; }
    .top-bar { font-size: 11px; padding: 8px; }
    
    /* Hero */
    .hero { padding: 40px 0 50px; }
    .headline { font-size: clamp(24px, 7vw, 32px) !important; margin-bottom: 16px; }
    .hero-description { font-size: 16px !important; margin-bottom: 30px; }
    
    /* Global Section Paddings */
    .how-it-works, .benefits, .social-proof, .pain-points { padding: 50px 0 !important; }
    .section-title { font-size: clamp(22px, 6vw, 28px) !important; margin-bottom: 30px; }
    
    /* Grids */
    .benefits-grid, .steps-grid, .pain-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .pain-grid h2 { font-size: 26px !important; text-align: center; }
    .pain-grid p { text-align: center; font-size: 15px !important; }
    
    /* Bonus */
    .bonus-body { padding: 25px; flex-direction: column; text-align: center; }
    .bonus-icon { font-size: 60px; }
    .bonus-content h3 { font-size: 24px; }
    .bonus-content p { font-size: 15px; }
    
    /* Offer Box */
    .pricing-offer { padding: 30px 0 50px; }
    .offer-box { padding: 30px 20px !important; border-radius: 16px !important; }
    .price-massive-ref { font-size: 48px !important; }
    .offer-title { font-size: 26px !important; }
    
    /* Guarantee & Support */
    .guarantee-new-box, .support-new-box {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
        padding: 30px 20px !important;
    }
    .guarantee-left, .support-left {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .guarantee-number { width: 80px !important; height: 80px !important; font-size: 36px !important; }
    .guarantee-title { font-size: 24px !important; text-align: center !important; }
    .guarantee-text, .support-text { text-align: center !important; font-size: 14px !important; }
    
    /* FAQ */
    .faq-section { padding: 50px 0 !important; }
    .accordion-header { padding: 16px 20px !important; font-size: 15px !important; }
    .accordion-content p { padding: 0 20px 20px !important; font-size: 14px !important; }
}

/* Accordion FAQ */
.accordion-item {
    background: #050505;
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.accordion-icon i {
    width: 18px;
    color: #fff;
}
.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content p {
    padding: 0 25px 25px;
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background-color: #000;
    color: var(--text-muted);
    font-size: 14px;
}

footer p {
    margin-bottom: 12px;
}
