.jc-plans {
    --violet: #7C3AED;
    --violet-end: #A855F7;
    --violet-dark: #6D28D9;
    --violet-tint: #F4EEFF;
    --ink: #14161F;
    --muted: #6B7280;
    --success: #16A34A;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(20, 15, 50, 0.07);
    font-family: 'Inter', sans-serif;
    color: var(--ink);
}

.jc-plans .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.jc-plans .section-title>img {
    border-radius: 9px;
    background: var(--violet-tint);
    padding: 5px;
    vertical-align: middle;
}

.jc-plans .description-box {
    background: rgba(124, 58, 237, 0.03);
    /* más sutil */
    border: 1px solid rgba(124, 58, 237, 0.08);

    border-radius: 14px;
    padding: 1rem 1.25rem;

    color: #374151;
    /* en vez de muted gris débil */
    font-size: .95rem;
    line-height: 1.55;

    margin-top: .75rem;
}

.jc-plans .plan-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #EFEDF6;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.jc-plans .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(124, 58, 237, 0.16);
    border-color: rgba(124, 58, 237, .25);
}

.jc-plans .info-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--violet);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(20, 15, 50, .18);
    cursor: pointer;
    font-size: .8rem;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.jc-plans .info-icon:hover {
    background: #fff;
    color: var(--violet-dark);
    transform: scale(1.08);
}

/* Cabecera de la tarjeta: ahora muestra el nombre del plan en lugar del logo */
.jc-plans .plan-card__header {
    background: linear-gradient(135deg,
            rgba(124, 58, 237, 0.16),
            rgba(168, 85, 247, 0.20));

    padding: 1.5rem 2.5rem 1.4rem;
    text-align: center;
}

.jc-plans .plan-card__header .card-title {
    color: #111827;
    margin: 0;
}

.jc-plans .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
}

.jc-plans .card-title strong {
    font-weight: 700;
}

.jc-plans .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.jc-plans .plan-price {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px dashed #EFEDF6;
}

.jc-plans .plan-price h4.text-success {
    color: var(--ink) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: .1rem;
}

.jc-plans .plan-price h6.text-secondary {
    color: var(--muted) !important;
    font-weight: 500;
    font-size: .8rem;
    margin-bottom: 0;
}

/* Características del plan: un único ícono de check, consistente en toda la tarjeta */
.jc-plans .plan-features {
    padding: 0;
    margin: 0 0 1.35rem;
    font-size: .87rem;
    flex: 1 1 auto;
}

.jc-plans .plan-features li {
    position: relative;
    list-style: none;
    padding: .32rem 0 .32rem 1.65rem;
    color: #374151;
}

.jc-plans .plan-features li i {
    display: none;
}

.jc-plans .plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .42rem;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: var(--violet-tint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 9 17 19 7'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 9px;
}

.jc-plans .btn-contratar {
    margin-top: auto;
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-end) 100%);
    border: none;
    border-radius: 999px;
    padding: .65rem 1rem;
    font-weight: 600;
    font-size: .92rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 10px 22px rgba(124, 58, 237, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.jc-plans .btn-contratar:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(124, 58, 237, .38);
    color: #fff;
}

.jc-plans .btn-contratar:active {
    transform: translateY(0);
}

.jc-plans .info-icon:focus-visible,
.jc-plans .btn-contratar:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    .jc-plans .plan-card,
    .jc-plans .btn-contratar {
        transition: none;
    }
}

/* Sección ¿Cómo funciona? */
.jc-how-it-works {
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 20px;
    padding: 1.5rem;

}

.jc-how-it-works .jc-how-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    color: #111827;
    margin-bottom: 1rem;
}

.jc-how-it-works .jc-how-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.jc-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.jc-step-card {
    background: #ffffff;
    border: 1px solid #efedf6;
    border-radius: 18px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 10px 30px rgba(20, 15, 50, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.jc-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.18);
}

.jc-step-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.10);
    color: #7c3aed;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.jc-step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.jc-step-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .jc-step-grid {
        grid-template-columns: 1fr;
    }
}

.services-overview {
    --violet: #7C3AED;
    --violet-end: #A855F7;
    --violet-dark: #6D28D9;
    --violet-tint: #F4EEFF;
    --ink: #14161F;
    --muted: #6B7280;
    --radius: 18px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    padding: 2.5rem 1.5rem 3rem;
}

