:root {
    --bg-color: #0b0b0e;
    --card-bg: #15151a;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --primary: #ff4500;
    --primary-hover: #e03d00;
    --accent: #25d366; /* Green for checkmarks/buy */
    --border-color: #27272a;
}

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

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background-color: var(--bg-color);
    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;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top, #1a1a24 0%, var(--bg-color) 70%);
}

.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;
    text-transform: uppercase;
}

.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, #30e671 0%, #17b952 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(37, 211, 102, 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 #0f8538;
}
.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(37, 211, 102, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(37, 211, 102, 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;
    }
}

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

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

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

.check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--accent);
    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, #ff4500, #ffcc00, #ff4500);
    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(255, 69, 0, 0.1);
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.urgency-badge {
    color: #ff4500;
    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 */
.pricing-offer {
    padding: 40px 0 80px;
}

.offer-box {
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.1);
}

.offer-title {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 40px;
}

.offer-features li {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    font-weight: 600;
}

.pricing-anchoring {
    margin-bottom: 40px;
}

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

.old-price strike {
    color: #ef4444;
    font-weight: 700;
}

.new-price-label {
    font-size: 18px;
    margin-top: 8px;
    font-weight: 600;
}

.price-massive {
    font-size: 80px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-top: 10px;
}

.guarantee-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.guarantee-icon {
    font-size: 40px;
}

@media (max-width: 768px) {
    .offer-box { padding: 30px 20px; }
    .price-massive { font-size: 60px; }
    .guarantee-box { flex-direction: column; text-align: center; }
}

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

footer p {
    margin-bottom: 12px;
}
