/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
    --bg:        #080c08;
    --bg2:       #0a0f0a;
    --bg3:       #0f160f;
    --card:      #141e14;
    --card2:     #192519;
    --green:     #22c55e;
    --gdim:      rgba(34,197,94,.13);
    --gfaint:    rgba(34,197,94,.06);
    --gborder:   rgba(34,197,94,.2);
    --gborderhi: rgba(34,197,94,.45);
    --gold:      #c9a84c;
    --goldbri:   #e4c06a;
    --golddim:   rgba(201,168,76,.13);
    --goldfaint: rgba(201,168,76,.06);
    --goldb:     rgba(201,168,76,.25);
    --goldbhi:   rgba(201,168,76,.55);
    --text:      #f0ece0;
    --text2:     #a89f88;
    --text3:     #5a5448;
    --mono:      'JetBrains Mono', monospace;
    --display:   'Bricolage Grotesque', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--display);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Grid background */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background-image:
    linear-gradient(rgba(201,168,76,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* ── Utilidades ────────────────────────────────────────────────────────── */
.wrap   { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.g      { color: var(--green); }
.gold   { color: var(--gold); }

.label {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--mono); font-size: .68rem;
    letter-spacing: .18em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.label::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.label--gold { color: var(--gold); }
.label--green { color: var(--green); }

h2 {
    font-size: clamp(1.7rem, 5vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.02em; margin-bottom: 1.25rem;
}
h3 { font-size: clamp(1rem, 3vw, 1.2rem); font-weight: 700; margin-bottom: .6rem; }

p { font-size: clamp(.92rem, 2.5vw, 1rem); line-height: 1.75; color: var(--text2); }

.section { padding: 5rem 0; border-top: 1px solid var(--goldb); }
.section:first-of-type { border-top: none; }

/* ── Botón CTA ─────────────────────────────────────────────────────────── */
.cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--goldbri), var(--gold));
    background-size: 200%;
    color: var(--bg); font-family: var(--display);
    font-weight: 800; font-size: clamp(.9rem, 3vw, 1.1rem);
    padding: 1.1rem clamp(1.5rem, 4vw, 2.75rem);
    border-radius: 3px; text-decoration: none; border: none; cursor: pointer;
    transition: background-position .4s, transform .15s, box-shadow .2s;
    box-shadow: 0 0 40px rgba(201,168,76,.2), 0 4px 20px rgba(0,0,0,.4);
}
.cta:hover {
    background-position: 100%;
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(201,168,76,.35), 0 8px 28px rgba(0,0,0,.5);
}
.cta--full { width: 100%; }

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
    background: var(--card); border: 1px solid var(--goldb);
    border-radius: 4px; padding: 1.75rem;
    transition: border-color .25s, background .25s;
}
.card:hover { border-color: var(--goldbhi); background: var(--card2); }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* ── Code block ────────────────────────────────────────────────────────── */
.code {
    font-family: var(--mono); font-size: clamp(.8rem,2.2vw,.9rem);
    background: rgba(0,0,0,.55); border: 1px solid var(--gborder);
    border-left: 3px solid var(--green);
    padding: 1.25rem 1.5rem; border-radius: 2px;
    color: var(--text2); line-height: 2; white-space: pre-wrap;
    overflow-x: auto; margin: 1.25rem 0;
}
.code .c  { color: var(--text3); }
.code .g  { color: var(--green); }
.code .r  { color: #f87171; }
.code .w  { color: var(--text); }

/* ── Divider ───────────────────────────────────────────────────────────── */
.hr { height: 1px; background: linear-gradient(90deg,transparent,var(--goldbhi),transparent); border: none; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════ */
/* HERO                                                                    */
/* ═══════════════════════════════════════════════════════════════════════ */
#hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; background: var(--bg);
    padding: 2rem 0 4rem; position: relative;
}
#hero::after {
    content: '';
    position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img { height: 68px; width: auto; object-fit: contain; }

/* Logo SVG fallback */
.logo-svg {
    display: inline-flex; flex-direction: column;
    align-items: center; gap: .5rem;
}
.logo-icon {
    font-family: var(--mono); font-size: 2.2rem;
    font-weight: 300; color: #fff;
    display: inline-flex; align-items: center; gap: .1em;
}
.logo-dot {
    width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
}
.logo-text { display: flex; flex-direction: column; align-items: center; gap: .05rem; }
.logo-text span { font-family: var(--display); font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; }
.logo-text span:first-child { font-weight: 600; color: var(--text); }
.logo-text span:last-child  { font-weight: 400; color: var(--gold); }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--mono); font-size: .68rem;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); background: var(--goldfaint);
    border: 1px solid var(--goldb);
    padding: .4rem 1.2rem; border-radius: 2px;
    margin-bottom: 1.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: '//'; opacity: .5; }

