/* 
   Style System - Ebook Desenho Landing Page
   Premium, Minimalist, High-Conversion
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #CFEF3C;
    --primary-dark: #A3C91C;
    --bg-light: #FFFFFF;
    --bg-alt: #F3F4F6;
    --bg-dark: #1A1A1A;
    --text-main: #1A1A1A;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --max-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout Utils --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.centered {
    text-align: center;
}

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 2rem; margin-bottom: 1rem; }

p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grid Items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(207, 239, 60, 0.2);
}

.btn-primary:hover {
    transform: scale(1.03);
    background-color: var(--primary-dark);
}

/* --- Interactions --- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
}

.reveal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.sketch-reveal {
    position: absolute;
    width: 300px;
    height: 100vh;
    opacity: 0.12;
    background-size: cover;
    background-position: center;
    mask-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), black 100px, transparent 200px);
    -webkit-mask-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), black 100px, transparent 200px);
}

.sketch-left { left: 0; }
.sketch-right { right: 0; }

/* Emotional Pain Sequence */
.pain {
    position: relative;
    background-color: var(--bg-alt);
}

.pain-viewport {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pain-sentence {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 950px;
    padding: 0 2rem;
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    pointer-events: none;
}

.pain-sentence span {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.pain-sentence span::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary);
    z-index: -1;
    opacity: 0.6;
}



/* --- Sections --- */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 100;
}

.hero {
    min-height: 80vh;
    padding: 10rem 0 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 850px;
    margin-bottom: 1.5rem;
}

.hero .subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 700px;
}

/* VSL Video Container */
.vsl-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 3.5rem;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.vsl-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Visual Method Journey */
.method-journey {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 0;
}

.method-path-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 0; /* Animated via JS */
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--primary-dark),
        var(--primary-dark) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 0;
    transform: translateY(-50%);
    transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.method-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
}

.method-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.method-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 800;
    font-size: 1.125rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.method-card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.method-card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.dark-section {
    background-color: var(--bg-dark);
    color: var(--white);
}

