/* Modern Futuristic CSS Variables */
:root {
    --bg-0: #F7F3EE;
    --bg-1: #F2E8DE;
    /* leve variação para gradientes */
    --surface: #FFFFFF;
    /* cards claros */
    --surface-2: #FAF2E8;
    /* cards internos/hover */
    --text: #3A2A1E;
    --muted: #6B3F2A;
    --accent: #D8B58A;
    --cta: #D94C1A;
    --cta-hover: #E05A2A;
    --cta-text: #FFFFFF;

    --border: rgba(58, 42, 30, .14);
    --shadow: 0 14px 30px rgba(58, 42, 30, .18);
    --shadow-soft: 0 10px 24px rgba(58, 42, 30, .12);
    --success: #2F7D4E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-0);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--cta);
    color: var(--cta-text);
    font-weight: 900;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(217, 76, 26, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--cta);
    box-shadow: none;
    color: var(--cta);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    width: 100%;
    max-width: 400px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 1. Top Bar */
.top-bar {
    background: #D10000 !important;
    color: #FFFFFF !important;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

/* 2. Hero Section */
.hero-section {
    padding: 4rem 0 2rem;
    text-align: center;
    background: radial-gradient(circle at center top, var(--bg-1) 0%, var(--bg-0) 70%);
}

.hero-headline {
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #3A2A1E;
    text-shadow: none;
}

.hero-headline .hero-highlight {
    color: #D94C1A;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--cta);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.desc-highlight {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-media {
    margin: 2rem auto;
    max-width: 400px;
    position: relative;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* 3. Price Block */
.price-block {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.price-header {
    color: var(--muted);
    font-size: 1.1rem;
}

.price-header strike {
    color: #D32F2F !important;
    text-decoration: line-through;
    opacity: 0.9;
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: #2E2A26;
    line-height: 1;
    margin: 0.5rem 0 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* 4. "Se você" Premium Section */
.se-voce-premium {
    padding: 6rem 1rem;
    background: var(--bg-0);
    overflow: hidden;
}

.se-voce-premium h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    color: var(--text);
    background: none;
    -webkit-text-fill-color: initial;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 4rem;
}

/* Base Card Style (Inactive) */
.premium-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;

    /* Default State: Receded */
    opacity: 0.3;
    transform: scale(0.9) translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
}

/* Focus State (Active in Center) */
.premium-card.focused {
    opacity: 1;
    transform: scale(1.04) translateY(0);
    background: #FFFFFF;
    border: 2px solid var(--cta);
    box-shadow: 0 12px 28px rgba(58, 42, 30, .12), 0 0 0 3px rgba(217, 76, 26, .10);
    z-index: 2;
    color: var(--text);
}

.premium-card:active {
    transform: scale(0.98);
    transition: transform 0.1s;
}

.card-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    /* filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)); removed dark shadow */
}

.premium-card p {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.conclusion-text {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-top: 2rem;
    color: var(--cta);
    text-shadow: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.conclusion-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .premium-card {
        padding: 2rem;
    }

    .premium-card p {
        font-size: 1.3rem;
    }
}

/* 5. Benefits (Visual Proof of Pleasure) */
/* 5. Benefits (Visual Proof of Pleasure) - Immersive Mobile */
.benefits-section {
    padding: 3rem 0;
    /* Compact vertical */
    background: var(--bg-0);
    overflow: hidden;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    /* Tight title */
    color: var(--text);
    text-shadow: none;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.benefits-visual-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Reduced gap */
}

.pleasure-image-wrapper {
    width: 100%;
    max-width: 100%;
    /* Full mobile immersion */
    padding: 0;
    /* Remove padding for edge-to-edge feel */
    position: relative;
    z-index: 1;
}

.pleasure-image {
    width: 100%;
    border-radius: 0;
    /* Edge to edge on strictly mobile, but preserve curve if preferred or use subtle one */
    /* Let's keep a very subtle radius or full bleed? request says 'less framed', 'immersive' */
    /* Going full bleed width, but maybe top/bottom radius? */
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: scale(1.05);
    /* Slight zoom out effect for immersion */
    transition: all 1.2s ease-out;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    /* Blend into bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

@media (min-width: 768px) {
    .pleasure-image-wrapper {
        padding: 0 1rem;
        max-width: 800px;
    }

    .pleasure-image {
        border-radius: 20px;
        mask-image: none;
    }
}

.pleasure-image.active {
    opacity: 1;
    transform: scale(1);
}

.pleasure-phrases {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* Tight text stack */
    padding-bottom: 2rem;
}

.pleasure-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--muted);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.pleasure-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight specifically the last phrase */
.pleasure-text:last-child {
    font-size: 2.2rem;
    /* Larger */
    color: var(--cta);
    /* Primary highlight */
    font-weight: 900;
    text-shadow: none;
}

/* 6. Differentiation */
.differentiation-section {
    padding: 2.5rem 0 4rem 0;
    /* Gradient transition from chocolate (#1a0f0c) to black (#000) */
    background: var(--bg-1);
}

.diff-content {
    text-align: center;
    margin-bottom: 3rem;
}

.open-book-hero {
    margin: 2rem auto;
    max-width: 500px;
    padding: 0 1rem;
    perspective: 1000px;
}

.open-book-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    transform: rotateX(5deg);
    /* Slight 3D tilt */
    transition: transform 0.5s ease;
}

.open-book-img:hover {
    transform: rotateX(0deg) scale(1.02);
}

.diff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.diff-list li {
    font-weight: 600;
    color: var(--cta);
}

.diff-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.diff-images-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s;
}

