/* =============================================
   O PODER DA ALQUIMIA — Cosmic Glassmorphism
   ============================================= */

/* --- Font Faces --- */
@font-face {
    font-family: "TRIAL Englisch";
    src: url("../fonts/TRIAL_Englisch-Regular-BF6476bfd0a2336.otf") format("opentype");
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "TRIAL Englisch";
    src: url("../fonts/TRIAL_Englisch-Medium-BF6476bfd086572.otf") format("opentype");
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "TRIAL Englisch";
    src: url("../fonts/TRIAL_Englisch-Bold-BF6476bfd0ab714.otf") format("opentype");
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "TRIAL Englisch";
    src: url("../fonts/TRIAL_Englisch-Extrabold-BF6476bfd0a16cf.otf") format("opentype");
    font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "TRIAL Englisch";
    src: url("../fonts/TRIAL_Englisch-Black-BF6476bfd0aa7f5.otf") format("opentype");
    font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "Alternate Gothic No3 D";
    src: url("../fonts/alternate-gothic-no3-d.woff2") format("woff2"),
         url("../fonts/AlternateGotNo3D.woff") format("woff"),
         url("../fonts/AlternateGotNo3D.ttf") format("truetype");
    font-weight: normal; font-style: normal; font-display: swap;
}

/* --- Variables --- */
:root {
    --surface: #111224;
    --surface-low: #191a2c;
    --surface-container: #1d1e31;
    --surface-high: #27283c;
    --surface-highest: #323347;
    --surface-lowest: #0B0C1E;

    --primary: #98FFD9;
    --primary-container: #8ff6d0;
    --on-primary: #003829;
    --on-primary-container: #007257;

    --secondary: #C8BFFF;
    --on-secondary: #30295e;
    --secondary-container: #473f76;

    --tertiary: #E9C349;
    --on-tertiary: #3c2f00;

    --on-surface: #e1e0fa;
    --on-surface-variant: #bdc9c2;
    --outline-variant: #3e4944;

    --font-headline: "Newsreader", Georgia, serif;
    --font-display: "TRIAL Englisch", "Alternate Gothic No3 D", sans-serif;
    --font-body: "DM Sans", "Helvetica Neue", sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    background-color: var(--surface);
    color: var(--on-surface);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100dvh;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Atmospheric BG (fixed) --- */
.star-field {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(circle at 2px 2px, rgba(200, 191, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.bg-nebula {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(circle at 50% -20%, rgba(152, 255, 217, 0.08), transparent 50%),
        radial-gradient(circle at 0% 40%, rgba(200, 191, 255, 0.1), transparent 40%);
}

/* --- Layout --- */
.main-content {
    position: relative;
    z-index: 10;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-spacing {
    margin-bottom: 80px;
}

/* --- Glass Card --- */
.glass {
    background: rgba(17, 18, 36, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* --- Material Symbols --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    padding-top: clamp(32px, 6vh, 48px);
    padding-bottom: 48px;
    margin-bottom: 0;
    text-align: center;
}

/* 3D Sphere */
.sphere-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    perspective: 800px;
    perspective-origin: 50% 50%;
}

.sphere-glow {
    position: absolute; inset: -24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(152, 255, 217, 0.25) 0%, rgba(200, 191, 255, 0.06) 40%, transparent 70%);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { opacity: 0.5; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1.1); }
}

.sphere-orbit {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(200, 191, 255, 0.3);
    animation: orbitSpin 20s linear infinite;
    z-index: 1;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.sphere-body {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 2;
    cursor: grab;
    /* Y-only rotation never makes it look like a coin */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.sphere-body:active { cursor: grabbing; }

/* Clip ring — separated from 3D parent so overflow:hidden works on mobile */
.sphere-clip {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(152, 255, 217, 0.15),
        0 8px 40px rgba(152, 255, 217, 0.25),
        inset -20px -20px 40px rgba(0,0,0,0.4),
        inset 8px 8px 24px rgba(255,255,255,0.08);
}

.sphere-body img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.sphere-clip::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    /* Strong sphere lighting — top-left highlight, bottom-right shadow */
    background:
        radial-gradient(ellipse 55% 45% at 32% 28%, rgba(255,255,255,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 70% at 75% 78%, rgba(0,0,0,0.45) 0%, transparent 55%),
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 55%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
    z-index: 3;
}

.sphere-reflection {
    position: absolute;
    top: 15%; left: 22%;
    width: 18%; height: 12%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(4px);
    z-index: 4;
    pointer-events: none;
    transform: rotate(-30deg);
}

.hero-headline {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.15;
    color: var(--on-surface); /* NOT var(--primary) — intentional */
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.hero-headline .accent {
    color: var(--primary);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto 24px;
    letter-spacing: 0.02em;
}

/* --- CTA Buttons --- */
.btn-primary {
    display: inline-block;
    width: auto;
    margin: 0 auto;
    padding: 14px 36px;
    background: var(--primary-container);
    color: var(--on-primary-container);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 9999px;
    box-shadow: 0 10px 40px rgba(152, 255, 217, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 48px rgba(152, 255, 217, 0.35);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 32px;
    background: var(--secondary-container);
    color: #b6aeec;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 9999px;
    box-shadow: 0 10px 40px rgba(200, 191, 255, 0.2);
    display: inline-block;
    width: auto;
    padding: 14px 36px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 48px rgba(200, 191, 255, 0.3);
}

.btn-secondary:active {
    transform: scale(0.95);
}

.cta-block {
    text-align: center;
    margin-bottom: 0;
}

/* ===========================================
   SECTION HEADINGS
   =========================================== */
.section-heading {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 6vw, 1.875rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    color: var(--primary);
}

.section-heading-center {
    text-align: center;
}

/* ===========================================
   BENEFITS GRID (glass cards)
   =========================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 1rem;
    border: 1px solid rgba(62, 73, 68, 0.1);
}

.benefit-card .icon {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

.benefit-text .hl {
    color: var(--secondary);
}

/* ===========================================
   PAIN SECTION (card with blob — legacy)
   =========================================== */
.pain-card {
    position: relative;
    padding: 32px;
    background: var(--surface-low);
    border-radius: 1rem;
    border: 1px solid rgba(200, 191, 255, 0.08);
    overflow: hidden;
}

.pain-card .blob {
    position: absolute;
    top: -80px; right: -80px;
    width: 256px; height: 256px;
    background: rgba(200, 191, 255, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.pain-card .section-heading {
    position: relative; z-index: 1;
}

.pain-list {
    position: relative; z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--on-surface-variant);
    line-height: 1.5;
}

.pain-list li .dot {
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    margin-top: 8px;
}

.pain-closing {
    position: relative; z-index: 1;
    font-size: 0.88rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

.pain-closing strong {
    color: var(--on-surface);
}

/* ===========================================
   PAIN CHIPS (glass pill tags)
   =========================================== */
.pain-chips {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.pain-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 9999px;
    background: rgba(200, 191, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 191, 255, 0.1);
    font-size: 0.875rem;
    color: var(--on-surface-variant);
    line-height: 1.5;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pain-chip:hover {
    border-color: rgba(200, 191, 255, 0.2);
    background: rgba(200, 191, 255, 0.1);
}

.pain-chip-icon {
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 0.75rem;
}

/* ===========================================
   MECHANISM BLOCK (intro container)
   =========================================== */
.mechanism-block {
    margin-bottom: 16px;
}

/* ===========================================
   MECHANISM (vibration items)
   =========================================== */
.mechanism-text {
    font-size: 0.9375rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
    margin-bottom: 24px;
}

.vibration-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.vibration-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 1rem;
    border: 1px solid rgba(62, 73, 68, 0.1);
}

.vibration-item .icon {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.vibration-item span {
    font-size: 0.88rem;
    color: var(--on-surface);
}

.mechanism-closing {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
}

.mechanism-closing strong {
    color: var(--primary);
}

/* ===========================================
   MAP GRID (glass cards 2x)
   =========================================== */
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-card {
    padding: 20px;
    border-radius: 1rem;
    border: 1px solid rgba(62, 73, 68, 0.05);
}

.map-card .icon {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.map-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--on-surface);
    margin-bottom: 4px;
}

.map-card-desc {
    font-size: 0.8rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* ===========================================
   FOR YOU (check items)
   =========================================== */
.for-you-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.for-you-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 1rem;
    border: 1px solid rgba(62, 73, 68, 0.1);
    transition: border-color 0.3s ease;
}

.for-you-item:hover {
    border-color: rgba(152, 255, 217, 0.15);
}

.for-you-item .check-icon {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.for-you-item span {
    font-size: 0.95rem;
    color: var(--on-surface-variant);
}

/* ===========================================
   STEPS (timeline — legacy icon style)
   =========================================== */
.steps-wrap {
    position: relative;
}

.steps-line {
    position: absolute;
    left: 24px; top: 16px; bottom: 16px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(152,255,217,0.4), rgba(200,191,255,0.4), transparent);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
}

.step-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--surface-highest);
    border: 1px solid rgba(152, 255, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon .icon {
    color: var(--primary);
    font-size: 20px;
}

.step-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--on-surface);
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.78rem;
    color: var(--on-surface-variant);
}

/* ===========================================
   STEPS TIMELINE (numbered 01/02/03 style)
   =========================================== */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 440px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}

.step-num {
    flex-shrink: 0;
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.7;
    min-width: 52px;
    text-align: center;
}

.step-text {
    font-size: 0.9375rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

.step-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(152, 255, 217, 0.15), rgba(200, 191, 255, 0.1), transparent);
}

/* ===========================================
   TESTIMONIALS (Swiper Carousel)
   =========================================== */
.testimonial-section {
    padding: 48px 0 64px;
    background:
        linear-gradient(180deg, var(--surface-low) 0%, var(--surface) 100%);
    border-top: 1px solid rgba(200, 191, 255, 0.06);
    border-bottom: 1px solid rgba(200, 191, 255, 0.06);
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.testimonial-section .section-heading {
    padding: 0 24px;
    max-width: 520px;
    margin: 0 auto 32px;
}

.swiper {
    padding-bottom: 48px !important;
}

.swiper-slide {
    height: auto;
}

.testimonial-swiper {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 1.2rem;
    border: 1px solid rgba(200, 191, 255, 0.12);
    background: rgba(29, 30, 49, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--tertiary);
    font-size: 16px;
}

.testimonial-stars .material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.testimonial-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200, 191, 255, 0.2);
    flex-shrink: 0;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--secondary) !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--primary) !important;
}

/* ===========================================
   ABOUT
   =========================================== */
.about-text {
    font-size: 0.9375rem;
    color: var(--on-surface-variant);
    line-height: 1.85;
}

.about-text p + p {
    margin-top: 16px;
}

.about-text strong {
    color: var(--on-surface);
}

/* ===========================================
   BONUS
   =========================================== */
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-item {
    padding: 20px;
    border-radius: 1rem;
    border: 1px solid rgba(233, 195, 73, 0.15);
}

.bonus-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bonus-item-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--on-surface);
}

