/* Outfit — self-hosted (variable font, latin + latin-ext). Reemplaza Google Fonts:
   elimina el request a fonts.googleapis/gstatic (render-blocking) y mejora LCP/CWV. */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(fonts/outfit-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(fonts/outfit-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Schibsted Grotesk — display. Grotesca de origen editorial: le pone carácter a
   los titulares donde Outfit sola se leía como plantilla. */
@font-face {
    font-family: 'Schibsted Grotesk';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url(fonts/schibsted-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Schibsted Grotesk';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url(fonts/schibsted-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* IBM Plex Mono — la voz del comprobante: precio, CP, versión, códigos. */
@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(fonts/plexmono-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    /* Marca — medida sobre el logo (correoargentino-pro/brand/zenda-mark.svg).
       El cyan es el remate de la Z: acento, nunca baño ni gradiente. */
    --navy: #002140;
    --navy-deep: #001628;
    --cyan: #00C1E8;
    --cyan-ink: #006E8C;      /* el cyan no llega a AA sobre blanco; este sí */
    --paper: #F3F5F6;         /* neutro frío con sesgo navy, no cream */
    --paper-raised: #ffffff;
    --ink: #0B1B28;
    --ink-soft: #51636F;
    --ink-faint: #5F6F7B;
    --rule: #DFE5E8;
    --display: 'Schibsted Grotesk', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    --primary: #002140;
    --primary-dark: #001628;
    --primary-light: #006E8C;
    --accent: #00C1E8;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;
    --text: #0B1B28;
    --text-secondary: #51636F;
    --text-muted: #5F6F7B;
    --surface: #ffffff;
    --bg: #F3F5F6;
    --bg-subtle: #f1f5f9;
    --border: #DFE5E8;
    --border-light: #f1f5f9;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 30px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px -10px rgba(0,0,0,0.1), 0 20px 60px -20px rgba(0,0,0,0.08);
    --gradient-accent: linear-gradient(135deg, #00C1E8, #0093C4);
    /* Dark theme tokens */
    --dark: #0f172a;
    --dark-surface: rgba(255,255,255,0.04);
    --dark-surface-hover: rgba(255,255,255,0.07);
    --dark-border: rgba(255,255,255,0.08);
    --dark-border-hover: rgba(255,255,255,0.14);
    --dark-text: rgba(255,255,255,0.92);
    --dark-text-secondary: rgba(255,255,255,0.6);
    --dark-text-muted: rgba(255,255,255,0.38);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Navbar (not sticky, transparent) ── */
.navbar {
    position: relative;
    z-index: 10;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar__inner {
    max-width: 1140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}
.navbar__brand svg {
    filter: drop-shadow(0 2px 8px rgba(0,193,232,0.3));
}
.navbar__brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 30%, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.navbar__menu a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.navbar__menu a:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
}
.navbar__menu a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

/* ── Navbar dropdown ── */
.navbar__dropdown { position: relative; }
.navbar__dropdown::after {
    /* Invisible hover bridge between toggle and submenu (covers the 6px gap) */
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 14px;
    pointer-events: none;
}
.navbar__dropdown:hover::after,
.navbar__dropdown:focus-within::after,
.navbar__dropdown.open::after {
    pointer-events: auto;
}
.navbar__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.25s ease;
    user-select: none;
    outline: none;
}
.navbar__dropdown-toggle:hover,
.navbar__dropdown:hover .navbar__dropdown-toggle,
.navbar__dropdown:focus-within .navbar__dropdown-toggle,
.navbar__dropdown-toggle:focus-visible {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
}
.navbar__dropdown-toggle.active {
    color: white;
    background: rgba(255,255,255,0.1);
}
.navbar__dropdown-toggle::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    opacity: 0.7;
    transition: transform 0.2s ease;
}
.navbar__dropdown:hover .navbar__dropdown-toggle::after,
.navbar__dropdown.open .navbar__dropdown-toggle::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}
.navbar__submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    background: rgba(7, 11, 20, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px;
    list-style: none;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 60;
}
.navbar__dropdown:hover .navbar__submenu,
.navbar__dropdown:focus-within .navbar__submenu,
.navbar__dropdown.open .navbar__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.navbar__submenu li { list-style: none; }
.navbar__submenu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}
.navbar__submenu a strong {
    display: block;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    margin-bottom: 2px;
}
.navbar__submenu a span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.58);
    font-weight: 400;
}
.navbar__submenu a:hover {
    background: rgba(255,255,255,0.06);
    color: white;
}

/* ── Container ── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Hero (home) — navbar lives inside ── */
.hero {
    background: var(--navy-deep);
    color: white;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.075) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    pointer-events: none;
}
.hero__body {
    text-align: center;
    padding: 60px 24px 120px;
    position: relative;
    z-index: 1;
}
.hero__logo {
    margin-bottom: 28px;
}
.hero__logo svg {
    filter: drop-shadow(0 8px 32px rgba(0,193,232,0.35));
}
.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}
.hero__former {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.42);
    margin: -14px 0 22px;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.7;
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 44px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0,193,232,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    letter-spacing: -0.3px;
}
.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,193,232,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero__price {
    display: block;
    margin-top: 18px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.35);
}

