/* ═══════════════════════════════════════════════════════════════
   PadelWorldClub — base del sistema de diseño de la web pública.
   Claro y limpio: fondo blanco/crema, dorado como acento, navy
   puntual. Tipografía: Archivo (display) + Inter (texto), variables
   y autoalojadas. Todo con prefijo .base- para no colisionar con el
   CSS de los paneles (que se carga aparte).
   ═══════════════════════════════════════════════════════════════ */

/* ── Fuentes ───────────────────────────────────────────────── */
@font-face {
    font-family: 'Archivo';
    src: url('/assets/fonts/archivo-var.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-var.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────── */
:root {
    --base-bg: #FAF9F5;
    --base-surface: #FFFFFF;
    --base-cream: #FFF8E7;
    --base-cream-soft: #FFFCF3;
    --base-ink: #15151E;
    --base-ink-soft: #2A2A3A;
    --base-muted: #5D5D6B;
    --base-faint: #8B8B98;
    --base-line: #E9E6DD;
    --base-line-soft: #F2F0E9;
    --base-gold: #FFD700;
    --base-amber: #FFA500;
    --base-gold-deep: #8A6500;   /* dorado accesible solo-texto */
    --base-gold-grad: linear-gradient(120deg, #FFD700 0%, #FFB300 100%);
    --base-navy: #14141F;
    --base-navy-2: #1C1C2E;
    --base-green: #16A34A;
    --base-red: #DC2626;
    --base-font-display: 'Archivo', 'Archivo', -apple-system, 'Segoe UI', sans-serif;
    --base-font-body: 'Inter', 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --base-r-sm: 12px;
    --base-r-md: 18px;
    --base-r-lg: 26px;
    --base-r-full: 999px;
    --base-shadow-sm: 0 1px 2px rgba(21,21,30,.05), 0 4px 14px rgba(21,21,30,.05);
    --base-shadow-md: 0 2px 6px rgba(21,21,30,.05), 0 14px 38px rgba(21,21,30,.08);
    --base-shadow-gold: 0 8px 26px rgba(255,183,0,.30);
    --base-ease: cubic-bezier(.22,.9,.3,1);
}

/* ── Base ──────────────────────────────────────────────────── */
body {
    font-family: var(--base-font-body);
    background: var(--base-bg);
    color: var(--base-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
#main-content { display: block; }
.base-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.base-wrap--narrow { max-width: 880px; }

::selection { background: rgba(255,215,0,.35); color: var(--base-ink); }

/* ── Tipografía de sección ─────────────────────────────────── */
.base-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--base-font-body);
    font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--base-gold-deep);
}
.base-kicker::before {
    content: ''; width: 22px; height: 2px;
    background: var(--base-gold-grad); border-radius: 2px;
}
.base-h1 {
    font-family: var(--base-font-display);
    font-size: clamp(2.7rem, 6.5vw, 4.6rem);
    font-weight: 780; line-height: 1.02;
    letter-spacing: -.030em;
    color: var(--base-ink);
    text-wrap: balance;
}
.base-h2 {
    font-family: var(--base-font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 740; line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--base-ink);
    text-wrap: balance;
}
.base-h3 {
    font-family: var(--base-font-display);
    font-size: 1.25rem; font-weight: 680;
    letter-spacing: -.01em; color: var(--base-ink);
}
.base-grad {
    background: linear-gradient(105deg, #C89000 5%, #FFB300 45%, #E09800 90%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.base-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.65; color: var(--base-muted);
    max-width: 58ch; text-wrap: pretty;
}
.base-sec { padding: clamp(64px, 9vw, 110px) 0; }
.base-sec--tight { padding: clamp(44px, 6vw, 72px) 0; }
.base-sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); display: grid; gap: 16px; }
.base-sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.base-sec-head--center .base-kicker { justify-content: center; margin: 0 auto; }
.base-sec-head--center .base-lead { margin: 0 auto; }

/* ── Botones ───────────────────────────────────────────────── */
.base-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--base-font-body);
    font-size: .98rem; font-weight: 640;
    padding: 15px 28px; border-radius: var(--base-r-full);
    border: 1.5px solid transparent; cursor: pointer;
    text-decoration: none; white-space: nowrap;
    transition: transform .22s var(--base-ease), box-shadow .22s var(--base-ease), background .22s, border-color .22s;
}
.base-btn:hover { transform: translateY(-2px); }
.base-btn:active { transform: translateY(0); }
.base-btn svg { width: 17px; height: 17px; }
.base-btn--gold { background: var(--base-gold-grad); color: var(--base-ink); box-shadow: var(--base-shadow-gold); }
.base-btn--gold:hover { box-shadow: 0 12px 34px rgba(255,183,0,.42); }
.base-btn--ink { background: var(--base-ink); color: #fff; }
.base-btn--ink:hover { background: var(--base-ink-soft); box-shadow: 0 10px 26px rgba(21,21,30,.22); }
.base-btn--ghost { background: transparent; color: var(--base-ink); border-color: var(--base-line); }
.base-btn--ghost:hover { border-color: var(--base-ink); }
.base-btn--white { background: #fff; color: var(--base-ink); }
.base-btn--white:hover { box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.base-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.base-btn--ghost-light:hover { border-color: #fff; }
.base-btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.base-btn--block { width: 100%; }

/* ── Nav ───────────────────────────────────────────────────── */
.base-nav {
    position: sticky; top: 0; z-index: 900;
    background: rgba(250,249,245,.82);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, background .25s;
}
.base-nav.is-scrolled { border-bottom-color: var(--base-line); background: rgba(250,249,245,.94); }
.base-nav__in { display: flex; align-items: center; gap: 28px; height: 72px; }
.base-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: 6px; }
.base-nav__logo img { width: 34px; height: 34px; }
.base-nav__logo span {
    font-family: var(--base-font-display); font-weight: 740;
    font-size: 1.06rem; letter-spacing: -.02em; color: var(--base-ink);
}
.base-nav__links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.base-nav__link {
    font-size: .93rem; font-weight: 560; color: var(--base-muted);
    text-decoration: none; padding: 9px 14px; border-radius: var(--base-r-full);
    transition: color .2s, background .2s;
}
.base-nav__link:hover { color: var(--base-ink); background: rgba(21,21,30,.05); }
.base-nav__link--on { color: var(--base-ink); background: rgba(255,215,0,.16); }
.base-nav__cta { display: flex; align-items: center; gap: 10px; }
.base-nav__cta .base-btn { padding: 11px 20px; font-size: .9rem; }
.base-nav__burger {
    display: none; background: none; border: 0; cursor: pointer;
    width: 42px; height: 42px; border-radius: 12px; color: var(--base-ink);
    align-items: center; justify-content: center;
}
.base-nav__burger:hover { background: rgba(21,21,30,.05); }
.base-nav__burger svg { width: 22px; height: 22px; }
.base-nav__panel { display: none; }
@media (max-width: 940px) {
    .base-nav__links, .base-nav__cta { display: none; }
    .base-nav__burger { display: inline-flex; margin-left: auto; }
    .base-nav__panel {
        display: none; flex-direction: column; gap: 4px;
        padding: 10px 20px 20px; border-bottom: 1px solid var(--base-line);
        background: rgba(250,249,245,.98);
    }
    .base-nav__panel.is-open { display: flex; }
    .base-nav__panel .base-nav__link { padding: 13px 12px; font-size: 1.02rem; }
    .base-nav__panel .base-btn { margin-top: 10px; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.base-hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 0; overflow: hidden; }
.base-hero::before {
    content: ''; position: absolute; inset: -30% -10% auto;
    height: 130%; pointer-events: none;
    background:
        radial-gradient(560px 380px at 82% 12%, rgba(255,215,0,.16), transparent 65%),
        radial-gradient(680px 460px at 8% 88%, rgba(255,165,0,.10), transparent 65%);
}
.base-hero__in { position: relative; display: grid; gap: 26px; max-width: 780px; }
.base-hero--center .base-hero__in { margin: 0 auto; text-align: center; justify-items: center; }
.base-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.base-hero__note { font-size: .88rem; color: var(--base-faint); }
.base-hero__note strong { color: var(--base-muted); font-weight: 640; }

/* Visual del hero home: dos dispositivos en tarjeta */
.base-hero__stage {
    position: relative; margin-top: clamp(40px, 6vw, 64px);
    display: flex; justify-content: center; align-items: flex-end; gap: clamp(14px, 3vw, 34px);
}
.base-hero__panel, .base-hero__phone {
    border-radius: var(--base-r-lg) var(--base-r-lg) 0 0;
    border: 1px solid var(--base-line); border-bottom: 0;
    box-shadow: var(--base-shadow-md);
    overflow: hidden; background: #fff;
}
.base-hero__panel { width: min(680px, 62vw); }
.base-hero__panel img, .base-hero__phone img { display: block; width: 100%; height: auto; }
.base-hero__phone { width: min(200px, 22vw); border-radius: 26px 26px 0 0; }
.base-hero__stage::after {
    content: ''; position: absolute; inset: auto 0 0; height: 1px; background: var(--base-line);
}

/* ── Marquee de conceptos ──────────────────────────────────── */
.base-marquee {
    border-block: 1px solid var(--base-line);
    background: var(--base-cream-soft);
    overflow: hidden; padding: 15px 0; white-space: nowrap;
}
.base-marquee__track { display: inline-flex; gap: 44px; animation: basemarquee 32s linear infinite; will-change: transform; }
.base-marquee span {
    font-family: var(--base-font-display); font-weight: 660; font-size: .95rem;
    letter-spacing: .05em; text-transform: uppercase; color: var(--base-faint);
    display: inline-flex; align-items: center; gap: 44px;
}
.base-marquee em { font-style: normal; color: var(--base-gold-deep); font-size: .8rem; }
@keyframes basemarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .base-marquee__track { animation: none; } }

/* ── Stats vivas ───────────────────────────────────────────── */
.base-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.base-stat {
    background: var(--base-surface); border: 1px solid var(--base-line);
    border-radius: var(--base-r-md); padding: 26px 22px; text-align: center;
}
.base-stat__num {
    font-family: var(--base-font-display); font-weight: 790;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -.02em;
    color: var(--base-ink); font-variant-numeric: tabular-nums; line-height: 1.05;
}
.base-stat__lbl { margin-top: 7px; font-size: .82rem; font-weight: 620; letter-spacing: .08em; text-transform: uppercase; color: var(--base-faint); }

/* ── Bento ─────────────────────────────────────────────────── */
.base-bento { display: grid; gap: 18px; grid-template-columns: repeat(6, 1fr); }
.base-bento__cell {
    position: relative; overflow: hidden;
    background: var(--base-surface); border: 1px solid var(--base-line);
    border-radius: var(--base-r-lg); padding: 30px;
    display: flex; flex-direction: column; gap: 10px;
    transition: transform .3s var(--base-ease), box-shadow .3s var(--base-ease), border-color .3s;
}
.base-bento__cell:hover { transform: translateY(-4px); box-shadow: var(--base-shadow-md); border-color: #E3D9B8; }
.base-bento__cell--3 { grid-column: span 3; }
.base-bento__cell--2 { grid-column: span 2; }
.base-bento__cell--4 { grid-column: span 4; }
.base-bento__cell--6 { grid-column: span 6; }
.base-bento__cell--cream { background: var(--base-cream); border-color: #F0E4BC; }
.base-bento__cell--ink { background: var(--base-navy); border-color: var(--base-navy); }
.base-bento__cell--ink .base-h3, .base-bento__cell--ink p { color: #fff; }
.base-bento__cell--ink p { color: #A7A7B8; }
.base-bento__cell p { font-size: .95rem; line-height: 1.6; color: var(--base-muted); }
.base-bento__icon {
    width: 44px; height: 44px; border-radius: 13px;
    background: var(--base-gold-grad); color: var(--base-ink);
    display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.base-bento__icon svg { width: 21px; height: 21px; }
.base-bento__img {
    margin: 14px -30px -30px; border-top: 1px solid var(--base-line-soft);
}
.base-bento__img img { display: block; width: 100%; height: 190px; object-fit: cover; }
.base-bento__tiers { display: flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 14px; flex-wrap: wrap; }
.base-bento__tiers img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
.base-bento__tiers i { color: #4A4A60; font-size: 13px; font-style: normal; }
@media (max-width: 900px) {
    .base-bento { grid-template-columns: 1fr 1fr; }
    .base-bento__cell--3, .base-bento__cell--2, .base-bento__cell--4, .base-bento__cell--6 { grid-column: span 2; }
}

/* ── Split doble audiencia ─────────────────────────────────── */
.base-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.base-split__col {
    border-radius: var(--base-r-lg); padding: clamp(30px, 4vw, 46px);
    display: flex; flex-direction: column; gap: 18px;
    background: var(--base-surface); border: 1px solid var(--base-line);
}
.base-split__col--ink { background: var(--base-navy); border-color: var(--base-navy); }
.base-split__col--ink .base-h2 { color: #fff; }
.base-split__tag {
    align-self: flex-start; font-size: .76rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 7px 14px; border-radius: var(--base-r-full);
    background: rgba(255,215,0,.18); color: var(--base-gold-deep);
}
.base-split__col--ink .base-split__tag { background: rgba(255,215,0,.14); color: var(--base-gold); }
.base-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.base-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; line-height: 1.55; color: var(--base-muted); }
.base-split__col--ink .base-list li { color: #B9B9C8; }
.base-list li::before {
    content: ''; flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px;
    border-radius: 50%;
    background: var(--base-gold-grad);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    background-color: rgba(255,183,0,.9); background-image: none;
}
.base-split__col .base-btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 860px) { .base-split { grid-template-columns: 1fr; } }

/* ── Sección oscura (ranking / cta) ────────────────────────── */
.base-dark {
    background: linear-gradient(155deg, var(--base-navy) 0%, var(--base-navy-2) 70%, #191927 100%);
    border-radius: clamp(20px, 3vw, 34px);
    padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 72px);
    position: relative; overflow: hidden; color: #fff;
}
.base-dark::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(620px 330px at 85% 0%, rgba(255,215,0,.13), transparent 65%);
}
.base-dark .base-h2 { color: #fff; }
.base-dark .base-lead { color: #A7A7B8; }
.base-dark .base-kicker { color: var(--base-gold); }
.base-dark__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; position: relative; }
@media (max-width: 860px) { .base-dark__grid { grid-template-columns: 1fr; } }

/* Escalera de tiers */
.base-tierlist { display: grid; gap: 10px; }
.base-tier {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px; padding: 10px 16px;
}
.base-tier img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.base-tier__name { font-family: var(--base-font-display); font-weight: 660; font-size: .95rem; color: #fff; }
.base-tier__pts { margin-left: auto; font-size: .82rem; color: #8F8FA3; font-variant-numeric: tabular-nums; }
.base-tier__bar { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,.09); overflow: hidden; max-width: 130px; }
.base-tier__fill { height: 100%; border-radius: 3px; background: var(--base-gold-grad); }
.base-dark__feats { display: grid; gap: 20px; margin-top: 10px; }
.base-dark__feat { display: flex; gap: 14px; align-items: flex-start; }
.base-dark__feat-ic {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,215,0,.13); color: var(--base-gold);
    display: flex; align-items: center; justify-content: center;
}
.base-dark__feat-ic svg { width: 19px; height: 19px; }
.base-dark__feat h3 { font-size: 1.02rem; font-weight: 660; color: #fff; margin-bottom: 4px; }
.base-dark__feat p { font-size: .92rem; line-height: 1.6; color: #A7A7B8; }

/* ── Pasos ─────────────────────────────────────────────────── */
.base-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: basestep; }
.base-step {
    background: var(--base-surface); border: 1px solid var(--base-line);
    border-radius: var(--base-r-md); padding: 30px; counter-increment: basestep; position: relative;
}
.base-step::before {
    content: counter(basestep, decimal-leading-zero);
    font-family: var(--base-font-display); font-weight: 800; font-size: 2.4rem;
    letter-spacing: -.03em;
    background: linear-gradient(180deg, #E7C93E, #C89000);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 12px;
}
.base-step--plain::before { display: none; }
.base-step h3 { font-size: 1.08rem; font-weight: 680; margin-bottom: 8px; }
.base-step p { font-size: .94rem; line-height: 1.6; color: var(--base-muted); }
@media (max-width: 860px) { .base-steps { grid-template-columns: 1fr; } }

/* ── Features alternadas (jugadores/clubes) ────────────────── */
.base-feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(34px, 5vw, 54px) 0; }
.base-feat + .base-feat { border-top: 1px solid var(--base-line-soft); }
.base-feat--rev .base-feat__media { order: 2; }
.base-feat__media {
    border-radius: var(--base-r-lg); overflow: hidden;
    border: 1px solid var(--base-line); box-shadow: var(--base-shadow-sm);
    background: #fff;
}
.base-feat__media img { display: block; width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.base-feat__body { display: grid; gap: 14px; }
.base-feat__body .base-lead { font-size: 1.02rem; }
@media (max-width: 860px) {
    .base-feat { grid-template-columns: 1fr; }
    .base-feat--rev .base-feat__media { order: 0; }
}

/* ── Pricing ───────────────────────────────────────────────── */
.base-toggle {
    display: inline-flex; gap: 4px; padding: 5px;
    background: #F0EEE6; border-radius: var(--base-r-full); margin: 0 auto;
}
.base-toggle button, .base-toggle a {
    font-family: var(--base-font-body); font-size: .9rem; font-weight: 620;
    color: var(--base-muted); background: transparent; border: 0; cursor: pointer;
    padding: 10px 22px; border-radius: var(--base-r-full); text-decoration: none;
    transition: background .2s, color .2s, box-shadow .2s;
}
.base-toggle .is-on { background: #fff; color: var(--base-ink); box-shadow: 0 1px 4px rgba(0,0,0,.09); }
.base-toggle .base-toggle__hint {
    display: inline-block; margin-left: 7px; padding: 2px 8px; border-radius: var(--base-r-full);
    font-size: .66rem; font-weight: 750; background: #DCFCE7; color: #166534; vertical-align: middle;
}
.base-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; max-width: 900px; margin: 0 auto; }
.base-price-grid--wide { max-width: none; }
.base-price {
    position: relative; background: var(--base-surface);
    border: 1px solid var(--base-line); border-radius: var(--base-r-lg);
    padding: 34px 30px; display: flex; flex-direction: column; gap: 6px;
}
.base-price--hi { border: 2px solid #EBC53A; box-shadow: 0 14px 44px rgba(255,183,0,.16); }
.base-price__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--base-gold-grad); color: var(--base-ink);
    font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 16px; border-radius: var(--base-r-full); white-space: nowrap;
}
.base-price__name { font-family: var(--base-font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; color: var(--base-muted); }
.base-price__amount { font-family: var(--base-font-display); font-weight: 790; font-size: 2.6rem; letter-spacing: -.02em; color: var(--base-ink); line-height: 1.1; }
.base-price__amount span { font-size: 1rem; font-weight: 560; color: var(--base-faint); letter-spacing: 0; }
.base-price__per { font-size: .87rem; color: var(--base-faint); min-height: 1.3em; }
.base-price__desc { font-size: .9rem; color: var(--base-muted); }
.base-price__feats { display: grid; gap: 11px; margin: 20px 0 26px; flex: 1; }
.base-price__feat { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; line-height: 1.5; color: var(--base-ink-soft); }
.base-price__feat svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; }
.base-price__feat .ok { color: #B58900; }
.base-price__feat .no { color: #C4C4CE; }
.base-price__feat--off { color: var(--base-faint); }
.base-price__feat--cost { color: var(--base-gold-deep); font-weight: 600; }
.base-price__inherit {
    font-size: .85rem; font-weight: 620; color: var(--base-gold-deep);
    background: var(--base-cream); border-radius: 10px; padding: 8px 12px; margin-bottom: 4px;
}
.base-price__feat--plus { font-weight: 640; }

/* ── Tabla comparativa ─────────────────────────────────────── */
.base-tablewrap { overflow-x: auto; border: 1px solid var(--base-line); border-radius: var(--base-r-md); background: #fff; }
.base-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; }
.base-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.base-table th, .base-table td { padding: 15px 20px; text-align: center; border-bottom: 1px solid var(--base-line-soft); }
.base-table tbody tr:last-child th, .base-table tbody tr:last-child td { border-bottom: 0; }
.base-table thead th {
    font-family: var(--base-font-display); font-weight: 700; font-size: .85rem;
    letter-spacing: .06em; text-transform: uppercase; color: var(--base-ink);
    background: var(--base-cream-soft); border-bottom: 1px solid var(--base-line);
}
.base-table tbody th { text-align: left; font-weight: 560; color: var(--base-ink-soft); }
.base-table .yes { color: var(--base-green); font-weight: 700; }
.base-table .no { color: #C4C4CE; font-weight: 700; }
.base-table .hi { color: var(--base-gold-deep); font-weight: 720; }
.base-table tbody tr:hover { background: #FDFCF8; }

/* ── FAQ accordion ─────────────────────────────────────────── */
.base-faq { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.base-faq details {
    background: var(--base-surface); border: 1px solid var(--base-line);
    border-radius: var(--base-r-md); overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.base-faq details[open] { border-color: #E3D9B8; box-shadow: var(--base-shadow-sm); }
.base-faq summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    cursor: pointer; list-style: none; padding: 20px 24px;
    font-weight: 640; font-size: 1rem; color: var(--base-ink);
}
.base-faq summary::-webkit-details-marker { display: none; }
.base-faq summary::after {
    content: ''; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
    background: var(--base-cream);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A6500' stroke-width='2.4' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    background-size: 12px; background-position: center; background-repeat: no-repeat;
    transition: transform .25s var(--base-ease);
}
.base-faq details[open] summary::after { transform: rotate(45deg); }
.base-faq__a { padding: 0 24px 22px; font-size: .95rem; line-height: 1.65; color: var(--base-muted); }
.base-faq__a a { color: var(--base-gold-deep); font-weight: 620; }

/* ── Testimonios ───────────────────────────────────────────── */
.base-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.base-quote {
    background: var(--base-surface); border: 1px solid var(--base-line);
    border-radius: var(--base-r-md); padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.base-quote__stars { display: flex; gap: 3px; }
.base-quote__text { font-size: .95rem; line-height: 1.65; color: var(--base-ink-soft); flex: 1; }
.base-quote__who { display: flex; align-items: center; gap: 11px; }
.base-quote__avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--base-gold-grad); color: var(--base-ink);
    font-weight: 750; display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.base-quote__name { font-weight: 640; font-size: .92rem; color: var(--base-ink); }
.base-quote__role { font-size: .8rem; color: var(--base-faint); }

/* ── CTA final ─────────────────────────────────────────────── */
.base-cta {
    text-align: center; border-radius: clamp(20px, 3vw, 34px);
    background: var(--base-gold-grad); color: var(--base-ink);
    padding: clamp(52px, 8vw, 92px) clamp(24px, 5vw, 60px);
    position: relative; overflow: hidden;
}
.base-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(480px 260px at 15% 0%, rgba(255,255,255,.45), transparent 60%);
    pointer-events: none;
}
.base-cta .base-h2 { position: relative; }
.base-cta p { position: relative; max-width: 560px; margin: 14px auto 30px; font-size: 1.05rem; line-height: 1.6; color: rgba(21,21,30,.75); }
.base-cta__actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.base-footer { margin-top: clamp(56px, 8vw, 96px); background: var(--base-navy); color: #B9B9C8; }
.base-footer__in { padding: clamp(44px, 6vw, 72px) 24px 0; max-width: 1180px; margin: 0 auto; }
.base-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.base-footer__brand { display: grid; gap: 14px; align-content: start; }
.base-footer__brand a.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.base-footer__brand img { width: 34px; height: 34px; }
.base-footer__brand .logo span { font-family: var(--base-font-display); font-weight: 740; font-size: 1.05rem; color: #fff; letter-spacing: -.02em; }
.base-footer__brand p { font-size: .9rem; line-height: 1.6; color: #8F8FA3; max-width: 30ch; }
.base-footer h4 { font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #6F6F82; margin-bottom: 16px; }
.base-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.base-footer ul a { font-size: .92rem; color: #B9B9C8; text-decoration: none; transition: color .2s; }
.base-footer ul a:hover { color: var(--base-gold); }
.base-footer__bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0 26px;
    font-size: .82rem; color: #6F6F82;
}
.base-footer__bottom a { color: #8F8FA3; text-decoration: none; }
.base-footer__bottom a:hover { color: var(--base-gold); }
.base-footer__proto {
    background: rgba(255,215,0,.09); border: 1px dashed rgba(255,215,0,.35);
    border-radius: 12px; padding: 10px 16px; font-size: .8rem; color: #CBB25A; margin-bottom: 26px;
}
.base-footer__proto a { color: var(--base-gold); }
@media (max-width: 860px) { .base-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .base-footer__grid { grid-template-columns: 1fr; } }

/* ── Reveal on scroll ──────────────────────────────────────── */
.base-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--base-ease), transform .7s var(--base-ease); }
.base-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .base-reveal { opacity: 1; transform: none; transition: none; } }

/* ── Utilidades ────────────────────────────────────────────── */
.base-center { text-align: center; }
.base-mt-lg { margin-top: clamp(36px, 5vw, 56px); }
.base-note { font-size: .85rem; color: var(--base-faint); text-align: center; margin-top: 22px; }
.base-note a { color: var(--base-gold-deep); font-weight: 620; }
.base-loading { text-align: center; color: var(--base-faint); padding: 30px; grid-column: 1 / -1; }
