:root {
    --ink:        oklch(22% 0.025 235);
    --ink-soft:   oklch(37% 0.026 235);
    --brand:      oklch(38% 0.098 231);
    --brand-deep: oklch(27% 0.075 232);
    --steel:      oklch(82% 0.018 230);
    --steel-soft: oklch(94% 0.012 230);
    --paper:      oklch(98% 0.006 230);
    --white:      oklch(99% 0.004 230);
    --line:       oklch(86% 0.014 230);
    --dark:       oklch(20% 0.04 232);
    --signal:     oklch(57% 0.18 29);
    --signal-dark:oklch(52% 0.19 29);
    --amber:      oklch(75% 0.145 74);
    --green:      oklch(52% 0.115 158);
    --green-tint: oklch(98% 0.018 155);
    --signal-tint:oklch(98% 0.016 28);
    --focus-ring: oklch(75% 0.145 74 / .45);
    --ease-out:   cubic-bezier(.16, 1, .3, 1);
    --font-d:     Calibri, "Aptos", "Segoe UI", sans-serif;
    --font-b:     Calibri, "Aptos", "Segoe UI", sans-serif;
    --max:        1060px;
    --hmw:        1240px;
    --r:          8px;
    --shadow:     0 22px 60px oklch(22% 0.025 235 / .14);
}

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-b);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4, .kicker, .eyebrow, blockquote footer { text-wrap: balance; }
p, li, span, .microcopy, .section-note p, .catalog-note { text-wrap: pretty; }

/* ── SKIP LINK ─────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--amber); color: var(--ink);
    font-family: var(--font-b); font-size: .9rem; font-weight: 700;
    padding: .5rem 1.1rem; border-radius: 4px;
    text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── HEADER ────────────────────────────────────────── */
.site-header {
    background: oklch(98% 0.006 230 / 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem;
    position: sticky; top: 0; z-index: 200;
}
.site-header .container {
    max-width: var(--hmw);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
}
.header-left { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.brand-lockup { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand-lockup:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }
.brand-lockup img { height: 4rem; width: auto; }
.header-web-link {
    font-family: var(--font-b); font-size: .75rem; font-weight: 600;
    color: var(--ink-soft); text-decoration: none;
    letter-spacing: .02em; white-space: nowrap;
    transition: color .15s;
}
.header-web-link:hover { color: var(--brand); }
.header-web-link:focus-visible { outline: 1px solid var(--brand); outline-offset: 3px; border-radius: 2px; }
.header-claim {
    font-family: var(--font-b); font-size: .75rem; font-weight: 600;
    color: var(--ink-soft); letter-spacing: .01em;
    text-align: right; white-space: nowrap; flex-shrink: 0;
    transition: color .15s;
}
.header-claim:hover { color: var(--brand); }
@media (max-width: 900px) {
    .header-claim { font-size: .68rem; }
    .header-web-link { display: none; }
}
@media (max-width: 600px) {
    .site-header { padding: .4rem 1rem; }
    .brand-lockup img { height: 2.75rem; }
    .header-claim { display: none; }
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(130deg, oklch(96% 0.012 230) 0%, oklch(91% 0.02 230) 55%, oklch(97% 0.006 230) 100%);
    border-bottom: 1px solid var(--line);
    padding: 5rem 2rem 6rem;
    position: relative; overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    width: 720px; height: 720px;
    top: -180px; right: -180px;
    background: radial-gradient(circle, oklch(38% 0.098 231 / .07) 0%, transparent 65%);
    pointer-events: none;
}
.hero__grid {
    position: relative; z-index: 1;
    max-width: var(--hmw); margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.hero-copy { color: var(--ink); }
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-b); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em; color: var(--brand);
    margin-bottom: 1.5rem;
}
.eyebrow::before {
    content: '';
    width: .32rem; height: .32rem; flex-shrink: 0;
    background: var(--brand); border-radius: 50%;
    animation: dotPulse 2.5s ease-in-out 1.1s infinite;
}
.hero h1 {
    font-family: var(--font-d);
    color: var(--brand-deep);
    font-size: clamp(2.15rem, 6.4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1.15rem;
    max-width: 640px;
}
.hero-body {
    font-size: .94rem;
    color: var(--ink-soft);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 1.5rem;
}
.primary-cta {
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--signal); color: oklch(98% 0.006 230);
    font-family: var(--font-b); font-size: .98rem; font-weight: 700;
    padding: .95rem 1.6rem; border-radius: 6px;
    text-decoration: none; letter-spacing: .01em;
    box-shadow: 0 14px 28px oklch(57% 0.18 29 / .3);
    transition: background .15s, transform .15s, box-shadow .15s;
}
.primary-cta:hover { background: var(--signal-dark); transform: translateY(-2px); box-shadow: 0 18px 34px oklch(57% 0.18 29 / .36); }
.primary-cta:active { transform: translateY(0); }
.primary-cta:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.microcopy { margin-top: .9rem; font-size: .84rem; color: var(--ink-soft); }

/* ── FORM CARD (shared across hero / bottom / final) ─ */
.form-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.12);
    border: 2px solid var(--amber);
    animation: borderPulse 2.8s ease-in-out 2.4s infinite;
}
.form-card__hd { background: var(--dark); padding: 1.35rem 1.65rem 1.2rem; }
.form-card__title { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: oklch(94% 0.01 230); margin-bottom: .25rem; }
.form-card__sub { font-size: .82rem; color: oklch(83% 0.012 230); line-height: 1.55; }
.form-card__bd { padding: 1.65rem 1.65rem 1.5rem; }

