/* DeterminaXIon Landing — Dark, bold, Mongemalo-inspired */
:root {
    --black: #141E26;
    --dark: #1A2530;
    --dark-card: #1E2B36;
    --dark-border: #2A3A48;
    --red: #D4212A;
    --red-bright: #E53935;
    --red-glow: rgba(212,33,42,0.15);
    --gold: #B8860B;
    --white: #FFFFFF;
    --off-white: #E8E6E3;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: transparent;
    transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}
/* ─── LANG SWITCHER ─── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}
.lang-switcher:hover {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 20px rgba(201,162,39,0.15);
}
.lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.15, 0.27, 1.15);
    box-shadow: 0 2px 12px rgba(201,162,39,0.4);
    z-index: 1;
}
.lang-switcher.en .lang-slider {
    transform: translateX(40px);
}
.lang-option {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    padding: 0;
}
.lang-option + .lang-option {
    margin-left: 4px;
}
.lang-flag {
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s;
    filter: grayscale(0.5);
}
.lang-option.active .lang-flag {
    filter: grayscale(0) drop-shadow(0 0 4px rgba(255,255,255,0.3));
    transform: scale(1.15);
}
.lang-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.lang-switcher.switching .lang-globe {
    opacity: 1;
    animation: globeSpin 0.5s ease;
}
@keyframes globeSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 0; }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); opacity: 0; }
}

.nav-cta {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid var(--red);
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.nav-cta:hover {
    background: var(--red);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0 80px;
    background: var(--black);
}
.hero-bg {
    background-image: 
        linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.82) 100%),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}
.hero-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212,33,42,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: normal;
    color: var(--white);
    margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--gold);
    margin-bottom: 32px;
}
.hero-highlight {
    color: var(--gold);
    font-style: italic;
}
.hero-body {
    font-size: 19px;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}
.hero-body strong {
    color: var(--white);
}
.hero-body-small {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 40px;
}
.btn-hero {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 30px var(--red-glow);
}
.btn-hero:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(212,33,42,0.3);
}

/* ─── SECTIONS BASE ─── */
.section {
    padding: 100px 0;
}
.section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}

/* ─── PAIN SECTION ─── */
.section-pain {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.pain-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin-bottom: 56px;
}
.pain-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pain-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--dark-border);
    align-items: flex-start;
}
.pain-item:last-child { border-bottom: none; }
.pain-bullet {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    min-width: 36px;
    letter-spacing: 1px;
}
.pain-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}
.pain-item p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.7;
}
.pain-conclusion {
    text-align: center;
    margin-top: 56px;
    font-size: 18px;
    color: var(--gray-light);
}
.pain-bold {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-top: 12px;
}
.pain-bold em {
    color: var(--red-bright);
    font-style: italic;
}

/* ─── EMOTIONAL PHOTOS ─── */
.emotional-photo {
    max-width: 700px;
    margin: 48px auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.emotional-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.05);
    transition: all 0.5s ease;
}
.emotional-photo:hover .emotional-img {
    filter: brightness(0.95) contrast(1.05);
    transform: scale(1.02);
}
.emotional-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 20px;
    background: linear-gradient(transparent, rgba(10,10,10,0.9));
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--off-white);
    text-align: center;
    line-height: 1.5;
}
.emotional-photo--pain {
    border: 1px solid rgba(212,33,42,0.2);
}
.emotional-photo--pain .emotional-img {
    filter: brightness(0.7) contrast(1.1) saturate(0.8);
}
.emotional-photo--offer {
    border: 1px solid rgba(201,162,39,0.2);
}
.emotional-photo--urgency {
    border: 1px solid rgba(212,33,42,0.15);
    margin: 32px auto;
    max-width: 500px;
}
.emotional-photo--urgency .emotional-img {
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 768px) {
    .emotional-img { height: 220px; }
    .emotional-photo--urgency .emotional-img { height: 200px; }
    .emotional-caption { font-size: 15px; padding: 24px 16px 16px; }
}

/* ─── QUOTE SECTION ─── */
.section-quote {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(10,10,10,0.88), rgba(10,10,10,0.92)),
        url('../img/consultation.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--dark-border);
}
.main-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.main-quote p {
    font-family: var(--font-display);
    font-size: 32px;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.5;
    margin-bottom: 24px;
}
.main-quote strong {
    color: var(--red-bright);
}
.main-quote footer {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
}

