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

:root {
    --color-gold: #C9A84C;
    --color-gold-light: #E8C97A;
    --color-gold-pale: #F7EDCC;
    --color-deep: #0A0A0F;
    --color-midnight: #11121A;
    --color-text: #F0EBE0;
    --color-muted: #9B9580;
    --color-accent: #7B6CF6;
    --color-line: rgba(201, 168, 76, 0.12);
    --color-surface: rgba(255, 255, 255, 0.025);

    --container: 860px;
    --container-wide: 1100px;
    --content-sm: 560px;
    --content-md: 640px;
    --content-lg: 760px;
    --content-xl: 960px;

    --radius-card: 14px;
    --radius-block: 16px;
    --radius-price: 20px;
    --radius-pill: 50px;

    --section-space-desktop: 60px;
    --section-space-mobile: 40px;

    --space-0: 0;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-14: 14px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-28: 28px;
    --space-30: 30px;
    --space-32: 32px;
    --space-35: 35px;
    --space-36: 36px;
    --space-40: 40px;
    --space-45: 45px;
    --space-48: 48px;
    --space-50: 50px;
    --space-52: 52px;
    --space-60: 60px;

    --bp-tablet: 900px;
    --bp-mobile: 680px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--color-deep);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: clip;
    font-display: swap;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   2) FUNDO GLOBAL
============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    background-color: var(--color-deep);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Ccircle cx='90' cy='135' r='1' fill='rgba(255,255,255,0.55)'/%3E%3Ccircle cx='270' cy='360' r='1' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='495' cy='225' r='1.5' fill='rgba(255,255,255,0.65)'/%3E%3Ccircle cx='630' cy='540' r='1' fill='rgba(255,255,255,0.45)'/%3E%3Ccircle cx='765' cy='90' r='1' fill='rgba(255,255,255,0.55)'/%3E%3Ccircle cx='180' cy='675' r='1' fill='rgba(255,255,255,0.38)'/%3E%3Ccircle cx='405' cy='810' r='1.5' fill='rgba(255,255,255,0.48)'/%3E%3Ccircle cx='810' cy='405' r='1' fill='rgba(255,255,255,0.55)'/%3E%3Ccircle cx='585' cy='720' r='1' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='45' cy='450' r='1' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='720' cy='270' r='1' fill='rgba(255,255,255,0.42)'/%3E%3Ccircle cx='135' cy='810' r='1.5' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='855' cy='630' r='1' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='340' cy='110' r='1' fill='rgba(255,255,255,0.45)'/%3E%3Ccircle cx='650' cy='190' r='1.5' fill='rgba(255,255,255,0.38)'/%3E%3C/svg%3E"),
        radial-gradient(ellipse at 20% 20%, #1a1035 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, #0a1535 0%, transparent 55%);
}

/* ============================================================
   3) LAYOUT
============================================================ */
.wrap {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.container,
.container-wide {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: var(--container);
}

.container-wide {
    max-width: var(--container-wide);
}

section {
    position: relative;
    padding: var(--section-space-desktop) 0;
    overflow-x: clip;
}

.section--surface {
    background: rgba(255, 255, 255, 0.01);
}

.grid-two,
.truth-grid,
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-auto,
.benefits-grid,
.testimonials-grid,
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    gap: 1px;
}

/* ============================================================
   4) TIPOGRAFIA
============================================================ */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.section-label {
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-gold);
}

.section-title {
    margin-top: 30px;
    padding-bottom: 20px;
    font-size: clamp(28px, 4vw, 46px);
    text-align: center;
}

.section-intro {
    max-width: var(--content-md);
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
    text-align: center;
    color: var(--color-muted);
}

@media (min-width: 680px) {
    .section-intro {
        margin-top: 10px;
        font-size: 19px;
    }
}

@media (max-width: 679px) {
    .section-label {
        font-size: 12px;
    }

    .section-intro {
        margin-top: 0;
        padding-top: 7px;
        font-size: 18px;
        line-height: 1.8;
    }
}