.panel-topline { display: flex; gap: .55rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.panel-topline span {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--steel-soft); border: 1px solid var(--line);
    border-radius: 20px; padding: .3rem .85rem;
    font-size: .73rem; font-weight: 700; color: var(--brand-deep);
}

form label {
    display: flex; flex-direction: column; gap: .35rem;
    font-size: .8rem; font-weight: 700; color: var(--ink);
    margin-top: 1rem;
}
form label:first-of-type { margin-top: 0; }
form input {
    font-family: var(--font-b); font-size: .95rem;
    padding: .74rem .95rem;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    color: var(--ink); background: var(--paper);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}
form input:hover:not(:focus) { border-color: var(--steel); }
form input:focus { border-color: var(--brand); outline: 3px solid var(--focus-ring); }
form input.error { border-color: var(--signal); box-shadow: 0 0 0 2px oklch(57% 0.18 29 / .14); }
form input::placeholder { color: var(--steel); }

form label.consent {
    flex-direction: row; align-items: flex-start; gap: .65rem;
    font-size: .8rem; font-weight: 400; color: var(--ink-soft);
    margin-top: 1.15rem;
}
form label.consent input[type="checkbox"] {
    flex-shrink: 0; margin-top: .2rem;
    width: 1.05rem; height: 1.05rem;
    accent-color: var(--brand); cursor: pointer;
}
form label.consent input[type="checkbox"].error { outline: 2px solid var(--signal); outline-offset: 2px; }
form label.consent span { line-height: 1.5; }
form label.consent a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
form label.consent a:hover { color: var(--brand-deep); }

form button {
    width: 100%; margin-top: 1.15rem;
    background: var(--signal); color: oklch(98% 0.006 230);
    font-family: var(--font-b); font-size: 1rem; font-weight: 700;
    padding: .95rem; border: 2px solid var(--signal);
    border-radius: 6px; cursor: pointer; letter-spacing: .02em;
    transition: background .15s, border-color .15s, transform .1s;
    position: relative; overflow: hidden;
}
form button:hover { background: var(--signal-dark); border-color: var(--signal-dark); }
form button:active { transform: scale(.99); }
form button:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
form button::after {
    content: '';
    position: absolute; top: 0; bottom: 0; left: -100%; width: 55%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.32) 50%, transparent 80%);
    animation: shimmer 2.2s ease-in-out 2s infinite;
    pointer-events: none;
}
output { display: block; min-height: 1.4em; margin-top: .85rem; font-size: .85rem; font-weight: 700; }
.microcopy.strong { color: var(--ink); font-weight: 700; }
.catalog-note {
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
    color: var(--ink-soft); font-size: .82rem; line-height: 1.55;
}
.catalog-note a, details p a, .contact-data a {
    color: var(--brand); font-weight: 700; text-decoration: underline;
    text-underline-offset: 2px; text-decoration-color: var(--line);
    transition: color .15s, text-decoration-color .15s;
}
.catalog-note a:hover, details p a:hover { text-decoration-color: var(--brand); }
.catalog-note a:focus-visible, details p a:focus-visible, .contact-data a:focus-visible {
    outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 2px;
}
.contact-data a { text-decoration: none; color: var(--signal); }
.contact-data a:hover { color: var(--signal-dark); text-decoration: underline; }

.hero .form-card { animation: fadeUp .75s var(--ease-out) .4s both, borderPulse 2.8s ease-in-out 2.4s infinite; }
.hero-copy .eyebrow    { opacity: 0; animation: fadeUp .55s var(--ease-out) .1s  forwards; }
.hero-copy h1          { opacity: 0; animation: fadeUp .65s var(--ease-out) .26s forwards; }
.hero-copy .hero-body  { opacity: 0; animation: fadeUp .65s var(--ease-out) .4s  forwards; }
.hero-copy .primary-cta,
.hero-copy .microcopy  { opacity: 0; animation: fadeUp .65s var(--ease-out) .54s forwards; }