/* ─── OFFER SECTION ─── */
.section-offer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}
.offer-header {
    text-align: center;
    margin-bottom: 56px;
}
.offer-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 16px;
}
.offer-header h2 {
    margin-bottom: 32px;
}
.offer-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.value-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 4px;
}
.value-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gray);
}
.strikethrough {
    text-decoration: line-through;
}
.value-arrow {
    font-size: 32px;
    color: var(--red);
}
.value-price-free {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--red-bright);
    letter-spacing: 4px;
}

/* Steps */
.offer-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.offer-step {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
}
.offer-step:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}
.offer-step-num {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 12px;
}
.offer-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}
.offer-step p {
    color: var(--gray-light);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}
.offer-detail {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

.offer-note {
    background: var(--dark-card);
    border-left: 3px solid var(--gold);
    padding: 24px 32px;
    border-radius: 0 8px 8px 0;
    max-width: 700px;
    margin: 0 auto;
}
.offer-note p {
    color: var(--gray-light);
    font-size: 16px;
}
.offer-note strong {
    color: var(--white);
}

/* ─── RESULTS ─── */
.section-results {
    background: 
        linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.93)),
        url('../img/results-bg.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.result-card {
    text-align: center;
    padding: 32px 16px;
}
.result-number {
    display: block;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--red-bright);
    line-height: 1;
    margin-bottom: 8px;
}
.result-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}
.result-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ─── ABOUT ─── */
.section-about {
    background: var(--dark);
}
.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-photo-area {
    flex-shrink: 0;
    text-align: center;
}
.about-photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 16px;
}
.about-photo-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--dark-border);
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: all 0.3s;
}
.about-photo-img:hover {
    border-color: var(--gold);
    transform: scale(1.03);
}
.about-cert span {
    display: block;
    font-size: 13px;
    color: var(--gray);
}
.about-cert span:first-child {
    color: var(--gold);
    font-weight: 600;
}
.about-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 8px;
}
.about-text h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 4px;
}
.about-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.about-bio {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-list {
    list-style: none;
    margin-bottom: 24px;
}
.about-list li {
    color: var(--gray-light);
    font-size: 15px;
    padding: 6px 0;
}
.about-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--off-white);
    border-left: 3px solid var(--red);
    padding-left: 20px;
    margin-top: 8px;
}

