/* =================================================
   LP EMAGRECIMENTO - COMPLETE STYLES
   Based on layout.md specification
   ================================================= */

/* ===== DESIGN TOKENS (CSS Variables) ===== */
:root {
    /* Colors */
    --color-bg: #FDF6F0;
    --color-bg-alt: #FFFBF7;
    --color-primary: #2E8B57;
    --color-primary-dark: #246B43;
    --color-secondary: #E6A57E;
    --color-accent: #D35400;
    --color-accent-hover: #E65C00;
    --color-text: #2C3E50;
    --color-text-light: #5D6D7E;
    --color-white: #FFFFFF;
    --color-danger: #E74C3C;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(46, 139, 87, 0.1);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 15px 30px rgba(0, 0, 0, 0.08);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Typography */
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Animations */
    --duration-fast: 200ms;
    --duration-normal: 300ms;
    --duration-slow: 800ms;
    --easing-default: ease-out;
    --easing-bounce: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Content visibility for sections below fold */
.pain-section,
.solution-section,
.modules-section,
.bonus-section,
.testimonials-section,
.authority-section,
.offer-section,
.guarantee-section,
.faq-section,
.final-cta-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    width: 0%;
    z-index: 9999;
    transition: width 50ms linear;
}

/* ===== CONTAINERS ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin: 0 auto 48px;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-white);
    background: var(--color-accent);
    padding: 20px 40px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.3);
    transition: transform var(--duration-normal) var(--easing-bounce),
        box-shadow var(--duration-normal) ease;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 84, 0, 0.4);
}

.cta-button:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.cta-button-large {
    font-size: 1.25rem;
    padding: 24px 48px;
    width: 100%;
    max-width: 500px;
}

/* ========================================
   SECTION 1: HERO
   ======================================== */
.hero {
    background: var(--color-bg);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-accent);
    background: rgba(230, 165, 126, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-primary);
    font-style: italic;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -4px;
    height: 15px;
    background: rgba(230, 165, 126, 0.3);
    transform: rotate(-1deg);
    z-index: -1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* Typewriter Effect */
.typewriter {
    display: inline;
    overflow: hidden;
    border-right: 3px solid var(--color-primary);
    white-space: nowrap;
    animation:
        typing 2.5s steps(50, end) forwards,
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        max-width: 0;
    }

    to {
        max-width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--color-primary);
    }
}

/* Remove caret after typing done */
.typewriter.done {
    border-color: transparent;
    animation: none;
}

.hero-subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}

.hero-subtitle em {
    display: block;
    margin-top: 8px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-guarantee {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-guarantee i {
    color: var(--color-primary);
}

.hero-badges {
    display: flex;
    gap: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.badge-item i {
    font-size: 1.25rem;
}

/* Hero Image */
.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1) translateZ(0);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 8s ease-in-out infinite alternate;
    will-change: border-radius;
}

.hero-shape-deco {
    position: absolute;
    inset: -20px -20px auto auto;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
    animation: morphShape 8s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    will-change: border-radius;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ========================================
   SECTION 2: PAIN (Identification)
   ======================================== */
.pain-section {
    background: var(--color-bg-alt);
    padding: 80px 0 100px;
    contain: layout paint;
}

.pain-header {
    text-align: center;
    margin-bottom: 60px;
}

.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.pain-text-block .lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
}

.pain-text-block p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.pain-insight {
    background: rgba(46, 139, 87, 0.08);
    border-left: 4px solid var(--color-primary);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 32px;
}

.pain-insight strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.pain-insight p {
    margin: 0;
    color: var(--color-text-light);
}

/* Pain Cards */
.pain-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid transparent;
    box-shadow: var(--shadow-card);
    transition: transform var(--duration-normal) ease,
        box-shadow var(--duration-normal) ease,
        border-color var(--duration-normal) ease;
}

.pain-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-left-color: var(--color-danger);
}

.cross-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
}