/* ── SECTION BASE / TITLES ────────────────────────── */
section { padding: 4.5rem 2rem; }
.kicker {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--brand); margin-bottom: .9rem;
}
.section-heading, .about-copy, .form-copy, .final-copy { max-width: var(--max); margin-inline: auto; }
.section-heading { margin-bottom: 2.5rem; }
.section-heading h2, .about h2, .form-copy h2, .final-copy h2 {
    font-family: var(--font-d);
    font-size: clamp(1.5rem, 3.6vw, 2.35rem);
    font-weight: 800; color: var(--brand-deep);
    line-height: 1.15; letter-spacing: -.015em;
    margin-bottom: 1.15rem;
}
.section-heading > p { margin-top: 0; max-width: 720px; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.section-heading.wide h2 { max-width: 880px; }

/* ── FADE-IN ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: none; }

/* ── SÍNTOMAS (attention) ────────────────────────── */
.attention { background: var(--paper); }
.symptom-grid {
    max-width: var(--max); margin: 0 auto;
    display: grid; gap: .9rem;
}
.symptom-grid article {
    background: var(--white); border: 1.5px solid var(--line);
    border-radius: var(--r); padding: 1.35rem 1.6rem;
    display: flex; flex-direction: column; gap: .5rem;
    opacity: 0; transform: translateY(14px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), border-color .2s, box-shadow .2s;
}
.fade-in.visible .symptom-grid article { opacity: 1; transform: none; }
.fade-in.visible .symptom-grid article:nth-child(2) { transition-delay: .06s; }
.fade-in.visible .symptom-grid article:nth-child(3) { transition-delay: .12s; }
.fade-in.visible .symptom-grid article:nth-child(4) { transition-delay: .18s; }
.fade-in.visible .symptom-grid article:nth-child(5) { transition-delay: .24s; }
.fade-in.visible .symptom-grid article:nth-child(6) { transition-delay: .3s; }
.symptom-grid article:hover {
    border-color: oklch(70% 0.04 230);
    box-shadow: 0 12px 28px oklch(22% 0.025 235 / .09); transform: translateY(-2px);
}
.symptom-marker { display: flex; }
.alarm-dot {
    display: block; width: 10px; height: 10px; flex-shrink: 0;
    background: var(--signal); border-radius: 50%;
    box-shadow: 0 0 0 6px oklch(57% 0.18 29 / .12);
    animation: badgeBlink 2.4s ease-in-out infinite;
}
.symptom-grid p { font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.55; }
@media (min-width: 640px) {
    .symptom-grid article { flex-direction: row; align-items: center; gap: 1.25rem; padding: 1.1rem 1.75rem; }
    .symptom-grid p { flex: 1; }
}
.section-note {
    max-width: 700px; margin: 2.75rem auto 0;
    background: var(--steel-soft); border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.85rem 2rem;
}
.section-note .tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em;
    color: var(--brand); margin-bottom: .9rem;
}
.section-note p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; margin-bottom: .8rem; }
.section-note p:last-child { margin-bottom: 0; font-weight: 700; color: var(--ink); }