.services-overview::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    top: -220px;
    right: -160px;
    background: radial-gradient(circle, rgba(124, 58, 237, .09), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.services-overview__inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

/* ---------- Fila superior: texto + dashboard Personas/Empresas ---------- */

.services-overview__top {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.75rem;
    align-items: center;
    margin-bottom: 2.25rem;
}

.services-overview__head {
    text-align: left;
}

.services-overview__eyebrow {
    display: inline-block;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--violet);
    background: var(--violet-tint);
    padding: .35rem .95rem;
    border-radius: 999px;
    margin-bottom: 1.15rem;
}

.services-overview__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 3.4vw, 2.55rem);
    line-height: 1.16;
    color: var(--ink);
    margin: 0 0 1rem;
}

.services-overview__title em {
    font-style: normal;
    color: var(--violet);
}

.services-overview__subtitle {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;
    max-width: 500px;
}

.services-overview__sources {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .55rem;
    margin: 1.65rem 0 0;
    padding: 0;
    list-style: none;
}

.services-overview__sources li {
    font-size: .76rem;
    font-weight: 600;
    color: var(--muted);
    background: #F7F6FB;
    border: 1px solid #EFEDF6;
    padding: .4rem .9rem;
    border-radius: 999px;
}

/* ---------- Tarjeta base (reutilizable) ---------- */

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #EFEDF6;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(20, 15, 50, .06);
    padding: 1.85rem 1.65rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(124, 58, 237, .14);
    border-color: rgba(124, 58, 237, .22);
}

.service-card__icon-group {
    display: flex;
    gap: .5rem;
}

.service-card__icon-mini {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--violet-tint), #ffffff);
    border: 1px solid rgba(124, 58, 237, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.service-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--ink);
    margin: 0 0 .5rem;
}

.service-card__lead {
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.55;
    margin: 0 0 1.1rem;
}

.service-card__more {
    margin-top: 1.3rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: none;
    border: none;
    padding: 0;
    color: var(--violet);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: color .2s ease;
}

.service-card__more i {
    font-size: .72rem;
    transition: transform .2s ease;
}

.service-card__more:hover {
    color: var(--violet-dark);
}

.service-card__more:hover i {
    transform: translateX(3px);
}

/* ---------- Dashboard: Personas y Empresas ---------- */

.dashboard-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.1rem;
}

.dashboard-card__status {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    font-size: .67rem;
    font-weight: 700;
    color: #0E9F6E;
    background: #E8FBF3;
    padding: .32rem .7rem;
    border-radius: 999px;
}

.dashboard-card__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0E9F6E;
    box-shadow: 0 0 0 0 rgba(14, 159, 110, .45);
    animation: dash-pulse 2.2s ease-out infinite;
}

@keyframes dash-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 159, 110, .45);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(14, 159, 110, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 159, 110, 0);
    }
}

.dashboard-card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
    margin: 0 0 1.3rem;
}

.dashboard-tile {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #F7F6FB;
    border: 1px solid #EFEDF6;
    border-radius: 12px;
    padding: .58rem .7rem;
    font-size: .77rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.25;
}

.dashboard-tile i {
    color: #16A34A;
    font-size: .8rem;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-card__status-dot {
        animation: none;
    }
}

/* ---------- Comercio Exterior: protagonista ---------- */

.service-card--spotlight {
    background: linear-gradient(135deg, #1C1033 0%, #341A78 55%, #5B2DC4 100%);
    border: none;
    padding: 2.75rem 2.5rem;
    margin-top: .5rem;
}

.service-card--spotlight::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    top: -160px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, .13), transparent 70%);
    pointer-events: none;
}

.service-card--spotlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(76, 29, 149, .38);
}

.spotlight-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.spotlight-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: .35rem .85rem;
    border-radius: 999px;
    margin-bottom: 1.15rem;
}

.service-card--spotlight .service-card__title {
    color: #fff;
    font-size: 1.55rem;
    margin-bottom: .75rem;
}

.service-card--spotlight .service-card__lead {
    color: rgba(255, 255, 255, .74);
    font-size: .96rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 440px;
}

.service-card--spotlight .service-card__more {
    color: #fff;
    font-size: .92rem;
}

.service-card--spotlight .service-card__more:hover {
    color: #E9D8FD;
}

.spotlight-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.spotlight-feature {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    padding: 1.1rem 1.1rem 1rem;
}

.spotlight-feature__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .65rem;
}