.diff-images-grid img:hover {
    transform: scale(1.05);
    z-index: 2;
}

/* 7. Recipe Gallery (Mural do Desejo) */
.recipe-gallery-section {
    padding: 3rem 0 5rem 0;
    background: var(--bg-0);
}

.recipe-gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text);
    padding: 0 1rem;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile First 2 Col */
    gap: 1rem;
    padding: 0 0.5rem;
}

/* Tablet/Desktop overrides */
@media (min-width: 768px) {
    .recipe-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* Animation for Recipe Grid */
@keyframes fadeInUpPremium {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.recipe-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(10px) scale(0.97);
    /* Transition for hover only effects once visible */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.recipe-card.visible {
    animation: fadeInUpPremium 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.recipe-card:hover {
    /* Kept subtle for desktop, avoided on load */
    box-shadow: var(--shadow);
    border-color: var(--cta);
}

/* 8. Usage (Mini-Cards) */
.usage-section {
    padding: 3rem 0;
    text-align: center;
}

.usage-section h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text);
}

.usage-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Mini cards in a row? Or stacked? Mobile first usually stacked or grid. User said mini-cards. Let's try 3 col on desktop, but mobile? */
    /* User request: "Transformar em mini-cards mobile"
       Structure: Icon top, Title, Text.
       Mobile first usually implies vertical stack or 2 cols.
       Given 3 items, 3 cols fits well on mobile if "mini".
       Let's use auto-fit.
    */
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.usage-card {
    background: var(--surface);
    /* Sutil diff from #000 or #111 */
    padding: 1rem 0.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.usage-card:active {
    transform: scale(0.98);
}

.usage-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--cta);
}

.usage-card h3 {
    font-size: 0.9rem;
    margin: 0 0 0.2rem 0;
    color: var(--text);
    font-weight: 700;
}

.usage-card p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.2;
}

.recipe-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    /* Taller format is better for food desire */
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.recipe-card:hover .recipe-card-image img {
    transform: scale(1.05);
}

.calories-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--surface);
    color: var(--cta);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
}

.recipe-card h3 {
    font-size: 0.95rem;
    padding: 0.8rem 0.6rem;
    margin: 0;
    color: var(--text);
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-footer {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* 8. Usage */
.usage-section {
    padding: 4rem 0;
    text-align: center;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usage-item {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: var(--glass-border);
}

.usage-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 9. Bonuses (Premium Stack) */
.bonuses-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
}

.bonuses-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile First: 1 col */
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Desktop: 2 cols */
    }
}

.bonus-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.bonus-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bonus-icon {
    font-size: 1.2rem;
}

.bonus-number {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--cta);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--surface-2);
    padding: 4px 8px;
    border-radius: 4px;
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    line-height: 1.3;
}

