:root {
    --bg-color: #0d1117;
    --text-color: #e6edf3;
    --text-muted: #8b949e;
    --primary-color: #f1c40f;
    /* Gold */
    --primary-hover: #d4ac0d;
    --secondary-bg: #161b22;
    --card-bg: rgba(22, 27, 34, 0.7);
    --border-color: #30363d;
    --accent-blue: #58a6ff;
    --accent-green: #2ea043;

    --font-main: 'Outfit', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 15px rgba(241, 196, 15, 0.3);
}

* {
    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;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(241, 196, 15, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(88, 166, 255, 0.05) 0%, transparent 20%);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Font Import for Headline */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0 0.5rem;
    /* Reduced bottom padding to bring next section closer */
    position: relative;
    /* Golden Checkered Background (Quadrejado Dourado) */
    background-color: #0d1117;
    background-image:
        linear-gradient(rgba(241, 196, 15, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 196, 15, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    /* Subtle central light */
    background-size: 30px 30px, 30px 30px, 100% 100%;
    background-position: center center;
}

.headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    /* Centered */
    max-width: 500px;
    /* Tighter width */
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sub-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #e0e0e0;
    /* Much brighter/thicker appearance against dark bg */
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
    /* Thicker */
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Pop */
}

/* 3D Book Animation Container (Open/Close) */
.book-container {
    perspective: 1500px;
    /* Deep perspective */
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* Clean Book Image Only - NO SHADOW */
.floating-book {
    width: 100%;
    border-radius: 4px;
    box-shadow: none !important;
    /* Forces removal of square shadow */
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    /* Natural contour shadow only */
}

.book-mockup {
    position: relative;
    width: 550px;
    /* INCREASED SIZE */
    transform-style: preserve-3d;
    transform-origin: left center;
    animation: bookFloatAndOpen 8s ease-in-out infinite;
}

/* Removed ::before/::after that simulated pages/white screen */
.book-mockup::before,
.book-mockup::after {
    display: none;
}

.book-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    /* Back Cover preview */
    transform: translateZ(-10px);
    border-radius: 4px;
    z-index: -2;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes simpleFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

/* Ensure animation name matches in book-mockup rule (which was 'bookFloatAndOpen' but we can just use that name or update the rule) */
/* Actually, let's just REPLACE the keyframes for bookFloatAndOpen with a simpler version to be safe without editing the other rule */
@keyframes bookFloatAndOpen {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}




/* WhatsApp Carousel Styles */
.wa-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 0;
    /* Fade mask for edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.wa-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
    /* Slow auto-scroll */
}

.wa-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half way (since content is duplicated) */
}

/* Gold Bordered Card for Feedbacks */
.wa-feedback-card {
    flex: 0 0 300px;
    /* Fixed width for consistency */
    position: relative;
    background: #0d1117;
    border-radius: 12px;
    padding: 2px;
    /* Thin border space */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wa-feedback-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, #bf953f, #fbf5b7, #aa771c, transparent);
    animation: thinBorderRotate 4s linear infinite;
    z-index: 0;
}

.wa-inner-content {
    background: #141920;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wa-feedback-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    /* Match inner radius */
    /* Enhance image slightly */
    filter: contrast(1.05) brightness(1.05);
}

/* Book Container Fix - Mobile Optimized */
.book-container {
    position: relative;
    margin: 0.5rem auto 0;
    /* Reduced bottom margin from 3rem */
    perspective: 1500px;
    width: 90%;
    /* Safer width for mobile */
    max-width: 550px;
    height: auto;
    aspect-ratio: 3.5 / 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-mockup {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform;
    animation: pulseBook 3s ease-in-out infinite;
}

.floating-book {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

/* Pulsing White Light */
.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseWhite 3s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes pulseWhite {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
    }
}

@keyframes pulseBook {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Social Testimonials (White Cards "Image-like") */
/* Social Testimonials (Facebook Comments Style) - Clean */
.more-testimonials,
.final-testimonials {
    padding: 3rem 0;
}

.social-testimonials {
    padding: 1rem 0 3rem 0;
    /* Reduced top padding for the first section */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* Classic FB corner radius */
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #1c1e21;
    font-family: Helvetica, Arial, sans-serif;
    /* System font for realism */
    display: flex;
    flex-direction: column;
}

.social-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    border: none;
    padding: 0;
}

.social-header .avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.8rem;
    border: none;
    background-color: #ddd;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #050505;
    margin-bottom: 2px;
}

.comment {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-style: normal;
    font-weight: 400;
    color: #050505;
    line-height: 1.4;
}

