:root {
    --c1: #0360AD;
    /* azul brillante principal */
    --c2: #1C4588;
    /* azul navy */
    --c3: #2E9BC8;
    /* cyan */
    --c4: #06A852;
    /* verde */
    --c5: #63BC4B;
    /* verde claro */
    --white: #FFFFFF;
    --off: #F4F9FF;
    --text: #1A3A5C;
    --sub: #5B7FA6;
    --bdr: #C8DEFA;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ─────────────────────────────
   BACKGROUNDS POR SECCIÓN
───────────────────────────── */
.bg-hero {
    background: #061530;
}

.bg-white {
    background: #FFFFFF;
}

.bg-light {
    background: #F4F9FF;
}

.bg-navy {
    background: linear-gradient(135deg, #1C4588 0%, #0360AD 100%);
}

/* ─────────────────────────────
   LAYOUT
───────────────────────────── */
.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

/* ─────────────────────────────
   NAV
───────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: var(--c2);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 46px;
    width: auto;
    max-width: 180px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    background: var(--c4);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 9px 22px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(6, 168, 82, .3);
    transition: all .2s;
}

.nav-cta:hover {
    background: #05943E;
    box-shadow: 0 4px 18px rgba(6, 168, 82, .4);
    transform: translateY(-1px);
}

@media(max-width:740px) {
    .nav-links {
        display: none;
    }
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
    padding: 88px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-logo-wrap {
    margin-bottom: 28px;
    animation: up .5s ease both;
}

.hero-logo {
    height: 110px;
    width: auto;
    max-width: 340px;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .3));
}

/* warp speed hero */
.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.aurora-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#warp-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* color glows behind the lines */
.warp-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.wg1 {
    width: 640px;
    height: 640px;
    opacity: .5;
    background: radial-gradient(circle, #0360AD, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wg2 {
    width: 340px;
    height: 340px;
    opacity: .35;
    background: radial-gradient(circle, #2E9BC8, transparent 70%);
    top: 10%;
    right: 5%;
    animation: glow-drift 12s ease-in-out infinite;
}

.wg3 {
    width: 280px;
    height: 280px;
    opacity: .25;
    background: radial-gradient(circle, #06A852, transparent 70%);
    bottom: 5%;
    left: 8%;
    animation: glow-drift 16s ease-in-out infinite reverse;
}

@keyframes glow-drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, 30px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 26px;
    animation: up .6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c5);
    animation: blink 2s infinite;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.035em;
    max-width: 760px;
    margin: 0 auto 18px;
    animation: up .6s .08s ease both;
}

.hero h1 em {
    font-style: normal;
    color: #7FD8FF;
}

.hero p {
    font-size: .97rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .68);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.75;
    animation: up .6s .16s ease both;
}

/* toggle */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    animation: up .6s .2s ease both;
}

/* subtle contrast for plans section toggle */
.plans-section .toggle-row {
    display: flex;
    width: fit-content;
    background: var(--c2);
    border: 1px solid rgba(6, 21, 48, 0.28);
    padding: 10px 12px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(6, 21, 48, 0.12);
    margin: 0 auto 16px;
}

.plans-section .toggle {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.plans-section .toggle button {
    color: rgba(255, 255, 255, .75);
}

.toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 4px;
    gap: 3px;
}

.toggle button {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: rgba(255, 255, 255, .55);
    transition: all .22s;
}

.toggle button.on {
    background: #fff;
    color: var(--c2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.save-tag {
    background: rgba(99, 188, 75, .25);
    border: 1px solid rgba(99, 188, 75, .4);
    color: #A8EDAB;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}

/* stats */
.hero-stats {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 56px;
    padding-top: 36px;
    animation: up .6s .26s ease both;
    flex-wrap: wrap;
    gap: 0;
}

.hstat {
    padding: 0 36px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.hstat:last-child {
    border-right: none;
}

.hstat b {
    display: block;
    font-weight: 900;
    font-size: 1.9rem;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
}

.hstat s {
    display: block;
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    margin-top: 5px;
    text-decoration: none;
}

@media(max-width:560px) {
    .hstat {
        border: none;
        padding: 8px 16px;
    }
}

/* ═══════════════════════════════
   RESPONSIVE COMPLETO
═══════════════════════════════ */

/* ── TABLET 960px ── */
@media(max-width:960px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card.featured {
        transform: scale(1);
    }

    .card.featured:hover {
        transform: translateY(-8px) scale(1.015);
    }

    .docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .wrap {
        padding: 0 24px;
    }
}

/* ── MOBILE LARGE 768px ── */
@media(max-width:768px) {
    nav {
        padding: 0;
    }

    .nav-row {
        height: 58px;
        padding: 0 18px;
    }

    .hero-logo {
        height: 70px;
    }

    .hero {
        padding: 64px 0 52px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
        letter-spacing: -.025em;
    }

    .hero p {
        font-size: .88rem;
        margin-bottom: 32px;
    }

    .hero-stats {
        margin-top: 40px;
        padding-top: 28px;
        gap: 4px;
    }

    .hstat b {
        font-size: 1.5rem;
    }

    .toggle-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .plans-section {
        padding: 56px 0;
    }

    .s-head {
        margin-bottom: 36px;
    }

    .s-head h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .docs-section {
        padding: 52px 0;
    }

    .cta-section {
        padding: 64px 0;
    }

    .cta-section h2 {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .flinks {
        justify-content: center;
        gap: 14px;
    }
}

/* ── MOBILE 580px ── */
@media(max-width:580px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card.featured {
        transform: scale(1);
    }

    .card.featured:hover {
        transform: translateY(-8px) scale(1.015);
    }

    .wrap {
        padding: 0 16px;
    }

    .hero {
        padding: 52px 0 44px;
    }

    .hero-logo {
        height: 60px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hstat {
        width: 50%;
        border: none;
        padding: 8px 0;
    }

    .hero-stats {
        gap: 0;
    }

    .specs {
        grid-template-columns: repeat(3, 1fr);
    }

    .spec b {
        font-size: .78rem;
    }

    .spec small {
        font-size: .5rem;
    }

    .p-amount {
        font-size: 2.2rem;
    }

    .docs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .doc-name {
        font-size: .72rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-p,
    .cta-s {
        width: 100%;
        max-width: 320px;
    }
}

/* ── MOBILE SMALL 380px ── */
@media(max-width:380px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .plans-grid {
        gap: 14px;
    }

    .card-body {
        padding: 16px 16px 0;
    }

    .card-foot {
        padding: 0 16px 16px;
    }

    .hstat {
        width: 50%;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        padding: 7px 14px;
        font-size: .72rem;
    }
}

/* ─────────────────────────────
   SECTION LABELS
───────────────────────────── */
.s-head {
    text-align: center;
    margin-bottom: 52px;
}

.eyebrow {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--c4);
    margin-bottom: 10px;
}

.s-head h2 {
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--c2);
    letter-spacing: -.025em;
    line-height: 1.1;
}

.s-head h2.light {
    color: #fff;
}

.s-head p {
    font-size: .88rem;
    color: var(--sub);
    margin-top: 10px;
    line-height: 1.75;
}

.s-head p.light {
    color: rgba(255, 255, 255, .6);
}

/* ─────────────────────────────
   PLANS SECTION
───────────────────────────── */
.plans-section {
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

@media(max-width:960px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:580px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CARD ── */
.card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--bdr);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 20px rgba(3, 96, 173, .07);
    transition: transform .32s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow .32s ease,
        border-color .32s ease;
    position: relative;
    /* glow pseudo preparado */
}

/* glow ring compartido para todos */
.card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--c1), var(--c3), var(--c4));
    z-index: -1;
    opacity: 0;
    transition: opacity .32s ease;
    filter: blur(8px);
}

.card:hover::after {
    opacity: .55;
}

.card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 24px 60px rgba(3, 96, 173, .18), 0 0 0 1.5px rgba(46, 155, 200, .5);
    border-color: var(--c3);
}

.card.featured {
    border-color: var(--c4);
    box-shadow: 0 8px 36px rgba(3, 96, 173, .2), 0 0 0 1.5px rgba(6, 168, 82, .4);
    transform: scale(1.025);
}

.card.featured::after {
    background: linear-gradient(135deg, var(--c4), var(--c3), var(--c1));
}

.card.featured:hover {
    transform: scale(1.025) translateY(-8px);
    box-shadow: 0 28px 64px rgba(3, 96, 173, .25), 0 0 0 1.5px rgba(6, 168, 82, .6);
    border-color: var(--c4);
}

.card.featured:hover::after {
    opacity: .65;
}

/* featured badge */
.hot-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c4);
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 10px rgba(6, 168, 82, .35);
}