/* ─── CTA / FORM ─── */
.section-cta {
    background: var(--black);
    border-top: 1px solid var(--dark-border);
    padding: 100px 0;
}
.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 16px;
}
.cta-sub {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.cta-sub strong {
    color: var(--white);
}
.cta-form-container {
    margin-bottom: 32px;
}

/* ─── LEAD MAGNET — Bloque de Oro 3D ─── */
.cta-leadmagnet {
    margin: 0 auto 36px;
    max-width: 560px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(
        170deg,
        #FFFDE7 0%,
        #FFD700 15%,
        #F0B800 35%,
        #DAA520 55%,
        #B8860B 75%,
        #7B5A00 100%
    );
    box-shadow:
        inset 0  3px 5px rgba(255, 255, 255, 0.6),
        inset 0 -3px 5px rgba(0, 0, 0, 0.4),
        0 8px 0   rgba(80, 50, 0, 0.6),
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 24px 60px rgba(184, 134, 11, 0.3);
}

/* Header — toda la placa dorada */
.leadmagnet-header {
    padding: 28px 28px 20px;
    text-align: center;
}

.leadmagnet-icon {
    font-size: 36px;
    margin: 0 0 8px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* "DESCARGA GRATIS" — etiqueta roja para llamar la atención */
.leadmagnet-title {
    display: inline-block;
    background: #C0392B;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    margin: 0 0 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Título principal — negro potente sobre oro */
.leadmagnet-subtitle {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: #0D0D0D;
    line-height: 1.25;
    margin: 0 0 12px;
    text-shadow: 0 1px 3px rgba(255,255,255,0.5), 0 2px 6px rgba(0,0,0,0.2);
}

.leadmagnet-subtitle strong { font-weight: 900; }

/* Subtítulo CTA — oscuro con urgencia */
.leadmagnet-sub {
    font-size: 14px;
    font-weight: 600;
    color: #3D1A00;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

/* Embed MailerLite — separado con borde dorado oscuro */
.leadmagnet-embed {
    border-top: 3px solid #7B5A00;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.4);
    padding: 18px 16px 20px;
    background: #111111;
}

.leadmagnet-embed .ml-embedded {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 340px;
}

/* Mobile CTA alternative */
.leadmagnet-mobile-cta {
    display: none;
}

/* Fix móvil razonable */
@media (max-width: 768px) {
    .cta-leadmagnet {
        max-width: 100%;
        border-radius: 16px;
    }

    .leadmagnet-header {
        padding: 24px 20px 18px;
    }
.leadmagnet-icon { display: none !important; }
.leadmagnet-sub { display: none !important; }

    .leadmagnet-title {
        letter-spacing: 3px;
        padding: 5px 12px;
    }

    .leadmagnet-subtitle {
        font-size: 19px;
        line-height: 1.3;
    }

    .leadmagnet-sub {
        font-size: 14px;
        line-height: 1.5;
    }

    .leadmagnet-embed-desktop {
        display: block !important;
    }

    .leadmagnet-mobile-cta {
        display: none !important;
        flex-direction: column;
        gap: 12px;
        padding: 18px 16px 20px;
        background: #13202A;
        border-top: 3px solid #7B5A00;
    }

    .leadmagnet-mobile-help {
        color: rgba(255,255,255,0.78);
        font-size: 14px;
        line-height: 1.45;
        margin: 0;
        text-align: center;
    }

    .leadmagnet-mobile-input {
        width: 100%;
        min-height: 58px;
        padding: 18px 18px;
        background: #FFFFFF;
        color: #141E26;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        line-height: 1.4;
        -webkit-appearance: none;
        appearance: none;
    }

    .leadmagnet-mobile-input::placeholder {
        color: #666666;
        opacity: 1;
    }

    .leadmagnet-mobile-button {
        display: block;
        width: 100%;
        padding: 16px 18px;
        background: #D4212A;
        color: #FFFFFF;
        text-align: center;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.3;
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(212,33,42,0.25);
    }
}
@media (max-width: 480px) {
    .leadmagnet-header {
        padding: 22px 16px 16px;
    }

    .leadmagnet-subtitle {
        font-size: 18px;
    }

    .leadmagnet-mobile-cta {
        padding: 16px 14px 18px;
    }

    .leadmagnet-mobile-input,
    .leadmagnet-mobile-button {
        font-size: 15px;
    }
}
.cta-extra {
    color: var(--gold);
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.btn-agendar {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 22px 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    border-radius: 6px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 40px var(--red-glow);
    text-align: center;
}
.btn-agendar:hover {
    background: var(--red-bright);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(212,33,42,0.4);
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-trust span {
    font-size: 14px;
    color: var(--gray);
}

/* ─── URGENCY ─── */
.section-urgency {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 80px 0;
}
.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.urgency-box h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 24px;
}
.urgency-box p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}
.urgency-bold {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 18px !important;
}
.urgency-close {
    font-family: var(--font-display);
    font-size: 22px !important;
    color: var(--red-bright) !important;
    font-style: italic;
    margin-top: 24px !important;
    margin-bottom: 32px !important;
}
.urgency-transform {
    color: var(--gray-light);
    font-size: 16px;
    margin-top: 24px !important;
    margin-bottom: 32px !important;
    line-height: 1.8;
}
.btn-urgency {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 30px var(--red-glow);
}
.btn-urgency:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

/* ─── FAQ ─── */
.section-faq {
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}
.section-faq h2 {
    margin-bottom: 48px;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--dark-border);
}
.faq-q {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    padding: 24px 48px 24px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.faq-q:hover { color: var(--white); }
.faq-q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--red);
    transition: transform 0.3s;
    font-weight: 300;
}
.faq-item.open .faq-q::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.faq-a p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 24px;
}
.faq-item.open .faq-a {
    max-height: 1000px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    padding: 48px 0;
    border-top: 1px solid var(--dark-border);
}
.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-logo-img {
    height: 108px;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}
.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 15px;
}
.footer-info {
    color: var(--gray);
    font-size: 13px;
}
.footer-privacy {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: block;
}
.footer-privacy:hover {
    color: var(--gold);
}
.footer-copy {
    color: var(--gray);
    font-size: 12px;
    opacity: 0.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-eyebrow { font-size: 32px; }
    .hero h1 { font-size: 24px; }
    .hero-body { font-size: 16px; }
    .btn-hero { padding: 16px 32px; font-size: 15px; }
    .section { padding: 64px 0; }
    .section h2, .pain-title { font-size: 28px; }
    .main-quote p { font-size: 24px; }
    .offer-steps { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-grid { flex-direction: column; gap: 32px; }
    .about-text h2 { text-align: center; }
    .cta-trust { flex-direction: column; align-items: center; gap: 8px; }
    .value-price-free { font-size: 36px; }
    .offer-value { gap: 16px; }
    .result-number { font-size: 42px; }
    .pain-item { gap: 16px; }
}