/* ── CRITERIO TÉCNICO (interest / plant-lessons) ──── */
.interest {
    background: linear-gradient(160deg, oklch(93% 0.03 231 / .55) 0%, var(--steel-soft) 38%, var(--steel-soft) 100%);
    position: relative; overflow: hidden;
}
.interest::before {
    content: '';
    position: absolute; width: 640px; height: 640px;
    top: -260px; left: -220px;
    background: radial-gradient(circle, oklch(38% 0.098 231 / .12) 0%, transparent 68%);
    pointer-events: none;
}
.interest > * { position: relative; z-index: 1; }
.narrative {
    max-width: var(--max); margin: 0 auto 3.5rem;
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) {
    .narrative { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.narrative p { color: var(--ink-soft); font-size: .94rem; line-height: 1.8; margin: 0; }

.case-heading { max-width: var(--max); margin: 0 auto 1.5rem; }
.case-heading span {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
    color: var(--brand); margin-bottom: .6rem;
}
.case-heading h3 { font-family: var(--font-d); font-size: 1.35rem; font-weight: 700; color: var(--brand-deep); }

.case-grid {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 900px) {
    .case-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.case-grid article {
    background: linear-gradient(155deg, oklch(97% 0.016 231 / .5) 0%, var(--white) 42%);
    border: 1px solid var(--line);
    border-radius: var(--r); padding: 2rem 1.75rem;
    box-shadow: 0 14px 32px oklch(22% 0.025 235 / .07);
    opacity: 0; transform: translateY(14px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), border-color .2s, box-shadow .2s, transform .25s var(--ease-out);
}
.fade-in.visible .case-grid article { opacity: 1; transform: none; }
.fade-in.visible .case-grid article:nth-child(2) { transition-delay: .1s; }
.fade-in.visible .case-grid article:nth-child(3) { transition-delay: .2s; }
.case-grid article:hover {
    border-color: oklch(70% 0.06 231 / .5);
    box-shadow: 0 20px 42px oklch(38% 0.098 231 / .16); transform: translateY(-3px);
}
.case-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.1rem; }
.case-number {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.25rem; height: 2.25rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: var(--white); box-shadow: 0 6px 14px oklch(38% 0.098 231 / .32);
    font-family: var(--font-d); font-weight: 800; font-size: .92rem;
}
.case-type {
    display: inline-flex; align-items: center;
    font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
    color: var(--brand-deep); background: oklch(93% 0.03 231 / .7);
    border: 1px solid oklch(75% 0.06 231 / .4);
    padding: .3rem .7rem; border-radius: 20px;
}

/* Acento por sector: cada caso es un sector semánticamente distinto */
.case-grid article:nth-child(2) .case-number {
    background: linear-gradient(135deg, var(--green), oklch(38% 0.1 158));
    box-shadow: 0 6px 14px oklch(52% 0.115 158 / .32);
}
.case-grid article:nth-child(2) .case-type {
    color: oklch(38% 0.1 158); background: var(--green-tint);
    border-color: oklch(52% 0.115 158 / .3);
}
.case-grid article:nth-child(3) .case-number {
    background: linear-gradient(135deg, oklch(68% 0.15 60), oklch(48% 0.13 45));
    box-shadow: 0 6px 14px oklch(68% 0.15 60 / .35);
}
.case-grid article:nth-child(3) .case-type {
    color: oklch(45% 0.13 45); background: oklch(96% 0.03 70);
    border-color: oklch(68% 0.15 60 / .4);
}
.case-grid h4 { font-size: 1.05rem; font-weight: 700; color: var(--brand-deep); line-height: 1.3; margin-bottom: .8rem; }
.case-grid p { font-size: .87rem; color: var(--ink-soft); line-height: 1.75; margin: 0 0 .9rem; }
.case-grid p:last-of-type { margin-bottom: 0; }
.case-grid .impact {
    display: flex; align-items: flex-start; gap: .6rem;
    font-weight: 700; color: var(--ink);
    padding-top: .9rem; border-top: 1px dashed var(--line);
}
.case-grid .impact svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: .15rem; color: var(--green); }
.closing-line {
    max-width: var(--max); margin: 3rem auto 0;
    color: var(--brand-deep); font-size: 1.05rem; font-weight: 700; line-height: 1.6;
}

/* ── PACK ──────────────────────────────────────────── */
.pack { background: var(--paper); }
.resource-layout { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.resource-card {
    display: flex; flex-direction: column; gap: 1rem;
    background: linear-gradient(150deg, oklch(97% 0.014 231 / .46) 0%, var(--white) 46%);
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 2rem 2.25rem 2.25rem;
    box-shadow: 0 14px 32px oklch(22% 0.025 235 / .06);
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease, box-shadow .25s var(--ease-out), transform .25s var(--ease-out), border-color .25s;
}
.resource-card:hover { box-shadow: 0 20px 42px oklch(38% 0.098 231 / .16); transform: translateY(-3px); border-color: oklch(70% 0.06 231 / .5); }
.fade-in.visible .resource-card { opacity: 1; transform: none; }
.fade-in.visible .resource-card:nth-child(2) { transition-delay: .1s; }
.fade-in.visible .resource-card:nth-child(3) { transition-delay: .2s; }
.resource-head {
    display: flex; align-items: flex-start; gap: 1.1rem;
    padding-bottom: 1.1rem; border-bottom: 1px solid var(--line);
}
.resource-head__text { flex: 1; min-width: 0; }
.resource-number {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: var(--white); box-shadow: 0 8px 18px oklch(38% 0.098 231 / .35);
    font-family: var(--font-d); font-weight: 800; font-size: 1.15rem;
}
.resource-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-deep); line-height: 1.28; margin-bottom: .3rem; }
.resource-card .subtitle { color: var(--brand); font-size: .85rem; font-weight: 700; margin-bottom: 0; }
.resource-card p { font-size: .89rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: .9rem; max-width: 640px; }
.resource-card p:last-of-type { margin-bottom: 0; }
.after-read strong { color: var(--green); font-weight: 800; }
.time-chip {
    flex-shrink: 0; align-self: flex-start; margin-top: .2rem;
    padding: .35rem .8rem; border-radius: 20px;
    font-size: .74rem; font-weight: 700; color: oklch(45% 0.1 74);
    background: oklch(97% 0.025 74); border: 1px solid oklch(75% 0.145 74 / .4);
    white-space: nowrap;
}
@media (max-width: 600px) {
    .resource-head { flex-wrap: wrap; }
    .resource-head__text { flex-basis: calc(100% - 2.75rem - 1.1rem); }
    .time-chip { white-space: normal; flex-basis: 100%; margin-top: .9rem; }
}