.bonus-description {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.bonus-target {
    font-size: 0.85rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.bonus-badge {
    display: inline-block;
    background: #2e7d32;
    /* Green */
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
}

.highlight {
    color: var(--accent);
    font-weight: 900;
    background: rgba(0, 230, 118, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* 10. Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: #000;
}

/* 10. Pricing / Offers (Redesigned) */
/* 10. Pricing / Offers (Redesigned) */
.pricing-section {
    padding: 4rem 0;
    /* Reduced side padding for wider cards */
    background: var(--bg-0);
}

.offer-grid {
    display: flex;
    flex-direction: column;
    /* Mobile First */
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .offer-grid {
        flex-direction: row;
        align-items: stretch;
        /* Cards same height */
        justify-content: center;
    }
}

.offer-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    width: 94%;
    /* 94% Mobile Width */
    max-width: 420px;
    /* More robust look */
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s, opacity 0.5s ease-out;
    box-shadow: var(--shadow-soft);
}

.offer-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Basic Card Specifics */
.offer-card.basic {
    border-top: 4px solid var(--muted);
}

/* Premium Card Highlighting */
.offer-card.premium {
    background: var(--surface-2);
    /* Subtle chocolate/warm tint */
    border: 1px solid var(--accent);
    box-shadow: var(--shadow);
    z-index: 2;
    /* Sits above on desktop overlap if needed, though we use gap */
}

@media (min-width: 768px) {
    .offer-card.premium {
        transform: scale(1.05);
        /* Make it pop on desktop */
    }

    .offer-card.premium.visible {
        transform: scale(1.05) translateY(0);
    }
}

/* Badges */
.card-badge-basic {
    display: inline-block;
    background: var(--bg-1);
    color: var(--muted);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: center;
}

.card-badge-premium {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta);
    color: var(--cta-text);
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
    width: max-content;
}

/* Header */
.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text);
}

.card-header .subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Logic lists */
.card-body {
    flex-grow: 1;
    /* Pushes footer down */
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-list li {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.6;
}

.benefit-list.checkmark li::before {
    content: "✓";
    color: var(--success);
    /* Orange check */
    font-weight: 900;
    font-size: 1rem;
    opacity: 1;
}

/* Pricing */
.card-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.old-price {
    display: block;
    font-size: 0.9rem;
    color: #D32F2F !important;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
    opacity: 0.9;
}

.price-separator {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #6F5F4F;
    margin: 4px 0;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E2A26;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.card-pricing small {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Footer / Buttons */
.card-footer {
    text-align: center;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button.outline {
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--muted);
}

.cta-button.outline:hover {
    border-color: var(--cta);
    background: var(--surface-2);
    color: var(--cta);
}

.cta-button.primary {
    background: var(--cta);
    /* Orange */
    border: none;
    color: var(--cta-text);
    /* Contrast black text on orange */
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    transform: scale(1.02);
    background: var(--cta-hover);
    box-shadow: 0 6px 20px rgba(217, 76, 26, 0.5);
}

/* 11. Social Proof (Premium Redesign) */
.social-proof-section {
    padding: 4rem 1rem;
    background: var(--bg-1);
    /* Very dark background matching global theme */
}

.social-proof-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text);
    text-shadow: none;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    /* Mobile First: Stacked */
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Desktop: 2 Columns */
        gap: 2rem;
    }
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--muted);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.quote-icon {
    font-size: 1.2rem;
    color: var(--accent);
    opacity: 0.5;
}

.stars {
    color: #F5B301;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.stars i,
.stars svg {
    color: #F5B301;
    fill: #F5B301;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Avatar Image - Premium Style */
.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-name {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.client-location {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 2px;
}

/* 12. Guarantee */
/* 12. Guarantee (Redesigned) */
.guarantee-section {
    background: var(--bg-0);
    color: var(--text);
    padding: 5rem 1rem;
    text-align: center;
}

.guarantee-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
    /* Space for the floating seal */
}

.guarantee-seal-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.guarantee-seal {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.guarantee-box h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text);
}

.guarantee-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 2rem;
}

.guarantee-footer {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 13. FAQ */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-1);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    padding: 1.5rem 0;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    color: var(--muted);
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

/* 14. Final CTA */
.final-cta-section {
    padding: 5rem 1rem;
    text-align: center;
    background: radial-gradient(circle, #2D1B17, #000);
}

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #555;
}

/* Mobile Responsiveness */
@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .pain-points,
    .benefits-list {
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
    }

    .diff-images-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}



.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Avatar Image - Premium Style */
.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.client-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* 12. Guarantee */
/* 12. Guarantee (Redesigned) */
.guarantee-section {
    background: #F7F3EE;
    color: #3A2A1E;
    padding: 5rem 1rem;
    text-align: center;
}

.guarantee-box {
    background: linear-gradient(180deg, #FFFFFF, #FAF2E8);
    border: 1px solid rgba(58, 42, 30, .14);
    border-radius: 20px;
    padding: 3rem 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(58, 42, 30, 0.12);
    margin-top: 2rem;
    /* Space for the floating seal */
}

.guarantee-seal-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.guarantee-seal {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(58, 42, 30, 0.15));
}

