:root {
    --primary-color: #ff0044;
    /* Crimson Red */
    --primary-glow: rgba(255, 0, 68, 0.6);
    --secondary-color: #ff4d4d;
    /* Bright Red */
    --bg-color: #050505;
    --card-bg: rgba(20, 5, 5, 0.6);
    /* Dark Red Tint Glass */
    --text-color: #ffffff;
    --text-muted: #d0d0d0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* Remove tap highlight on mobile */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    /* Base size for mobile */
}

/* Background Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    filter: blur(4px);
    transform: scale(1.1);
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-color) 90%);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h1 {
    font-size: 1.8rem;
    text-align: center;
}

/* Mobile optimized size */
h2 {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

h3 {
    font-size: 1.2rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /* Comfortable padding for mobile */
}

/* Header */
.header {
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px var(--primary-glow));
    border: none;
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #cc0033, #ff0044);
    /* Red gradient */
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary-color);
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button.small {
    padding: 8px 16px;
    font-size: 0.8rem;
    box-shadow: none;
    background: rgba(255, 0, 68, 0.15);
    /* Clean red tint */
    border: 1px solid var(--primary-color);
}

.cta-button.big {
    font-size: 1.1rem;
    width: 100%;
    padding: 18px;
    margin: 20px auto 0;
    animation: pulse-animation 2s infinite;
}

.cta-button.full-width {
    width: 100%;
    border-radius: 12px;
    padding: 15px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 68, 0);
    }
}

/* Hero Section */
.hero {
    padding: 100px 0 40px;
    text-align: center;
}

.headline {
    margin-bottom: 20px;
    font-size: 1.6rem;
    /* Adjusted for mobile readability */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Cleaner shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border instead of colored */
    margin: 0 -10px 20px;
    /* Negative margin to make video wider on small screens */
    width: calc(100% + 20px);
}

.main-vsl {
    max-width: 800px;
}

.live-viewers {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0055;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #ff0055;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* Problem/Solution & Testimonials */
.problem-solution {
    padding: 40px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-carousel {
    margin: 20px -20px;
    /* Full width on mobile */
    overflow-x: auto;
    padding: 0 20px 20px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-track {
    display: flex;
    gap: 15px;
    /* Padding for mobile scroll */
}

.testimonial-card {
    min-width: 85vw;
    /* Almost full width on mobile */
    width: 280px;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    scroll-snap-align: center;
}

.testimonial-quote {
    background: linear-gradient(to right, rgba(255, 0, 68, 0.1), transparent);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Stats */
.stats {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns on mobile */
    gap: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* How it Works */
.how-it-works {
    padding: 50px 0;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.step-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 0, 68, 0.2);
    position: absolute;
    top: 15px;
    right: 20px;
}

.benefit-highlight {
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.9), rgba(50, 0, 20, 0.5));
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.15);
}

.benefit-highlight h3 {
    color: #fff;
    margin-top: 15px;
    font-size: 1.3rem;
}

/* Pricing */
.pricing {
    padding: 50px 0;
}

.pricing h2 {
    font-size: 1.0rem;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
    /* Align cards vertically */
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
    background: linear-gradient(to bottom, #2a0505, #0a0a0a);
    /* Red dark gradient */
    border: 1px solid var(--primary-color);
    /* Cleaner thinner border */
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 0, 68, 0.15);
    /* Softer glow */
    order: -1;
    /* Show popular first on mobile? Or keep middle? Let's keep standard order but emphasize it */
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--primary-glow);
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.card-header h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px var(--primary-glow);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.one-time {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
}

.check {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.bonus {
    color: #ffd700;
    /* Gold for bonus */
    font-weight: 600;
}

/* Guarantee */
.guarantee {
    padding: 40px 0;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--primary-color);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    padding: 50px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

/* Desktop Overrides (if needed, but keeping it simple since user said "only mobile") */
@media (min-width: 768px) {
    .container {
        max-width: 1000px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.popular {
        order: unset;
        transform: scale(1.1);
    }

    .testimonial-card {
        min-width: 300px;
    }

    .video-wrapper {
        margin: 0 auto 30px;
        width: 100%;
    }

    .grid-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Update: Text Reviews Styles */
.testimonial-card.text-review {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(145deg, rgba(20, 5, 5, 0.8), rgba(0, 0, 0, 0.9));
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    font-size: 0.9rem;
}

.verified {
    font-size: 0.7rem;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.review-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--primary-glow);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info .name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.author-info .tag {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
}