/* HerramientaSEO — CSS público unificado (base + home + contenido).
 * Fuente única: no cargar style.css / home.css / content.css a la vez.
 * Generado/mantenido como hoja canónica de la web marketing.
 */


/* ========== BASE: style.css ========== */

/* HerramientaSEO — sistema base compartido */

:root {
    --blue: #0010ef;
    --blue-deep: #0008b8;
    --blue-soft: #e8ebff;
    --ink: #070b14;
    --ink-soft: #121a2c;
    --slate: #2f3a4f;
    --muted: #52607a;
    --line: #e4e8f0;
    --paper: #f4f6fa;
    --white: #ffffff;
    --rank: #00b57a;
    --lime: #ade884;
    --warn: #c98900;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 24px 60px rgba(7, 11, 20, 0.12);
    --shadow-sm: 0 6px 20px rgba(7, 11, 20, 0.07);
    --font-display: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "IBM Plex Sans", system-ui, sans-serif;
    --header-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container-max: 1380px;
    --content-pad: 3rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    font-size: 1.0625rem;
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--blue);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 9999;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(1380px, calc(100% - 3rem));
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    letter-spacing: -0.015em;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid transparent;
    padding: 0.95rem 1.45rem;
    cursor: pointer;
    transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 16, 239, 0.28);
}

.btn-primary:hover {
    background: var(--blue-deep);
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 16, 239, 0.36);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: #c8cfde;
    color: var(--ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding-inline: 0.9rem;
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-lg,
.btn-large {
    padding: 1rem 1.6rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.text-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-bottom-color: var(--blue);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(7, 11, 20, 0.03);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .site-header {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(16px) saturate(1.2);
        -webkit-backdrop-filter: blur(16px) saturate(1.2);
    }
}

.nav-bar {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    display: inline-flex;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    line-height: 0;
}

.brand-mark img,
.brand-mark svg {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.25rem;
    list-style: none;
}

.nav-link,
.nav-sub-btn {
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink-soft);
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0.4rem 0;
}

.nav-link:hover,
.nav-sub-btn:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.has-sub {
    position: relative;
}

.nav-sub {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s var(--ease);
}

.has-sub:hover .nav-sub,
.has-sub:focus-within .nav-sub,
.has-sub.is-open .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.nav-sub a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
}

.nav-sub a:hover {
    background: var(--paper);
    color: var(--blue);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 1.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer {
    color: #fff;
}

.brand-footer .brand-mark,
.brand-footer .brand-mark svg {
    width: 32px;
    height: 32px;
}

.brand-footer .brand-name {
    color: #fff;
}

.footer-tagline {
    margin-top: 1rem;
    max-width: 28ch;
    font-size: 0.98rem;
}

.footer-company {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Feature pages (caracteristica.php) */
.feature-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.feature-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.feature-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 18, 32, 0.95), rgba(0, 16, 239, 0.45));
}

.feature-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.feature-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.feature-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.feature-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-hero-description {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
    max-width: 48ch;
}

.feature-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-hero-buttons .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.feature-hero-image img {
    margin-inline: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.feature-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.feature-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.feature-breadcrumb a:hover {
    color: #fff;
}

.feature-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime, #ade884);
    margin-bottom: 0.85rem;
}

.feature-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    list-style: none;
    margin-top: 1.35rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.feature-trust li {
    position: relative;
    padding-left: 1rem;
}

.feature-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime, #ade884);
}

.feature-shot {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.feature-shot-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-shot-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.feature-shot-chrome em {
    margin-left: 0.5rem;
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.feature-shot img {
    display: block;
    width: 100%;
    height: auto;
    filter: none;
}

.section-header-left {
    text-align: left;
    max-width: 40rem;
}

.feature-detail-card-accent {
    background:
        radial-gradient(420px 180px at 100% 0%, rgba(0, 16, 239, 0.08), transparent 60%),
        var(--white);
}

.feature-related-section {
    padding: 4.5rem 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.feature-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.feature-related-card {
    display: block;
    padding: 1.4rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-related-card:hover {
    border-color: rgba(0, 16, 239, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(7, 11, 20, 0.08);
}

.feature-related-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(0, 16, 239, 0.08);
    color: var(--blue);
    margin-bottom: 0.9rem;
}

.feature-related-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.feature-related-card p {
    color: var(--slate);
    font-size: 0.94rem;
    line-height: 1.45;
}

.feature-cta .cta-brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lime, #ade884);
    margin-bottom: 0.75rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.feature-detail-section,
.how-it-works-section {
    padding: 4.5rem 0;
}

.feature-detail-section {
    background: var(--paper);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-detail-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.feature-detail-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.feature-detail-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.feature-detail-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--slate);
}

.feature-detail-list li i {
    color: var(--blue);
    margin-top: 0.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.section-subtitle {
    color: var(--slate);
    margin-top: 0.65rem;
    font-size: 1.05rem;
}

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

.step-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--white);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.step-item h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.step-item p {
    color: var(--slate);
    font-size: 0.98rem;
}

.cta-section {
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 16, 239, 0.18), transparent 50%),
        var(--ink);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .nav-panel {
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 1rem;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: 0.28s var(--ease);
        overflow-y: auto;
        max-height: calc(100svh - var(--header-h));
        box-shadow: 0 18px 40px rgba(7, 11, 20, 0.12);
    }

    .nav-panel.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        padding-left: 0.5rem;
    }

    .has-sub.is-open .nav-sub {
        display: grid;
    }

    .nav-actions {
        flex-direction: column;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .footer-grid,
    .feature-hero .container,
    .feature-detail-grid,
    .how-it-works-steps,
    .feature-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.5rem, 1380px);
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* —— Layout amplio 1380 + acabado moderno —— */
:root {
    --container-max: 1380px;
    --content-pad: 3rem;
}

.container {
    width: min(var(--container-max), calc(100% - var(--content-pad)));
}

.site-header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(7, 11, 20, 0.04);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .site-header {
        backdrop-filter: saturate(1.2) blur(12px);
        -webkit-backdrop-filter: saturate(1.2) blur(12px);
        background: rgba(255, 255, 255, 0.96);
    }
}