/* ============================================================
   5) COMPONENTES BASE
============================================================ */
.gold-line {
    width: 48px;
    height: 1px;
    margin: 0 auto 2rem;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 168, 76, 0.2) 30%,
        rgba(201, 168, 76, 0.2) 70%,
        transparent 100%
    );
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 60px;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-gold-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    transition: background 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--color-gold);
}

.card,
.glass-card,
.journey-card,
.benefit-card,
.testimonial-card,
.bonus-card {
    min-width: 0;
    border: 0.5px solid var(--color-line);
    border-radius: var(--radius-card);
    background: var(--color-surface);
    padding: 20px;
}

.glass-card,
.journey-card {
    transition: border-color 0.25s;
    padding: 25px;
}

.glass-card:hover,
.journey-card:hover {
    border-color: rgba(201, 168, 76, 0.28);
}

/* Espaçamento contextual dos CTAs */
.hero-actions .btn-primary,
.price-card .btn-primary,
.final-cta .btn-primary {
    margin-top: 10px;
}

/* ============================================================
   6) HERO
============================================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 60%, rgba(123, 108, 246, 0.07) 0%, transparent 65%);
}

.hero--spaced {
    padding-top: var(--section-space-desktop);
    padding-bottom: var(--section-space-desktop);
}

.hero h1 {
    margin-bottom: 0.3em;
    font-size: clamp(42px, 7vw, 82px);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--color-gold-light);
}

.hero-sub {
    margin-bottom: 20px;
    padding-top: 10px;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

.hero-desc {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.85;
    color: rgba(240, 235, 224, 0.74);
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-points {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-pill {
    padding: 18px;
    border: 0.5px solid rgba(201, 168, 76, 0.16);
    border-radius: var(--radius-block);
    background: rgba(255, 255, 255, 0.025);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(240, 235, 224, 0.82);
    overflow-wrap: anywhere;
}

.hero-pill strong {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gold-light);
}

/* ============================================================
   7) BLOCOS / CARDS ESPECÍFICOS
============================================================ */
.pain-block {
    position: relative;
    max-width: var(--content-lg);
    margin: 40px auto 0;
    padding: 2px 48px 40px;
    overflow: hidden;
    border: 0.5px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-block);
    background: rgba(201, 168, 76, 0.04);
}

.pain-block::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.25;
    pointer-events: none;
}

.pain-block p {
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(240, 235, 224, 0.85);
    overflow-wrap: anywhere;
}

.pain-block p + p {
    margin-top: 1.2rem;
}

.pain-block strong {
    color: var(--color-gold-light);
    font-weight: 500;
}

.truth-grid {
    max-width: 920px;
    width: 100%;
}

.journey-grid {
    max-width: 820px;
}

.glass-card h3,
.benefit-card h3,
.bonus-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gold-light);
    padding-top: 10px;
}

.glass-card h3,
.benefit-card h3 {
    padding-top: 25px;
    padding-bottom: 10px;
}

.glass-card p,
.journey-card p,
.benefit-card p,
.testimonial-card p,
.bonus-card p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(240, 235, 224, 0.78);
    overflow-wrap: anywhere;
}

.feature-list {
    display: grid;
    gap: 10px;
    padding-top: 7px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(240, 235, 224, 0.8);
}

.feature-item span {
    font-size: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.feature-item i,
.price-point i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid rgba(201, 168, 76, 0.24);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--color-gold-light);
    font-size: 12px;
    font-style: normal;
}

.journey-card h3 {
    margin-bottom: 8px;
    padding-top: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gold-light);
}

.journey-num {
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1;
    color: rgba(201, 168, 76, 0.43);
}

