:root {
    --bg-main: #fcf9f2;
    /* Creamy Off-White */
    --purple-deep: #5A189A;
    /* Deep Purple for text/hero */
    --purple-vivid: #9d4edd;
    /* Vivid Purple for accents */
    --pink-hot: #ff006e;
    /* Hot Pink for buttons/accents */
    --pink-soft: #ffc2d1;
    --green-fresh: #00b894;
    --text-dark: #000000;
    --text-light: #000000;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 30px rgba(90, 24, 154, 0.05);
    --shadow-hover: 0 20px 40px rgba(90, 24, 154, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--purple-deep);
}

p,
li {
    font-size: 1.3rem;
    /* Matched to subheadline size as requested */
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.text-center {
    text-align: center;
}

/* --- Top Bar --- */
.top-warning {
    background: var(--purple-deep);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* Fixed positioning settings */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Add padding to body so content isn't hidden behind fixed header */
body {
    padding-top: 50px;
    /* Adjust based on bar height */
}

.top-warning span {
    color: var(--pink-soft);
    text-decoration: underline;
}

/* --- Hero --- */
.hero {
    padding: 20px 0 10px;
    /* Reduced top padding significantly and bottom padding to bring sections closer */
    text-align: center;
    background: radial-gradient(circle at 50% 10%, rgba(157, 78, 221, 0.05), transparent 60%);
}

.headline {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--purple-deep) 0%, #3a0ca3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.highlight-bg {
    background: linear-gradient(120deg, var(--pink-soft) 0%, rgba(255, 0, 110, 0.2) 100%);
    -webkit-text-fill-color: var(--purple-deep);
    padding: 0 8px;
    border-radius: 6px;
    display: inline-block;
    transform: skewX(-10deg);
}

.subheadline {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-img-container {
    margin: 30px auto 0;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    padding: 15px;
    max-width: 450px;
    position: relative;
    z-index: 1;
    background: transparent !important;
    animation: simple-zoom 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* 1. Gradient Border (Rotating) */
.hero-img-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    z-index: -2;
    border-radius: 34px;
    background: conic-gradient(from var(--angle), #5A189A, #9d4edd, #ff006e, #240046, #5A189A);
    animation: rotate-angle 4s linear infinite;
}

/* 2. White Background (Center) */
.hero-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: white;
    border-radius: 30px;
}

@keyframes simple-zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-img-container:hover {
    transform: scale(1.08);
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #00ff88;
    color: #000;
    /* Text color to black */
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    font-size: 1.2rem;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 184, 148, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: white;
    color: var(--purple-deep);
    border: 2px solid var(--purple-deep);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--purple-deep);
    color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* --- Glassmorphism Cards --- */
.glass-effect,
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
    border-radius: 25px;
}

.glass-effect {
    padding: 50px;
}

.glass-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover,
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.story-box p {
    font-size: 1.3rem;
    /* Standardized to match rest of page */
}

.highlight-box {
    background: linear-gradient(to right, #fff3cd, #fff);
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.3rem;
    /* Standardized to match rest of page */
    color: #000;
    border-radius: 0 15px 15px 0;
}

/* --- 3D Icons Logic (CSS Trickery) --- */
.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
    /* Reduced from 50px */
}

.quiz-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    border-bottom: 5px solid #eee;
    transition: 0.3s;
}

.quiz-card:hover {
    border-bottom-color: var(--purple-vivid);
}

/* Creating a "3D" Coin/Bubble effect on icons */
.icon-3d-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-3d {
    font-size: 3.5rem;
    color: white;
    background: linear-gradient(135deg, var(--purple-vivid), var(--purple-deep));
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-10deg) skew(5deg);
    box-shadow:
        5px 5px 0px rgba(0, 0, 0, 0.1),
        /* Side Hard Shadow */
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        /* Highlight */
        inset -2px -2px 5px rgba(0, 0, 0, 0.2);
    /* Inner Shadow */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hover-scale:hover .icon-3d {
    transform: rotate(0deg) scale(1.1);
}

.icon-3d.color-pink {
    background: linear-gradient(135deg, #ff006e, #c7004c);
}

.icon-3d.color-green {
    background: linear-gradient(135deg, #00b894, #00a884);
}

/* --- Showcase --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 25px;
    /* Reduced from 50px */
}

.product-item {
    overflow: hidden;
    padding: 15px;
}

.img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .img-wrapper img {
    transform: scale(1.1);
}

.product-desc {
    padding: 20px 10px 10px;
    text-align: center;
}

.product-desc h4 {
    color: var(--purple-vivid);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* --- Testimonials Slider --- */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 20px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
}

.testi-card {
    text-align: left;
    padding: 40px;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    background: var(--purple-vivid);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.testi-avatar.color-2 {
    background: var(--pink-hot);
}

.testi-avatar.color-3 {
    background: var(--green-fresh);
}

.stars {
    color: #f1c40f;
    font-size: 1.1rem;
}

.whatsapp-badge i {
    color: #25D366;
    font-size: 1.5rem;
    vertical-align: middle;
    margin-left: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: var(--purple-deep);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--purple-deep);
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--purple-deep);
    transform: scale(1.2);
}

