:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --primary-color: #3b82f6;
    /* Bright Blue */
    --accent-color: #10b981;
    /* Emerald/Green for money/success */
    --highlight-color: #f59e0b;
    /* Amber for highlights */
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --warning-bg: #ef4444;
    /* Red for warning bar */
    --warning-text: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-header: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Warning Bar */
.warning-bar {
    background-color: var(--warning-bg);
    color: var(--warning-text);
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

.warning-bar i {
    margin-right: 8px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* 2. Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 0 40px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.pre-headline {
    color: var(--highlight-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

h1 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    /* Mobile first, will increase on desktop */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    text-decoration: underline;
    text-decoration-color: rgba(16, 185, 129, 0.3);
    text-underline-offset: 8px;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* 3. VSL Section */
.vsl-section {
    padding: 20px 0 60px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--card-border);
    aspect-ratio: 16 / 9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1e293b, #0f172a);
    color: #fff;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.8);
    border-color: transparent;
}

.audio-warning {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.audio-warning i {
    color: var(--primary-color);
}

/* 4. Problem Section */
.problem-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-color), #111827);
}

.problem-section h2,
.solution-section h2,
.functionality-section h2,
.showcase-section h2 {
    font-family: var(--font-header);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.problem-content strong {
    color: var(--text-color);
}

.quote-box {
    margin-top: 40px;
    background: var(--card-bg);
    border-left: 4px solid var(--warning-bg);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-header);
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 5. Solution Section */
.solution-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background blob */
.solution-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.brand-name {
    color: var(--primary-color);
    font-weight: 800;
}

.intro-solution {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.solution-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 1.3rem;
}

.solution-footer strong {
    color: var(--highlight-color);
}

/* 5.5 Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: #0b0f19;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

.showcase-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    /* Wider for dashboards */
    margin: 0 auto;
    padding: 0 40px;
    /* Space for arrows */
}

.carousel-container {
    background: #000;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--card-border);
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or contain if we want to see full edges */
    object-position: top center;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 30px 20px 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-container:hover .slide-caption {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.dot {
    border: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* 6. Functionality Section */
.functionality-section {
    padding: 80px 0;
    background: #0f172a;
}

.functionality-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.functionality-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.functionality-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.functionality-list li:hover {
    border-color: var(--accent-color);
    background: rgba(16, 185, 129, 0.05);
}

.functionality-list i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* 7. Offer Section */
.offer-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
}

.price-box {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--highlight-color), var(--accent-color));
}

.anchor-price {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.strikethrough {
    text-decoration: line-through;
    color: var(--warning-bg);
}

.small-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.exclusive-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-intro {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-display {
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

.installments {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-header);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.one-time {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.discount-badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--highlight-color);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* 8. CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #10b981, #059669);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 0 #047857, 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s, box-shadow 0.1s;
    text-transform: uppercase;
    font-family: var(--font-header);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #047857, 0 5px 10px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Shimmer Effect on Button */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.decline-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.decline-link:hover {
    opacity: 1;
    color: #fff;
}

/* 9. Guarantee Section */
.guarantee-section {
    padding: 60px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 25px;
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-header);
}

.guarantee-text p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* 10. Footer */
.scarcity-footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

.scarcity-footer strong {
    color: var(--warning-bg);
    text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .quote-box {
        font-size: 1.1rem;
        padding: 20px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px;
    }

    /* Carousel Mobile */
    .carousel-wrapper {
        padding: 0;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
        background: rgba(0, 0, 0, 0.7);
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .carousel-container {
        border-radius: 0;
    }
}