.bonus-item-value {
    font-size: 0.8rem;
    color: var(--tertiary);
    opacity: 0.7;
    text-decoration: line-through;
}

.bonus-item-desc {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

.bonus-total {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--on-surface-variant);
}

.bonus-total strong {
    color: var(--tertiary);
}

/* ===========================================
   PRICING
   =========================================== */
.pricing-card {
    padding: 40px 32px;
    border-radius: 1rem;
    border: 1px solid rgba(152, 255, 217, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card .glow {
    position: absolute;
    bottom: -40px; left: -40px;
    width: 128px; height: 128px;
    background: rgba(152, 255, 217, 0.08);
    border-radius: 50%;
    filter: blur(32px);
    pointer-events: none;
}

.pricing-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--on-surface-variant);
    margin-bottom: 16px;
}

.pricing-old {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: rgba(225, 224, 250, 0.55);
    text-decoration: line-through;
    text-decoration-color: rgba(225, 224, 250, 0.7);
}

.pricing-badge {
    display: inline-block;
    background: rgba(152, 255, 217, 0.15);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.6rem;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-left: 8px;
}

.pricing-value {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 12vw, 4rem);
    color: var(--primary);
    margin: 12px 0 24px;
    line-height: 1;
}

.pricing-includes {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    line-height: 1.4;
}