/* ── Page Header (inner pages) — navbar lives inside ── */
.page-header {
    background: var(--navy-deep);
    color: white;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    pointer-events: none;
}
.page-header__body {
    text-align: center;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Dark page wrapper (home) ── */
/* Sobre navy el enlace va al cyan del logo: el tono AA-sobre-blanco no se ve. */
.dark-page { --primary-light: #4FD6F0; }

.dark-page {
    background: var(--dark);
    color: var(--dark-text);
}
.dark-page .features {
    background: transparent;
}
.dark-page .features__title {
    color: var(--dark-text);
}
.dark-page .feature-card {
    background: var(--dark-surface);
    border-color: var(--dark-border);
}
.dark-page .feature-card:hover {
    background: var(--dark-surface-hover);
    border-color: var(--dark-border-hover);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.dark-page .feature-card h3 {
    color: var(--dark-text);
}
.dark-page .feature-card p {
    color: var(--dark-text-secondary);
}
.dark-page .feature-card__icon {
    background: rgba(0,193,232,0.1);
    color: var(--primary-light);
}
.dark-page .pricing {
    background: rgba(255,255,255,0.02);
}
.dark-page .pricing__title {
    color: var(--dark-text);
}
.dark-page .pricing__subtitle {
    color: var(--dark-text-secondary);
}
.dark-page .pricing-card {
    background: var(--dark-surface);
    border-color: var(--dark-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.dark-page .pricing-card--featured {
    border-color: var(--primary-light, #00799A);
}
.dark-page .pricing-card__note {
    color: var(--dark-text-muted);
}
.dark-page .pricing-card__name {
    color: var(--primary-light);
}
.dark-page .pricing-card__price {
    color: var(--dark-text);
}
.dark-page .pricing-card__price span {
    color: var(--dark-text-muted);
}
.dark-page .pricing-card__period {
    color: var(--dark-text-muted);
}
.dark-page .pricing-card__features li {
    color: var(--dark-text-secondary);
    border-bottom-color: var(--dark-border);
}
.dark-page .pricing__guarantee {
    color: var(--dark-text-muted);
}
.dark-page .discount-row input {
    background: rgba(255,255,255,0.06);
    border-color: var(--dark-border);
    color: var(--dark-text);
}
.dark-page .discount-row input::placeholder { color: var(--dark-text-muted); }
.dark-page .discount-row input:focus { border-color: var(--primary-light); }
.dark-page .discount-row button {
    background: rgba(255,255,255,0.06);
    border-color: var(--dark-border);
    color: var(--dark-text-secondary);
}
.dark-page .discount-row button:hover { border-color: var(--primary-light); color: var(--primary-light); }
.dark-page .success-card {
    background: rgba(255,255,255,0.05);
    border-color: var(--green);
}
.dark-page .success-card h2 { color: var(--dark-text); }
.dark-page .success-card p { color: var(--dark-text-secondary); }
.dark-page .success-card__key {
    background: rgba(255,255,255,0.06);
    border-color: var(--dark-border);
    color: var(--dark-text);
}
.dark-page .footer {
    background: rgba(0,0,0,0.3);
}

/* ── Features ── */
.features {
    padding: 80px 0 100px;
}
.features__title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.features__subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}
.feature-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0,193,232,0.08), rgba(0,193,232,0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-light);
}
.feature-card__icon svg {
    width: 22px;
    height: 22px;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── Pricing ── */
.pricing {
    padding: 100px 0;
    background: var(--surface);
}
.pricing__title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.pricing__subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 56px;
    font-size: 1.05rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    align-items: start;
}

/* Compatibility trust bar */
.compat { padding: 56px 0 80px; }
.compat__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}
.compat__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.compat__item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.compat__item span {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.compat__item svg { flex-shrink: 0; }
@media (max-width: 640px) {
    .compat__grid { gap: 20px 28px; }
    .compat__item span { font-size: 0.78rem; }
}

/* Pre-purchase FAQs */
.prefaq { padding: 48px 0 56px; }
.prefaq__container { max-width: 720px; }
.prefaq__title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
}
/* En páginas oscuras conserva el tono atenuado original */
.dark-page .prefaq__title { color: rgba(255,255,255,0.55); }
.prefaq__list { display: flex; flex-direction: column; gap: 12px; }
.prefaq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s;
}
.prefaq__item:hover { border-color: var(--border-hover, rgba(255,255,255,0.14)); }
.prefaq__item[open] { border-color: var(--primary-light); }
.prefaq__q {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: color 0.2s;
}
.prefaq__q::-webkit-details-marker { display: none; }
.prefaq__item:hover .prefaq__q { color: var(--primary-light); }
.prefaq__item[open] .prefaq__q { color: var(--primary-light); }
.prefaq__icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
    margin-left: 12px;
}
.prefaq__item[open] .prefaq__icon { transform: rotate(45deg); color: var(--primary-light); }
.prefaq__a {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* El link al centro de ayuda debajo de las preguntas: quien abrió tres y no
   encontró lo suyo necesita a dónde seguir. */
.prefaq__more {
    margin: 20px 0 0;
    text-align: center;
    font-size: 0.9rem;
}
.prefaq__more a {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: none;
}
.prefaq__more a:hover { text-decoration: underline; }

.pricing-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0,193,232,0.12);
}
.pricing-card__badge {
    position: absolute;
    top: 30px;
    right: -30px;
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    transform: rotate(45deg);
}
.pricing-card__note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.pricing-card__btn--trial {
    background: linear-gradient(135deg, #00C1E8, #0093C4);
    border: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,193,232,0.3);
    font-size: 1rem;
}
.pricing-card__btn--trial:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,193,232,0.35);
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}
.pricing-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-light);
    margin-bottom: 12px;
}
.pricing-card__price {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -2px;
}
.pricing-card__price span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}
.pricing-card__period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}
.pricing-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}
.pricing-card__features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.93rem;
    color: var(--text-secondary);
}
.pricing-card__features li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    margin-right: 12px;
}
.pricing-card__btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,193,232,0.3);
    letter-spacing: -0.3px;
    font-family: inherit;
}
.pricing-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,193,232,0.4);
}
.discount-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.discount-row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.discount-row input:focus { border-color: var(--primary-light); }
.discount-row input::placeholder { color: var(--text-muted); }
.discount-row button {
    padding: 10px 18px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.discount-row button:hover { border-color: var(--primary-light); color: var(--primary-light); }
.discount-msg {
    font-size: 0.85rem;
    margin-bottom: 12px;
    min-height: 0;
    transition: all 0.2s;
}
.discount-msg.success { color: #12876A; }
.discount-msg.error { color: #D14343; }
.discount-original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.4rem;
    font-weight: 500;
    margin-right: 8px;
}
.pricing__guarantee {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── FAQ ── */
.faq {
    padding: 100px 0;
}
.faq--inner-page {
    padding-top: 48px;
}
.faq__title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 56px;
    letter-spacing: -1px;
}
.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 14px;
}
.faq-item {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.faq-item:hover {
    border-color: rgba(0,193,232,0.2);
    box-shadow: var(--shadow-sm);
}
.faq-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Contact Form ── */
.contact {
    padding: 48px 0 100px;
}
.contact-form {
    max-width: 560px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form__group {
    margin-bottom: 22px;
}
.contact-form__group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.contact-form__group input,
.contact-form__group textarea,
.contact-form__group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.93rem;
    transition: all 0.25s ease;
    background: var(--bg);
    color: var(--text);
}
.contact-form__group input:focus,
.contact-form__group textarea:focus,
.contact-form__group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(0,193,232,0.1);
    background: var(--surface);
}
.contact-form__group textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form__submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,193,232,0.3);
    font-family: inherit;
}
.contact-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,193,232,0.4);
}
.contact-form__submit:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.contact-form__status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
}
.contact-form__status--success { color: var(--green); }
.contact-form__status--error { color: var(--red); }

/* ── Legal Pages ── */
.legal {
    padding: 48px 0 100px;
}
.legal__content {
    max-width: 760px;
    margin: 0 auto;
}
.legal__content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.legal__content h2:first-child { margin-top: 0; }
.legal__content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 8px;
}
.legal__content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
}
.legal__content ul {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    line-height: 1.8;
}
.legal__content li { margin-bottom: 4px; }
.legal__content a { color: var(--primary-light); text-decoration: none; }
.legal__content a:hover { text-decoration: underline; }

/* Blog article tables */
.legal__content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 28px 0;
    font-size: 0.95em;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.legal__content thead tr {
    background: linear-gradient(135deg, #002140, #0A4C74);
}
.legal__content thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.88em;
    color: #fff;
    letter-spacing: 0.02em;
    border-bottom: none;
}
.legal__content thead th:not(:first-child) {
    text-align: center;
}
.legal__content tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.legal__content tbody td:not(:first-child) {
    text-align: center;
}
.legal__content tbody tr:last-child td {
    border-bottom: none;
}
.legal__content tbody tr:hover {
    background: var(--bg-subtle);
}
.legal__content tbody tr.table-highlight {
    background: rgba(0,193,232, 0.05);
}
.legal__content tbody tr.table-footer td {
    font-weight: 700;
    color: var(--text);
    background: var(--bg-subtle);
    border-top: 2px solid var(--border);
}

/* Blog callout / aside */
.blog-callout {
    background: linear-gradient(135deg, rgba(0,193,232,0.06), rgba(0,193,232,0.06));
    border-left: 4px solid var(--primary-light);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    color: var(--text-secondary);
    line-height: 1.8;
}
.blog-callout strong {
    color: var(--text);
}

/* Blog tip box */
.blog-tip {
    background: rgba(16, 185, 129, 0.06);
    border-left: 4px solid var(--green);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    color: var(--text-secondary);
    line-height: 1.8;
}
.blog-tip strong {
    color: var(--text);
}

/* Blog feature grid */
.blog-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}
.blog-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-feature:hover {
    box-shadow: var(--shadow);
    border-color: var(--border);
}
.blog-feature__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,193,232,0.1), rgba(0,193,232,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary-light);
}
.blog-feature__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 6px;
}
.blog-feature__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Blog CTA banner */
.blog-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #002140, #0A4C74);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 32px 0;
    box-shadow: var(--shadow);
}
.blog-cta__text {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
}
.blog-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,193,232,0.3);
}
.blog-cta__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    text-decoration: none;
}
.legal__content .blog-cta__btn,
.legal__content .blog-cta__btn:hover,
.legal__content .blog-cta__btn:visited {
    color: #fff;
}

/* Blog TOC */
.blog-toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 32px 0;
    box-shadow: var(--shadow-sm);
}
.blog-toc__title {
    font-weight: 700;
    font-size: 1.05em;
    color: var(--text);
    margin-bottom: 14px;
}
.blog-toc ol {
    margin: 0;
    padding-left: 20px;
    line-height: 2.1;
    color: var(--text-secondary);
}
.blog-toc a {
    color: var(--primary-light);
    text-decoration: none;
}
.blog-toc a:hover {
    text-decoration: underline;
}