/* --- Bonus 3D Style --- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px !important;
}

.bonus-box {
    text-align: center;
    padding: 30px;
    background: white;
    border: 2px dashed #e0cae0;
}

.bonus-box:hover {
    border-style: solid;
    border-color: var(--purple-vivid);
}

.icon-3d-small {
    font-size: 2.5rem;
    color: var(--purple-vivid);
    margin-bottom: 20px;
    filter: drop-shadow(2px 4px 6px rgba(157, 78, 221, 0.3));
    transform: perspective(500px) rotateY(20deg);
}

.color-pink-icon {
    color: var(--pink-hot);
    filter: drop-shadow(2px 4px 6px rgba(255, 0, 110, 0.3));
}

.color-green-icon {
    color: var(--green-fresh);
    filter: drop-shadow(2px 4px 6px rgba(0, 184, 148, 0.3));
}

.color-gold-icon {
    color: #ff9f1c;
    filter: drop-shadow(2px 4px 6px rgba(255, 159, 28, 0.3));
}

.bonus-tag {
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

/* --- Pricing --- */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.price-card {
    padding: 20px;
    width: 100%;
    max-width: 380px;
    background: white;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Basic Card Specifics */
.basic-card {
    border: 1px solid #ddd;
}

/* Featured Neon Card */
.neon-card {
    position: relative;
    border-radius: 20px;
    z-index: 1;
    /* Establishes stacking context */
    margin: 10px;
    background: transparent !important;
    /* Important: The card itself is transparent */
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 1. The Gradient Border (Behind everything) */
.neon-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    /* Extends 4px outward to create the border look */
    z-index: -2;
    /* Deepest layer */
    border-radius: 24px;
    /* Card radius (20) + border width (4) */
    background: conic-gradient(from var(--angle), #5A189A, #9d4edd, #ff006e, #240046, #5A189A);
    animation: rotate-angle 4s linear infinite;
}

/* 2. The White Background (Covers the center of the gradient) */
.neon-card::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Matches element size */
    z-index: -1;
    /* Behind content, but in front of gradient */
    background: white;
    border-radius: 20px;
}

/* Define custom property for rotation logic */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-angle {
    to {
        --angle: 360deg;
    }
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #5A189A;
    color: white;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    border: 2px solid white;
}

.urgency-text {
    text-align: center;
    color: #ff0000;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.card-image {
    margin-bottom: 15px;
}

.price-card h4 {
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
}

/* Pricing List Styles */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1.3rem;
    /* Updated to 1.3rem */
    color: #000;
    /* Changed from #333 to black */
}

.price-list li .text {
    flex: 1;
    text-align: left;
    padding-left: 25px;
    /* space for icon */
    position: relative;
    line-height: 1.3;
}

.price-list li .old-price {
    font-weight: 700;
    color: #e74c3c;
    text-decoration: line-through;
    font-size: 1rem;
    /* Increased size for crossed out price */
    margin-left: 5px;
    white-space: nowrap;
}

/* Icons via Pseudo */
.price-list li .text::before {
    content: '\f058';
    /* Solid Check Circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    /* Adjusted alignment */
    color: #5A189A;
    font-size: 1.1rem;
    /* Reduced icon size slightly relative to text */
}

.price-list li.cross .text::before {
    content: '\f057';
    /* X Check Circle */
    color: #e74c3c;
}

/* Footer & Countdown */
.countdown-box {
    background: #fff0f5;
    border: 1px dashed #ff006e;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.countdown-box p {
    font-size: 0.7rem;
    font-weight: 800;
    color: #a02050;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer {
    font-size: 2rem;
    font-weight: 800;
    color: #d63031;
    line-height: 1;
}

.price-footer {
    text-align: center;
    margin-top: auto;
}

.from-price {
    font-size: 1.1rem;
    /* Increased size */
    color: #000;
    /* Darker for readability */
    margin-bottom: 5px;
    font-weight: 600;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin: 5px 0 15px;
}

.green-text {
    color: #00b894;
}