.hero-h1 {
    font-size: clamp(2rem, 6.5vw, 4.4rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -.025em; margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--text2); max-width: 620px;
    margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-sub.left { margin-left: 0; }

/* VSL */
.vsl-wrap {
    max-width: 720px; margin: 0 auto 2.5rem;
    border: 1px solid var(--goldb); border-radius: 4px;
    overflow: hidden; background: #060a06;
    position: relative; padding-bottom: 56.25%; height: 0;
}
.vsl-wrap iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: none;
}
/* Placeholder mientras no hay video */
.vsl-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    background: linear-gradient(135deg, var(--bg2), var(--card));
}
.vsl-play {
    width: 68px; height: 68px; border-radius: 50%;
    border: 2px solid var(--goldb);
    display: flex; align-items: center; justify-content: center;
    background: var(--goldfaint);
    transition: background .2s, border-color .2s;
}
.vsl-placeholder:hover .vsl-play { background: var(--golddim); border-color: var(--gold); }
.vsl-play svg { fill: var(--gold); margin-left: 4px; }
.vsl-label { font-family: var(--mono); font-size: .78rem; color: var(--text3); }

.cta-sub {
    font-family: var(--mono); font-size: .68rem;
    color: var(--text3); letter-spacing: .1em; margin-top: .9rem;
}
.cta-sub .g { color: var(--green); }