/* Blog checklist */
.blog-checklist {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}
.blog-checklist__title {
    font-weight: 700;
    font-size: 1.02em;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.blog-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-checklist li {
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.7;
}
.blog-checklist li:last-child {
    border-bottom: none;
}
.blog-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid var(--border);
    background: var(--bg-subtle);
}
.blog-checklist li.checked::before {
    background: linear-gradient(135deg, #002140, #0A4C74);
    border-color: transparent;
}
.blog-checklist li.checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 15px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

@media (max-width: 640px) {
    .blog-features { grid-template-columns: 1fr; }
    .blog-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
    .legal__content table { font-size: 0.85em; }
    .legal__content thead th, .legal__content tbody td { padding: 10px 10px; }
}

/* ── Help Center ── */
.help {
    padding: 48px 0 100px;
}
.help__layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 40px;
    align-items: start;
}
.help__sidebar {
    position: sticky;
    top: 24px;
}
.help__nav {
    list-style: none;
    border-left: 2px solid var(--border);
}
.help__nav a {
    display: block;
    padding: 7px 18px;
    font-size: 0.83rem;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    margin-left: -2px;
    transition: all 0.2s ease;
}
.help__nav a:hover {
    color: var(--text-secondary);
}
.help__nav a.active {
    color: var(--primary-light);
    border-left-color: var(--primary-light);
    font-weight: 600;
    background: linear-gradient(90deg, rgba(0,193,232,0.04), transparent);
}
.help__sidebar-toggle {
    display: none;
    width: 100%;
    padding: 13px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-light);
    cursor: pointer;
    margin-bottom: 12px;
    text-align: left;
}
.help__content {
    min-width: 0;
}
.help__article {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}
.help__article:hover {
    box-shadow: var(--shadow-sm);
}
.help__article h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.5px;
}
.help__article h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin: 28px 0 12px;
    letter-spacing: -0.3px;
}
.help__article p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    margin-bottom: 12px;
    line-height: 1.75;
}
.help__article code {
    background: linear-gradient(135deg, rgba(0,193,232,0.08), rgba(0,193,232,0.06));
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}
.help__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin: 20px 0;
}
.help__step {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 22px;
    border: 1px solid var(--border);
    transition: border-color 0.25s ease;
}
.help__step:hover {
    border-color: rgba(0,193,232,0.2);
}
.help__step-number {
    width: 34px;
    height: 34px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.help__step h4 {
    font-size: 0.93rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.help__step p {
    font-size: 0.87rem;
    margin-bottom: 0;
}
.help__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}
.help__table th,
.help__table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.help__table th {
    background: var(--bg);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}
.help__table td {
    color: var(--text-secondary);
}
.help__table td:first-child {
    color: var(--text);
}
.help__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}
.help__badge--blue { background: rgba(0,193,232,0.1); color: #00799A; }
.help__badge--orange { background: rgba(245,158,11,0.1); color: #d97706; }
.help__badge--green { background: rgba(16,185,129,0.1); color: #059669; }
.help__badge--red { background: rgba(239,68,68,0.1); color: #dc2626; }
.help__badge--gray { background: var(--bg-subtle); color: var(--text-muted); }
.help__list {
    list-style: none;
    margin: 12px 0;
}
.help__list li {
    padding: 8px 0 8px 22px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}
.help__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-accent);
    position: absolute;
    left: 2px;
    top: 16px;
}
.help__list--ordered {
    list-style: decimal;
    padding-left: 20px;
}
.help__list--ordered li {
    padding-left: 6px;
}
.help__list--ordered li::before {
    display: none;
}
.help__info-box {
    background: linear-gradient(135deg, rgba(0,193,232,0.05), rgba(0,193,232,0.04));
    border-left: 3px solid var(--primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 22px 26px;
    margin: 20px 0;
}
.help__info-box h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}
.help__info-box p {
    margin-bottom: 0;
    color: var(--text-secondary);
}
.help__info-box ul {
    list-style: none;
    margin: 8px 0 0;
}
.help__info-box ul li {
    padding: 4px 0;
    font-size: 0.9rem;
}
.help__info-box--warning {
    background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(245,158,11,0.03));
    border-left-color: var(--orange);
}
.help__info-box--warning h4 {
    color: #b45309;
}
.help__two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}
.help__col-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 26px;
    border: 1px solid var(--border);
}
.help__col-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-light);
}
.help__note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}
.help__error {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 22px 26px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.25s ease;
}
.help__error:hover {
    border-color: rgba(239,68,68,0.2);
}
.help__error h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}
.help__error p {
    margin-bottom: 6px;
}
.help__error ul {
    list-style: none;
    margin: 8px 0 0;
}
.help__error ul li {
    padding: 3px 0 3px 18px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.help__error ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    position: absolute;
    left: 2px;
    top: 12px;
}

@media (max-width: 900px) {
    .help__layout { grid-template-columns: 1fr; }
    .help__sidebar { position: static; display: none; }
    .help__sidebar.open { display: block; }
    .help__sidebar-toggle { display: block; }
    .help__nav { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 0; border-left: none; }
    .help__nav a { border-left: none; margin-left: 0; padding: 10px 20px; }
    .help__steps { grid-template-columns: 1fr; }
    .help__two-cols { grid-template-columns: 1fr; }
    .help__article { padding: 26px; }
    .help__table { font-size: 0.82rem; }
    .help__table th, .help__table td { padding: 8px 10px; }
}

/* ── Success section ── */
.success-section {
    display: none;
    padding: 100px 0;
    text-align: center;
}
.success-section.active {
    display: block;
}
.success-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 52px 44px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--green);
    position: relative;
    overflow: hidden;
}
.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--accent));
}
.success-card__icon {
    font-size: 64px;
    margin-bottom: 16px;
}
.success-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.success-card__key {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 1.2rem;
    background: var(--bg-subtle);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: 1px;
    user-select: all;
    border: 1px solid var(--border);
}
.success-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
    background: #060a13;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 48px 24px;
    font-size: 0.85rem;
}
.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer a:hover {
    color: white;
}

/* ── Screenshots ── */
.ss { padding: 80px 0 100px; background: rgba(255,255,255,0.02); }
.ss__title { text-align: center; font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -1px; color: var(--dark-text); }
.ss__sub { text-align: center; color: var(--dark-text-secondary); margin-bottom: 40px; font-size: 1.05rem; }
.ss__wrap { display: flex; align-items: center; justify-content: center; gap: 14px; max-width: 660px; margin: 0 auto; }
.ss__frame { flex: 1; max-width: 580px; border-radius: 12px; overflow: hidden; border: 1px solid var(--dark-border); box-shadow: 0 8px 40px rgba(0,0,0,0.35); background: #111827; aspect-ratio: 16 / 10; }
.ss__frame img { width: 100%; height: 100%; display: block; object-fit: contain; transition: opacity 0.3s ease; }
.ss__arr { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--dark-border); background: var(--dark-surface); color: var(--dark-text-secondary); font-size: 1.5rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; padding: 0; line-height: 1; }
.ss__arr:hover { background: var(--dark-surface-hover); border-color: var(--dark-border-hover); color: var(--dark-text); }
.ss__label { text-align: center; margin: 20px auto 0; max-width: 600px; font-size: 0.92rem; color: var(--dark-text-secondary); line-height: 1.6; }
.ss__label strong { color: var(--dark-text); font-weight: 700; }
.ss__dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.ss__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.15); cursor: pointer; transition: all 0.25s; padding: 0; }
.ss__dot.active { background: var(--primary-light); box-shadow: 0 0 8px rgba(0,193,232,0.5); transform: scale(1.2); }
.ss__dot:hover:not(.active) { background: rgba(255,255,255,0.3); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .navbar__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(7, 11, 20, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 20px;
        gap: 2px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        z-index: 50;
    }
    .navbar__menu.open {
        display: flex;
    }
    .navbar__menu a {
        padding: 12px 18px;
        width: 100%;
        border-radius: 8px;
    }
    .navbar__toggle {
        display: block;
    }
    .navbar__dropdown { width: 100%; }
    .navbar__dropdown-toggle { display: none; }
    .navbar__submenu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: 0;
        backdrop-filter: none;
    }
    .navbar__submenu a { white-space: normal; }
    .navbar__submenu a span { display: none; }
}

