/* =========================================
   RESET & VARIABLES
   ========================================= */
:root {
    --primary-color: #dc2626;
    /* Aggressive Red */
    --secondary-color: #1e3a8a;
    /* Trust Blue */
    --accent-color: #facc15;
    /* Warning/Highlight Yellow */
    --text-color: #1f2937;
    --bg-color: #f9fafb;
    --white: #ffffff;
    --dark-bg: #111827;
    --success: #16a34a;
    --font-main: 'Inter', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(to bottom, #1e3a8a, #1e40af);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.badge-red {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.headline {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline u {
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 3px;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-bullets {
    text-align: left;
    display: inline-block;
    margin-bottom: 40px;
}

.hero-bullets li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hero-bullets i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.3rem;
    background: white;
    border-radius: 50%;
}

.hero-video-container {
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.sound-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-sound 2s infinite;
    z-index: 10;
}

.sound-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.sound-button i {
    font-size: 1.3rem;
}

.sound-button.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.5);
}

@keyframes pulse-sound {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.6), 0 0 0 10px rgba(220, 38, 38, 0.1);
    }
}

.video-caption {
    margin-top: 15px;
    font-weight: 600;
    color: #e5e7eb;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 767px) {
    .sound-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .sound-button i {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }

    .subheadline {
        font-size: 1.4rem;
    }
}

/* =========================================
   CTA BUTTONS
   ========================================= */
.cta-button {
    display: inline-block;
    background: #facc15;
    /* Yellow */
    background: linear-gradient(to bottom, #facc15, #eab308);
    color: #000;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 5px;
    box-shadow: 0 5px 0 #ca8a04, 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s, box-shadow 0.1s;
    text-transform: uppercase;
    border-bottom: none;
    width: 100%;
    max-width: 500px;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: 0 1px 0 #ca8a04, 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pulse {
    animation: pulse-btn 2s infinite;
}

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

    50% {
        transform: scale(1.05);
    }

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

.guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.problem-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #374151;
}

.text-block p {
    margin-bottom: 20px;
}

.text-block strong {
    color: black;
    background: #fef3c7;
    padding: 0 5px;
}

/* =========================================
   SOLUTION / MODULES
   ========================================= */
.solution-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-sub {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #4b5563;
}

.module-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.module-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 800;
}

/* =========================================
   AUDIENCE SECTION
   ========================================= */
.audience-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* =========================================
   BONUS SECTION
   ========================================= */
.bonus-section {
    padding: 80px 0;
    background: #fffbeb;
    /* Light yellow tint */
    border-top: 5px dashed #fcd34d;
    border-bottom: 5px dashed #fcd34d;
}

.bonus-headline {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

.bonus-sub {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
}

.bonus-stack {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-row {
    display: flex;
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex-direction: column;
}

@media (min-width: 600px) {
    .bonus-row {
        flex-direction: row;
    }
}

.bonus-img {
    background: var(--secondary-color);
    color: white;
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

@media (min-width: 600px) {
    .bonus-img {
        width: 150px;
    }
}

.bonus-details {
    padding: 20px;
    flex: 1;
}

.bonus-details h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.value-tag {
    display: inline-block;
    background: #fee2e2;
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 10px;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.pricing-box {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    background: #fef3c7;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #fcd34d;
}

.special-offer {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-top: 5px;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success);
    margin-right: 10px;
}

.price-reveal {
    text-align: center;
    background: #f0fdf4;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid var(--success);
    margin-bottom: 20px;
}

.strike {
    text-decoration: line-through;
    color: var(--primary-color);
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
}

.currency-symbol {
    font-size: 2rem;
    vertical-align: super;
}

/* Form */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
}

.big-buy-btn {
    width: 100%;
    background: #16a34a;
    /* Green */
    color: white;
    border: none;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 0 #15803d;
    transition: transform 0.1s;
}

.big-buy-btn:active {
    transform: translateY(4px);
    box-shadow: 0 1px 0 #15803d;
}

.btn-main {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.9;
}

.payment-icons {
    text-align: center;
    margin-top: 20px;
    color: #6b7280;
    font-size: 0.9rem;
}

.payment-icons i {
    margin: 0 5px;
    font-size: 1.5rem;
}

/* =========================================
   IMAGE TESTIMONIALS SECTION
   ========================================= */
.image-testimonials-section {
    padding: 80px 0;
    background: #f3f4f6;
    text-align: center;
}

.image-testimonials-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.review-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

@media (max-width: 767px) {
    .image-testimonials-section h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .review-image {
        max-width: 100%;
    }
}

/* =========================================
   REVIEWS & FAQ
   ========================================= */
.reviews-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.review-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    margin: 0 10px;
}

.stars {
    color: #facc15;
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* =========================================
   SLIDER STYLES
   ========================================= */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 767px) {
    .prev, .next {
        width: 40px;
        height: 40px;
        padding: 10px;
        font-size: 1rem;
    }
}

footer {
    background: #000;
    color: #6b7280;
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
}

footer .footer-links {
    margin: 15px 0;
}

footer .footer-links a {
    color: #9ca3af;
    text-decoration: underline;
    transition: color 0.3s;
}

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

/* =========================================
   FLOATING CTA BUTTON (Mobile Only)
   ========================================= */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #facc15, #eab308);
    color: #000;
    text-align: center;
    padding: 18px 20px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top: 3px solid #ca8a04;
    animation: pulse-btn 2s infinite;
    display: none; /* Hidden by default, shown on mobile */
}

.floating-cta.hide {
    display: none !important;
}

.floating-btn-text {
    display: block;
}

/* Show floating button only on mobile */
@media (max-width: 767px) {
    .floating-cta {
        display: block;
    }

    /* Add padding to body to prevent content from being hidden behind floating button */
    body {
        padding-bottom: 70px;
    }
}

/* Mobile optimizations */
@media (max-width: 767px) {
    /* Pricing section mobile optimization - make form visible without scrolling */
    .pricing-section {
        padding: 40px 0 60px;
    }

    .pricing-header {
        padding: 15px;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
        margin-top: 3px;
    }

    .pricing-body {
        padding: 20px 15px;
    }

    .pricing-features {
        margin-bottom: 15px;
    }

    .pricing-features li {
        margin-bottom: 6px;
        padding-bottom: 6px;
        font-size: 0.9rem;
    }

    .price-reveal {
        padding: 12px 10px;
        margin-bottom: 15px;
    }

    .total-value {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .today-price {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .final-price {
        font-size: 3rem;
    }

    .currency-symbol {
        font-size: 1.5rem;
    }

    .input-group {
        margin-bottom: 12px;
    }

    .input-group input {
        padding: 12px 12px 12px 40px;
        font-size: 0.95rem;
    }

    .big-buy-btn {
        padding: 16px;
        margin-top: 5px;
    }

    .btn-main {
        font-size: 1.2rem;
    }

    .btn-sub {
        font-size: 0.75rem;
    }

    .payment-icons {
        margin-top: 15px;
        font-size: 0.85rem;
    }

    .payment-icons i {
        font-size: 1.3rem;
    }
}

/* =========================================
   PRICE LOADING STATE
   ========================================= */
.price-loading {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.currency-symbol,
.amount,
.old-currency,
.old-amount {
    transition: opacity 0.3s ease;
}

/* When not loading, ensure elements are visible */
.currency-symbol:not(.price-loading),
.amount:not(.price-loading) {
    opacity: 1;
    visibility: visible;
}