/* ── CARD IMAGE ── */
.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:580px) {
    .card-img {
        aspect-ratio: 4/3;
    }
}

.card-img.c-blue {
    background: linear-gradient(135deg, #0360AD 0%, #2E9BC8 100%);
}

.card-img.c-navy {
    background: linear-gradient(135deg, #1C4588 0%, #0360AD 100%);
}

.card-img.c-teal {
    background: linear-gradient(135deg, #0A8FBF 0%, #63BC4B 100%);
}

.card-img.c-green {
    background: linear-gradient(135deg, #06A852 0%, #2E9BC8 100%);
}

/* speed lines canvas por card */
.card-speed-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.card-img>img {
    position: relative;
    z-index: 1;
}

.card-img .img-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .3));
    position: relative;
    z-index: 1;
}

/* ── VELOCITY FX: sweep + glow pulse ── */

/* sweep: franja de luz diagonal que cruza de izq a der */
.card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg,
            transparent 0%,
            transparent 35%,
            rgba(255, 255, 255, .13) 45%,
            rgba(255, 255, 255, .22) 50%,
            rgba(255, 255, 255, .13) 55%,
            transparent 65%,
            transparent 100%);
    transform: translateX(-100%);
    animation: img-sweep 4.5s ease-in-out infinite;
    pointer-events: none;
}