/* Stats */
.stats {
    display: flex; justify-content: center;
    border-top: 1px solid var(--goldb); border-bottom: 1px solid var(--goldb);
    margin-top: 3.5rem; flex-wrap: wrap;
}
.stat {
    flex: 1; min-width: 140px; text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--goldb);
}
.stat:last-child { border-right: none; }
.stat-n {
    font-family: var(--display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 800; color: var(--gold);
    line-height: 1; margin-bottom: .3rem;
}
.stat-l { font-size: .78rem; color: var(--text3); }

/* ═══════════════════════════════════════════════════════════════════════ */
/* DOLOR                                                                   */
/* ═══════════════════════════════════════════════════════════════════════ */
.pain-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--goldb);
    border: 1px solid var(--goldb); border-radius: 4px;
    overflow: hidden; margin: 2rem 0;
}
.pain {
    background: var(--bg3); padding: 2rem 1.5rem;
    transition: background .2s;
}
.pain:hover { background: var(--card); }
.pain-tag {
    font-family: var(--mono); font-size: .62rem;
    color: rgba(201,168,76,.35); letter-spacing: .15em;
    margin-bottom: 1rem; display: block;
}
.pain-bar { height: 3px; width: 36px; background: #ef4444; border-radius: 2px; margin-bottom: 1rem; }
.pain h3 { color: var(--text); margin-bottom: .75rem; }

.insight {
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.75rem;
    background: var(--goldfaint);
    border-radius: 0 4px 4px 0;
}
.insight p { font-size: clamp(1rem, 3vw, 1.2rem); font-weight: 700; color: var(--gold); font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════ */
/* CONSCIENCIA                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
.hawkins-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start; margin: 2rem 0;
}
.hawkins-img-wrap { position: sticky; top: 2rem; }
.hawkins-img-wrap img {
    width: 100%; height: auto;
    border: 1px solid var(--goldb); border-radius: 4px;
    display: block; object-fit: contain;
}
.hawkins-caption {
    font-family: var(--mono); font-size: .62rem;
    color: var(--text3); letter-spacing: .1em;
    text-align: center; margin-top: .75rem;
}
/* Placeholder Hawkins */
.hawkins-placeholder {
    min-height: 280px; border: 1px dashed var(--goldb);
    border-radius: 4px; display: flex;
    align-items: center; justify-content: center;
    flex-direction: column; gap: .5rem; background: var(--card);
}
.hawkins-placeholder span { font-family: var(--mono); font-size: .7rem; color: var(--text3); }

.levels { display: flex; flex-direction: column; gap: 1.25rem; }
.level {
    padding: 1.5rem; border-radius: 4px;
    border: 1px solid; position: relative;
}
.level::before {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px; border-radius: 4px 0 0 4px;
}
.level--low  { background: rgba(239,68,68,.05); border-color: rgba(239,68,68,.2); }
.level--low::before  { background: #ef4444; }
.level--pivot { background: var(--goldfaint); border-color: var(--goldb); box-shadow: 0 0 30px rgba(201,168,76,.07); }
.level--pivot::before { background: var(--gold); }
.level--high { background: var(--gfaint); border-color: var(--gborder); }
.level--high::before { background: var(--green); }

.level-n {
    font-family: var(--mono); font-size: 1.4rem;
    font-weight: 500; line-height: 1; margin-bottom: .35rem; display: block;
}
.level--low   .level-n { color: #f87171; }
.level--pivot .level-n { color: var(--gold); }
.level--high  .level-n { color: var(--green); }
.level-title { font-weight: 700; margin-bottom: .5rem; }
.level--pivot .level-title { color: var(--gold); }
.level-arrow {
    font-family: var(--mono); font-size: .72rem;
    color: rgba(201,168,76,.3); padding-left: 1.5rem;
    margin: -.4rem 0; user-select: none;
}

.conclusion {
    background: var(--card); border: 1px solid var(--goldb);
    border-radius: 4px; padding: 2rem;
    font-size: clamp(.95rem,2.5vw,1.05rem);
    color: var(--text2); line-height: 1.8;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* SOLUCIÓN — PILARES                                                      */
/* ═══════════════════════════════════════════════════════════════════════ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin: 2rem 0; }
.pillar {
    background: var(--card); border: 1px solid var(--goldb);
    border-radius: 4px; overflow: hidden;
    transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: var(--goldbhi); transform: translateY(-4px); }

.pillar-head {
    padding: 2rem 1.75rem 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,.08);
}
.pillar-tag {
    font-family: var(--mono); font-size: .62rem;
    color: var(--gold); letter-spacing: .18em;
    opacity: .55; margin-bottom: 1rem; display: block;
}
.pillar-bar { height: 3px; width: 36px; border-radius: 2px; margin-bottom: 1.25rem; }
.pillar-1 .pillar-bar { background: var(--gold); }
.pillar-2 .pillar-bar { background: var(--green); }
.pillar-3 .pillar-bar { background: linear-gradient(90deg,var(--green),var(--gold)); }
.pillar-title { font-size: 1.3rem; font-weight: 800; margin-bottom: .75rem; }
.pillar-1 .pillar-title { color: var(--gold); }
.pillar-2 .pillar-title, .pillar-3 .pillar-title { color: var(--text); }

.pillar-items { list-style: none; padding: 1.25rem 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.pillar-items li {
    display: flex; gap: .6rem; align-items: flex-start;
    font-size: clamp(.83rem,2.2vw,.88rem); color: var(--text2); line-height: 1.55;
}
.pillar-items li::before { content: '→'; font-family: var(--mono); font-size: .75rem; flex-shrink: 0; margin-top: .1rem; }
.pillar-1 .pillar-items li::before { color: var(--gold); }
.pillar-2 .pillar-items li::before,
.pillar-3 .pillar-items li::before { color: var(--green); }

/* ═══════════════════════════════════════════════════════════════════════ */
/* OFERTA                                                                  */
/* ═══════════════════════════════════════════════════════════════════════ */
.offer-wrap { max-width: 680px; margin: 0 auto; }
.offer-stack {
    border: 1px solid var(--goldbhi); border-radius: 4px;
    overflow: hidden; margin: 1.5rem 0;
}
.offer-item {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,.1);
    gap: 1rem; transition: background .2s;
}
.offer-item:hover { background: var(--goldfaint); }
.offer-item:last-child { border-bottom: none; }
.offer-name { font-size: .95rem; font-weight: 600; }
.offer-name::before { content: '✦ '; color: var(--gold); font-size: .7rem; }
.offer-desc { font-family: var(--mono); font-size: .68rem; color: var(--text3); margin-top: .15rem; }
.offer-val  { font-family: var(--mono); font-size: .88rem; color: var(--text3); text-decoration: line-through; white-space: nowrap; }

.offer-total {
    background: var(--goldfaint); border-top: 2px solid var(--gold);
    padding: 1.5rem;
}
.offer-total-row { display: flex; justify-content: space-between; align-items: center; }
.offer-total-label { font-size: .88rem; color: var(--text2); }
.offer-total-label strong { font-size: 1rem; color: var(--text); display: block; margin-bottom: .15rem; }
.offer-total-cross { font-family: var(--mono); font-size: .88rem; color: var(--text3); text-decoration: line-through; }
.offer-price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.25rem; margin-top: 1.25rem;
    border-top: 1px solid rgba(201,168,76,.2);
}
.offer-price-lbl { font-weight: 700; color: var(--gold); font-size: 1rem; }
.offer-price { font-family: var(--mono); font-size: 2.2rem; color: var(--gold); letter-spacing: -.02em; }

.urgency {
    background: var(--goldfaint); border: 1px solid var(--goldb);
    border-radius: 3px; padding: .85rem 1.25rem;
    font-family: var(--mono); font-size: .72rem;
    color: var(--gold); letter-spacing: .08em;
    text-align: center; margin-bottom: 1.25rem;
}

.guarantee {
    display: flex; align-items: flex-start; gap: .9rem;
    background: var(--card); border: 1px solid var(--gborder);
    border-radius: 4px; padding: 1.1rem 1.25rem; margin-top: 1rem;
}
.guarantee-icon { font-size: 1.35rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.guarantee-text strong { color: var(--green); display: block; margin-bottom: .2rem; font-size: .92rem; }
.guarantee-text { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════════ */
/* AUTORIDAD                                                               */
/* ═══════════════════════════════════════════════════════════════════════ */
.auth-layout { display: grid; grid-template-columns: 340px 1fr; gap: 4rem; align-items: start; }
.photo-wrap { position: sticky; top: 2rem; }
.photo-frame {
    border: 1px solid var(--goldb); border-radius: 4px;
    overflow: hidden; position: relative;
}
.photo-frame img { width: 100%; height: auto; max-height: 560px; object-fit: contain; display: block; }
/* Placeholder foto */
.photo-placeholder {
    min-height: 320px; background: var(--card);
    border: 1px dashed var(--goldb); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: .5rem;
}
.photo-placeholder span { font-family: var(--mono); font-size: .7rem; color: var(--text3); }

.name-badge {
    margin-top: 1rem; padding: .9rem 1.1rem;
    background: var(--card); border: 1px solid var(--goldb); border-radius: 4px;
}
.name-badge strong { font-size: 1.1rem; display: block; margin-bottom: .15rem; }
.name-badge span { font-family: var(--mono); font-size: .68rem; color: var(--gold); letter-spacing: .1em; }

.bio p { margin-bottom: 1.1rem; font-size: clamp(.93rem,2.5vw,1rem); }
.bio p:last-child { margin-bottom: 0; }

.creds { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.cred {
    display: flex; align-items: flex-start; gap: .65rem;
    padding: .85rem 1.1rem; background: var(--card);
    border: 1px solid rgba(201,168,76,.12); border-radius: 3px;
    font-size: .88rem; color: var(--text2);
    transition: border-color .2s;
}
.cred:hover { border-color: var(--goldb); }
.cred::before { content: '✦'; color: var(--gold); font-size: .65rem; flex-shrink: 0; margin-top: .15rem; }

/* ═══════════════════════════════════════════════════════════════════════ */
/* FILTRO + FAQ                                                            */
/* ═══════════════════════════════════════════════════════════════════════ */
.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.filter-label {
    font-family: var(--mono); font-size: .65rem; letter-spacing: .18em;
    text-transform: uppercase; margin-bottom: 1rem;
    display: flex; align-items: center; gap: .5rem;
}
.filter-label::before { content: ''; width: 16px; height: 1px; background: currentColor; }
.filter-label--yes { color: var(--green); }
.filter-label--no  { color: #f87171; }

.filter-items { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.fi {
    display: flex; align-items: flex-start; gap: .65rem;
    padding: .85rem 1.1rem; border-radius: 3px; border: 1px solid;
    font-size: clamp(.86rem,2.3vw,.9rem); color: var(--text2); line-height: 1.55;
}
.fi::before { font-family: var(--mono); font-size: .8rem; flex-shrink: 0; margin-top: .05rem; }
.fi--yes { background: rgba(34,197,94,.04); border-color: rgba(34,197,94,.15); }
.fi--yes::before { content: '✓'; color: var(--green); }
.fi--no  { background: rgba(239,68,68,.04); border-color: rgba(239,68,68,.12); }
.fi--no::before  { content: '✗'; color: #f87171; }

.faqs { border: 1px solid var(--goldb); border-radius: 4px; overflow: hidden; margin-top: 1.5rem; }
.faq { border-bottom: 1px solid rgba(201,168,76,.1); }
.faq:last-child { border-bottom: none; }
.faq-q {
    width: 100%; background: none; border: none;
    padding: 1.1rem 1.4rem; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: var(--display); font-size: clamp(.88rem,2.5vw,.95rem);
    font-weight: 600; color: var(--text);
    transition: background .2s;
}
.faq-q:hover { background: var(--goldfaint); }
.faq-icon { font-family: var(--mono); font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: transform .25s; }
.faq-a { padding: 0 1.4rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-a p { font-size: clamp(.86rem,2.3vw,.9rem); padding-bottom: 1.1rem; }
.faq.open .faq-a { max-height: 320px; }
.faq.open .faq-icon { transform: rotate(45deg); }

/* ═══════════════════════════════════════════════════════════════════════ */
/* CTA FINAL                                                               */
/* ═══════════════════════════════════════════════════════════════════════ */
#cta-final {
    background: var(--bg); padding: 7rem 0;
    position: relative; overflow: hidden;
}
#cta-final::before {
    content: ''; position: absolute;
    bottom: -100px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 65%);
    pointer-events: none;
}
.final-logo { margin-bottom: 2.5rem; }
.final-logo img { height: 60px; width: auto; object-fit: contain; opacity: .88; }
.final-divider {
    width: 60px; height: 1px; margin: 0 auto 2.5rem;
    background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.final-h { font-size: clamp(1.8rem, 6.5vw, 3.8rem); }
.final-sub { font-size: clamp(1rem,3vw,1.05rem); max-width: 580px; margin: 0 auto 3rem; }

.price-box {
    display: inline-flex; flex-direction: column;
    align-items: center; gap: .4rem;
    background: var(--goldfaint); border: 1px solid var(--goldb);
    border-radius: 4px; padding: 1.4rem 3rem; margin-bottom: 1.5rem;
}
.price-normal { font-family: var(--mono); font-size: .85rem; color: var(--text3); text-decoration: line-through; }
.price-main   { font-family: var(--mono); font-size: clamp(2.2rem,7vw,3rem); color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.price-label  { font-family: var(--mono); font-size: .65rem; color: var(--text3); letter-spacing: .15em; text-transform: uppercase; }

.final-urgency { font-family: var(--mono); font-size: .7rem; color: var(--gold); letter-spacing: .1em; opacity: .75; margin-bottom: 1.75rem; }
.final-guarantee { font-family: var(--mono); font-size: .7rem; color: var(--green); letter-spacing: .1em; opacity: .8; margin-top: 1.1rem; }

.final-close {
    border-top: 1px solid rgba(201,168,76,.12);
    padding-top: 2.5rem; margin-top: 3.5rem;
}
.final-close p { font-size: clamp(1rem,3vw,1.15rem); font-weight: 700; color: rgba(201,168,76,.45); font-style: italic; line-height: 1.6; }

#lead-email{flex:1;min-width:220px; background:#0f160f; border:1px solid rgba(201,168,76,.4); border-radius:3px; padding:.95rem 1.25rem; font-size:1rem; color:#f0ece0; font-family:'Bricolage Grotesque',sans-serif; outline:none;}

/* ═══════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                              */
/* ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .grid-3, .pain-grid, .pillars { grid-template-columns: 1fr; }
    .grid-2, .filter-grid, .hawkins-layout, .auth-layout { grid-template-columns: 1fr; gap: 2rem; }
    .hawkins-img-wrap, .photo-wrap { position: static; }
    .stats { gap: 0; }
    .stat { min-width: 110px; padding: 1.1rem .75rem; }
    .section { padding: 3.5rem 0; }
    .price-box { padding: 1.25rem 2rem; }
    .offer-item { grid-template-columns: 1fr; }
    .offer-val { text-align: left; }
    /* Fix desborde horizontal */
    .hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .1em;
    padding: .4rem .75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    }

    .wrap {
    padding: 0 1rem;
    max-width: 100%;
    }

    .stats {
    width: 100%;
    }

    .stat {
    padding: .9rem .5rem;
    }

    /* Evitar que el grid background se desborde */
    body::before {
    max-width: 100vw;
    overflow: hidden;
    }
}