.dark-section h2, .dark-section p {
    color: var(--white);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f8f8f8;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(207, 239, 60, 0.05);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: transparent;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Estado Ativo do FAQ */
.faq-item.active {
    border-color: #CFEF3C;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    background-color: #eff9be;
}

.faq-item.active .faq-header {
    color: var(--primary-dark);
}

.faq-item.active .faq-icon {
    background-color: var(--primary);
    color: var(--primary-dark);
    transform: rotate(0deg);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Immersive Product Experience */
.immersive-section {
    position: relative;
}

.sticky-viewport {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.immersive-page {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}



.immersive-page img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.page-label {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.bonus-badge {
    background-color: var(--primary);
    color: var(--text-main);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-mode .sticky-viewport {
    background-color: #f0f7d4; /* Subtle hint for bonus */
    transition: background-color 0.8s ease;
}

.bonus-mode .sticky-viewport {
    background-color: #f0f7d4; /* Subtle hint for bonus */
    transition: background-color 0.8s ease;
}

.about {
    background-color: var(--white);
    padding: 10rem 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--bg-alt);
    padding: 3.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    transform: rotate(10deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Feedback Section */

.get {
    background-color: var(--bg-alt);
    padding: 10rem 0;
}

.showcase-container {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.showcase-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 350px; /* Item base size */
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.showcase-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 20px 40px rgba(207, 239, 60, 0.1);
}

.showcase-card.featured::after {
    content: "MAIS IMPORTANTE";
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.showcase-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 2rem;
    color: var(--primary-dark);
}

.showcase-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.showcase-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.get .value-emphasis {
    display: block !important;
    margin-top: 5rem !important;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.8;
}

/* Bonus Section Premium */
.bonus {
    background-color: var(--white);
    padding: 10rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.bonus-card {
    background: var(--bg-alt);
    border-radius: 32px;
    padding: 3.5rem 2rem 3rem; /* Reduced padding */
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Reduced gap */
    align-items: center;
}

.bonus-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(207, 239, 60, 0.12);
}

.bonus-tag {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-main);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.bonus-visual {
    height: 240px; /* Reduced height */
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
}

.bonus-mockup {
    max-height: 75%; /* Reduced slightly */
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.bonus-card:hover .bonus-mockup {
    transform: scale(1.08) rotate(-2deg);
}

/* Bonus 1 Specifics */
.art-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.brush-icon, .palette-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.brush-icon { top: 15%; left: 10%; transform: rotate(-20deg) scale(0.5); }
.palette-icon { bottom: 15%; right: 10%; transform: rotate(20deg) scale(0.5); }

.bonus-card:hover .brush-icon { opacity: 1; transform: rotate(-10deg) scale(1); transition-delay: 0.1s; }
.bonus-card:hover .palette-icon { opacity: 1; transform: rotate(10deg) scale(1); transition-delay: 0.2s; }

/* Bonus 2 Specifics */
.community-visual {
    background: linear-gradient(135deg, #f0f7d4 0%, #ffffff 100%);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    z-index: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.whatsapp { color: #25D366; }
.discord { color: #5865F2; }

.bonus-card:hover .whatsapp { transform: translateY(-8px) rotate(-5deg); }
.bonus-card:hover .discord { transform: translateY(-8px) rotate(5deg); transition-delay: 0.1s; }

.chat-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    opacity: 0;
    transition: var(--transition);
}

.b1 { top: 10%; right: 5%; transform: translateX(15px); }
.b2 { bottom: 10%; left: 5%; transform: translateX(-15px); }

.bonus-card:hover .b1 { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
.bonus-card:hover .b2 { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }

.bonus-number {
    display: inline-block;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    background: rgba(207, 239, 60, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.bonus-info {
    width: 100%;
}

.bonus-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.bonus-info p {
    font-size: 1rem;
    margin: 0 auto;
    text-align: center;
    max-width: 320px;
}

/* 10. TESTIMONIAL CAROUSEL SECTION */
.feedback {
    padding: 10rem 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.testimonial-carousel-container {
    margin-top: 5rem;
    position: relative;
    width: 100%;
    /* Gradient fade on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    padding: 2rem 0;
    will-change: transform; /* Optimization for JS transform */
}

.testimonial-carousel-container:hover .testimonial-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
    background: var(--white);
    min-width: 380px;
    max-width: 380px;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-meta strong {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.user-meta span {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .testimonial-track {
        animation-duration: 30s;
    }
}

/* ==========================================================================
   MOBILE OPTIMIZATION (Premium Feel)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 0;
    }

    section {
        padding: var(--section-padding);
    }

    .container {
        padding: 0 24px;
    }

    /* Typography */
    h1 { font-size: 2.8rem; line-height: 1.1; text-align: center; }
    h2 { font-size: 2.2rem; text-align: center; }
    h3 { font-size: 1.75rem; text-align: center; }
    p { font-size: 1.1rem; text-align: center; }

    .hero h1, .hero .subheadline, .hero .proof-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Buttons */
    .btn {
        width: 100%;
        display: flex;
        padding: 1.25rem 1.5rem;
        box-sizing: border-box;
    }

    .cta-group {
        width: 100%;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        padding: 8rem 0 4rem;
    }

    .vsl-container {
        border-radius: 16px;
        margin-bottom: 2.5rem;
    }

    /* Pain Sequence */
    .pain-sentence {
        font-size: 1.8rem;
        padding: 0 1.5rem;
    }

    /* Method Journey */
    .method-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-path-line {
        display: none;
    }

    .method-card {
        padding: 2.5rem 1.5rem;
    }

    /* Portfolio (1 per row, Visually Impactful) */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        border-radius: 16px;
        aspect-ratio: auto;
        height: auto;
    }

    /* Immersive Product */
    .immersive-page img {
        max-width: 95%;
        max-height: 55vh;
    }

    .page-label {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    /* Benefits & Showcase */
    .benefit-grid, .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card, .showcase-card {
        padding: 2.5rem 1.5rem;
    }

    .get {
        padding: 6rem 0;
    }
}

/* -------------------------------------------------------------------------- */
/*                            18. PRICING REVEAL                             */
/* -------------------------------------------------------------------------- */

.pricing-reveal {
    min-height: 500px;
}

.pricing-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 2rem;
}

.pricing-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-container {
    padding: 3rem 0;
}

.old-price {
    font-size: 2rem;
    color: var(--text-main);
    opacity: 0.5;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.old-price::after {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.6s ease 0.4s;
}

.old-price.visible::after {
    width: 120%;
}

.new-price-container {
    margin-top: 1rem;
}

.new-price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(207, 239, 60, 0.3);
    animation: priceGlow 3s infinite alternate;
}

.bonus-hint {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

@keyframes priceGlow {
    from { text-shadow: 0 0 20px rgba(207, 239, 60, 0.2); }
    to { text-shadow: 0 0 40px rgba(207, 239, 60, 0.5); }
}

/* Specific Scale for Step 4 */
.pricing-step.step-4 {
    transform: scale(0.8) translateY(30px);
}

.pricing-step.step-4.visible {
    transform: scale(1.1) translateY(0);
}

@media (max-width: 768px) {
    .new-price {
        font-size: 3.5rem;
    }
}

.mentor {
    padding: 10rem 0;
    background: var(--bg-main);
    overflow: hidden;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    text-align: left;
}

.mentor-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.mentor-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.mentor-content .section-label {
    margin-left: 0;
    margin-right: auto;
}

.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    opacity: 0.9;
}

.authority-badge {
    background: var(--bg-alt);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    margin-top: 2.5rem;
}

.authority-badge p {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Animations Reveal */
.reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .reveal-left, .reveal-right {
        transform: translateY(20px) translateX(0) !important;
    }
    .reveal-left.active,
    .reveal-right.active {
        transform: translateY(0) translateX(0) !important;
    }
}

/* 19. GUARANTEE SECTION */
.guarantee {
    background: var(--bg-light);
    padding: 6rem 0;
    margin-top: -3rem;
}

.guarantee-icon {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.guarantee h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 1 !important; /* Force visibility for nested h2 if needed */
}

.guarantee p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 1 !important; /* Force visibility */
}

.guarantee .risk-text {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.4rem;
    display: block;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .guarantee {
        padding: 6rem 0;
    }
    .guarantee h2 {
        font-size: 2.2rem;
    }
    .guarantee p {
        font-size: 1.1rem;
    }
    .guarantee .risk-text {
        font-size: 1.2rem;
    }
}