.pricing-includes li .star {
    color: var(--tertiary);
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 2px;
}

.pricing-micro {
    font-size: 0.65rem;
    color: var(--on-surface-variant);
    margin-top: 16px;
    letter-spacing: 0.05em;
}

/* ===========================================
   OBJECTION / GUARANTEE
   =========================================== */
.objection-text {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    line-height: 1.85;
    text-align: center;
}

.objection-text p + p {
    margin-top: 14px;
}

.objection-text strong {
    color: var(--on-surface);
}

.guarantee-card {
    padding: 40px 32px;
    border-radius: 1rem;
    border: 1px solid rgba(152, 255, 217, 0.08);
    text-align: center;
    background: var(--surface-low);
}

.guarantee-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(152, 255, 217, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}

.guarantee-icon .material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
}

.guarantee-text strong {
    color: var(--on-surface);
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(62, 73, 68, 0.1);
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--on-surface);
}

.faq-toggle {
    font-size: 22px;
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 250px;
    opacity: 1;
}

.faq-answer p {
    padding-top: 12px;
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta-text {
    font-size: 0.9rem;
    color: var(--on-surface-variant);
    line-height: 1.85;
    margin-bottom: 32px;
    text-align: center;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: var(--surface-lowest);
    padding: 64px 32px 32px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--tertiary);
    margin-bottom: 32px;
}

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

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(189, 201, 194, 0.4);
}