/* Reviews */
.reviews { padding: 80px 0 40px; }
.reviews__title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.reviews__subtitle {
    text-align: center;
    color: var(--dark-text-secondary);
    margin-bottom: 48px;
    font-size: 1.05rem;
}
.reviews__summary {
    text-align: center;
    margin-bottom: 40px;
}
.reviews__stars {
    font-size: 2rem;
    color: #f59e0b;
    letter-spacing: 4px;
}
.reviews__avg {
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    margin-top: 4px;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.review-item {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    transition: all 0.3s ease;
    position: relative;
}
.review-item:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.review-item__stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.review-item__comment {
    color: var(--dark-text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.review-item__comment::before { content: '\201C'; }
.review-item__comment::after { content: '\201D'; }
.review-item__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-item__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}
.review-item__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
}
.review-item__site {
    font-size: 0.8rem;
    color: var(--dark-text-muted);
}
.reviews__empty {
    text-align: center;
    padding: 40px;
    color: var(--dark-text-muted);
}

/* Blog */
.blog-list { padding: 60px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { border-color: rgba(96,165,250,0.3); transform: translateY(-2px); }
.blog-card__thumb {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,33,64,0.3), rgba(0,193,232,0.15));
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-card__thumb svg { opacity: 0.5; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h2 { font-size: 1.15rem; margin: 10px 0 10px; line-height: 1.4; }
.blog-card h2 a { color: #e2e8f0; text-decoration: none; }
.blog-card h2 a:hover { color: var(--primary-light); }
.blog-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.blog-card__link { display: inline-block; margin-top: 16px; color: var(--primary-light); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.blog-card__link:hover { text-decoration: underline; }

.page-header__breadcrumb { font-size: 0.9rem; margin-bottom: 8px; }
.page-header__breadcrumb a { color: var(--primary-light); text-decoration: none; }
.page-header__breadcrumb a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero__body { padding: 40px 20px 80px; }
    .features__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 8px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .features__grid::-webkit-scrollbar { display: none; }
    .features__grid { scrollbar-width: none; }
    .feature-card {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .reviews__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 8px;
    }
    .reviews__grid::-webkit-scrollbar { display: none; }
    .reviews__grid { scrollbar-width: none; }
    .review-item {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .faq__grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 24px; }
    .contact-form { padding: 28px; }
    .blog-grid { grid-template-columns: 1fr; }
    .ss { padding: 60px 0 80px; }
    .ss__arr { width: 36px; height: 36px; font-size: 1.2rem; }
    .ss__wrap { gap: 10px; }
    .ss__label { font-size: 0.85rem; }
}

/* ── Changelog / Updates page ── */
.changelog { padding: 60px 0 100px; }
.changelog__intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--dark-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}
.changelog__intro strong { color: var(--dark-text); font-weight: 600; }
.changelog__stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.changelog__stat {
    text-align: center;
    padding: 20px 28px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    min-width: 160px;
}
.changelog__stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.changelog__stat-label {
    font-size: 0.82rem;
    color: var(--dark-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.changelog__timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

/* Search */
.changelog__search {
    position: relative;
    max-width: 520px;
    margin: 0 auto 40px;
}
.changelog__search input {
    width: 100%;
    background: var(--dark-surface);
    color: var(--dark-text);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 14px 44px 14px 48px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.changelog__search input::placeholder { color: var(--dark-text-muted); }
.changelog__search input:focus {
    border-color: rgba(0,193,232,0.5);
    background: var(--dark-surface-hover);
}
.changelog__search::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.5' y2='16.5'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}
.changelog__search-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--dark-text-muted);
    font-size: 0.95rem;
    background: var(--dark-surface);
    border: 1px dashed var(--dark-border);
    border-radius: 12px;
    margin-top: 20px;
}
.changelog__search-empty strong { color: var(--dark-text); font-weight: 600; }

/* Group (by month) */
.changelog-group {
    margin-bottom: 12px;
}
.changelog-group summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
    user-select: none;
    margin-bottom: 0;
}
.changelog-group summary::-webkit-details-marker { display: none; }
.changelog-group summary:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--dark-border-hover);
}
.changelog-group__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: -0.2px;
    text-transform: capitalize;
}
.changelog-group__count {
    font-size: 0.78rem;
    color: var(--dark-text-muted);
    background: rgba(255,255,255,0.05);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
}
.changelog-group__chevron {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.25s ease;
}
.changelog-group[open] > summary .changelog-group__chevron {
    transform: rotate(-135deg) translate(-2px, -2px);
}
.changelog-group[open] > summary {
    background: rgba(255,255,255,0.04);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.changelog-group__body {
    position: relative;
    padding: 28px 0 12px 28px;
    border: 1px solid var(--dark-border);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: rgba(255,255,255,0.01);
}
.changelog-group__body::before {
    content: '';
    position: absolute;
    left: 34px; /* aligned with dot center: body padding-left 28 + 6 */
    top: 24px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0,193,232,0.4), rgba(0,193,232,0.15) 85%, transparent);
}
.changelog-group__body .changelog-entry::before {
    left: 0; /* override default -28 since entries are inside padded body */
}
.changelog-group__body .changelog-entry:last-child {
    margin-bottom: 16px;
}
.changelog-entry {
    position: relative;
    margin-bottom: 28px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 24px 28px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.changelog-entry:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-1px);
}
.changelog-entry::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-accent);
    box-shadow: 0 0 0 4px rgba(7,11,20,1), 0 0 16px rgba(0,193,232,0.5);
}
.changelog-entry--latest::before {
    animation: clPulse 2.2s ease-in-out infinite;
}
@keyframes clPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(7,11,20,1), 0 0 12px rgba(0,193,232,0.5); }
    50% { box-shadow: 0 0 0 4px rgba(7,11,20,1), 0 0 22px rgba(0,193,232,0.9); }
}
.changelog-entry__head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.changelog-entry__version {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,193,232,0.15);
    color: #93c5fd;
    border: 1px solid rgba(0,193,232,0.3);
}
.changelog-entry__date {
    font-size: 0.82rem;
    color: var(--dark-text-muted);
    letter-spacing: 0.3px;
}
.changelog-entry__tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 6px;
    font-weight: 600;
}
.changelog-entry__tag--new { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.changelog-entry__tag--fix { background: rgba(245,158,11,0.15); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.changelog-entry__tag--improve { background: rgba(139,92,246,0.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.3); }
.changelog-entry__tag--launch { background: rgba(0,193,232,0.15); color: #67e8f9; border: 1px solid rgba(0,193,232,0.3); }
.changelog-entry__latest-flag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #86efac;
    text-transform: uppercase;
}
.changelog-entry h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: -0.3px;
}
.changelog-entry p {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 10px;
}
.changelog-entry p:last-child { margin-bottom: 0; }
.changelog-entry__why {
    display: block;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid rgba(0,193,232,0.5);
    border-radius: 0 8px 8px 0;
    font-size: 0.88rem;
    color: var(--dark-text-secondary);
    margin-top: 12px;
}
.changelog-entry__why b {
    color: #67e8f9;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.72rem;
    display: block;
    margin-bottom: 4px;
}
.changelog-entry ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.changelog-entry ul li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    color: var(--dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}
.changelog-entry ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,193,232,0.6);
}

/* ── Home "last update" widget ── */
.update-widget {
    padding: 40px 0 60px;
    text-align: center;
}
.update-widget__card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.update-widget__card:hover {
    border-color: rgba(0,193,232,0.5);
    transform: translateY(-2px);
}
.update-widget__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
    animation: uwPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes uwPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.08); }
}
.update-widget__text {
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    line-height: 1.3;
    text-align: left;
}
.update-widget__text strong {
    display: block;
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 600;
}
.update-widget__arrow {
    color: var(--primary-light);
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}
.update-widget__card:hover .update-widget__arrow { transform: translateX(3px); }

@media (max-width: 600px) {
    .changelog__timeline { padding-left: 22px; }
    .changelog-entry { padding: 20px 20px; }
    .changelog-entry::before { left: -22px; top: 24px; }
    .changelog-entry h3 { font-size: 1.05rem; }
    .changelog__stat { min-width: 140px; padding: 16px 20px; }
    .update-widget__card { padding: 12px 18px; gap: 10px; }
    .update-widget__text { font-size: 0.82rem; }
}

/* ══ Blog post template: layout con sidebar ══ */
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
    align-items: start;
}
.blog-layout .blog-main.legal__content { max-width: none; margin: 0; }
.blog-main h2 { scroll-margin-top: 24px; }