/* Like/Reply Action Row */
.fb-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #65676b;
    font-weight: 600;
    margin-top: 0.5rem;
    cursor: pointer;
}

.fb-likes-count {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    font-weight: 400;
    color: #65676b;
}

.like-icon-circle {
    width: 16px;
    height: 16px;
    background: #1877f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-thumb {
    width: 10px;
    height: 10px;
    fill: white;
}

.reply {
    background: #f5f5f5;
    /* Light grey reply bg */
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    color: #555;
}

.reply-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 0.3rem;
}

/* WhatsApp specific style adjustments for white card */
.chat-bubble {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    max-width: 90%;
    color: #fff;
    /* Text inside bubbles stays white if bubble background is dark/green */
}

.chat-bubble.user {
    background: #202c33;
    border-top-left-radius: 0;
    margin-right: auto;
}

.chat-bubble.admin {
    background: #005c4b;
    border-top-right-radius: 0;
    color: #fff;
    text-align: right;
}

/* Pain Points 3D Blocks (Scroll Driven) */
.pain-points {
    background: transparent;
    padding: 4rem 0;
    border: none;
    overflow: hidden;
    /* Hide overflow from 3D movement */
}

.pain-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    perspective: 1200px;
    /* Stronger perspective */
}

/* Pain Points - Red Glow Style (Permanent) */
.pain-block {
    background: #0d1117;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Permanent Red Line */
    border-bottom: 3px solid #ff3b3b;
    /* Permanent Glow Shadow */
    box-shadow: 0 15px 40px -10px rgba(255, 59, 59, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pain-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-block:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 59, 48, 0.4);
}

/* Permanent Pulse Animation inside */
.pain-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    /* Match parent */
    box-shadow: inset 0 0 20px rgba(255, 59, 48, 0.15);
    /* Always visible */
    animation: pulseRed 3s infinite;
    /* Always pulsing */
    pointer-events: none;
}

@keyframes pulseRed {
    0% {
        box-shadow: inset 0 0 15px rgba(255, 59, 48, 0.1);
    }

    50% {
        box-shadow: inset 0 0 35px rgba(255, 59, 48, 0.3);
    }

    100% {
        box-shadow: inset 0 0 15px rgba(255, 59, 48, 0.1);
    }
}

.pain-content h3 {
    margin: 1rem 0 0.5rem;
    color: #ff3b30;
    font-size: 1.2rem;
}

/* Solution Dark */
.solution-dark {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-color);
    /* Dark same as site */
    position: relative;
}

.gold-text {
    background: linear-gradient(to right, #f1c40f, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.solution-text.white-text {
    color: #fff;
    font-size: 1.3rem;
}

.gold-accent {
    color: var(--primary-color);
}

/* Offer Details & List */
.offer-details {
    padding: 4rem 0;
}

.benefits-list {
    list-style: none;
    margin-bottom: 4rem;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInCheck 0.5s forwards;
}

.benefits-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.benefits-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.benefits-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.benefits-list li:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInCheck {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.benefits-list li i {
    color: var(--primary-color);
    /* Gold check */
    margin-right: 1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Bonus Cards - Premium & Elegant */
/* Bonus Grid - Image Only Style (Vertical Stack, Tighter) */
/* 3D Manual Blocks Grid */
.manual-blocks-3d-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    perspective: 1000px;
    /* Depth context */
}

.manual-block-3d-card {
    position: relative;
    width: 100%;
    height: 180px;
    /* Banner height */
    border-radius: 16px;
    background: #161b22;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    cursor: default;

    /* Base 3D tilt hint */
    transform: perspective(1000px) rotateX(5deg);
}

.manual-block-3d-card:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.manual-img-holder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

/* Light Shine Animation */
.manual-block-3d-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* Start Off-screen */
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shineSweep 3s infinite;
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    /* Fast sweep */
    100% {
        left: 200%;
    }

    /* Wait */
}

/* Specific Glows */
.animated-glow-blue {
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.2),
        0 0 0 1px rgba(88, 166, 255, 0.3);
}

.animated-glow-blue:hover {
    box-shadow: 0 15px 40px rgba(88, 166, 255, 0.4),
        0 0 0 1px rgba(88, 166, 255, 0.6);
}

.animated-glow-gold {
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2),
        0 0 0 1px rgba(241, 196, 15, 0.3);
}

.animated-glow-gold:hover {
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.4),
        0 0 0 1px rgba(241, 196, 15, 0.6);
}

.animated-glow-purple {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2),
        0 0 0 1px rgba(168, 85, 247, 0.3);
}

.animated-glow-purple:hover {
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4),
        0 0 0 1px rgba(168, 85, 247, 0.6);
}