/* glow pulse: rastro de energía esquina inferior izq */
.card-img::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -40px;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* cada tarjeta con delay distinto para no verse sincronizadas */
.plans-grid .card:nth-child(1) .card-img::before {
    animation-delay: 0s;
}

.plans-grid .card:nth-child(2) .card-img::before {
    animation-delay: 1.5s;
}

.plans-grid .card:nth-child(3) .card-img::before {
    animation-delay: 3s;
}

.plans-grid .card:nth-child(1) .card-img::after {
    animation-delay: 0s;
}

.plans-grid .card:nth-child(2) .card-img::after {
    animation-delay: 1s;
}

.plans-grid .card:nth-child(3) .card-img::after {
    animation-delay: 2s;
}

@keyframes img-sweep {
    0% {
        transform: translateX(-110%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    60% {
        transform: translateX(110%);
        opacity: 1;
    }

    61% {
        opacity: 0;
    }

    100% {
        transform: translateX(110%);
        opacity: 0;
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.img-label {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .7);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 3px 9px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .15);
}

/* ── CARD BODY ── */
.card-body {
    padding: 22px 22px 0;
    flex: 1;
}

.plan-num {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c3);
    margin-bottom: 3px;
}

.plan-name {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--c2);
    letter-spacing: -.02em;
    margin-bottom: 7px;
}

.plan-desc {
    font-size: .77rem;
    color: var(--sub);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 18px;
}

/* price */
.price-row {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 3px;
}

.annual-total {
    display: none;
    font-size: .78rem;
    font-weight: 600;
    color: var(--c2);
    margin-bottom: 12px;
}

body.billing-annual .annual-total {
    display: block;
}

.p-sym {
    font-size: .85rem;
    font-weight: 700;
    color: var(--sub);
    padding-bottom: 6px;
}

.p-amount {
    font-weight: 900;
    font-size: 2.7rem;
    color: var(--c2);
    line-height: 1;
    letter-spacing: -.04em;
}

.p-mo {
    font-size: .75rem;
    color: var(--sub);
    padding-bottom: 6px;
    font-weight: 400;
}

.price-note {
    font-size: .67rem;
    color: #9AB5CE;
    margin-bottom: 18px;
}