.site-nav .nav-bar {
    min-height: calc(var(--header-h) + 4px);
}

.brand-name {
    letter-spacing: -0.03em;
}

.nav-list > li > .nav-link,
.nav-sub-btn {
    font-weight: 600;
}

.nav-sub {
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(10, 15, 28, 0.12);
    border: 1px solid var(--line);
    padding: 0.5rem;
}

.nav-sub a {
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
}

.nav-sub a:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

.site-footer {
    background:
        radial-gradient(900px 320px at 10% -10%, rgba(0, 16, 239, 0.22), transparent 55%),
        linear-gradient(180deg, #0a0f1c 0%, #070b14 100%);
}

.footer-grid {
    gap: 2.5rem 3rem;
}

.feature-hero {
    min-height: clamp(420px, 62vh, 640px);
}

.feature-hero .container {
    padding-block: 4.5rem 3.5rem;
}

.feature-detail-card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.cta-section {
    background:
        radial-gradient(700px 280px at 80% 20%, rgba(0, 16, 239, 0.35), transparent 60%),
        linear-gradient(120deg, #050812, #0010ef 140%);
}

@media (min-width: 1200px) {
    .feature-hero .container {
        gap: 3.5rem;
    }
}

@media (max-width: 960px) {
    :root {
        --content-pad: 2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --content-pad: 1.5rem;
    }
}

/* Feature landings — alineado visión v2 */
.feature-hero {
    padding: 5.5rem 0 4.5rem;
}

.feature-hero-icon {
    border-radius: 10px;
    background: rgba(0, 16, 239, 0.85);
}

.feature-detail-card {
    border-radius: 12px;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--line);
}

.feature-detail-list li {
    gap: 0.75rem;
}

.how-it-works-steps .step-item {
    border-radius: 12px;
}

.cta-content h2 {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
}

.btn-sm {
    padding: 0.55rem 0.95rem;
    font-size: 0.875rem;
}

/* Footer CTA strip */
.footer-cta {
    background:
        radial-gradient(500px 200px at 90% 50%, rgba(0, 16, 239, 0.45), transparent 60%),
        #050812;
    color: #fff;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-cta-brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lime);
    margin-bottom: 0.2rem;
}

.footer-cta-copy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 11, 20, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(110%);
    transition: transform 0.35s var(--ease);
}

.sticky-cta.is-visible {
    transform: none;
}

.sticky-cta-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: #fff;
    position: relative;
    padding-right: 1.5rem;
}

.sticky-cta-inner p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.sticky-cta-inner strong {
    color: var(--lime);
}

.sticky-cta-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.sticky-cta-close:hover {
    color: #fff;
}

body.has-sticky-cta {
    padding-bottom: 4.5rem;
}

/* Cookie bar */
.cookie-bar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    max-width: 420px;
}

.cookie-bar-inner {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(7, 11, 20, 0.18);
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.cookie-bar-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.45;
}

.cookie-bar-inner a {
    color: var(--blue);
    font-weight: 600;
}

body.has-sticky-cta .cookie-bar {
    bottom: 5.25rem;
}

@media (max-width: 720px) {
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta-inner {
        justify-content: space-between;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: none;
    }
}

.feature-hero-icon svg,
.feature-related-icon svg,
.feature-detail-list svg {
    display: block;
    flex-shrink: 0;
}

.feature-detail-list li svg {
    margin-top: 0.15rem;
    color: var(--blue);
}

.back-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 55;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(7, 11, 20, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-2px);
    color: var(--blue);
}

body.has-sticky-cta .back-top {
    bottom: 5rem;
}

@media print {
    .site-header,
    .site-footer,
    .footer-cta,
    .sticky-cta,
    .cookie-bar,
    .back-top,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .prose a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.85em;
        color: #555;
    }
}

.footer-company a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-company a:hover {
    color: #fff;
}

body.nav-open {
    overflow: hidden;
}


/* ========== HOME: home.css ========== */

/* HerramientaSEO — landing pro */

.page-home {
    --hero-ink: #050812;
}

.page-home::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-home > main,
.page-home > .footer-cta,
.page-home > .site-footer {
    position: relative;
    z-index: 1;
}

.page-home > .site-header {
    z-index: 1000;
}

.page-home > .sticky-cta {
    z-index: 60;
}

.page-home > .cookie-bar {
    z-index: 70;
}

.page-home > .back-top {
    z-index: 55;
}

.page-home h1,
.page-home h2,
.page-home h3 {
    font-family: var(--font-display);
    letter-spacing: -0.045em;
    line-height: 1.12;
    font-optical-sizing: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.section-head {
    max-width: 38rem;
    margin-bottom: 3.25rem;
}

.section-head-wide {
    max-width: 46rem;
}

.section-head-center {
    margin-inline: auto;
    text-align: center;
}

.section-head-center .section-lead {
    margin-inline: auto;
}

.section-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    margin-bottom: 0.95rem;
    font-weight: 700;
}

.section-lead {
    color: var(--slate);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 46ch;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Buttons in dark contexts */
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.play-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

/* Header polish on home */
.page-home .brand-name {
    font-weight: 700;
    letter-spacing: -0.04em;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hero-ink);
    color: #fff;
}

.hero-plane {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 85% 40%, rgba(0, 16, 239, 0.55), transparent 62%),
        radial-gradient(ellipse 35% 35% at 8% 85%, rgba(0, 181, 122, 0.14), transparent 55%),
        radial-gradient(ellipse 40% 30% at 40% 0%, rgba(90, 110, 255, 0.18), transparent 50%),
        linear-gradient(165deg, #050812 0%, #0b1430 45%, #050812 100%);
    pointer-events: none;
}

.hero-plane::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 75% 45%, #000 10%, transparent 70%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding-block: 4rem 4.5rem;
    width: min(var(--container-max, 1380px), calc(100% - var(--content-pad, 3rem)));
}