.blog-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar TOC */
.blog-sidebar .blog-toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 18px;
    margin: 0;
    box-shadow: var(--shadow-sm);
}
.blog-sidebar .blog-toc__title {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0 0 12px;
    padding: 0 8px;
}
.legal__content .blog-sidebar .blog-toc ol,
.blog-sidebar .blog-toc ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc;
    columns: 1;
    line-height: 1.4;
}
.blog-sidebar .blog-toc li { margin: 0; counter-increment: toc; }
.blog-sidebar .blog-toc a {
    display: block;
    position: relative;
    padding: 7px 10px 7px 32px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    font-size: 0.88rem;
    line-height: 1.35;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.blog-sidebar .blog-toc a::before {
    content: counter(toc);
    position: absolute;
    left: 10px;
    top: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}
.blog-sidebar .blog-toc a:hover { background: var(--bg-subtle); color: var(--text); text-decoration: none; }
.blog-sidebar .blog-toc a.is-active {
    background: rgba(0,193,232,0.08);
    color: var(--primary-light);
    border-left-color: var(--primary-light);
    font-weight: 600;
}
.blog-sidebar .blog-toc a.is-active::before { color: var(--primary-light); }
.blog-toc__more {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 7px 10px;
    border: none;
    background: none;
    color: var(--primary-light);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
}
.blog-toc__more:hover { background: var(--bg-subtle); }
.blog-toc__more::after { content: " \25be"; }
.blog-toc__more[aria-expanded="true"]::after { content: " \25b4"; }

/* Sidebar CTA card */
.blog-cta-card {
    background: linear-gradient(160deg, #001628 0%, #002140 100%);
    color: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.18);
    position: relative;
    overflow: hidden;
}
.blog-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 0%, rgba(0,193,232,0.25) 0%, transparent 60%);
    pointer-events: none;
}
.blog-cta-card > * { position: relative; z-index: 1; }
.blog-cta-card__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    font-weight: 700;
    margin: 0 0 8px;
}
.blog-cta-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #fff;
    letter-spacing: -0.2px;
}
.blog-cta-card p {
    font-size: 0.87rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    margin: 0 0 16px;
}
.blog-cta-card__btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.blog-cta-card__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,193,232,0.4); text-decoration: none; }
.blog-cta-card__note {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
}

/* Destacados (banda oscura antes del footer) */
.blog-related {
    background: linear-gradient(165deg, #070b14 0%, #0f172a 100%);
    padding: 64px 0;
}
.blog-related__head { text-align: center; margin-bottom: 36px; }
.blog-related__title {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}
.blog-related__sub { color: rgba(255,255,255,0.5); font-size: 1rem; margin: 0; }
.blog-related .blog-grid { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
    .blog-layout { display: flex; flex-direction: column; gap: 28px; }
    .blog-sidebar { display: contents; }
    .blog-sidebar .blog-toc { order: -1; position: static; }
    .blog-cta-card { order: 5; }
    .blog-related .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .blog-related { padding: 48px 0; }
    .blog-related .blog-grid { grid-template-columns: 1fr; }
}

/* ══ Post hero ilustrado (por categoría) ══ */
.post-hero .post-hero__body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    max-width: 1140px;
    margin: 0 auto;
    padding: 44px 24px 64px;
}
.post-hero__text { min-width: 0; }
.post-hero .page-header__breadcrumb { margin-bottom: 12px; }
.post-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px 5px 11px;
    border-radius: 999px;
    background: rgba(0,193,232,0.15);
    border: 1px solid rgba(0,193,232,0.32);
    color: #93c5fd;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.post-hero__badge svg { width: 14px; height: 14px; }
.post-hero h1 { text-align: left; margin-bottom: 12px; }
.post-hero__meta { text-align: left; max-width: none; margin: 0; }
.post-hero__date { text-align: left; margin: 10px 0 0; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.42); }
/* Los <p> del hero heredaban `.page-header p` (max-width:520px + margin:0 auto),
   que los centraba y desalineaba respecto al h1 y la ceja. Reset con specificity suficiente. */
.post-hero .post-hero__text p { max-width: none; }
.post-hero .post-hero__text .page-header__breadcrumb { margin: 0 0 12px; }
.post-hero .post-hero__text .post-hero__meta { margin: 0; }
.post-hero .post-hero__text .post-hero__date { margin: 10px 0 0; }
.post-hero__art { display: flex; justify-content: center; align-items: center; }
.post-hero__art svg { width: 100%; max-width: 340px; height: auto; }
.post-hero__art img { width: 100%; max-width: 460px; height: auto; border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 24px 60px rgba(0,0,0,0.42); }

/* Acento por categoría (badge) */
.post-hero--envios .post-hero__badge { background: rgba(0,193,232,0.15); border-color: rgba(0,193,232,0.32); color: #67e8f9; }
.post-hero--woocommerce .post-hero__badge { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.32); color: #c4b5fd; }
.post-hero--comparativas .post-hero__badge { background: rgba(20,184,166,0.15); border-color: rgba(20,184,166,0.32); color: #5eead4; }

@media (max-width: 820px) {
    .post-hero .post-hero__body { grid-template-columns: 1fr; text-align: center; padding: 36px 24px 52px; }
    .post-hero h1, .post-hero__meta, .post-hero__date { text-align: center; }
    .post-hero__badge { margin-left: auto; margin-right: auto; }
    .post-hero__art { display: none; }
}

/* Miniaturas por categoría (hubs + destacados) */
.blog-card__thumb--guias { background: linear-gradient(135deg, rgba(0,193,232,0.38), rgba(99,102,241,0.18)); }
.blog-card__thumb--envios { background: linear-gradient(135deg, rgba(0,193,232,0.38), rgba(14,165,233,0.18)); }
.blog-card__thumb--woocommerce { background: linear-gradient(135deg, rgba(139,92,246,0.38), rgba(168,85,247,0.18)); }
.blog-card__thumb--comparativas { background: linear-gradient(135deg, rgba(20,184,166,0.38), rgba(0,193,232,0.18)); }
.blog-card__thumb[class*="--"] svg { opacity: 0.72; }

/* ============================================================
   Plugin landing page (plugin.html)
   ============================================================ */
.pg-hero {
    background: #001628;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 75% 15%, rgba(0,193,232,0.14) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 15% 40%, rgba(0,193,232,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.pg-hero__body { position: relative; z-index: 1; padding: 48px 24px 84px; }
.pg-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.pg-hero__text { text-align: left; }
.pg-hero__text .hero__badge { margin-bottom: 20px; }
.pg-hero__text h1 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
}
.pg-hero__text > p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    max-width: 520px;
    margin: 0 0 28px;
}
.pg-hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.pg-hero__cta-row--center { justify-content: center; }
.pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.3px;
    padding: 15px 34px;
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.pg-btn--primary {
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,193,232,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.pg-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,193,232,0.5), inset 0 1px 0 rgba(255,255,255,0.1); }
.pg-btn--ghost {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.16);
    color: #fff;
}
.pg-btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.pg-trust {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pg-trust li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pg-trust__stars { color: #fbbf24; letter-spacing: 1px; }
.pg-hero__media { position: relative; }
.pg-hero__frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #0b1220;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.pg-hero__frame::before {
    content: '';
    display: block;
    height: 34px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background-image:
        radial-gradient(circle at 20px 17px, #f87171 4px, transparent 4px),
        radial-gradient(circle at 38px 17px, #fbbf24 4px, transparent 4px),
        radial-gradient(circle at 56px 17px, #34d399 4px, transparent 4px);
    background-repeat: no-repeat;
}
.pg-hero__frame img { display: block; width: 100%; height: auto; }

/* How it works */
.pg-steps { padding: 72px 0 40px; }
.pg-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
.pg-step {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px 26px;
    position: relative;
}
.pg-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.pg-step h3 { color: var(--dark-text); font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.pg-step p { color: var(--dark-text-secondary); font-size: 0.96rem; line-height: 1.6; margin: 0; }

/* Comparison */
.pg-compare-section { padding: 56px 0 80px; }
.pg-compare-sub { text-align: center; color: var(--dark-text-secondary); max-width: 560px; margin: 0 auto 40px; }
.pg-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pg-compare {
    width: 100%;
    min-width: 560px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 auto;
    max-width: 900px;
}
.pg-compare th, .pg-compare td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.95rem;
}
.pg-compare thead th {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-text-muted);
    font-weight: 700;
}
.pg-compare th:first-child, .pg-compare td:first-child { color: var(--dark-text); font-weight: 600; }
.pg-compare__pro {
    color: var(--primary-light) !important;
    background: rgba(0,193,232,0.06);
}
.pg-compare tbody td.pg-compare__yes {
    background: rgba(0,193,232,0.06);
    color: var(--dark-text);
    font-weight: 600;
}
.pg-compare tbody td.pg-compare__yes::before { content: '\2713  '; color: var(--green); font-weight: 800; }
.pg-compare tbody td.pg-compare__no { color: var(--dark-text-muted); }
.pg-compare tbody td.pg-compare__no::before { content: '\2715  '; color: var(--red); }
.pg-compare-note { text-align: center; margin-top: 28px; color: var(--dark-text-secondary); font-size: 0.95rem; }
.pg-compare-note a { color: var(--primary-light); font-weight: 600; }

/* Honestidad: cuándo conviene y cuándo no */
.pg-fit { padding: 8px 0 90px; }
.pg-fit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 44px;
    align-items: start;
}
.pg-fit__card {
    position: relative;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.pg-fit__card:hover { transform: translateY(-2px); }
.pg-fit__card--yes:hover { border-color: rgba(16,185,129,0.4); }
.pg-fit__card--no:hover { border-color: rgba(148,163,184,0.32); }
.pg-fit__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--dark-border);
}
.pg-fit__card--yes .pg-fit__head {
    background: linear-gradient(100deg, rgba(16,185,129,0.14), rgba(16,185,129,0.02));
}
.pg-fit__card--no .pg-fit__head {
    background: linear-gradient(100deg, rgba(148,163,184,0.12), rgba(148,163,184,0.02));
}
.pg-fit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex-shrink: 0;
}
.pg-fit__card--yes .pg-fit__icon { background: rgba(16,185,129,0.18); color: #34d399; }
.pg-fit__card--no .pg-fit__icon { background: rgba(148,163,184,0.18); color: #cbd5e1; }
.pg-fit__icon svg { width: 18px; height: 18px; }
.pg-fit__card h3 {
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    letter-spacing: -0.2px;
}
.pg-fit__list {
    list-style: none;
    margin: 0;
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pg-fit__list li {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--dark-text-secondary);
    padding-left: 30px;
    position: relative;
}
.pg-fit__list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}
.pg-fit__card--yes .pg-fit__list li::before {
    content: '\2713';
    background: rgba(16,185,129,0.16);
    color: #34d399;
}
.pg-fit__card--no .pg-fit__list li::before {
    content: '\2715';
    background: rgba(148,163,184,0.16);
    color: #94a3b8;
}
.pg-fit__list strong { color: var(--dark-text); font-weight: 700; }
.pg-fit__list a { color: var(--primary-light); font-weight: 600; }

/* CTA de cierre del bloque */
.pg-fit__cta {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, rgba(0,193,232,0.12), rgba(0,193,232,0.06));
    border: 1px solid rgba(0,193,232,0.25);
    border-radius: 18px;
    padding: 26px 30px;
}
.pg-fit__cta-text { flex: 1 1 300px; }
.pg-fit__cta-text strong {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.2px;
    margin-bottom: 5px;
}
.pg-fit__cta-text span { font-size: 0.94rem; color: var(--dark-text-secondary); line-height: 1.55; }
@media (max-width: 820px) {
    .pg-fit__grid { grid-template-columns: 1fr; }
    .pg-fit__cta { flex-direction: column; align-items: stretch; text-align: center; padding: 24px 22px; }
    .pg-fit__cta .pg-btn { justify-content: center; }
}