.pain-card p {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

/* Pain Bridge */
.pain-bridge {
    text-align: center;
    max-width: 700px;
    margin: 80px auto 0;
}

.pain-bridge h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

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

.scroll-indicator {
    margin-top: 32px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--color-primary);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   SECTION 3: SOLUTION (3 Pillars)
   ======================================== */
.solution-section {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    contain: layout paint;
}

.solution-bg-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background:
        radial-gradient(ellipse at 20% 30%, var(--color-secondary) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, var(--color-primary) 0%, transparent 50%);
    animation: floatBlobs 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatBlobs {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.pillar-card {
    flex: 0 1 320px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 139, 87, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 400ms var(--easing-bounce),
        box-shadow 400ms ease,
        border-color var(--duration-normal) ease;
}

.pillar-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 139, 87, 0.2);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform var(--duration-normal) ease,
        background var(--duration-normal) ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    background: var(--color-primary-dark);
}

.pillar-icon i {
    font-size: 32px;
    color: var(--color-white);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 16px;
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ========================================
   SECTION 4: MODULES (Timeline)
   ======================================== */
.modules-section {
    background: var(--color-bg);
    padding: 100px 0;
    contain: layout paint;
}

.modules-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-secondary) 10%, var(--color-secondary) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: calc(50% - 40px);
    margin-bottom: 40px;
}

.timeline-item-right {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border: 4px solid var(--color-bg);
    border-radius: 50%;
    top: 32px;
}

.timeline-item:not(.timeline-item-right) .timeline-dot {
    right: -52px;
}

.timeline-item-right .timeline-dot {
    left: -52px;
}

.timeline-card {
    position: relative;
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.module-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.module-value {
    display: inline-block;
    background: rgba(211, 84, 0, 0.1);
    color: var(--color-accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   SECTION 5: BONUS (Bento Grid)
   ======================================== */
.bonus-section {
    background: var(--color-bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    contain: layout paint;
}

.bonus-mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(230, 165, 126, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.bonus-header .section-title {
    font-size: 2.5rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 400ms ease,
        box-shadow 400ms ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(46, 139, 87, 0.15);
}

.bonus-card-highlight {
    grid-column: span 2;
}

.bonus-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-normal) ease,
        background var(--duration-normal) ease;
}

.bonus-card:hover .bonus-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(46, 139, 87, 0.2);
}

.bonus-icon i {
    font-size: 24px;
    color: var(--color-primary);
}

.bonus-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 8px;
}

.bonus-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.bonus-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-old {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.value-free {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   SECTION 6: TESTIMONIALS (Carousel)
   ======================================== */
.testimonials-section {
    background: var(--color-bg-alt);
    padding: 100px 0;
    overflow: hidden;
    contain: layout paint;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 600ms var(--easing-bounce);
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 500px;
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 400ms ease, opacity 400ms ease;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 120px;
    color: rgba(230, 165, 126, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-card blockquote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.testimonial-card cite {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    color: var(--color-primary-dark);
}

.result-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(46, 139, 87, 0.2);
    transition: transform var(--duration-normal) ease,
        background var(--duration-normal) ease;
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--color-primary);
}

/* ========================================
   SECTION 7: AUTHORITY
   ======================================== */
.authority-section {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    padding: 80px 0;
    contain: layout paint;
}

.authority-grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.authority-image {
    position: relative;
}

.authority-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    filter: sepia(5%) brightness(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.authority-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    text-align: center;
}

.authority-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.authority-badge small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.authority-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.authority-bio {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.authority-quote {
    border-left: 4px solid var(--color-secondary);
    padding-left: 24px;
}

.authority-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-primary-dark);
    font-style: italic;
}

/* ========================================
   SECTION 8: OFFER
   ======================================== */
.offer-section {
    background: radial-gradient(ellipse at center, var(--color-primary) 0%, #1A4D32 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    contain: layout paint;
}

.offer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.offer-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 40px;
}

.offer-urgency i {
    font-size: 1.25rem;
}

.offer-price {
    margin-bottom: 40px;
}

.price-anchor {
    display: block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 16px;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-prefix {
    font-size: 1.25rem;
    color: var(--color-white);
}

.price-value {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.price-cash {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-section .cta-button-large {
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.1rem;
}

.trust-divider {
    opacity: 0.4;
}

/* ========================================
   SECTION 9: GUARANTEE
   ======================================== */
.guarantee-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
    text-align: center;
    contain: layout paint;
}

.guarantee-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 139, 87, 0.15);
    border-radius: var(--radius-lg);
    padding: 80px 48px 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.guarantee-seal {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    animation: sealPulse 3s ease-in-out infinite;
}

@keyframes sealPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.guarantee-seal i {
    font-size: 32px;
    margin-bottom: 4px;
}

.guarantee-seal span {
    font-size: 0.75rem;
    font-weight: 700;
}

.guarantee-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 8px;
}

.guarantee-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.guarantee-card>p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.guarantee-highlight {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* ========================================
   SECTION 10: FAQ
   ======================================== */
.faq-section {
    background: var(--color-bg);
    padding: 80px 0;
    contain: layout paint;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header .section-title {
    font-size: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--duration-fast) ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(46, 139, 87, 0.2);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--duration-fast) ease;
}

.faq-item:hover summary span,
.faq-item[open] summary span {
    color: var(--color-primary-dark);
}

.faq-item summary i {
    font-size: 20px;
    color: var(--color-text-light);
    transition: transform var(--duration-normal) ease,
        color var(--duration-fast) ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    padding-top: 16px;
}

/* ========================================
   SECTION 11: FINAL CTA
   ======================================== */
.final-cta-section {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 50%, rgba(46, 139, 87, 0.05) 100%);
    padding: 100px 0 60px;
    text-align: center;
    contain: layout paint;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
}

.final-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-text);
    padding: 40px 0;
    text-align: center;
}