.bonus-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.bonus-card p {
    font-size: 1rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Adjustments for Banners */
@media (max-width: 768px) {
    .bonus-inner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .bonus-text-content {
        align-items: center;
        text-align: center;
    }

    .bonus-card h3 {
        font-size: 1.3rem;
    }
}

/* --- NEW FIXES & UPDATES --- */

/* 1. Global Overflow Fix */
html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* 2. WhatsApp Carousel Visibility Fix */
.wa-carousel-container {
    min-height: 500px;
    /* Reserve space to prevent collapse */
    background: #0d1117;
    /* Fallback background */
}

.wa-feedback-card {
    min-height: 500px;
    /* Ensure cards have height before image loads */
    background: #141920;
    /* Card background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. New Green Glow for WhatsApp Bonus Block */
.animated-glow-green {
    box-shadow: 0 10px 30px rgba(46, 160, 67, 0.2),
        0 0 0 1px rgba(46, 160, 67, 0.3);
}

.animated-glow-green:hover {
    box-shadow: 0 15px 40px rgba(46, 160, 67, 0.4),
        0 0 0 1px rgba(46, 160, 67, 0.6);
}

/* 4. PREMIUM PRICING REDESIGN & OFFER LIST */

/* Red Pulse Animation for Badge */
.pulsating-red {
    background: #ff3b3b !important;
    color: white !important;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    animation: pulseRedBadge 1.5s infinite;
    border: none !important;
    margin: 0 auto;
    display: table;
}

@keyframes pulseRedBadge {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 59, 59, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    }
}

/* Offer List Styling */
.offer-benefit-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    text-align: center;
    width: 100%;
    max-width: 400px;
    /* Constrain width for better reading */
}

.offer-benefit-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.offer-benefit-list li:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

/* Pricing Block */
.purple-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 1rem;
    text-align: center;
}