.pack-table {
    margin-top: 3rem; max-width: var(--max); margin-inline: auto;
    background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r);
    padding: .5rem 0 0; overflow: hidden; overflow-x: auto;
    box-shadow: 0 20px 45px oklch(22% 0.025 235 / .07);
}
.pack-table [role="row"] {
    display: grid; grid-template-columns: 1fr repeat(3, 1.15fr);
    border-bottom: 1px solid var(--line); min-width: 640px;
}
.pack-table [role="row"]:last-child { border-bottom: 0; }
.pack-table [role="row"]:not(.table-head):nth-child(even) { background: var(--steel-soft); }
.pack-table span {
    padding: 1.1rem 1.25rem;
    font-size: .87rem; color: var(--ink-soft); line-height: 1.4;
}
.pack-table .table-head { border-bottom: 2px solid var(--brand-deep); }
.pack-table .table-head span {
    color: var(--brand-deep);
    font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
    padding: 1rem 1.25rem 1.1rem;
}
.pack-table .table-head span:not(:first-child) { color: var(--signal); }
.pack-table [role="rowheader"] {
    font-weight: 800; color: var(--ink);
}
.pack-table [role="row"]:last-child span:not([role="rowheader"]) {
    color: var(--green); font-weight: 800;
}

/* ── FIT (calificación) ───────────────────────────── */
.fit { background: var(--steel-soft); }
.fit-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr .82fr; gap: 1.5rem; align-items: start; }
.fit-column {
    border: 1.5px solid var(--line); border-radius: var(--r); padding: 2.25rem 2.25rem 2.5rem;
    box-shadow: 0 16px 36px oklch(22% 0.025 235 / .06);
    opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease;
}
.fit-column.yes { background: var(--green-tint); }
.fit-column.no { background: var(--signal-tint); }
.fade-in.visible .fit-column { opacity: 1; transform: none; }
.fade-in.visible .fit-column.no { transition-delay: .12s; }
.fit-column .fit-head {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.6rem; padding-bottom: 1.4rem; border-bottom: 1px solid oklch(0% 0 0 / .08);
}
.fit-column .fit-icon {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    box-shadow: 0 6px 14px oklch(22% 0.025 235 / .16);
}
.fit-column .fit-icon svg { width: 1.15rem; height: 1.15rem; }
.yes .fit-icon { background: var(--green); }
.no .fit-icon { background: var(--signal); }
.fit-column h3 { font-size: 1.3rem; font-weight: 700; color: var(--brand-deep); }
.fit-column ul { list-style: none; display: grid; gap: 1.1rem; }
.fit-column li { position: relative; padding-left: 1.85rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }
.fit-column li::before {
    position: absolute; left: 0; top: .05rem;
    font-size: .8rem; font-weight: 800; line-height: 1.4;
}
.yes li::before { content: '✓'; color: var(--green); }
.no li::before { content: '✕'; color: var(--signal); }

/* ── TESTIMONIOS ───────────────────────────────────── */
.social-proof { background: var(--paper); }
.testimonial-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 900px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
blockquote {
    display: flex; flex-direction: column;
    background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r);
    padding: 2rem 2rem 2.25rem; position: relative;
    box-shadow: 0 14px 32px oklch(22% 0.025 235 / .05);
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease, border-color .2s, box-shadow .2s;
}
.fade-in.visible blockquote { opacity: 1; transform: none; }
.fade-in.visible blockquote:nth-child(2) { transition-delay: .1s; }
.fade-in.visible blockquote:nth-child(3) { transition-delay: .2s; }
blockquote:hover { border-color: oklch(70% 0.04 230); box-shadow: 0 20px 40px oklch(22% 0.025 235 / .1); transform: translateY(-4px); }
blockquote .quote-icon {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background: var(--steel-soft); margin-bottom: 1.25rem;
}
blockquote .quote-icon svg { width: 1.1rem; height: 1.1rem; }
blockquote p { font-size: .89rem; color: var(--ink); line-height: 1.7; flex: 1; }
blockquote .context { font-size: .78rem; color: var(--ink-soft); font-weight: 600; margin-bottom: .9rem; font-style: normal; }
blockquote footer {
    display: flex; align-items: center; gap: .75rem;
    margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
    font-size: .8rem; font-weight: 700; color: var(--brand); font-style: normal;
}
blockquote footer .avatar {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.1rem; height: 2.1rem; border-radius: 50%;
    background: var(--brand-deep); color: var(--white);
    font-size: .72rem; font-weight: 800; letter-spacing: .02em;
}