/* Final CTA band */
.pg-cta-band {
    text-align: center;
    padding: 72px 24px 88px;
    background: linear-gradient(160deg, #0b1120 0%, #12224a 100%);
    border-top: 1px solid var(--dark-border);
}
.pg-cta-band h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.6px;
    margin: 0 0 12px;
}
.pg-cta-band p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin: 0 0 28px; }

@media (max-width: 900px) {
    .pg-hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .pg-hero__text { text-align: center; }
    .pg-hero__text > p { margin-left: auto; margin-right: auto; }
    .pg-hero__cta-row { justify-content: center; }
    .pg-trust { align-items: center; }
    .pg-steps__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .pg-hero__cta-row { flex-direction: column; align-items: stretch; }
    .pg-btn { justify-content: center; }
}

/* ============================================================
   Sidebar author card (blog posts)
   ============================================================ */
.blog-author-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
}
.blog-author-card__eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0 0 12px;
}
.blog-author-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-author-card__avatar {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex; align-items: center; justify-content: center;
}
.blog-author-card__name { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0; line-height: 1.2; }
.blog-author-card__role { font-size: 0.8rem; color: var(--text-secondary); margin: 2px 0 0; line-height: 1.3; }
.blog-author-card__bio { font-size: 0.85rem; line-height: 1.55; color: var(--text-secondary); margin: 0 0 14px; }
.blog-author-card__link { display: inline-block; font-size: 0.88rem; font-weight: 700; color: var(--primary-light); text-decoration: none; }
.blog-author-card__link:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .blog-author-card { order: 6; }
}

/* ============================================================
   Blog listing on light background (blog home + category hubs)
   Los .blog-card base son oscuros (se reusan en la banda "Seguí
   leyendo"); acá los pasamos a claro sólo dentro de .blog-list.
   ============================================================ */
.blog-list .blog-card {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.blog-list .blog-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}
.blog-list .blog-card__thumb { border-bottom-color: var(--border); }
.blog-list .blog-card__date { color: var(--text-muted); }
.blog-list .blog-card h2 a { color: var(--text); }
.blog-list .blog-card h2 a:hover { color: var(--primary); }
.blog-list .blog-card p { color: var(--text-secondary); }

/* Filtros de categoría (blog home + hubs). Antes vivían inline sólo en el
   blog home; acá son globales para que los hubs (links <a>) también los usen. */
.blog-filters { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.blog-filter {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.blog-filter:hover { border-color: var(--primary-light); color: var(--text); text-decoration: none; }
.blog-filter.active {
    background: linear-gradient(135deg, #002140, #0A4C74);
    color: #fff;
    border-color: transparent;
}

/* ============================================================
   Matriz maestra de comparación (hub /blog/comparativas/)
   ============================================================ */
.cmp {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 44px;
}
.cmp__eyebrow {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    font-weight: 700;
    margin: 0 0 8px;
}
.cmp__title {
    font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    margin: 0 0 10px;
}
.cmp__intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 70ch;
}
.cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp__table {
    width: 100%;
    min-width: 620px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.93rem;
}
.cmp__table thead th {
    padding: 13px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    vertical-align: bottom;
}
.cmp__table thead th:not(:first-child) { text-align: center; }
.cmp__table th.cmp__best {
    background: rgba(0,193,232,0.08);
    color: var(--primary);
    border-bottom-color: var(--primary-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cmp__table tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.cmp__table tbody td:not(:first-child) { text-align: center; }
.cmp__table tbody td:first-child { color: var(--text); font-weight: 600; }
.cmp__table tbody td.cmp__best { background: rgba(0,193,232,0.05); color: var(--text); font-weight: 600; }
.cmp__table tbody tr:last-child td { border-bottom: none; }
.cmp__table tbody tr:last-child td.cmp__best {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.cmp__yes { color: var(--green); font-weight: 700; }
.cmp__no { color: var(--text-muted); }
.cmp__note { font-size: 0.86rem; color: var(--text-muted); margin: 18px 0 0; line-height: 1.6; }
.cmp__cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cmp__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.cmp__cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,193,232,0.35); text-decoration: none; }
.cmp__cta-link { color: var(--primary-light); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.cmp__cta-link:hover { text-decoration: underline; }

/* FAQ de decisión en el hub (fondo claro) */
.cmp-faq { max-width: 760px; margin: 0 0 44px; }
.cmp-faq__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    margin: 0 0 18px;
}
.cmp-faq .prefaq__list { gap: 10px; }
.cmp-faq .prefaq__item:hover { border-color: var(--primary-light); }

/* Guía de decisión */
.cmp-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.cmp-pick__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
}
.cmp-pick__card--best { border-left-color: var(--primary-light); }
.cmp-pick__who {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 0 6px;
}
.cmp-pick__card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.cmp-pick__card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary); margin: 0; }
@media (max-width: 860px) {
    .cmp-pick { grid-template-columns: 1fr; }
    .cmp { padding: 24px 20px; }
}