.old-price-strike {
    font-size: 1.8rem;
    color: #ff3b3b;
    /* RED */
    text-decoration: line-through;
    opacity: 0.9;
    font-weight: 700;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.current-price-row {
    display: flex;
    align-items: flex-end;
    /* Bottom alignment for R$ */
    justify-content: center;
    gap: 6px;
    line-height: 0.9;
    /* Tighter line height to help alignment */
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    order: -1;
    margin-bottom: 11px;
    /* Precise adjustment to align with baseline of 19,90 */
    align-self: flex-end;
}

.value {
    font-size: 6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
}

.lifelong {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-top: 50px;
    display: block;
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.timer-label {
    text-align: center;
    color: #ff3b3b;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.timer-container {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #ff3b30;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

.timer-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.offer-content {
    padding: 2rem;
    text-align: center;
}

/* Premium Offer Summary */
.offer-summary {
    background: rgba(48, 54, 61, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    backdrop-filter: blur(5px);
}

.offer-summary h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

.offer-summary ul li {
    list-style: none;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #e6edf3;
    display: flex;
    align-items: center;
}

/* Custom premium tick */
.offer-summary ul li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #2ea043;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(46, 160, 67, 0.4);
}

.price-display {
    margin: 2rem 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #8b949e;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 1.5rem;
    color: #fff;
}

/* Purple Offer Block Redesign */
.offer-box.purple-theme {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(126, 34, 206, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Grid Pattern Overlay */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Dark Circular Shapes in Background */
.offer-box.purple-theme::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.offer-box.purple-theme::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 20%;
    width: 250px;
    height: 250px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

.offer-box.purple-theme>* {
    position: relative;
    z-index: 2;
}

.offer-box.purple-theme .offer-tag-pill {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    /* Ensure it stays on top */
}

.purple-offer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    /* Large impact */
    font-weight: 800;
    line-height: 1.1;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.purple-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    line-height: 1;
}

/* Organized Price Layout */
.old-price-strike {
    color: #ff3b3b;
    /* Red */
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0px;
    /* Closer */
    opacity: 0.9;
    align-self: flex-end;
    /* Push to right slightly if needed, or center */
    margin-right: 20%;
    /* Visual adjustment based on image */
}

.current-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.purple-price-block .currency {
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.9;
    vertical-align: top;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    top: -20px;
}

.purple-price-block .value {
    font-size: 6rem;
    /* Massive */
    font-weight: 800;
    letter-spacing: -3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.purple-price-block .lifelong {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: -10px;
}

.purple-offer-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 auto 2rem;
    max-width: 500px;
    line-height: 1.5;
}

.purple-secure-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.cta-button.white-btn {
    background: #2ea043;
    /* Green Default */
    color: #fff;
    /* White Text */
    font-weight: 800;
    font-size: 1.3rem;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(46, 160, 67, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: 2px solid #2ea043;
}

.cta-button.white-btn:hover {
    background: #ffffff !important;
    color: #2ea043 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.white-btn:hover {
    background: #ffffff !important;
    color: #2ea043 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* Timer Red Alert */
.offer-timer-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 59, 48, 0.15);
    /* Slight Red Bg */
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 1.5rem;
    /* Larger */
    color: #ff3b3b;
    /* Red Text */
    border: 1px solid rgba(255, 59, 48, 0.3);
    animation: pulseRedTimer 1s infinite;
}

.timer-icon-white {
    stroke: #ff3b3b;
    /* Red Icon */
    margin-right: 10px;
}

@keyframes pulseRedTimer {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bonus-image-wrapper {
    width: 100%;
    height: 150px;
    background: #000;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Using sprite sheet logic simply or just placeholder cover */
    object-position: center;
}

/* Sprite mapping based on assumption of the generated image layout */
.bonus-image.guide {
    object-fit: contain;
    object-position: left bottom;
    transform: scale(3) translate(15%, 15%);
}

.bonus-image.map {
    object-fit: contain;
    object-position: center bottom;
    transform: scale(3) translate(0%, 15%);
}

.bonus-image.audio {
    object-fit: contain;
    object-position: right bottom;
    transform: scale(3) translate(-15%, 15%);
}

/* Avatars */
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--primary-color);
    object-fit: cover;
    overflow: hidden;
}

/* Sprite mapping for avatars if using single file */
.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar-img.w1 {
    object-position: left top;
    transform: scale(3) translate(15%, 15%);
}

/* This sprite scaling is tricky without precise coordinates. 
   I will use a simpler approach: strict overflowing.
   Actually, standard object-fit: cover on the full image won't work for sprites.
   I will rely on the fact I generated a clear row. 
   Let's just use empty divs with background-image for avatars to be safe. 
*/

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 0.8rem;
    background-image: url('ui_assets.png');
    background-size: 300% 200%;
    /* 3 columns, 2 rows */
    border: 2px solid var(--primary-color);
}

.avatar-circle.w1 {
    background-position: 10% 10%;
}

/* Top Left approx */
.avatar-circle.m1 {
    background-position: 50% 10%;
}

/* Top Center approx */
.avatar-circle.m2 {
    background-position: 90% 10%;
}

/* Top Right approx */

/* Bonus Image containers */
.bonus-img-box {
    width: 100%;
    height: 140px;
    background-image: url('ui_assets.png');
    background-size: 300% 200%;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
    border-radius: 8px;
}

/* Avatar Images (Real Photos) */
img.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 0.8rem;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    background: none;
    /* Reset schematic background */
}

/* Offer Impact Styles */
.offer-header.centered-header {
    justify-content: center;
    background: linear-gradient(to bottom, #161b22, #0d1117);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-content.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-impact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    max-width: 90%;
}

.big-price-block {
    margin: 1.5rem 0 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Guarantee Seal */
.guarantee-box.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-seal {
    width: 250px;
    /* Much Bigger */
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(241, 196, 15, 0.3));
    animation: floatSeal 4s ease-in-out infinite;
}

@keyframes floatSeal {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bonus-img-box.map {
    background-position: 50% 90%;
    background-size: 320% 220%;
}

.bonus-img-box.audio {
    background-position: 90% 90%;
    background-size: 320% 220%;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #2ea043;
    /* Green Default */
    color: #fff;
    /* White Text */
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 1.5rem 0 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 160, 67, 0.4);
    text-transform: uppercase;
    border: 2px solid #2ea043;
    /* To prevent layout shift on hover border */
}

.cta-button:hover {
    background: #ffffff !important;
    /* White on Hover */
    color: #2ea043 !important;
    /* Green Text on Hover */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7);
    }

    70% {
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 10px rgba(241, 196, 15, 0);
    }

    100% {
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0);
    }
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guarantee */
.guarantee {
    background: #0f1216;
    padding: 3rem 0;
    text-align: center;
}

.guarantee-box {
    border: 1px dashed var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

/* FAQ Redesign */
.faq {
    padding: 4rem 0;
}

.faq-list {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.faq-item {
    background: #161b22;
    /* Card background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: background 0.2s;
}

.faq-item:hover {
    background: #1c2128;
}

.faq-question {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #fff;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #8b949e;
    display: none;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
    margin-top: 0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
    padding-top: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.final-cta {
    text-align: center;
    margin-top: 2rem;
}

.final-cta .cta-button {
    margin-top: 0;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Refined */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0d1117;
    font-size: 0.9rem;
    color: #6e7681;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}