.guarantee-box h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #3A2A1E;
}

.guarantee-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6B3F2A;
    margin-bottom: 2rem;
}

.guarantee-footer {
    border-top: 1px solid rgba(58, 42, 30, .14);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #6B3F2A;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 13. FAQ */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid #333;
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    padding: 1.5rem 0;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

/* 14. Final CTA */
.final-cta-section {
    padding: 5rem 1rem;
    text-align: center;
    background: radial-gradient(circle, var(--bg-1), var(--bg-0));
}

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text);
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Mobile Responsiveness */
@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .pain-points,
    .benefits-list {
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
    }

    .diff-images-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 15. Spin to Win & Modal (Premium Redesign) */
.spin-to-win-section {
    padding: 5rem 1rem;
    background: radial-gradient(circle at center, var(--bg-1), var(--bg-0));
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text);
}

.spin-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    background: none;
    -webkit-text-fill-color: initial;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: none;
}

.spin-subtitle {
    color: var(--cta);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.roulette-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roulette-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #2D1B17 0deg 59deg, transparent 59deg 60deg,
            #BF360C 60deg 119deg, transparent 119deg 120deg,
            #2D1B17 120deg 179deg, transparent 179deg 180deg,
            #BF360C 180deg 239deg, transparent 239deg 240deg,
            #2D1B17 240deg 299deg, transparent 299deg 300deg,
            #BF360C 300deg 359deg, transparent 359deg 360deg);
    border: 8px solid #1a1a1a;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 0 0 4px rgba(255, 87, 34, 0.2),
        0 0 30px rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: var(--text);
    /* For the transparent gaps */
    animation: idlePulse 3s infinite ease-in-out;
}

@keyframes idlePulse {
    0% {
        transform: scale(1);
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9), 0 0 0 4px rgba(255, 87, 34, 0.2), 0 0 30px rgba(255, 87, 34, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9), 0 0 0 4px rgba(255, 87, 34, 0.4), 0 0 50px rgba(255, 87, 34, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9), 0 0 0 4px rgba(255, 87, 34, 0.2), 0 0 30px rgba(255, 87, 34, 0.3);
    }
}

.roulette-wheel.spinning {
    animation: none;
    /* Remove idle pulse when spinning */
}

.roulette-wheel.finished {
    animation: winFlash 1s ease-out forwards;
}

@keyframes winFlash {
    0% {
        box-shadow: 0 0 50px rgba(0, 230, 118, 0.8), inset 0 0 20px rgba(0, 230, 118, 0.5);
        border-color: #00E676;
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 230, 118, 0.4), inset 0 0 10px rgba(0, 230, 118, 0.2);
        border-color: #00E676;
        transform: scale(1);
    }
}

.wheel-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wheel-segment span {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-bottom: 230px;
    /* Push further out */
    width: 110px;
    /* Wider for 2 lines */
    transform: translate(-50%, -50%) rotate(calc(60deg * var(--i) + 30deg));
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 800;
}

.spin-btn {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #FF8A65, #E64A19);
    border-radius: 50%;
    border: 3px solid #fff;
    color: white;
    font-weight: 900;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4);
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: pulseBtn 1.5s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.spin-btn:active {
    transform: scale(0.92);
}

@media (min-width: 768px) {
    .roulette-container {
        width: 450px;
        height: 450px;
    }

    .wheel-segment span {
        padding-bottom: 330px;
        font-size: 1rem;
    }

    .spin-title {
        font-size: 3rem;
    }
}

.bonus-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.bonus-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.bonus-modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 10000;
}

.bonus-modal-overlay.active .bonus-modal-content {
    transform: translateY(0);
}

.modal-title {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.unlocked-bonuses-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    background: var(--surface-2);
    padding: 1rem;
    border-radius: 12px;
}

.unlocked-bonuses-list li {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.unlocked-bonuses-list li:last-child {
    margin-bottom: 0;
}

.unlocked-bonuses-list li i {
    color: var(--success);
}

.timer-box {
    background: rgba(217, 76, 26, 0.1);
    color: var(--cta);
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(217, 76, 26, 0.3);
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9000;
}

@media (min-width: 768px) {
    .roulette-container {
        width: 400px;
        height: 400px;
    }

    .wheel-segment span {
        padding-bottom: 300px;
        font-size: 0.9rem;
    }
}

/* Updated Modal Buttons & Integration */
.modal-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    padding: 1rem 2rem;
}