/* ============================================================
   Footer pro (multi-columna) — .site-footer
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.55);
    padding: 56px 0 30px;
    font-size: 0.9rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 40px;
}
.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
}
.site-footer__logo svg {
    filter: drop-shadow(0 2px 8px rgba(0,193,232,0.3));
}
.site-footer__former {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin: -8px 0 12px;
}
.site-footer__logo strong {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.site-footer__tagline {
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
    margin: 0 0 14px;
    max-width: 340px;
    font-size: 0.88rem;
}
.site-footer__dev { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 0; }
.site-footer__social { margin: 12px 0 0; font-size: 0.85rem; }
.site-footer__social a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer__social a:hover { color: #fff; }
.site-footer__heading {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 15px;
}
.site-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.site-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px 24px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer__pay { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-footer__pay-label { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-right: 2px; }
.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    min-width: 40px;
    padding: 0 9px;
    border-radius: 6px;
    background: #fff;
    color: #1a1f71;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.pay-badge--visa { color: #1a1f71; font-style: italic; }
.pay-badge--amex { background: #2e77bc; color: #fff; }
.pay-badge--mp { background: #009ee3; color: #fff; letter-spacing: 0; padding: 0 11px; }
.pay-badge--mc { padding: 0 8px; }
.pay-badge--mc svg { display: block; }
.site-footer__copy { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }
@media (max-width: 820px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   Home 2026 — "el comprobante"

   El producto despacha paquetes, así que la página toma prestado el
   vocabulario del despacho: rótulos en versalita, todo dato en
   monoespaciada (precio, CP, versión) y una línea de corte punteada
   que parte el bloque de precios como las dos mitades de un remito.
   La regla de color es la del logo: el cyan es UN remate, no un baño.
   ═══════════════════════════════════════════════════════════════════ */

.home { background: var(--paper); color: var(--ink); }

/* ── Banda navy del hero ───────────────────────────────────────── */
.zh {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
}
/* Retícula de puntos: papel de guía, no resplandor de gradiente. */
.zh::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.075) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    pointer-events: none;
}
.zh__body {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 52px 24px 76px;
}

.zh__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    padding: 7px 15px;
    border: 1px solid rgba(0,193,232,0.28);
    border-radius: 999px;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.zh__eyebrow:hover { border-color: rgba(0,193,232,0.6); background: rgba(0,193,232,0.07); }
.zh__eyebrow b { font-weight: 500; color: rgba(255,255,255,0.6); }

.zh h1 {
    font-family: var(--display);
    font-size: clamp(2.15rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.032em;
    text-wrap: balance;
    max-width: 17ch;
    margin: 22px auto 0;
}
.zh h1 em { font-style: normal; color: var(--cyan); }
.zh__sub {
    max-width: 54ch;
    margin: 20px auto 0;
    font-size: 1.05rem;
    line-height: 1.62;
    color: rgba(255,255,255,0.6);
    text-wrap: pretty;
}

/* ── El comprobante: dos mitades y una línea de corte ──────────── */
.zt {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    max-width: 780px;
    margin: 42px auto 0;
    text-align: left;
    background: var(--paper-raised);
    color: var(--ink);
    border-radius: 20px;
    box-shadow: 0 30px 70px -30px rgba(0,8,18,0.75);
}
.zt__cut {
    position: relative;
    margin: 26px 0;
    background-image: linear-gradient(180deg, var(--rule) 52%, transparent 0);
    background-size: 1px 9px;
    background-repeat: repeat-y;
}
/* Las muescas del troquel, del color del fondo de atrás. */
.zt__cut::before,
.zt__cut::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    border-radius: 50%;
    background: var(--navy-deep);
}
.zt__cut::before { top: -36px; }
.zt__cut::after { bottom: -36px; }

.zt__side { padding: 30px 32px; }
.zt__side--pro { background: #FAFCFD; border-radius: 0 20px 20px 0; }

.zt__label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.zt__side--pro .zt__label { color: var(--cyan-ink); }

.zt__price {
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
    font-size: 2.05rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
    margin-top: 10px;
}
.zt__price span { font-size: 0.8rem; color: var(--ink-faint); letter-spacing: 0; }
.zt__price s {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-faint);
    text-decoration-thickness: 1px;
}
.zt__period {
    font-size: 0.86rem;
    color: var(--ink-soft);
    margin-top: 5px;
}
.zt__list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.zt__list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--ink-soft);
}
.zt__list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.52em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--rule);
}
.zt__side--pro .zt__list li::before { background: var(--cyan); }

.zt__btn {
    display: block;
    width: 100%;
    margin-top: 22px;
    padding: 14px 20px;
    border: 0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.zt__btn:hover { transform: translateY(-1px); }
.zt__btn--trial { background: var(--navy); color: #fff; }
.zt__btn--trial:hover { background: #003057; }
.zt__btn--buy {
    background: var(--cyan);
    color: var(--navy-deep);
    box-shadow: 0 6px 20px -6px rgba(0,193,232,0.6);
}
.zt__btn--buy:hover { background: #24CDF0; }
.zt__note {
    margin-top: 10px;
    font-size: 0.76rem;
    color: var(--ink-faint);
    text-align: center;
}

/* Fila de prueba social bajo el comprobante */
.zh__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 26px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}
.zh__proof strong { color: rgba(255,255,255,0.82); font-weight: 600; }
.zh__stars { color: var(--cyan); letter-spacing: 2px; }
.zh__proof a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,0.25);
}
.zh__proof a:hover { color: rgba(255,255,255,0.85); }

/* Barra de compatibilidad: una línea fina, no cinco logos sueltos */
.zh__compat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* Entrada escalonada: un momento coreografiado, no efectos sueltos */
@media (prefers-reduced-motion: no-preference) {
    .zh__eyebrow, .zh h1, .zh__sub, .zt, .zh__proof, .zh__compat {
        animation: zhIn 0.62s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
    }
    .zh h1      { animation-delay: 0.06s; }
    .zh__sub    { animation-delay: 0.12s; }
    .zt         { animation-delay: 0.18s; }
    .zh__proof  { animation-delay: 0.26s; }
    .zh__compat { animation-delay: 0.32s; }
}
@keyframes zhIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
    .zh__body { padding: 40px 20px 60px; }
    .zt { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
    .zt__cut {
        margin: 0 26px;
        height: 1px;
        background-image: linear-gradient(90deg, var(--rule) 52%, transparent 0);
        background-size: 9px 1px;
        background-repeat: repeat-x;
    }
    .zt__cut::before { top: 50%; left: -36px; margin-top: -10px; }
    .zt__cut::after  { top: 50%; left: auto; right: -36px; margin-top: -10px; margin-left: 0; }
    .zt__side--pro { border-radius: 0 0 20px 20px; }
    .zh__proof { font-size: 0.82rem; gap: 6px 14px; }
}

/* ── Secciones del cuerpo, sobre papel ─────────────────────────── */
.zs { padding: 76px 0; }
.zs--tight { padding: 52px 0; }
.zs--raised { background: var(--paper-raised); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.zs__eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan-ink);
}
.zs__title {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.14;
    text-wrap: balance;
    margin-top: 10px;
    color: var(--ink);
}
.zs__lead {
    max-width: 58ch;
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.6;
}
.zs__head { margin-bottom: 38px; }
.zs__head--center { text-align: center; }
.zs__head--center .zs__lead { margin-left: auto; margin-right: auto; }

/* Reseñas: el bloque lo genera scripts/build-reviews.js (mismo markup que
   /plugin/), así que la jerarquía se arma acá con CSS: la primera reseña
   ocupa dos columnas sobre navy y las demás quedan en fichas de papel. */
.home .reviews { padding: 76px 0; }
.home .reviews__title {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-align: center;
}
.home .reviews__subtitle { text-align: center; color: var(--ink-soft); margin-top: 10px; }
.home .reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 34px;
}
.home .reviews__stars { color: var(--cyan-ink); letter-spacing: 3px; }
.home .reviews__avg {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.home .reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.home .review-item {
    background: var(--paper-raised);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 20px 22px;
}
.home .review-item__stars { color: var(--cyan-ink); letter-spacing: 2px; font-size: 0.82rem; }
.home .review-item__comment {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-soft);
    text-wrap: pretty;
}
.home .review-item__author { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.home .review-item__avatar {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}
.home .review-item__name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.home .review-item__site { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-faint); }