/* ── FORMULARIO PRINCIPAL / FINAL ─────────────────── */
.form-section, .final-cta {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
    max-width: var(--hmw); margin: 0 auto;
}
.form-section { background: var(--brand-deep); padding: 4.5rem 2rem 5.5rem; color: oklch(94% 0.01 230); max-width: none; }
.form-section > * { max-width: var(--hmw); margin-inline: auto; }
.form-section .form-copy h2, .form-copy .kicker { color: oklch(98% 0.012 80); }
.form-section .form-copy p { color: oklch(87% 0.012 230); line-height: 1.75; }
.form-copy__assurances {
    list-style: none; display: grid; gap: .85rem;
    margin: 1.5rem 0; padding: 1.25rem 0; border-top: 1px solid oklch(94% 0.01 230 / .14); border-bottom: 1px solid oklch(94% 0.01 230 / .14);
}
.form-copy__assurances li {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .92rem; color: oklch(94% 0.01 230 / .92); line-height: 1.5;
}
.form-copy__assurances svg {
    width: 1.05rem; height: 1.05rem; flex-shrink: 0; margin-top: .15rem;
    color: var(--amber);
}
.form-section .main-form, .final-cta .main-form {
    background: var(--white); border-radius: var(--r); padding: 2rem 1.85rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.06);
    border: 2px solid var(--amber);
    animation: borderPulseSoft 2.8s ease-in-out 1s infinite;
}

.contact { background: var(--paper); }
.contact-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-grid article {
    background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r); padding: 2rem 1.85rem;
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease, border-color .2s, box-shadow .2s;
}
.fade-in.visible .contact-grid article { opacity: 1; transform: none; }
.fade-in.visible .contact-grid article:nth-child(2) { transition-delay: .1s; }
.fade-in.visible .contact-grid article:nth-child(3) { transition-delay: .2s; }
.contact-grid article:hover { border-color: oklch(70% 0.04 230); box-shadow: 0 16px 34px oklch(22% 0.025 235 / .1); transform: translateY(-4px); }
.contact-icon {
    width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
    background: var(--brand); border-radius: 50%; margin-bottom: 1.4rem;
}
.contact-icon svg { width: 1.3rem; height: 1.3rem; stroke: oklch(98% 0.006 230); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-grid h3 { font-size: 1.1rem; font-weight: 700; color: var(--brand-deep); margin-bottom: .55rem; }
.contact-data { font-size: 1.02rem; font-weight: 700; color: var(--signal); margin-bottom: .7rem; }
.contact-grid p:not(.contact-data) { font-size: .87rem; color: var(--ink-soft); line-height: 1.65; }

/* ── EQUIPO TÉCNICO (about) ───────────────────────── */
.about { background: var(--steel-soft); display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: none; }
.about > * { max-width: var(--hmw); margin-inline: auto; }
.about-copy p { color: var(--ink-soft); font-size: .95rem; line-height: 1.8; margin-top: 1rem; max-width: 640px; }
.about-copy p:first-of-type { margin-top: 0; }
.metrics-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 2.25rem; }
.metrics-strip div { padding: 0 0 0 1.75rem; border-left: 2px solid var(--line); opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
.metrics-strip div:nth-child(odd) { border-left: 0; padding-left: 0; }
.fade-in.visible .metrics-strip div { opacity: 1; transform: none; }
.fade-in.visible .metrics-strip div:nth-child(2) { transition-delay: .1s; }
.fade-in.visible .metrics-strip div:nth-child(3) { transition-delay: .2s; }
.fade-in.visible .metrics-strip div:nth-child(4) { transition-delay: .3s; }
.metrics-strip .metric-icon {
    display: flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    box-shadow: 0 6px 14px oklch(22% 0.025 235 / .14);
    margin-bottom: .9rem;
}
.metrics-strip .metric-icon svg { width: 1.15rem; height: 1.15rem; color: var(--white); }
.metrics-strip div:nth-child(1) .metric-icon { background: var(--brand); }
.metrics-strip div:nth-child(2) .metric-icon { background: var(--amber); }
.metrics-strip div:nth-child(3) .metric-icon { background: var(--green); }
.metrics-strip div:nth-child(4) .metric-icon { background: var(--signal); }
.metrics-strip div:nth-child(1) strong { color: var(--brand); }
.metrics-strip div:nth-child(2) strong { color: var(--amber); }
.metrics-strip div:nth-child(3) strong { color: var(--green); }
.metrics-strip div:nth-child(4) strong { color: var(--signal); }
.metrics-strip strong { display: block; font-family: var(--font-d); font-weight: 800; font-size: clamp(1.65rem, 3.2vw, 2.35rem); line-height: 1.1; }
.metrics-strip span { display: block; margin-top: .6rem; color: var(--ink-soft); font-weight: 700; font-size: .85rem; line-height: 1.4; max-width: 18ch; }

/* ── FAQ ───────────────────────────────────────────── */
.faq { background: var(--paper); }
.faq-list { max-width: var(--max); margin: 0 auto; display: grid; gap: .75rem; }
details {
    background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r);
    overflow: hidden; transition: border-color .2s, box-shadow .2s, background .2s;
}
details:hover { border-color: oklch(75% 0.145 74 / .5); box-shadow: 0 10px 26px oklch(22% 0.025 235 / .07); }
details[open] { border-color: var(--amber); background: oklch(98% 0.02 74); }
summary {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.4rem; font-size: 1rem; font-weight: 700; color: var(--brand-deep);
    cursor: pointer; list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; border-radius: var(--r); }