/* specs strip */
.specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #DDEEFA;
    border-radius: 11px;
    overflow: hidden;
    margin-bottom: 18px;
}

.spec {
    background: #F0F8FF;
    padding: 11px 6px;
    text-align: center;
}

.spec i {
    display: block;
    font-size: .95rem;
    margin-bottom: 4px;
    font-style: normal;
}

.spec b {
    display: block;
    font-weight: 800;
    font-size: .85rem;
    color: var(--c1);
    line-height: 1;
    margin-bottom: 2px;
}

.spec small {
    display: block;
    font-size: .55rem;
    color: var(--sub);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* divider */
.cdiv {
    height: 1px;
    background: #E8F0FC;
    margin: 0 -22px 16px;
}

/* services */
.svc-title {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sub);
    margin-bottom: 10px;
}

.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.svc-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.4;
}

.svc-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c4);
    box-shadow: 0 0 5px rgba(6, 168, 82, .4);
}

/* ── CARD FOOTER ── */
.card-foot {
    padding: 0 22px 22px;
}

.card-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    transition: all .22s;
    letter-spacing: .01em;
}

.btn-line {
    background: transparent;
    color: var(--c1);
    border: 1.5px solid rgba(3, 96, 173, .3);
}

.btn-line:hover {
    background: #EBF4FF;
    border-color: var(--c1);
}

.btn-fill {
    background: var(--c4);
    color: #fff;
    box-shadow: 0 3px 14px rgba(6, 168, 82, .35);
}

.btn-fill:hover {
    background: #05943E;
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(6, 168, 82, .45);
}

.plans-caption {
    text-align: center;
    font-size: .7rem;
    color: var(--sub);
    margin-top: 22px;
    line-height: 1.6;
}