/* La reseña más completa hace de cita: dos columnas, sobre navy. */
.home .review-item:first-child {
    grid-column: span 2;
    background: var(--navy);
    border-color: var(--navy);
    padding: 32px 34px 28px;
}
.home .review-item:first-child .review-item__stars { color: var(--cyan); font-size: 0.95rem; }
.home .review-item:first-child .review-item__comment {
    font-family: var(--display);
    font-size: 1.32rem;
    font-weight: 600;
    line-height: 1.36;
    letter-spacing: -0.02em;
    color: #fff;
    margin-top: 14px;
}
.home .review-item:first-child .review-item__avatar { background: var(--cyan); color: var(--navy-deep); }
.home .review-item:first-child .review-item__name { color: #fff; }
.home .review-item:first-child .review-item__site { color: rgba(255,255,255,0.5); }

/* Qué hace: cuatro con peso y el resto en lista */
.zf { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.zf__card {
    background: var(--paper-raised);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 26px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.zf__card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.zf__num {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
}
.zf__card h3 {
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 10px 0 8px;
    color: var(--ink);
}
.zf__card p { font-size: 0.93rem; line-height: 1.55; color: var(--ink-soft); }
.zf__card--star { border-color: rgba(0,193,232,0.5); box-shadow: 0 0 0 1px rgba(0,193,232,0.12); }
.zf__tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,193,232,0.12);
    color: var(--cyan-ink);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.zf__rest {
    list-style: none;
    margin: 26px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 28px;
}
.zf__rest li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.45;
}
.zf__rest li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--rule);
}

/* Conmutador de plataforma en el hero: los dos comprobantes, uno a la vista */
.zpf {
    display: inline-flex;
    gap: 4px;
    margin: 30px auto 0;
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
}
.zpf__tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.zpf__tab:hover { color: #fff; }
.zpf__tab.active { background: var(--cyan); color: var(--navy-deep); }
.zpf__tab:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.zpf ~ .zt { margin-top: 24px; }
.zt[hidden], .zh__compat[hidden], .zh__eyebrow[hidden] { display: none; }

/* Elegí tu plataforma: una tarjeta por producto, con su precio */
.zpl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.zpl__card {
    display: block;
    padding: 26px 28px;
    background: var(--paper-raised);
    border: 1px solid var(--rule);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.zpl__card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.zpl__card h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 8px 0 8px;
}
.zpl__card p { font-size: 0.93rem; line-height: 1.55; color: var(--ink-soft); }
.zpl__price { font-family: var(--mono); font-size: 0.76rem; color: var(--ink-faint); margin-top: 10px; }
.zpl__more { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--cyan-ink); font-size: 0.92rem; }
@media (max-width: 860px) { .zpl { grid-template-columns: 1fr; } }

/* Franja de Shopify */
.zsh {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
    padding: 24px 28px;
    background: var(--paper-raised);
    border: 1px solid var(--rule);
    border-left: 3px solid #95BF47;
    border-radius: 14px;
}
.zsh__txt { flex: 1; }
.zsh__txt strong {
    display: block;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.zsh__txt p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.zsh__cta {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.zsh__cta:hover { border-color: var(--ink); background: var(--paper); }

/* Blog en fila fina */
.zb { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.zb__item {
    display: block;
    padding: 20px 22px;
    background: var(--paper-raised);
    border: 1px solid var(--rule);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.25s ease;
}
.zb__item:hover { border-color: var(--ink-faint); }
.zb__kicker {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--cyan-ink);
}
.zb__item h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin: 8px 0 0;
    letter-spacing: -0.01em;
}
.zb__all {
    display: block;
    text-align: center;
    margin-top: 26px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cyan-ink);
    text-decoration: none;
}
.zb__all:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
    .zr { grid-template-columns: 1fr; }
    .zf { grid-template-columns: 1fr; }
    .zf__rest { grid-template-columns: repeat(2, 1fr); }
    .zb { grid-template-columns: 1fr; }
    .zsh { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 520px) {
    .zf__rest { grid-template-columns: 1fr; }
    .zs { padding: 56px 0; }
}

/* ── Banda navy del medio: la captura y el cotizador ───────────── */
.znavy {
    background: var(--navy-deep);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.znavy .features { padding: 72px 0 80px; }
.znavy .ss { padding: 72px 0 40px; background: transparent; }
.znavy .ss__title,
.znavy .features__title {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
    letter-spacing: -0.025em;
    color: #fff;
}

/* Dudas antes de comprar, ya sobre papel */
.home .prefaq { padding: 66px 0 76px; }
.home .prefaq__title {
    font-family: var(--display);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* El JS del descuento inyecta el precio tachado adentro de #price-display. */
.zt__price .discount-original-price {
    font-family: var(--mono);
    font-size: 1.05rem;
    margin-right: 10px;
}
.zt .discount-row { margin: 20px 0 0; }
.zt .discount-msg { margin: 8px 0 0; font-size: 0.8rem; }
.zt .discount-row input, .zt .discount-row button { border-color: var(--rule); }

/* Ajustes finos tras ver la página armada */
.zt__side { display: flex; flex-direction: column; }
.zt__side .zt__btn { margin-top: auto; }        /* los dos CTA alineados abajo */
.zt__side .zt__list { margin-bottom: 22px; }
.zf__num .zf__tag { margin: 0 0 0 10px; vertical-align: 2px; }
.home .reviews__subtitle { margin-top: 8px; }
.home .reviews__summary { margin: 14px 0 30px; }
.home .reviews__grid { align-items: start; }
.zt .discount-row input { min-width: 0; }
@media (max-width: 900px) {
    .home .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .home .review-item:first-child { grid-column: span 2; }
}
@media (max-width: 620px) {
    .home .reviews__grid { grid-template-columns: 1fr; }
    .home .review-item:first-child { grid-column: span 1; padding: 26px 24px 24px; }
    .home .review-item:first-child .review-item__comment { font-size: 1.12rem; }
}

/* La display también en las cabeceras y titulares del resto del sitio. */
.page-header h1, .hero h1,
.features__title, .pricing__title, .reviews__title, .ss__title,
.legal h1, .legal h2, .blog-hero h1, .post-hero h1 {
    font-family: var(--display);
    letter-spacing: -0.025em;
}

/* En mobile las siete reseñas apiladas eran 2.274 px de scroll. Pasan a una
   tira horizontal con scroll-snap: siguen todas en el HTML (que es lo que leen
   los buscadores) pero ocupan una fila. */
@media (max-width: 620px) {
    .home .reviews__grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
        margin: 0 -20px;
        padding: 0 20px 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .home .reviews__grid::-webkit-scrollbar { display: none; }
    .home .review-item {
        flex: 0 0 82%;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
    }
    .home .review-item__author { margin-top: auto; padding-top: 14px; }
    .home .review-item:first-child { flex-basis: 88%; }
}

/* ── "Así se ve" + "Dudas": un bloque, dos columnas ─────────────────
   Eran dos secciones seguidas que pedían lo mismo (mirar y decidir), así que
   van juntas. El carrusel sale de la banda navy y se viste de papel: las
   capturas son de un panel de WordPress, que es claro. */
.zx {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: start;
}
.zx__col .zs__title { margin-bottom: 26px; }
.zx__shots { max-width: 100%; }

.zx .ss__wrap { max-width: 100%; gap: 10px; }
.zx .ss__frame {
    max-width: 100%;
    background: var(--paper);
    border-color: var(--rule);
    box-shadow: 0 12px 30px -18px rgba(0,20,40,0.45);
}
.zx .ss__arr {
    background: var(--paper-raised);
    border-color: var(--rule);
    color: var(--ink-soft);
}
.zx .ss__arr:hover { background: var(--paper); border-color: var(--ink-faint); color: var(--ink); }
.zx .ss__label { color: var(--ink-soft); margin-top: 16px; }
.zx .ss__label strong { color: var(--ink); }
.zx .ss__dots { margin-top: 14px; }
.zx .ss__dot { background: var(--rule); }
.zx .ss__dot.active { background: var(--navy); box-shadow: none; }

.zx .prefaq__list { gap: 10px; }
.zx .prefaq__item { border-radius: 12px; }
.zx .prefaq__q { font-size: 0.94rem; }

@media (max-width: 900px) {
    .zx { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 620px) {
    /* Al lado de la captura, las flechas se comían 90 de 350 px. Van encima. */
    .zx .ss__wrap { position: relative; gap: 0; }
    .zx .ss__arr {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 36px;
        height: 36px;
        margin-top: -18px;
        font-size: 1.25rem;
        background: rgba(255,255,255,0.92);
        border-color: var(--rule);
        box-shadow: 0 2px 10px rgba(0,20,40,0.18);
    }
    .zx .ss__arr--l { left: 6px; }
    .zx .ss__arr--r { right: 6px; }
}