details[open] summary { color: oklch(42% 0.1 74); }
.faq-icon {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2rem; height: 2rem; border-radius: 50%;
    color: var(--white); font-family: var(--font-d); font-weight: 800; font-size: .95rem;
}
.faq-icon { background: var(--amber); }
summary .faq-chevron {
    margin-left: auto; flex-shrink: 0; width: 1.1rem; height: 1.1rem;
    color: var(--ink-soft); transition: transform .25s var(--ease-out), color .2s;
}
details[open] summary .faq-chevron { transform: rotate(180deg); color: var(--amber); }
details p { margin: 0; padding: 0 1.4rem 1.5rem 4.4rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.7; }

/* ── FINAL CTA ─────────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--dark), var(--brand-deep)); padding: 4.5rem 2rem 5.5rem; color: oklch(94% 0.01 230); max-width: none; }
.final-cta > * { max-width: var(--hmw); margin-inline: auto; }
.final-copy h2, .final-copy .kicker { color: oklch(98% 0.012 80); }
.final-copy p { color: oklch(87% 0.012 230); line-height: 1.75; }
.final-cta .main-form {
    background: var(--white); border-radius: var(--r); padding: 1.9rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.12); border: 2px solid var(--amber);
    animation: borderPulseSoft 2.8s ease-in-out 1s infinite;
}

/* ── STICKY CTA ────────────────────────────────────── */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
    background: var(--dark); padding: .75rem 1.5rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,.3);
    transform: translateY(110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__link {
    display: block; background: var(--signal); color: oklch(98% 0.006 230);
    font-family: var(--font-b); font-size: .95rem; font-weight: 700;
    text-align: center; text-decoration: none;
    padding: .85rem; border-radius: 6px; letter-spacing: .02em;
    transition: background .15s;
}
.sticky-cta__link:hover { background: var(--signal-dark); }
.sticky-cta__link:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); }
.footer-main {
    max-width: var(--hmw); margin: 0 auto; padding: 3.5rem 2rem 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem;
}
.footer-logo { height: 3.5rem; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 1rem; }
.footer-tagline { font-size: .85rem; color: oklch(83% 0.012 230); line-height: 1.7; max-width: 340px; }
.footer-badge {
    display: inline-block; margin-top: .85rem;
    font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--amber); border: 1px solid oklch(75% 0.145 74 / .35);
    padding: .25rem .7rem; border-radius: 3px;
}
.footer-contact-col { text-align: right; }
.footer-col-label { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: var(--amber); margin-bottom: .75rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }
.footer-contact a {
    font-size: .83rem; color: oklch(83% 0.012 230);
    text-decoration: none; display: flex; align-items: center; gap: .5rem;
    transition: color .15s;
}
.footer-contact a:hover { color: oklch(98% 0.006 230); }
.footer-contact a:focus-visible { outline: 1px solid oklch(83% 0.012 230 / .6); outline-offset: 2px; border-radius: 2px; }
.footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; opacity: .45; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.1rem 1.5rem; }
.footer-bottom__inner {
    max-width: var(--hmw); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .6rem 1.5rem;
}
.footer-copy { font-size: .75rem; color: oklch(83% 0.012 230 / .65); flex-shrink: 0; }
.footer-note { font-size: .75rem; color: oklch(83% 0.012 230 / .65); line-height: 1.6; text-align: right; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1.15fr .85fr; align-items: start; gap: 4.5rem; }
    .form-section, .final-cta { grid-template-columns: .95fr .8fr; align-items: center; }
    .form-section .form-copy { justify-self: end; max-width: 560px; }
    .form-section .main-form { justify-self: start; max-width: 480px; }
    .final-copy { justify-self: end; max-width: 560px; }
    .final-cta .main-form { justify-self: start; max-width: 460px; }
    .about { grid-template-columns: .95fr .8fr; align-items: center; }
    .about-copy { justify-self: end; }
    .metrics-strip { justify-self: start; max-width: 480px; }
    .sticky-cta { display: none !important; }
    section { padding: 6rem 2rem; }
    .attention, .faq { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .pack, .about { padding-top: 7rem; padding-bottom: 7rem; }
}
@media (min-width: 1280px) {
    section { padding: 6.5rem 2.5rem; }
    .container { padding: 0 2.5rem; }
    .hero { padding: 6.5rem 2.5rem 7.5rem; }
}
@media (max-width: 899px) {
    section { padding: 3.25rem 1.25rem; }
    .container { padding: 0 1.25rem; }
    .hero { padding: 3.25rem 1.25rem 4rem; }
    .hero__grid { gap: 2.25rem; }
    .section-note { padding: 1.75rem 1.5rem; }
    .narrative { grid-template-columns: 1fr; gap: 1.75rem; }
    .fit-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .metrics-strip { grid-template-columns: 1fr; gap: 1.75rem; }
    .metrics-strip div { border-left: 0; padding-left: 0; padding-top: 1.5rem; border-top: 2px solid var(--line); }
    .metrics-strip div:first-child { border-top: 0; padding-top: 0; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 2rem; }
    .footer-contact-col { text-align: left; }
    .footer-contact { align-items: flex-start; }
    .footer-bottom { padding: 1rem 1.25rem; }
    .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .footer-note { text-align: left; }
    .form-section, .final-cta { padding: 3.25rem 1.25rem 4rem; }
    .about { padding: 3.25rem 1.25rem; }
    .pack-table [role="row"] { grid-template-columns: 1fr; min-width: 0; padding: 1.1rem 1.25rem 1.25rem; }
    .pack-table .table-head { display: none; }
    .pack-table [role="rowheader"] {
        padding: 0 0 .7rem; font-size: .72rem; text-transform: uppercase;
        letter-spacing: .08em; color: var(--brand);
    }
    .pack-table span[data-label] { padding: .35rem 0; }
    .pack-table span[data-label]::before { content: attr(data-label) ": "; font-weight: 800; color: var(--ink); }
    .pack-table [role="row"]:last-child span[data-label]::before { color: var(--ink); }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.95rem; }
}