.modules-list {
    max-width: var(--content-lg);
    margin: 27px auto 0;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-width: 0;
    padding: 20px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.module-item:last-child {
    border-bottom: none;
}

.module-num {
    min-width: 80px;
    padding-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.module-content {
    min-width: 0;
    flex: 1;
}

.module-content h3 {
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
}

.module-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

/* ============================================================
   8) PROFESSOR
============================================================ */
.teacher-block {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    max-width: 860px;
    margin: 0 auto;
}

.teacher-visual {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.teacher-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding-top: 12px;
    margin-bottom: -20px;
    animation: floatY 6s ease-in-out infinite;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateZ(0) translateY(0);
    }

    50% {
        transform: translateZ(0) translateY(-8px);
    }
}

.teacher-name {
    margin-top: 40px;
    margin-bottom: 6px;
    font-size: 28px;
    text-align: left;
    color: var(--color-gold-light);
}

.teacher-role {
    margin-bottom: 1.5rem;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    color: var(--color-muted);
}

.teacher-bio p {
    margin-bottom: 1rem;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(240, 235, 224, 0.76);
    overflow-wrap: anywhere;
}

.teacher-bio p strong {
    font-weight: 500;
    color: var(--color-gold-light);
}

/* ============================================================
   9) BONUS / BENEFÍCIOS / DEPOIMENTOS
============================================================ */
.benefits-grid,
.testimonials-grid,
.bonus-grid {
    max-width: var(--content-xl);
    margin-top: 40px;
    margin-left: auto;
    gap: 21px;
}

.testimonial-card p {
    margin-bottom: 16px;
    font-style: italic;
    color: rgba(240, 235, 224, 0.8);
}

.testimonial-stars {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.testimonial-name {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.bonus-card {
    position: relative;
    border-radius: var(--radius-block);
    padding: 10px 20px 20px;
}

.bonus-card.featured {
    border-color: rgba(232, 201, 122, 0.35);
}

.bonus-badge {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 14px;
    padding: 7px 13px 6px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.08);
    color: var(--color-gold-light);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ============================================================
   10) PREÇO
============================================================ */
.price-section {
    padding: var(--section-space-desktop) 24px;
    overflow-x: clip;
}

.price-card {
    position: relative;
    max-width: var(--content-lg);
    margin: 0 auto;
    padding: 52px 48px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-price);
    background: var(--color-surface);
    text-align: center;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}

.price-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-top: 25px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
    color: var(--color-gold-light);
    font-size: 28px;
}