/* ─────────────────────────────
   DOCS SECTION
───────────────────────────── */
.docs-section {
    padding: 72px 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

@media(max-width:900px) {
    .docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:560px) {
    .docs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.doc-card {
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all .25s;
    box-shadow: 0 2px 12px rgba(3, 96, 173, .05);
}

.doc-card:hover {
    border-color: var(--c1);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(3, 96, 173, .12);
}

.doc-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.ic-blue {
    background: #EBF4FF;
}

.ic-teal {
    background: #E5F6FD;
}

.ic-green {
    background: #E6F9EE;
}

.ic-navy {
    background: #E8EFF9;
}

.ic-lime {
    background: #EDF8E6;
}

.doc-name {
    font-weight: 700;
    font-size: .78rem;
    color: var(--c2);
    line-height: 1.35;
}

.doc-sub {
    font-size: .68rem;
    color: var(--sub);
    margin-top: 5px;
    line-height: 1.5;
}

/* ─────────────────────────────
   CTA
───────────────────────────── */
.cta-section {
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 155, 200, .18) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 14px;
}

.cta-section h2 em {
    font-style: normal;
    color: #7FD8FF;
}

.cta-section p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-p {
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    background: var(--c4);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 13px 32px;
    border-radius: 10px;
    box-shadow: 0 3px 16px rgba(6, 168, 82, .4);
    transition: all .22s;
}

.cta-p:hover {
    background: #05943E;
    transform: translateY(-2px);
}

.cta-s {
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    padding: 13px 32px;
    border-radius: 10px;
    transition: all .22s;
}

.cta-s:hover {
    background: rgba(255, 255, 255, .18);
}

.cta-chips {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.cta-chip {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-chip::before {
    content: '✓';
    color: var(--c5);
    font-weight: 800;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
footer {
    background: var(--c2);
    padding: 30px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .74rem;
    color: rgba(255, 255, 255, .45);
}

footer strong {
    color: rgba(255, 255, 255, .75);
}

footer a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

footer a:hover {
    color: #fff;
}

.flinks {
    display: flex;
    gap: 18px;
}

@media(max-width:600px) {
    footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ─────────────────────────────
   ANIMATIONS
───────────────────────────── */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────
   COMPARATIVA
───────────────────────────── */
.comp-section {
    padding: 80px 0;
}

/* precio vs valor */
.value-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media(max-width:760px) {
    .value-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.vs-card {
    border-radius: 16px;
    padding: 22px 20px;
    border: 1.5px solid var(--bdr);
    background: #fff;
    box-shadow: 0 2px 12px rgba(3, 96, 173, .06);
    position: relative;
    transition: all .25s;
}

.vs-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(3, 96, 173, .12);
    border-color: var(--c3);
}

.vs-featured {
    background: linear-gradient(135deg, #1C4588 0%, #0360AD 100%);
    border-color: var(--c4);
    box-shadow: 0 6px 28px rgba(3, 96, 173, .25);
}

.vs-featured:hover {
    border-color: var(--c4);
    box-shadow: 0 12px 36px rgba(3, 96, 173, .3);
}

.vs-hot {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c4);
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(6, 168, 82, .35);
}

.vs-plan-label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c3);
    margin-bottom: 6px;
}

.vs-featured .vs-plan-label {
    color: rgba(255, 255, 255, .55);
}

.vs-price {
    font-weight: 900;
    font-size: 2rem;
    color: var(--c2);
    letter-spacing: -.03em;
    margin-bottom: 12px;
    line-height: 1;
}

.vs-price span {
    font-size: .75rem;
    font-weight: 400;
    color: var(--sub);
}

.vs-featured .vs-price {
    color: #fff;
}

.vs-featured .vs-price span {
    color: rgba(255, 255, 255, .5);
}

.vs-arg {
    font-size: .74rem;
    color: var(--sub);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 5px;
}

.vs-featured .vs-arg {
    color: rgba(255, 255, 255, .65);
}

.vs-check {
    color: var(--c4);
    font-weight: 800;
    flex-shrink: 0;
}

/* tabla */
.comp-wrap {
    margin-top: 0;
}

.comp-scroll {
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: 0 4px 28px rgba(3, 96, 173, .08);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
    min-width: 780px;
    background: #fff;
}

.comp-table thead th {
    padding: 14px 12px;
    font-weight: 700;
    font-size: .72rem;
    text-align: center;
    color: var(--sub);
    background: #fff;
    border-bottom: 2px solid var(--bdr);
    vertical-align: bottom;
    white-space: nowrap;
}

.comp-table thead th small {
    display: block;
    font-weight: 400;
    font-size: .65rem;
    color: #B0C4DE;
    margin-top: 2px;
}

.comp-table thead th.comp-feat {
    text-align: left;
    min-width: 180px;
}

.comp-table thead th.comp-us {
    background: var(--c2);
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.comp-us-label {
    font-weight: 800;
    color: #fff;
    font-size: .8rem;
    line-height: 1.2;
}

.comp-badge {
    display: inline-block;
    background: var(--c4);
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    margin-top: 5px;
}

.comp-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #EEF3FB;
    text-align: center;
    vertical-align: middle;
    color: var(--text);
    font-size: .75rem;
    background: #fff;
}

.comp-table tbody td.comp-feat {
    text-align: left;
    color: var(--sub);
    font-size: .73rem;
    background: #fff;
    font-weight: 500;
}

.comp-table tbody td.comp-us {
    background: rgba(3, 96, 173, .04);
}

.comp-table tbody td.comp-win {
    color: var(--c4);
    font-weight: 700;
}

.comp-table tbody tr:hover td {
    background: #F8FBFF;
}

.comp-table tbody tr:hover td.comp-us {
    background: rgba(3, 96, 173, .07);
}

.comp-cat td {
    background: var(--light) !important;
    font-weight: 700;
    font-size: .67rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c1) !important;
    padding: 8px 12px !important;
    text-align: left !important;
}

.cy {
    color: var(--c4);
    font-weight: 600;
}

.cn {
    color: #CBD5E1;
}

.cw {
    color: #D97706;
    font-weight: 500;
}

.comp-note {
    font-size: .68rem;
    color: #B0C4DE;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

@media(max-width:768px) {
    .comp-table {
        font-size: .7rem;
        min-width: 680px;
    }

    .comp-scroll {
        border-radius: 12px;
    }
}