.spotlight-feature__top i {
    color: #fff;
    font-size: .95rem;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-feature__label {
    display: block;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.35;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .16rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.service-badge--new {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.service-badge--exclusive {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

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

    .service-card__more i {
        transition: none;
    }
}

@media (max-width: 860px) {
    .services-overview__top {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .services-overview__subtitle {
        max-width: none;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 480px) {
    .services-overview {
        padding: 2.25rem 1.1rem 2.25rem;
    }

    .service-card {
        padding: 1.5rem 1.35rem;
    }

    .service-card--spotlight {
        padding: 2rem 1.5rem;
    }

    .dashboard-card__grid {
        grid-template-columns: 1fr 1fr;
    }

    .spotlight-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 360px) {

    .dashboard-card__grid,
    .spotlight-features {
        grid-template-columns: 1fr;
    }
}

.how-it-works {
    --violet: #7C3AED;
    --violet-end: #A855F7;
    --violet-tint: #F4EEFF;
    --ink: #14161F;
    --muted: #6B7280;
    --radius: 18px;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFAFE 100%);
    padding: 3.75rem 1.5rem 2.25rem;
}

.how-it-works__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.how-it-works__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem;
}

.how-it-works__eyebrow {
    display: inline-block;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--violet);
    background: var(--violet-tint);
    padding: .35rem .95rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.how-it-works__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    color: var(--ink);
    margin: 0 0 .65rem;
}

.how-it-works__subtitle {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Track: 3 pasos + 2 conectores ---------- */

.how-it-works__track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}

.how-step {
    background: #fff;
    border: 1px solid #EFEDF6;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(20, 15, 50, .06);
    padding: 2.1rem 1.5rem 1.85rem;
    text-align: center;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    opacity: 0;
    transform: translateY(14px);
    animation: how-fade-in .6s ease forwards;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(124, 58, 237, .14);
    border-color: rgba(124, 58, 237, .22);
}

.how-step:nth-child(1) {
    animation-delay: .05s;
}

.how-step:nth-child(3) {
    animation-delay: .18s;
}

.how-step:nth-child(5) {
    animation-delay: .31s;
}

.how-step__index {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: .76rem;
    color: #DCD0FA;
    letter-spacing: .03em;
}

.how-step__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.15rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--violet-tint), #ffffff);
    border: 1px solid rgba(124, 58, 237, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
}

.how-step__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0 0 .5rem;
}

.how-step__text {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Conector entre pasos ---------- */

.how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
    position: relative;
    opacity: 0;
    animation: how-fade-in .6s ease forwards;
}

.how-it-works__track>.how-connector:nth-child(2) {
    animation-delay: .12s;
}

.how-it-works__track>.how-connector:nth-child(4) {
    animation-delay: .25s;
}

.how-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, .2), rgba(168, 85, 247, .55), rgba(124, 58, 237, .2));
    z-index: 0;
}

.how-connector i {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--violet);
    border: 1px solid rgba(124, 58, 237, .25);
    border-radius: 50%;
    font-size: .72rem;
    animation: how-pulse 2.6s ease-in-out infinite;
}

@keyframes how-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes how-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, .25);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .how-step,
    .how-connector {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .how-step {
        transition: none;
    }

    .how-connector i {
        animation: none;
    }
}

/* ---------- Responsive: apila vertical en móvil ---------- */

@media (max-width: 880px) {
    .how-it-works__track {
        grid-template-columns: 1fr;
        gap: .25rem;
    }

    .how-connector {
        height: 40px;
        padding: 0;
    }

    .how-connector::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(124, 58, 237, .2), rgba(168, 85, 247, .55), rgba(124, 58, 237, .2));
    }

    .how-connector i {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 2.75rem 1.1rem 1.75rem;
    }

    .how-step {
        padding: 1.85rem 1.25rem 1.6rem;
    }
}

.metrics-strip {
    --violet: #7C3AED;
    --violet-tint: #F4EEFF;
    font-family: 'Inter', sans-serif;
    background: #FBFAFE;
    border-top: 1px solid #F0EEF7;
    border-bottom: 1px solid #F0EEF7;
    padding: 2.5rem 1.5rem;
}

.metrics-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    padding: .5rem 1.85rem;
    min-width: 150px;
}

.metric__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--violet-tint);
    color: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.metric__label {
    font-size: .83rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3;
}

.metric-sep {
    width: 1px;
    height: 36px;
    background: #E5E1F0;
}

@media (max-width: 760px) {
    .metric-sep {
        display: none;
    }

    .metric {
        padding: .65rem 1.25rem;
        min-width: 130px;
    }
}