/* ── KEYFRAMES ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 oklch(38% 0.098 231 / .5); }
    50%      { transform: scale(1.4); box-shadow: 0 0 0 5px oklch(38% 0.098 231 / 0); }
}
@keyframes badgeBlink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes borderPulse {
    0%, 55%, 100% { box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.12), 0 0 0 0 oklch(75% 0.145 74 / 0); }
    28% { box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.12), 0 0 0 10px oklch(75% 0.145 74 / .35), 0 0 40px oklch(75% 0.145 74 / .2); }
}
@keyframes borderPulseSoft {
    0%, 55%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 0 oklch(75% 0.145 74 / 0); }
    28% { box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 9px oklch(75% 0.145 74 / .3), 0 0 32px oklch(75% 0.145 74 / .14); }
}
@keyframes shimmer { 0% { left: -100%; opacity: 1; } 45% { left: 150%; opacity: 1; } 46% { opacity: 0; } 100% { left: 150%; opacity: 0; } }

/* ── REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in, .hero-copy .eyebrow, .hero-copy h1,
    .hero-copy .hero-body, .hero-copy .primary-cta, .hero-copy .microcopy,
    .hero .form-card { opacity: 1; animation: none; transform: none; }
    .symptom-grid article, .case-grid article, .resource-card, .fit-column,
    blockquote, .contact-grid article, .metrics-strip div { opacity: 1; transform: none; }
    form button::after { animation: none; }
    .sticky-cta { transition: none; }
}