.legal-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto 16px;
}

.legal-text strong {
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--color-secondary);
    transition: text-decoration var(--duration-fast) ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE: TABLET (max-width: 900px)
   ======================================== */
@media (max-width: 900px) {

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-cta-wrapper {
        align-items: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 400px;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Solution */
    .pillars-container {
        flex-direction: column;
        align-items: center;
    }

    .pillar-card {
        width: 100%;
        max-width: 400px;
        padding: 32px 24px;
    }

    .pillar-card {
        width: 100%;
        max-width: 400px;
        padding: 32px 24px;
    }

    /* Authority */
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .authority-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .authority-badge {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .authority-content {
        text-align: center;
    }

    .authority-quote {
        text-align: left;
    }
}

/* ========================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

    /* Timeline */
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item-right {
        width: 100%;
        margin-left: 50px;
    }

    .timeline-item .timeline-dot,
    .timeline-item-right .timeline-dot {
        left: -42px;
        right: auto;
    }

    /* Bonus Grid */
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .bonus-card-highlight {
        grid-column: span 1;
    }

    .bonus-icon {
        width: 40px;
        height: 40px;
    }

    .bonus-icon i {
        font-size: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(100vw - 48px);
        padding: 32px 24px;
    }

    .carousel-track {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card {
        scroll-snap-align: center;
    }

    .quote-mark {
        font-size: 80px;
        top: 10px;
        left: 10px;
    }

    /* Offer */
    .offer-section {
        padding: 80px 24px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .cta-button-large {
        padding: 20px 32px;
    }

    .trust-badges {
        gap: 12px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        flex: 0 0 100%;
        justify-content: center;
    }

    /* Guarantee */
    .guarantee-card {
        padding: 60px 24px 40px;
    }

    .guarantee-seal {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .guarantee-seal i {
        font-size: 24px;
    }

    /* FAQ */
    .faq-item summary {
        padding: 16px 20px;
    }

    .faq-item summary span {
        font-size: 1rem;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 80px 24px 40px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-progress {
        display: none;
    }
}

/* Focus Visible */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

/* Skip Link (hidden, for screen readers) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}