.price-label {
    margin-bottom: 1rem;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.price-desc {
    max-width: var(--content-sm);
    margin: 0 auto 2rem;
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

.price-points {
    display: grid;
    gap: 10px;
    max-width: var(--content-sm);
    margin: 0 auto 2rem;
    text-align: left;
}

.price-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.price-point span {
    font-size: 16px;
    color: rgba(240, 235, 224, 0.8);
    overflow-wrap: anywhere;
}

.price-note {
    margin-top: 1.2rem;
    font-size: 14px;
    color: rgba(155, 149, 128, 0.72);
}

/* ============================================================
   11) FAQ
============================================================ */
.faq-list {
    max-width: 700px;
    margin: 15px auto 0;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    overflow-wrap: anywhere;
}

.faq-q span {
    flex: 0 0 auto;
    font-size: 20px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-muted);
    transition: grid-template-rows 0.35s ease;
}

.faq-a-inner {
    overflow: hidden;
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-a-inner {
    padding-top: 10px;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
}

/* ============================================================
   12) CTA FINAL & FOOTER
============================================================ */
.final-cta {
    padding: var(--section-space-desktop) 24px;
    text-align: center;
    overflow-x: clip;
    background: radial-gradient(ellipse at 50% 0%, rgba(123, 108, 246, 0.06) 0%, transparent 65%);
}

.final-cta h2 {
    margin-bottom: 1rem;
    padding-top: 20px;
    font-size: clamp(30px, 5vw, 52px);
}

.final-cta p {
    max-width: var(--content-sm);
    margin: 0 auto 2.5rem;
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 1.85;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

footer {
    padding: 32px 24px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 12px;
    color: rgba(155, 149, 128, 0.5);
}

footer p + p {
    margin-top: 6px;
    font-size: 13px;
}

/* ============================================================
   13) UTILITÁRIOS
============================================================ */
.u-mt-08 {
    margin-top: 0.8rem;
}

.u-mb-16 {
    margin-bottom: 1rem;
}

/* placeholders mantidos para não quebrar HTML existente */
.u-mt-n5 {}
.u-mb-35 {}
.u-mb-n17 {}

/* ============================================================
   14) REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   15) ACESSIBILIDADE / MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .teacher-image {
        animation: none;
    }

    .btn-primary {
        transition: none;
    }
}

/* ============================================================
   16) RESPONSIVO
============================================================ */
@media (min-width: 680px) {
    .hero-points {
        margin-top: 42px;
        gap: 20px;
    }

    .hero-pill {
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .hero-points,
    .truth-grid,
    .journey-grid,
    .teacher-block {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
}

@media (max-width: 679px) {
    .hero-points,
    .teacher-block {
        margin-top: 0;
        padding-top: 25px;
        row-gap: 25px;
    }

    .hero-desc {
        padding-top: 5px;
        font-size: 17px;
        text-align: center;
    }

    .hero-pill {
        padding: 18px;
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-pill strong {
        font-size: 17px;
    }

    .pain-block p,
    .teacher-bio p,
    .glass-card p,
    .journey-card p,
    .benefit-card p,
    .testimonial-card p,
    .bonus-card p {
        font-size: 16px;
    }

    .glass-card h3,
    .benefit-card h3,
    .journey-card h3 {
        font-size: 18px;
    }

    .feature-item span {
        font-size: 16px;
    }

    .price-desc {
        font-size: 17px;
    }

    .price-point span {
        font-size: 15px;
    }

    .faq-q {
        font-size: 15px;
    }

    .final-cta p {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .teacher-name {
        margin-top: 50px;
    }

    .benefits-grid,
    .testimonials-grid,
    .bonus-grid {
        margin-top: 0;
        row-gap: 0;
    }

    .feature-list {
        padding-top: 15px;
    }
}

@media (max-width: 680px) {
    .container,
    .container-wide {
        padding: 0 20px;
    }

    .hero {
        min-height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero--spaced,
    .final-cta {
        padding-top: var(--section-space-mobile);
        padding-bottom: var(--section-space-mobile);
    }

    section {
        padding: var(--section-space-mobile) 0;
    }

    .price-section {
        padding: var(--section-space-mobile) 20px;
        margin-top: -31px;
        margin-bottom: -1px;
    }

    .pain-block,
    .price-card,
    .glass-card,
    .benefit-card,
    .testimonial-card,
    .journey-card,
    .bonus-card {
        margin-top: 30px;
        margin-bottom: 0;
        padding: 0 20px 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 340px;
        padding: 10px;
        font-size: 17px;
    }

    .module-item {
        flex-direction: column;
        gap: 6px;
    }

    .module-num {
        min-width: auto;
    }
}

/* ============================================================
   17) POPUP
============================================================ */
.desp-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(123, 108, 246, 0.10) 0%, transparent 55%),
        rgba(10, 10, 15, 0.86);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.desp-popup-overlay.is-open {
    display: flex;
}

.desp-popup-modal {
    position: relative;
    width: 100%;
    max-width: 640px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 20px;
    background: rgba(17, 18, 26, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 168, 76, 0.05) inset;
    color: var(--color-text);
}

.desp-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.desp-popup-close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.10);
}

.desp-popup-header {
    padding: 24px 24px 18px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.10);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(123, 108, 246, 0.10) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.desp-popup-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}

.desp-popup-logo-img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    flex: 0 0 auto;
}

.desp-popup-brand-top,
.desp-popup-brand-bottom {
    font-family: 'Playfair Display', serif;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.desp-popup-brand-top {
    font-size: 28px;
    color: rgba(240, 235, 224, 0.92);
}

.desp-popup-brand-bottom {
    margin-top: 2px;
    font-size: 30px;
    color: var(--color-gold-light);
}

.desp-popup-body {
    padding: 26px 24px 24px;
}

.desp-popup-title {
    margin: 0 0 8px;
    font-size: clamp(30px, 5vw, 42px);
    text-align: center;
    color: var(--color-text);
}

.desp-popup-subtitle {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    color: var(--color-muted);
}

#desp-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.desp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.desp-field {
    position: relative;
}

.desp-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    box-shadow: none;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.desp-field input::placeholder {
    color: rgba(240, 235, 224, 0.45);
}

.desp-field input:focus,
.desp-phone-search:focus {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.desp-phone-combo {
    position: relative;
}

.desp-phone-trigger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 52px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-right: 0;
    border-radius: 12px 0 0 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    cursor: pointer;
}

.desp-phone-flag {
    font-size: 17px;
    line-height: 1;
}

.desp-phone-ddi {
    display: none !important;
}

.desp-phone-arrow {
    font-size: 9px;
    color: rgba(240, 235, 224, 0.55);
}

#desp-phone {
    padding-left: 60px !important;
}

.desp-phone-dropdown {
    position: absolute;
    top: 54px;
    left: 0;
    z-index: 999999;
    display: none;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-radius: 14px;
    background: #11121A;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.desp-phone-dropdown.is-open {
    display: block;
}

.desp-phone-search-wrap {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.desp-phone-search {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    font-size: 14px;
    outline: none;
}

.desp-phone-list {
    max-height: 260px;
    overflow: auto;
}

.desp-phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
}

.desp-phone-item:hover,
.desp-phone-item.is-active {
    background: rgba(255, 255, 255, 0.05);
}

.desp-phone-item-flag {
    width: 24px;
    flex: 0 0 24px;
    font-size: 18px;
}

.desp-phone-item-name {
    flex: 1;
    font-size: 15px;
}

.desp-phone-item-dial {
    font-size: 14px;
    color: var(--color-muted);
}

.desp-bonus-note {
    margin-top: -2px;
    font-size: 13px;
    color: var(--color-muted);
}

#desp-popup-submit {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

#desp-popup-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(201, 168, 76, 0.18);
}

#desp-popup-submit.is-redirecting {
    animation: despRedirectPulse 1.2s ease-in-out infinite;
}