.btn-line-1 {
    font-size: 1.2rem;
    font-weight: 900;
}

.btn-line-2 {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.modal-secondary-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.modal-secondary-btn:hover {
    color: var(--text);
}

/* Active Bonus Item in Premium Card */
.bonus-active-item {
    color: var(--success);
    /* Accent Green */
    animation: fadeInBonus 1s ease-out;
    background: rgba(47, 125, 78, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 0.5rem;
    display: inline-block;
    width: 100%;
}

@keyframes fadeInBonus {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Metric: Force 3-line headline on mobile */
.hl-line {
    display: block;
}

/* Hero Book Stack - Mockup Simulation */
.book-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    /* Aspect ratio mainly for spacing */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.book-item {
    position: absolute;
    bottom: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Back Left */
.book-1 {
    width: 65%;
    left: 5%;
    z-index: 1;
    transform: translateY(-10%) scale(0.9);
    filter: brightness(0.6) blur(0.5px);
}

/* Back Right */
.book-2 {
    width: 65%;
    right: 5%;
    z-index: 2;
    transform: translateY(-10%) scale(0.9);
    filter: brightness(0.6) blur(0.5px);
}

/* Front Center */
.book-3 {
    width: 75%;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    filter: brightness(1);
}

/* Hover Effect for 3D feel */
.hero-media:hover .book-1 {
    transform: translateY(-12%) translateX(-10%) scale(0.9) rotate(-3deg);
}

.hero-media:hover .book-2 {
    transform: translateY(-12%) translateX(10%) scale(0.9) rotate(3deg);
}

.hero-media:hover .book-3 {
    transform: translateX(-50%) scale(1.05);
}


/* Critical Overrides for Hero Spacing */
.hero-subheadline {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero-media {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
}

/* Tweak book stack for tighter 'fan' look */
.book-stack {
    height: 320px !important;
}

.book-1 {
    transform: translateY(-5%) translateX(10%) rotate(-5deg);
    left: 15%;
    width: 70%;
}

.book-2 {
    transform: translateY(-5%) translateX(-10%) rotate(5deg);
    right: 15%;
    width: 70%;
}

.book-3 {
    bottom: -20px;
    width: 80%;
}


/* Hero Image Bundle Final Fix */
.hero-image-bundle {
    width: 100%;
    max-width: 480px;
    /* Increased for better visibility */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    border-radius: 16px;
    /* Static image, no float */
}

/* Remove old stack styles if present */
.book-stack {
    display: none !important;
}


/* Hero Book Kit (1 Standing, 2 Lying) */
.book-kit {
    position: relative;
    width: 300px;
    height: 380px;
    margin: 0 auto;
    perspective: 1000px;
}

.kit-book {
    position: absolute;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

/* Lying Book 1 (Bottom) */
.lying-1 {
    width: 260px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotateX(50deg) rotateZ(-10deg);
    z-index: 1;
    filter: brightness(0.7);
}

/* Lying Book 2 (Middle) */
.lying-2 {
    width: 250px;
    bottom: 50px;
    left: 52%;
    transform: translateX(-50%) rotateX(50deg) rotateZ(-5deg);
    z-index: 2;
    filter: brightness(0.8);
}

/* Standing Book (Front) */
.standing {
    width: 200px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: brightness(1) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.book-kit:hover .standing {
    transform: translateX(-50%) scale(1.05) translateY(-10px);
}

.book-kit:hover .lying-2 {
    transform: translateX(-45%) rotateX(50deg) rotateZ(0deg);
}

/* Helper for Mandatory Roulette Logic */
.highlight-pulse {
    animation: pulse-border 1s ease-in-out;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
    border-radius: 12px;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0px rgba(255, 87, 34, 0);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 87, 34, 0.8);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 87, 34, 0);
    }
}

/* Mobile-Specific Adjustments for Headline/Subheadline readability */
@media (max-width: 767px) {
    .hero-headline {
        font-size: 2rem;
        /* Adjusted to fit 3 lines */
        line-height: 1.15;
        max-width: 340px;
        /* Constrain to prevent overflow */
        margin-left: auto;
        margin-right: auto;
        padding: 0 0.5rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        /* Slightly reduced to guarantee 2 lines max */
        line-height: 1.3;
        max-width: 95%;
        /* Use almost full width */
        margin-left: auto;
        margin-right: auto;
        padding: 0 0.5rem;
    }
}

/* Guarantee Title Mobile Break */
@media (max-width: 480px) {
    .guarantee-box h2 span {
        display: block;
    }
}