.hero-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.35rem;
    color: #fff;
    background: linear-gradient(90deg, #fff 40%, rgba(170, 185, 255, 0.95));
    -webkit-background-clip: text;
    background-clip: text;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-brand {
        color: transparent;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5.2vw, 4.1rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    max-width: 11.5ch;
}

.hero-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 38ch;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero .btn-primary {
    box-shadow: 0 14px 40px rgba(0, 16, 239, 0.5);
}

.hero-trust {
    margin-top: 1.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

.hero-visual {
    position: relative;
    margin-right: calc(-1 * max(0px, (100vw - 1220px) / 2 + 0.5rem));
}

.hero-stage {
    position: relative;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    box-shadow:
        -30px 40px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    background: #0a1020;
    animation: stageIn 1.15s var(--ease) both;
}

.hero-chrome,
.demo-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: rgba(8, 12, 24, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-chrome span,
.demo-chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.hero-chrome span:nth-child(1) { background: #ff5f57; }
.hero-chrome span:nth-child(2) { background: #febc2e; }
.hero-chrome span:nth-child(3) { background: #28c840; }

.hero-chrome em,
.demo-chrome em {
    margin-left: 0.75rem;
    font-style: normal;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.hero-media {
    width: 100%;
    min-height: min(58vh, 500px);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: left center;
}

.hero-copy {
    animation: copyIn 0.95s var(--ease) 0.08s both;
}

@keyframes stageIn {
    from { opacity: 0; transform: translateX(40px) scale(1.03); }
    to { opacity: 1; transform: none; }
}

@keyframes copyIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 2.75rem 0;
}

.proof-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

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

.proof-row blockquote,
.quote-grid blockquote {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.35rem;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.proof-row blockquote:hover,
.quote-grid blockquote:hover {
    border-color: #c9d0e2;
    box-shadow: var(--shadow-sm);
}

.proof-row p,
.quote-grid p {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 1.15rem;
}

.proof-row footer,
.quote-grid footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--blue), #3d4dff);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.proof-row footer strong,
.quote-grid footer strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink);
}

.proof-row footer small,
.quote-grid footer small {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
}

/* ========== VALUE ========== */
.value {
    padding: 6rem 0;
    background:
        linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.value-block {
    padding: 2rem 1.75rem 0.5rem 0;
    border-right: 1px solid var(--line);
}

.value-block:last-child {
    border-right: 0;
    padding-right: 0;
}

.value-block:not(:first-child) {
    padding-left: 1.75rem;
}

.value-index {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--blue);
    letter-spacing: 0.04em;
    margin-bottom: 1.1rem;
}

.value-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.value-block p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 28ch;
}

/* ========== DEMO ========== */
.demo {
    padding: 5.5rem 0;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 70%;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 16, 239, 0.35), transparent 70%);
    pointer-events: none;
}

.demo .container {
    position: relative;
    z-index: 1;
}

.demo .eyebrow {
    color: #9eb0ff;
}

.demo .section-lead {
    color: rgba(255, 255, 255, 0.6);
}

.demo-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    background: #000;
}

.demo-chrome {
    background: #121826;
}

.demo-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

/* ========== MODULES ========== */
.modules {
    padding: 6rem 0 5rem;
}

.module-list {
    display: grid;
    gap: 4rem;
}

.module {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.module:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.module:nth-child(even) .module-media {
    order: 2;
}

.module-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    background-color: #dfe4f5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 15, 28, 0.06);
}

.module-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(0, 16, 239, 0.12));
    pointer-events: none;
    z-index: 0;
}

.module-media::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(10, 15, 28, 0.08);
    pointer-events: none;
    z-index: 0;
}

.module-media > * {
    position: relative;
    z-index: 1;
}

.module-media img {
    max-width: min(440px, 100%);
    filter: drop-shadow(0 22px 40px rgba(10, 15, 28, 0.28));
    transition: transform 0.6s var(--ease);
}

.module:hover .module-media img {
    transform: translateY(-8px) scale(1.02);
}

.module-index {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--blue);
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
}