.secure-icon {
    font-size: 0.95rem;
    /* Increased size */
    color: #000;
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

/* Buttons inside pricing */
.btn-grey {
    background: #dfe6e9;
    color: #2d3436;
    font-weight: 800;
    box-shadow: 0 4px 0 #b2bec3;
    border-radius: 8px;
    padding: 15px 10px;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
}

.btn-grey:hover {
    background: #b2bec3;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #636e72;
}

.btn-purple-lg {
    background: #5A189A;
    color: white;
    font-weight: 900;
    box-shadow: 0 5px 0 #3a0ca3;
    border-radius: 10px;
    padding: 20px 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}

.btn-purple-lg:hover {
    background: #7b2cbf;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #3a0ca3;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
        /* Ensure items are centered */
    }

    .price-card {
        width: 100% !important;
        /* Force full width on mobile */
        max-width: 380px;
        /* But keep max-width constraint */
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Order manipulation: Complete package (neon-card) first */
    .neon-card {
        order: -1;
        margin: 10px auto !important;
        /* Center and keep spacing */
    }

    .headline {
        font-size: 2rem;
    }

    .hero-img-container {
        transform: none;
        padding: 10px;
    }
}

/* Animations */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Zoom in */
    }

    100% {
        transform: scale(1);
        /* Zoom out */
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 20px 0 60px;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-item.active {
    background: white;
    box-shadow: 0 10px 30px rgba(90, 24, 154, 0.15);
    transform: scale(1.02);
    border-color: #9d4edd;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.3rem;
    /* Updated to 1.3rem */
    color: #000;
    /* Changed from #2d3436 to black */
}

.faq-question i {
    color: #5A189A;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #ff006e;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Increased to accommodate longer text */
    opacity: 1;
    padding-bottom: 25px;
    transition: max-height 0.8s ease-in-out, opacity 0.4s ease;
}

.faq-answer p {
    margin-bottom: 0;
    font-size: 1.3rem;
    /* Updated to 1.3rem */
    color: #000;
    /* Changed from #636e72 to black */
}

/* --- Global Section Spacing Fix --- */
/* --- Global Section Spacing Fix --- */
section {
    padding: 20px 0;
    /* Reduced from 60px to remove excessive gaps */
    position: relative;
}

/* Specific adjustment for FAQ */
.faq-section {
    padding-top: 40px;
    padding-bottom: 0;
}

/* Ensure title doesn't overlap slider dots */
.testimonials {
    padding-bottom: 20px;
    /* Reduced to pull next section closer */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    section {
        padding: 20px 0;
        /* Keep compact on mobile */
    }
}


/* Force override for slider dots spacing */
/* Force override for slider dots spacing */
.slider-dots {
    margin-top: 5px !important;
    /* Reduced significantly from 30px */
    padding-bottom: 5px !important;
    /* Reduced from 20px */
}

/* Guarantee Section Fix */
/* Guarantee Section Fix */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px;
    /* Negative margin to pull it UP closer to the pricing table above */
    padding: 60px 40px;
}

.guarantee-box h3 {
    margin-top: 20px;
}

/* Footer Styling */
footer {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.copyright-text {
    font-size: 0.65rem !important;
    /* Half size (approx from 1.3rem default) */
    color: #999 !important;
    margin: 0 auto;
    text-align: center;
}

/* Bonus Highlights */
.bonus-value {
    font-size: 1rem !important;
    font-weight: 600;
    margin-top: 10px;
    color: #555;
}

.free-badge {
    color: #00b894;
    font-weight: 800;
    margin-left: 5px;
}


/* Metrics Bar Styling */
.metrics-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffc2d1;
    /* Pink Soft */
    padding: 20px 10px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 900px;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(255, 194, 209, 0.4);
}

.metric-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.metric-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #5A189A;
    /* Purple Deep */
    line-height: 1;
    margin-bottom: 5px;
}

.metric-txt {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(90, 24, 154, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .metric-num {
        font-size: 1.5rem;
    }

    .metric-txt {
        font-size: 0.7rem;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.hero-slides-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
}

.hero-slides-wrapper:active {
    cursor: grabbing;
}

.hero-carousel-img {
    min-width: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    /* Prevents dragging the image itself */
}

.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.h-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.h-dot.active {
    background: var(--purple-deep);
    transform: scale(1.2);
}


/* Hero Carousel Navigation Arrows */
.hero-carousel {
    position: relative;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--purple-main);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--purple-main);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.h-prev-btn {
    left: 10px;
}

.h-next-btn {
    right: 10px;
}

/* Ensure dots are below neon border area */
.hero-carousel-dots {
    margin-top: 20px;
}

/* Custom Icon Image */
/* Custom Icon Image */
.icon-3d.no-bg {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    display: block !important;
}

/* Adjust wrapper to expand with the content */
.quiz-card .icon-3d-wrapper {
    height: auto;
    min-height: 200px;
    width: 100%;
    margin-bottom: 30px;
}

.icon-3d.no-bg img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Hide the shadow for the image icon */
.icon-3d.no-bg+.icon-shadow {
    display: none;
}

/* Final CTA Styling */
.final-cta {
    padding: 10px 0 60px;
    /* Reduced top padding */
    background: var(--bg-main);
}

.cta-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-card h2 {
    color: var(--purple-deep);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-card p {
    color: #444;
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.cta-card .large-btn {
    background: #00ff88 !important;
    /* Neon Green stays */
    color: #000 !important;
    font-size: 1.3rem;
    padding: 22px 50px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    border: none;
}

.cta-card .large-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Footer Adjusted to Light */
footer {
    background: white;
    padding: 40px 0 30px;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--purple-deep);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--pink-hot);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--purple-vivid);
}