/* ===========================================
   SCROLL REVEAL
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

/* ===========================================
   SECTION VISUAL VARIETY
   =========================================== */

/* Gradient band section */
.section-gradient {
    position: relative;
    z-index: 10;
    padding: 64px 24px 88px;
    margin-bottom: 80px;
    background:
        linear-gradient(135deg, rgba(81, 86, 169, 0.08) 0%, rgba(152, 255, 217, 0.04) 100%);
    border-top: 1px solid rgba(152, 255, 217, 0.06);
    border-bottom: 1px solid rgba(152, 255, 217, 0.06);
}

.section-gradient .container-inner {
    max-width: 520px;
    margin: 0 auto;
}

/* Dark recessed section */
.section-recessed {
    position: relative;
    z-index: 10;
    padding: 64px 24px;
    margin-bottom: 0;
    background: var(--surface-lowest);
    overflow: visible;
}

.section-recessed .container-inner {
    max-width: 520px;
    margin: 0 auto;
}

/* Bordered card section */
.section-bordered {
    margin-bottom: 80px;
    padding: 40px 28px;
    border: 1px solid rgba(233, 195, 73, 0.1);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(233, 195, 73, 0.03) 0%, transparent 100%);
}

/* ===========================================
   CRO ADDITIONS
   =========================================== */

.hero-social-proof {
    font-size: 14px;
    color: var(--on-surface-variant);
    text-align: center;
    margin: 12px 0 24px;
    letter-spacing: 0.04em;
}

.transformation-paragraph {
    font-style: italic;
    font-family: var(--font-headline);
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--on-surface-variant);
    text-align: center;
    max-width: 480px;
    margin: 32px auto 0;
    line-height: 1.65;
}

.pricing-installment {
    font-size: 14px;
    color: var(--on-surface-variant);
    text-align: center;
    margin-bottom: 24px;
}

.pricing-security-img {
    display: block;
    max-width: 280px;
    margin: 12px auto;
    opacity: 0.85;
}

.pricing-urgency {
    font-size: 12px;
    color: var(--primary);
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
}

.pricing-guarantee-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(152, 255, 217, 0.05);
    border: 1px solid rgba(152, 255, 217, 0.1);
    border-radius: 0.75rem;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--on-surface-variant);
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
}

.pricing-guarantee-compact .material-symbols-outlined {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (min-width: 768px) {
    .main-content {
        max-width: 640px;
    }

    .hero-headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 400px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}