.module-body h3 {
    font-size: clamp(1.55rem, 2.2vw, 1.9rem);
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.module-body p {
    color: var(--slate);
    margin-bottom: 1.25rem;
    max-width: 40ch;
    line-height: 1.65;
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.text-link span {
    transition: transform 0.25s var(--ease);
}

.text-link:hover span {
    transform: translateX(4px);
}

.extras {
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.extra {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.extra:hover {
    border-color: #c5cce0;
    transform: translateY(-3px);
}

.extra-icon {
    display: inline-grid;
    place-items: center;
    min-width: 2rem;
    height: 2rem;
    padding-inline: 0.45rem;
    border-radius: 8px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.extra h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.extra p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ========== FLOW ========== */
.flow {
    padding: 5.5rem 0;
    background: var(--paper);
}

.flow-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.flow-steps li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.flow-steps li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #5a6dff);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.flow-steps li:hover::after {
    opacity: 1;
}

.step-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.flow-steps h3 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.flow-steps p {
    color: var(--slate);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ========== COMPARE ========== */
.compare {
    padding: 5.5rem 0;
}

.compare-table {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
}

.compare-row > div {
    padding: 1.05rem 1.25rem;
    font-size: 0.97rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.compare-row > div:last-child {
    border-right: 0;
}

.compare-row:last-child > div {
    border-bottom: 0;
}

.compare-head {
    background: var(--ink);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 0.95rem;
}

.compare-head > div {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.compare-row:not(.compare-head) > div:first-child {
    font-weight: 600;
    background: #fafbfe;
    color: var(--ink);
}

.ok {
    color: #07855c;
    font-weight: 700;
}

.no {
    color: var(--muted);
}

.mid {
    color: var(--warn);
    font-weight: 600;
}

/* ========== QUOTES ========== */
.quotes {
    padding: 5.5rem 0;
    background:
        radial-gradient(ellipse at 90% 0%, rgba(0, 16, 239, 0.05), transparent 40%),
        var(--paper);
}

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

.quote-grid blockquote {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

/* ========== PRICING ========== */
.pricing {
    padding: 6rem 0 5rem;
    background: #fff;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
    max-width: 1200px;
    margin-inline: auto;
}

.price-plan {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem 1.6rem 1.6rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.price-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.price-plan.is-featured {
    border-color: transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(160deg, var(--blue), #6b7bff) border-box;
    border: 2px solid transparent;
    box-shadow: 0 24px 60px rgba(0, 16, 239, 0.16);
    transform: scale(1.03);
    z-index: 1;
}

.price-plan.is-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-tag {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.price-plan h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.price-was {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.88rem;
}

.price {
    margin: 0.5rem 0 1.4rem;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.price span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.05em;
    line-height: 1;
}

.price small {
    color: var(--muted);
    font-size: 0.95rem;
}

.price-plan ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.price-plan li {
    font-size: 0.95rem;
    color: var(--slate);
    padding-left: 1.5rem;
    position: relative;
}

.price-plan li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: rgba(0, 181, 122, 0.15);
    box-shadow: inset 0 0 0 3.5px var(--rank);
}

.price-plan li.muted {
    color: var(--muted);
}

.price-plan li.muted::before {
    background: var(--line);
    box-shadow: inset 0 0 0 3.5px #b8c0d0;
}

.price-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

/* ========== FAQ ========== */
.faq {
    padding: 5.5rem 0;
    background: var(--paper);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 0.6rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 1.2rem;
    transition: border-color 0.25s var(--ease);
}

.faq-item[open] {
    border-color: #b8c2db;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    padding: 1.05rem 0;
    list-style: none;
    font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    color: var(--slate);
    padding-bottom: 1.1rem;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 54ch;
}

/* ========== CLOSING ========== */
.closing {
    padding: 6.5rem 0;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(0, 16, 239, 0.45), transparent 55%),
        var(--hero-ink);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    pointer-events: none;
}

.closing-inner {
    position: relative;
    z-index: 1;
}

.closing .eyebrow {
    color: #9eb0ff;
    justify-content: center;
}

.closing-inner h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    max-width: 16ch;
    margin: 0 auto 1rem;
    font-weight: 800;
}

.closing-inner > p {
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.closing .hero-cta {
    justify-content: center;
}

/* Resources hub on home */
.resources {
    padding: 5.5rem 0;
    background: var(--paper);
}

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

.resource-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    text-decoration: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #b8c2db;
}

.resource-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.55rem;
    color: var(--ink);
}

.resource-card p {
    color: var(--slate);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-block: 3rem 0;
        width: min(100% - 1.5rem, 1220px);
    }

    .hero-title {
        max-width: none;
    }

    .hero-visual {
        margin-right: 0;
    }

    .hero-stage {
        border-radius: 16px 16px 0 0;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .proof-row,
    .value-grid,
    .extras,
    .flow-steps,
    .quote-grid,
    .price-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .value-block,
    .value-block:not(:first-child) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1.5rem 0;
    }

    .value-block:last-child {
        border-bottom: 0;
    }

    .module,
    .module:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .module:nth-child(even) .module-media {
        order: 0;
    }

    .module-media {
        min-height: 260px;
    }

    .price-plan.is-featured {
        transform: none;
    }

    .price-plan.is-featured:hover {
        transform: translateY(-4px);
    }

    .compare-row {
        grid-template-columns: 1fr;
    }

    .compare-row > div {
        border-right: 0;
    }

    .compare-head {
        display: none;
    }

    .compare-row:not(.compare-head) > div:nth-child(2)::before {
        content: "HerramientaSEO · ";
        font-weight: 700;
        color: var(--ink);
    }

    .compare-row:not(.compare-head) > div:nth-child(3)::before {
        content: "Suites premium · ";
        font-weight: 700;
        color: var(--ink);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero-copy,
    .hero-stage,
    .module-media img {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* —— Home en viewport ancho (hasta 1380) —— */
@media (min-width: 1280px) {
    .section-head-wide {
        max-width: 52rem;
    }

    .hero-copy h1,
    .hero-title {
        font-size: clamp(2.85rem, 4.4vw, 4.35rem);
        max-width: 12.5ch;
    }

    .hero-lead {
        max-width: 42ch;
        font-size: 1.2rem;
    }

    .hero-layout {
        padding-block: 4.5rem 5rem;
    }
}

.page-home .site-header {
    border-bottom: 1px solid transparent;
}

.page-home .site-header.is-scrolled {
    border-bottom-color: rgba(226, 230, 239, 0.85);
    box-shadow: 0 8px 28px rgba(10, 15, 28, 0.06);
}

/* ==============================================
   VISIÓN v2 — serio, potente, editorial SaaS
================================================= */

.page-home {
    --hero-ink: #04060f;
}

/* Header fijo sobre el hero (antes: sticky + texto blanco sobre fondo claro = ilegible) */
.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.25s var(--ease);
}

.page-home .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(4, 6, 15, 0.72) 0%, rgba(4, 6, 15, 0.28) 70%, transparent 100%);
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.page-home .site-header:not(.is-scrolled) .brand-name,
.page-home .site-header:not(.is-scrolled) .nav-link,
.page-home .site-header:not(.is-scrolled) .nav-sub-btn,
.page-home .site-header:not(.is-scrolled) .btn-ghost {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.page-home .site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

.page-home .site-header:not(.is-scrolled) .btn-primary {
    box-shadow: 0 10px 28px rgba(0, 16, 239, 0.45);
}

.page-home .site-header.is-scrolled {
    background: #fff;
    border-bottom-color: rgba(228, 232, 240, 0.95);
    box-shadow: 0 10px 30px rgba(7, 11, 20, 0.08);
    backdrop-filter: blur(16px) saturate(1.2);
}

.page-home .site-header.is-scrolled .brand-name {
    color: var(--ink);
    text-shadow: none;
}

.page-home .site-header.is-scrolled .nav-link,
.page-home .site-header.is-scrolled .nav-sub-btn,
.page-home .site-header.is-scrolled .btn-ghost {
    color: var(--slate);
    text-shadow: none;
}

.page-home .site-header.is-scrolled .nav-toggle span {
    background: var(--ink);
}

/* Hero a pantalla completa bajo el header fijo */
.hero {
    min-height: 100svh;
    padding-top: var(--header-h);
}

.hero-plane {
    background:
        radial-gradient(ellipse 50% 55% at 92% 42%, rgba(0, 16, 239, 0.62), transparent 58%),
        radial-gradient(ellipse 28% 32% at 6% 88%, rgba(173, 232, 132, 0.12), transparent 55%),
        linear-gradient(168deg, #03050c 0%, #0a1230 42%, #050812 100%);
}

.hero-glow {
    position: absolute;
    width: min(52vw, 640px);
    height: min(52vw, 640px);
    right: -8%;
    top: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 16, 239, 0.35), transparent 68%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 7s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { opacity: 0.55; transform: scale(1); }
    to { opacity: 0.95; transform: scale(1.08); }
}

.hero-brand {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    margin-bottom: 1.1rem;
    letter-spacing: -0.05em;
}

.hero-title {
    font-size: clamp(2.65rem, 5.6vw, 4.55rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.02;
    max-width: 13ch;
    margin-bottom: 1.35rem;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.1rem;
}

.hero-trust-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.35rem;
    margin-top: 1.5rem;
    padding: 0;
}

.hero-trust-list li {
    position: relative;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 1rem;
}

.hero-trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ade884;
}

.hero-visual {
    margin-right: calc(-1 * max(0px, (100vw - var(--container-max, 1380px)) / 2 + 1rem));
}

.hero-stage {
    border-radius: 14px 0 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    box-shadow:
        -40px 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero-media {
    min-height: min(62vh, 560px);
}

/* Signal bar */
.signal-bar {
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-block: 1.35rem;
}

.signal-bar-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-bar-grid > div:last-child {
    border-right: 0;
}

.signal-bar-grid strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.signal-bar-grid span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Social proof más editorial */
.social-proof {
    padding: 3.5rem 0;
    background: #fff;
}

.proof-row blockquote,
.quote-grid blockquote {
    background: transparent;
    border: 0;
    border-left: 3px solid var(--blue);
    border-radius: 0;
    padding: 0.15rem 0 0.15rem 1.15rem;
    box-shadow: none;
}

.proof-row blockquote:hover,
.quote-grid blockquote:hover {
    border-color: var(--blue);
    box-shadow: none;
}

/* Value blocks */
.value {
    padding: 5.5rem 0;
    background:
        linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.value-block {
    padding: 2rem 1.75rem 2rem 0;
    border-right: 1px solid var(--line);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.value-block:last-child {
    border-right: 0;
    padding-right: 0;
}

.value-index {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.08em;
}

.value-block h3 {
    margin: 0.85rem 0 0.65rem;
    font-size: 1.45rem;
}

/* Modules: más producto, menos “card” */
.module-media {
    border-radius: 12px;
    min-height: 380px;
    box-shadow: none;
    border: 1px solid var(--line);
    background-color: #eef1f8;
}

.module-index {
    color: var(--blue);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.module-body h3 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
}

/* Demo */
.demo {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 16, 239, 0.28), transparent 55%),
        #04060f;
}

.demo-frame {
    border-radius: 12px;
}

/* Pricing */
.price-plan {
    border-radius: 12px;
}

.price-plan.is-featured {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

/* Closing CTA */
.closing,
.cta-section {
    background:
        radial-gradient(700px 320px at 85% 20%, rgba(0, 16, 239, 0.4), transparent 60%),
        linear-gradient(135deg, #04060f 0%, #0a1450 55%, #0010ef 160%);
}

@media (max-width: 960px) {
    .signal-bar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .signal-bar-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
        padding-right: 0;
    }

    .signal-bar-grid > div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-block {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1.5rem 0;
    }

    .hero-visual {
        margin-right: 0;
    }

    .hero-stage {
        border-radius: 12px;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .page-home .site-header:not(.is-scrolled) .nav-panel {
        background: rgba(4, 6, 15, 0.98);
        border-bottom-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    }

    .page-home .site-header.is-scrolled .nav-panel {
        background: #fff;
        border-bottom-color: var(--line);
        box-shadow: 0 18px 40px rgba(7, 11, 20, 0.12);
    }

    .page-home .site-header:not(.is-scrolled) .nav-panel .nav-link,
    .page-home .site-header:not(.is-scrolled) .nav-panel .nav-sub-btn,
    .page-home .site-header:not(.is-scrolled) .nav-panel .btn-ghost {
        color: #fff;
        text-shadow: none;
    }

    .page-home .site-header:not(.is-scrolled) .nav-panel .nav-sub a {
        color: rgba(255, 255, 255, 0.88);
    }
}

@media (min-width: 1280px) {
    .hero-layout {
        gap: 3.5rem 4.5rem;
        padding-block: 5rem 5.5rem;
    }

    .section-head h2 {
        font-size: clamp(2.2rem, 3.2vw, 3.15rem);
    }
}

/* Dropdowns legibles sobre hero oscuro */
.page-home .site-header:not(.is-scrolled) .nav-sub {
    background: #0b1224;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.page-home .site-header:not(.is-scrolled) .nav-sub a {
    color: rgba(255, 255, 255, 0.88);
}

.page-home .site-header:not(.is-scrolled) .nav-sub a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.page-home .site-header:not(.is-scrolled) .has-sub.is-open > .nav-sub-btn {
    color: #fff;
}

/* Quitar look de card en value-block original */
.page-home .value-block {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.page-home .value-grid {
    gap: 0 2rem;
}

.page-home .value-block {
    padding: 2rem 1.5rem 2rem 0;
    border-right: 1px solid var(--line);
}

.page-home .value-block:last-child {
    border-right: 0;
    padding-right: 0;
}

.page-home .value-block h3 {
    color: var(--ink);
    font-size: 1.25rem;
}

.page-home .value-block p {
    color: var(--slate);
    line-height: 1.65;
}

/* ==============================================
   VISIÓN v2b — precios, flujo, recursos, cierre
================================================= */

.page-home .extras {
    gap: 0;
    border-top: 1px solid var(--line);
}

.page-home .extra {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: 1.75rem 1.5rem 1.75rem 0;
    box-shadow: none;
}

.page-home .extra:last-child {
    border-right: 0;
    padding-right: 0;
}

.page-home .extra:hover {
    transform: none;
    border-color: transparent;
}

.page-home .extra-icon {
    border-radius: 6px;
    background: var(--ink);
    color: #fff;
}

.page-home .flow {
    background: #fff;
    border-top: 1px solid var(--line);
}

.page-home .flow-steps {
    gap: 0;
    border-top: 1px solid var(--line);
}

.page-home .flow-steps li {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: 2rem 1.75rem 2rem 0;
    overflow: visible;
}

.page-home .flow-steps li:last-child {
    border-right: 0;
    padding-right: 0;
}

.page-home .flow-steps li::after {
    display: none;
}

.page-home .compare-table {
    border-radius: 10px;
    box-shadow: none;
}

.page-home .compare-head {
    background: var(--ink);
}

.page-home .quotes {
    background: #fff;
}

.page-home .quote-grid blockquote {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: 1.5rem 0 0;
    min-height: auto;
}

.page-home .pricing {
    background:
        linear-gradient(180deg, var(--paper) 0%, #fff 35%);
    padding-block: 6.5rem 5.5rem;
}

.page-home .price-plan {
    border-radius: 12px;
    padding: 2.1rem 1.7rem 1.7rem;
    background: #fff;
}

.page-home .price-plan.is-featured {
    transform: translateY(-10px) scale(1);
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(145deg, #0010ef, #3a4fff 55%, #ade884) border-box;
    border: 2px solid transparent;
    box-shadow: 0 28px 70px rgba(0, 16, 239, 0.18);
}

.page-home .price-plan.is-featured:hover {
    transform: translateY(-14px);
}

.page-home .price-tag {
    border-radius: 6px;
    letter-spacing: 0.08em;
}

.page-home .price span {
    font-size: 2.75rem;
}

.page-home .faq-item {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: transparent;
}

.page-home .faq-item summary {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.page-home .resources {
    background: var(--ink);
    color: #fff;
}

.page-home .resources .eyebrow {
    color: #ade884;
}

.page-home .resources .section-head h2,
.page-home .resources .section-lead {
    color: #fff;
}

.page-home .resources .section-lead {
    color: rgba(255, 255, 255, 0.65);
}

.page-home .resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.page-home .resource-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.6rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .resource-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(173, 232, 132, 0.45);
    transform: translateY(-3px);
}

.page-home .resource-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ade884;
    margin-bottom: 0.75rem;
}

.page-home .resource-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-home .resource-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.98rem;
    line-height: 1.55;
}

.page-home .closing {
    padding: 6rem 0;
    text-align: center;
}

.page-home .closing-inner {
    max-width: 46rem;
    margin-inline: auto;
}

.page-home .closing-brand {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.page-home .closing h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: #fff;
    margin-bottom: 1rem;
}

.page-home .closing p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.page-home .closing .hero-cta {
    justify-content: center;
}

/* Lead magnet */
.page-home .lead-magnet {
    padding: 4.5rem 0;
    background:
        radial-gradient(600px 260px at 0% 50%, rgba(0, 16, 239, 0.1), transparent 55%),
        var(--paper);
    border-top: 1px solid var(--line);
}

.page-home .lead-magnet-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.page-home .lead-magnet-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    letter-spacing: -0.04em;
    margin: 0.5rem 0 0.85rem;
    max-width: 22ch;
}

.page-home .lead-magnet-copy p:not(.eyebrow) {
    color: var(--slate);
    font-size: 1.05rem;
    max-width: 42ch;
    margin-bottom: 1.35rem;
    line-height: 1.55;
}

.page-home .lead-magnet-preview {
    list-style: none;
    margin: 0;
    padding: 1.5rem 1.6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(7, 11, 20, 0.06);
    display: grid;
    gap: 0.85rem;
}

.page-home .lead-magnet-preview li {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
}

.page-home .lead-magnet-preview span {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
    min-width: 1.6rem;
}

@media (max-width: 960px) {
    .page-home .extra,
    .page-home .flow-steps li {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1.5rem 0;
    }

    .page-home .extras,
    .page-home .flow-steps,
    .page-home .lead-magnet-inner {
        grid-template-columns: 1fr;
    }

    .page-home .resources-grid {
        grid-template-columns: 1fr;
    }

    .page-home .price-plan.is-featured {
        transform: none;
    }
}

.page-home .price-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.5rem;
    margin-top: 1.5rem;
    padding: 0;
    color: var(--slate);
    font-size: 0.92rem;
}

.page-home .price-trust li {
    position: relative;
    padding-left: 1.1rem;
}

.page-home .price-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.page-home .stack {
    padding: 5rem 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.page-home .stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 880px;
    margin: 0 auto;
}

.page-home .stack-col {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
}

.page-home .stack-col.is-ours {
    border-color: rgba(0, 16, 239, 0.35);
    background:
        radial-gradient(380px 160px at 100% 0%, rgba(0, 16, 239, 0.1), transparent 55%),
        #fff;
    box-shadow: 0 16px 40px rgba(0, 16, 239, 0.08);
}

.page-home .stack-col h3 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.page-home .stack-col ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.25rem;
    color: var(--slate);
}

.page-home .stack-col li {
    padding-left: 1rem;
    position: relative;
}

.page-home .stack-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c5cad6;
}

.page-home .stack-col.is-ours li::before {
    background: var(--blue);
}

.page-home .stack-price {
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.page-home .stack-col.is-ours .stack-price {
    color: var(--blue);
}

.page-home .stack-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 720px) {
    .page-home .stack-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== CONTENT: content.css ========== */

/* Contenido editorial: diccionario, FAQ, blog, legal */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.page-content .content-hero {
    padding: 3.25rem 0 2.5rem;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(0, 16, 239, 0.07), transparent 45%),
        var(--paper);
    border-bottom: 1px solid var(--line);
}

.page-content .content-hero-compact {
    padding-bottom: 2rem;
}

.page-content .content-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.045em;
    margin-bottom: 0.85rem;
    max-width: 20ch;
}

.page-content .content-hero-compact h1 {
    max-width: 28ch;
}

.content-lead {
    color: var(--slate);
    font-size: 1.12rem;
    max-width: 52ch;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.meta-line {
    color: var(--muted);
    font-size: 0.92rem;
}

.content-search {
    display: flex;
    gap: 0.65rem;
    max-width: 560px;
    margin: 1.25rem 0 1.5rem;
}

.content-search input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.85rem 1.15rem;
    font: inherit;
    background: #fff;
}

.content-search input:focus {
    outline: 2px solid rgba(0, 16, 239, 0.25);
    border-color: var(--blue);
}

.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.alpha-nav a {
    min-width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
}

.alpha-nav a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.content-section {
    padding: 3.5rem 0 4.5rem;
}

.letter-block {
    margin-bottom: 2.75rem;
}

.letter-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}

.term-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.term-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.term-grid a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.term-grid a:hover {
    border-color: #b8c2db;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.term-grid strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.term-grid span {
    color: var(--muted);
    font-size: 0.8rem;
}

.faq-list-index {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.faq-list-index a {
    display: block;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    font-weight: 600;
    line-height: 1.4;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-list-index a:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.narrow {
    width: min(820px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.article-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem 0 1rem;
}

.toc {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    background: var(--paper);
}

.toc-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.toc ol {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.toc a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.88rem;
    line-height: 1.35;
}

.toc a:hover {
    color: var(--blue);
}

.prose {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.prose > *:first-child {
    margin-top: 0;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: -0.035em;
    margin: 2.25rem 0 0.85rem;
    color: var(--ink);
}

.prose h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 1.75rem 0 0.65rem;
    color: var(--ink);
}

.prose p {
    margin-bottom: 1.1rem;
    color: var(--ink-soft);
}

.prose ul,
.prose ol {
    margin: 0 0 1.2rem 1.2rem;
}

.prose li {
    margin-bottom: 0.4rem;
    color: var(--ink-soft);
}

.prose a {
    color: var(--blue);
}

.prose strong {
    color: var(--ink);
}

.prose img {
    border-radius: 12px;
    margin: 1.25rem 0;
}

.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0 3rem;
}

.article-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    background: #fff;
}

.article-nav-link.next {
    text-align: right;
}

.article-nav-link span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
}

.article-nav-link strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.35;
}

.related {
    padding: 3rem 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.related h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}

.content-cta {
    padding: 4rem 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.content-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.65rem;
}

.content-cta p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.35rem;
}

.empty-note {
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 14px;
    padding: 1.5rem;
    color: var(--slate);
    margin-bottom: 2rem;
}

.empty-note h2 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.resource-cols {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

.section-label {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.search-results {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.search-results a {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
}

.search-results a:hover {
    border-color: var(--blue);
}

.result-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
}

.search-results strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.result-excerpt {
    color: var(--slate);
    font-size: 0.92rem;
}

.legal-prose {
    padding: 2rem 0 4rem;
}

.related-faq {
    max-width: 900px;
}

@media (max-width: 900px) {
    .article-layout,
    .resource-cols,
    .article-nav {
        grid-template-columns: 1fr;
    }

    .toc {
        position: static;
    }

    .article-nav-link.next {
        text-align: left;
    }

    .content-search {
        flex-direction: column;
    }
}

/* Guías / comparativas */
.card-index {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin: 0 0 1.5rem;
}

.card-index a {
    display: grid;
    gap: 0.45rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card-index a:hover {
    border-color: #c8cfde;
    transform: translateY(-2px);
}

.card-index strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.card-index span {
    color: var(--slate);
    font-size: 0.98rem;
    line-height: 1.5;
}

.card-index em {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-cta {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background:
        radial-gradient(500px 180px at 100% 0%, rgba(0, 16, 239, 0.12), transparent 60%),
        var(--paper);
    border: 1px solid var(--line);
}

.article-cta h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: var(--slate);
    margin-bottom: 1rem;
}

.article-cta .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.75rem;
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    border: 1px solid var(--line);
    padding: 0.75rem 0.85rem;
    text-align: left;
}

.compare-table th {
    background: var(--paper);
    font-weight: 700;
}

.prose .table-responsive {
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
}

/* Visión editorial para guías / comparativas / blog */
.page-content .content-hero {
    padding: 4rem 0 3rem;
    background:
        radial-gradient(ellipse 50% 80% at 100% 0%, rgba(0, 16, 239, 0.1), transparent 50%),
        linear-gradient(180deg, #070b14 0%, #121a2c 100%);
    border-bottom: 0;
    color: #fff;
}

.page-content .content-hero .eyebrow {
    color: #ade884;
}

.page-content .content-hero h1 {
    color: #fff;
    max-width: 18ch;
}

.page-content .content-hero .content-lead,
.page-content .content-hero .meta-line {
    color: rgba(255, 255, 255, 0.68);
}

.page-content .content-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.45);
}

.page-content .content-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.page-content .content-hero .breadcrumbs a:hover {
    color: #fff;
}

.page-content .content-hero-compact {
    padding-bottom: 2.5rem;
}

.page-content .card-index a {
    border-radius: 10px;
    transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.page-content .card-index a:hover {
    border-color: #0010ef;
    box-shadow: 0 16px 40px rgba(0, 16, 239, 0.1);
}

.page-content .article-cta {
    border-radius: 12px;
    background:
        radial-gradient(500px 200px at 100% 0%, rgba(0, 16, 239, 0.14), transparent 55%),
        #070b14;
    border-color: transparent;
    color: #fff;
}

.page-content .article-cta h2 {
    color: #fff;
}

.page-content .article-cta p {
    color: rgba(255, 255, 255, 0.7);
}

.page-content .content-search input {
    border-radius: 10px;
}

.page-feature .feature-hero {
    padding-top: calc(var(--header-h) + 2.5rem);
    min-height: min(78vh, 700px);
    display: flex;
    align-items: center;
}

.page-feature .feature-hero-overlay {
    background:
        linear-gradient(115deg, rgba(4, 6, 15, 0.97) 0%, rgba(0, 16, 239, 0.55) 78%, rgba(173, 232, 132, 0.18) 100%);
}

.page-feature .feature-detail-card {
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: none;
    background: #fff;
}

.page-feature .feature-detail-card-accent {
    border-color: rgba(0, 16, 239, 0.18);
}

.page-feature .cta-section {
    text-align: center;
}

.page-feature .feature-related-card {
    border-radius: 12px;
}

.page-feature .how-it-works-section {
    background: #fff;
}

.page-feature .step-number {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.related-reads {
    margin: 3rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.related-reads h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.related-reads ul {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.related-reads a {
    display: block;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-reads a:hover {
    border-color: rgba(0, 16, 239, 0.35);
    box-shadow: 0 12px 28px rgba(7, 11, 20, 0.07);
}

.related-reads strong {
    display: block;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.related-reads span {
    display: block;
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.45;
}

.notfound-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 720px;
}

.notfound-grid h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.notfound-links {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.notfound-links a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.notfound-links a:hover {
    text-decoration: underline;
}

.page-404 .content-hero-404 {
    padding-bottom: 2rem;
}

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

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.15rem;
}

.search-filter {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--slate);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
}

.search-filter:hover {
    border-color: rgba(0, 16, 239, 0.35);
    color: var(--blue);
}

.search-filter.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 1.5rem;
}

.search-chip {
    display: inline-flex;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.search-chip:hover {
    border-color: rgba(0, 16, 239, 0.35);
    color: var(--blue);
}

.search-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.search-quick-links a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.search-quick-links a:hover {
    text-decoration: underline;
}

.module-hub {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin: 0 0 2.5rem;
}

.module-hub a {
    display: block;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-hub a:hover {
    border-color: rgba(0, 16, 239, 0.35);
    box-shadow: 0 12px 28px rgba(7, 11, 20, 0.07);
}

.module-hub strong {
    display: block;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.module-hub span {
    color: var(--slate);
    font-size: 0.9rem;
}

.page-success .success-section {
    padding: calc(var(--header-h) + 3rem) 0 5rem;
    background:
        radial-gradient(500px 220px at 50% 0%, rgba(0, 16, 239, 0.1), transparent 55%),
        var(--paper);
}

.page-success .success-content {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 40px rgba(7, 11, 20, 0.06);
}

.page-success .success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 181, 122, 0.12);
    color: var(--rank);
    font-size: 1.35rem;
}

.page-success .success-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
    margin: 0.35rem 0 0.85rem;
}

.page-success .success-message {
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.page-success .success-info {
    background: var(--paper);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}

.page-success .success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.page-success .success-steps {
    list-style: none;
    text-align: left;
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--line);
    color: var(--slate);
    font-size: 0.95rem;
}

.page-success .success-steps strong {
    color: var(--ink);
}

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

@media (max-width: 560px) {
    .module-hub {
        grid-template-columns: 1fr;
    }
}

.legal-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.legal-switch a,
.legal-switch span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--slate);
    background: #fff;
}

.legal-switch a:hover {
    color: var(--blue);
    border-color: rgba(0, 16, 239, 0.35);
}

.legal-switch span[aria-current="page"] {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.alpha-nav.alpha-nav-sticky {
    position: sticky;
    top: calc(var(--header-h) + 0.5rem);
    z-index: 5;
    background: rgba(244, 246, 250, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    margin-top: 0.5rem;
    border-bottom: 1px solid transparent;
}

.page-content .alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

@media print {
    .content-cta,
    .related,
    .related-reads,
    .article-nav,
    .legal-switch {
        display: none !important;
    }
}

.card-index-grid {
    grid-template-columns: repeat(2, 1fr);
}

.index-cross {
    margin-top: 0.25rem;
}

.page-content .content-cta {
    background:
        radial-gradient(600px 240px at 80% 0%, rgba(0, 16, 239, 0.35), transparent 55%),
        linear-gradient(120deg, #050812, #0a1020 55%, #0010ef 160%);
}

.page-content .content-cta .btn-primary {
    box-shadow: 0 10px 28px rgba(0, 16, 239, 0.35);
}

.footer-company a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-company a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 800px) {
    .card-index-grid {
        grid-template-columns: 1fr;
    }
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.contact-channels,
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
}

.contact-channels h2,
.contact-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 1.1rem;
    margin: 0 0 1.25rem;
}

.contact-list strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-list a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-list span {
    color: var(--slate);
    font-size: 0.95rem;
}

.contact-sep {
    margin: 0 0.35rem;
    color: var(--muted);
}

.contact-note {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form .form-row {
    display: grid;
    gap: 0.4rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 16, 239, 0.12);
}

.contact-form .hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.contact-form-wrap {
    position: relative;
}

.form-legal {
    font-size: 0.85rem;
    color: var(--slate);
    margin: 0;
}

.form-legal a {
    color: var(--blue);
}

.contact-alert {
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-alert.is-ok {
    background: rgba(0, 181, 122, 0.1);
    color: #0a7a52;
    border: 1px solid rgba(0, 181, 122, 0.25);
}

.contact-alert.is-error {
    background: rgba(185, 28, 28, 0.08);
    color: #9f1239;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

@media (max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* —— Precios / sobre / lead magnet / demo shots (2026-07) —— */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
}

.price-for {
    margin: -0.35rem 0 1rem;
    color: var(--slate, #52607a);
    font-size: 0.95rem;
}

.pricing-matrix.compare-table .compare-row > div:nth-child(n+2) {
    text-align: center;
}

.prose-narrow {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
}

.prose-narrow h2 {
    margin-top: 2rem;
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    letter-spacing: -0.03em;
}

.demo-shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.demo-shots figure {
    margin: 0;
    background: #fff;
    border: 1px solid rgba(7, 11, 20, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.demo-shots img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.demo-shots figcaption {
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate, #52607a);
}

.lead-magnet-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1rem 0 0.5rem;
    max-width: 28rem;
}

.lead-magnet-form input[type="email"] {
    flex: 1 1 12rem;
    min-height: 3rem;
    border-radius: 12px;
    border: 1.5px solid rgba(7, 11, 20, 0.12);
    padding: 0.75rem 1rem;
    font: inherit;
}

.lead-magnet-form .btn {
    flex: 0 0 auto;
}

.lead-magnet-alt {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
}

.lead-magnet-ok {
    color: #0a7a52;
    font-weight: 600;
}

.feature-faq {
    padding: 2.5rem 0 1rem;
}

.page-home .price-was {
    display: none !important;
}

@media (max-width: 900px) {
    .demo-shots {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .demo-shots {
        grid-template-columns: 1fr;
    }

    .lead-magnet-form {
        flex-direction: column;
    }

    .lead-magnet-form .btn {
        width: 100%;
    }
}