@keyframes despRedirectPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.985);
        opacity: 0.88;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.desp-popup-legal {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.6;
    color: var(--color-muted);
}

.desp-popup-legal a {
    color: var(--color-gold-light);
    text-decoration: underline;
}

#desp-popup-msg {
    min-height: 18px;
    margin-top: 4px;
    font-size: 14px;
}

#desp-popup-msg.is-error {
    color: #ff8f8f;
}

#desp-popup-msg.is-success {
    color: #8fe0a8;
}

@media (max-width: 767px) {
    .desp-popup-overlay {
        padding: 10px;
        align-items: flex-start;
    }

    .desp-popup-modal {
        margin: 0 auto;
        border-radius: 16px;
    }

    .desp-popup-header {
        padding: 18px 16px 14px;
    }

    .desp-popup-brand {
        gap: 10px;
    }

    .desp-popup-logo-img {
        width: 54px;
        height: 54px;
    }

    .desp-popup-brand-top {
        font-size: 20px;
    }

    .desp-popup-brand-bottom {
        font-size: 22px;
    }

    .desp-popup-body {
        padding: 18px 16px 18px;
    }

    .desp-popup-title {
        font-size: 30px;
    }

    .desp-popup-subtitle {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .desp-grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .desp-field input,
    .desp-phone-trigger,
    #desp-phone {
        height: 44px;
    }

    .desp-phone-trigger {
        width: 48px;
    }

    #desp-phone {
        padding-left: 56px !important;
    }

    .desp-phone-dropdown {
        top: 50px;
    }

    #desp-popup-submit {
        height: 46px;
        font-size: 17px;
    }

    .desp-popup-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 520px) {
    .desp-grid-2 {
        grid-template-columns: 1fr;
    }
}