@media (max-width: 768px) {
    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-card .large-btn {
        font-size: 1.1rem;
        padding: 20px 30px;
    }
}

/* --- Upsell Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 550px;
    width: 95%;
    background-color: #ffffff;
    padding: 0;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
    border: 3px solid #6c5ce7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-scroll-area {
    max-height: 70vh;
    overflow-y: auto;
    padding: 30px 20px;
}


@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.stop-icon {
    font-size: 3.5rem;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.modal-header h2 {
    color: #d63031;
    font-size: 2.22rem;
    /* Consistent large size */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.modal-body {
    text-align: center;
}

.modal-intro {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
    font-weight: 500;
}

.modal-text {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.3;
}

.badge-text {
    background: #6c5ce7;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 700;
}

.offer-box {
    background: #fff9e6;
    border: 2px solid #ffeaa7;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.offer-highlight {
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    font-size: 1.6rem;
}

.modal-content .price-list li {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 12px;
}

.modal-content .price-list li .text {
    padding-left: 30px;
}

.savings-badge {
    background: #fff3cd;
    border: 2px dashed #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
    font-size: 1.4rem;
}

.modal-urgency {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.3;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-upgrade {
    background: #5A189A;
    color: white;
    font-size: 1.4rem;
    padding: 22px !important;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(90, 24, 154, 0.4);
    border: none;
    cursor: pointer;
    display: block;
    text-align: center;
}

.btn-decline {
    color: #000;
    font-size: 1.3rem;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-decline:hover {
    opacity: 0.7;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
    }

    .modal-scroll-area {
        padding: 25px 15px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-intro,
    .modal-text,
    .modal-urgency {
        font-size: 1.25rem;
        /* Adjusted for smaller screens to prevent overflow */
        line-height: 1.3;
    }

    .offer-highlight {
        font-size: 1.3rem;
    }

    .modal-content .price-list li {
        font-size: 1.1rem;
        flex-wrap: wrap;
        /* Prevent price from cutting out */
    }

    .btn-upgrade {
        font-size: 1.2rem;
        padding: 18px !important;
    }
}

@keyframes modal-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: modal-pulse 2s infinite;
}

/* Reusing pulse-btn from main styles or defining if not there */
.pulse-btn {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 184, 148, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

/* --- Modal Close Button Bottom --- */
.modal-close-bottom {
    width: 100%;
    background: #f8f9fa;
    border: none;
    border-top: 1px solid #eee;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #d63031;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

.modal-close-bottom:hover {
    background: #fffafa;
    color: #e84118;
}

@media (max-width: 600px) {
    .modal-close-bottom {
        padding: 15px;
        font-size: 1rem;
    }
}
/* --- Content Protection --- */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* --- ESTILO NOVO PARA O VIDEO (VSL) --- */
.video-vsl-container {
    width: 100%;
    max-width: 480px;
    margin: 30px auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    aspect-ratio: 9 / 16; /* Formato TikTok/Reels */
    background: #000;
}

.video-vsl-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 600px) {
    .video-vsl-container {
        max-width: 100%;
        margin: 20px auto;
        border-radius: 12px;
    }
}

/* Segurança para navegadores antigos */
@supports not (aspect-ratio: 9/16) {
    .video-vsl-container {
        padding-top: 177.78%;
        height: 0;
    }
    .video-vsl-container iframe {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* --- CORREÇÃO BLINDADA DO VIDEO VSL --- */
.video-vsl-container {
    width: 100% !important;
    max-width: 100% !important; /* Garante largura total no mobile */
    margin: 20px auto 30px !important;
    position: relative !important;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    
    /* Isso define a altura. Se o vídeo for quadrado, mude para 100% */
    padding-top: 177.78% !important; /* Formato Celular (9:16) */
    height: 0 !important;
}

/* Ajuste para telas maiores (Desktop/Tablet) para não ficar gigante */
@media (min-width: 768px) {
    .video-vsl-container {
        max-width: 400px !important; /* Trava a largura no PC */
    }
}

.video-vsl-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Código limpo para garantir */
.video-vsl-container {
    width: 100%;
}