:root {
    --site-ink: #13202d;
    --site-muted: #52616f;
    --site-line: #d8e1ec;
    --site-surface: #ffffff;
    --site-soft: #f4f7fb;
    --site-primary: #0f6fb3;
    --site-primary-dark: #0f4c81;
    --site-accent: #20a67a;
    --site-warm: #f06b4f;
    --site-focus: #ffbf47;
    --site-header-height: 80px;
}

* {
    box-sizing: border-box;
}

html {
    background: #1f1f1f;
    scroll-behavior: smooth;
}


body.xsoft-site {
    margin: 0;
    background: var(--site-surface);
    color: var(--site-ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--site-focus);
    outline-offset: 3px;
}

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

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    background: var(--site-primary-dark);
    color: #fff;
    z-index: 1000;
}

.site-shell {
    width: min(1238px, calc(100% - 32px));
    margin: 0 auto;
}

.site-product-strip {
    position: relative;
    z-index: 51;
    background: #071b3b;
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.35;
}

.site-product-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    text-align: center;
}

.site-product-strip strong {
    font-weight: 900;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
}

.site-header__inner {
    min-height: var(--site-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 88px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-brand img {
    width: 142px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 22px;
}

.site-nav__item {
    position: relative;
}

/* XGestion: comparador administrado de planes y modulos */
#comparativa-xgestion,
#comparativa-planes,
#comparativa-modulos {
    scroll-margin-top: calc(var(--site-header-height) + 18px);
}

.xgestion-comparison {
    overflow: clip;
    background: #f4f7fb;
}

.xgestion-comparison .section-heading {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.xgestion-comparison__tabs {
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    width: min(360px, 100%);
    margin: 28px auto;
    padding: 5px;
    border: 1px solid #d3dce8;
    border-radius: 12px;
    background: #fff;
}

.xgestion-comparison__tab {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #2a4160;
    font-weight: 800;
}

.xgestion-comparison__tab.is-active {
    background: var(--brand-primary, #1769aa);
    color: #fff;
    box-shadow: 0 7px 18px rgba(23, 105, 170, .2);
}

.xgestion-comparison__tab:focus-visible,
.xgestion-comparison__segment:focus-visible {
    outline: 3px solid rgba(23, 105, 170, .25);
    outline-offset: 2px;
}

.xgestion-comparison__panel:not(.is-active) {
    display: none;
}

.xgestion-comparison__segments {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.xgestion-comparison__segment {
    min-height: 42px;
    padding: 8px 18px;
    border: 1px solid #cbd6e3;
    border-radius: 999px;
    background: #fff;
    color: #2d4663;
    font-weight: 800;
}

.xgestion-comparison__segment.is-active {
    border-color: #1769aa;
    background: #eaf4ff;
    color: #0b5ca7;
}

.xgestion-comparison__segment-panel {
    display: grid;
    gap: 12px;
}

.xgestion-comparison__segment-panel[hidden] {
    display: none;
}

.xgestion-comparison__group {
    overflow: hidden;
    border: 1px solid #d7e0ea;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(28, 49, 73, .06);
}

.xgestion-comparison__group summary {
    position: relative;
    min-height: 58px;
    padding: 18px 52px 18px 20px;
    color: #172b4d;
    font-size: 18px;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.xgestion-comparison__group summary::-webkit-details-marker {
    display: none;
}

.xgestion-comparison__group summary span::before,
.xgestion-comparison__group summary span::after {
    position: absolute;
    top: 28px;
    right: 22px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #52677f;
    content: "";
}

.xgestion-comparison__group summary span::after {
    transform: rotate(90deg);
    transition: transform .18s ease;
}

.xgestion-comparison__group[open] summary span::after {
    transform: rotate(0);
}

.xgestion-comparison__table-scroll {
    max-width: 100%;
    overflow-x: auto;
    border-top: 1px solid #e1e7ee;
    overscroll-behavior-inline: contain;
}

.xgestion-comparison__table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
}

.xgestion-comparison__table th,
.xgestion-comparison__table td {
    padding: 13px 16px;
    border-bottom: 1px solid #e7ecf2;
}

.xgestion-comparison__table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f7f9fc;
    color: #51647a;
    font-size: 12px;
    text-align: center;
}

.xgestion-comparison__table thead th:first-child,
.xgestion-comparison__table tbody th {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 38%;
    min-width: 250px;
    background: #fff;
    text-align: left;
}

.xgestion-comparison__table thead th:first-child {
    z-index: 4;
    background: #f7f9fc;
}

.xgestion-comparison__table tbody th strong,
.xgestion-comparison__table tbody th small,
.xgestion-comparison__table td small {
    display: block;
}

.xgestion-comparison__table tbody th strong {
    color: #263c57;
    font-size: 14px;
}

.xgestion-comparison__table tbody th small {
    margin-top: 3px;
    color: #748397;
    font-weight: 500;
    line-height: 1.35;
}

.xgestion-comparison__table td {
    min-width: 155px;
    color: #36516f;
    text-align: center;
}

.xgestion-comparison__check {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #dceaff;
    color: #075fb5;
    font-weight: 900;
}

.xgestion-comparison__table td small {
    margin-top: 5px;
    color: #65768b;
    line-height: 1.25;
}

.xgestion-comparison__dash {
    color: #a6b1be;
    font-size: 20px;
}

.xgestion-comparison__modules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.xgestion-comparison__module {
    padding: 20px;
    border: 1px solid #d7e0ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(28, 49, 73, .07);
}

.xgestion-comparison__module header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 13px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8ef;
}

.xgestion-comparison__module header img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.xgestion-comparison__module h3 {
    margin: 0;
    color: #172b4d;
    font-size: 19px;
}

.xgestion-comparison__module header p {
    margin: 4px 0 0;
    color: #687a8f;
    font-size: 13px;
    line-height: 1.4;
}

.xgestion-comparison__module-price {
    text-align: right;
    white-space: nowrap;
}

.xgestion-comparison__module-price strong {
    color: #172b4d;
    font-size: 18px;
}

.xgestion-comparison__module-price span {
    color: #54677d;
    font-size: 12px;
}

.xgestion-comparison__module ul {
    display: grid;
    gap: 11px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.xgestion-comparison__module li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    color: #2c435d;
}

.xgestion-comparison__module li > span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #dceaff;
    color: #075fb5;
    font-size: 12px;
    font-weight: 900;
}

.xgestion-comparison__module li strong,
.xgestion-comparison__module li small {
    display: block;
}

.xgestion-comparison__module li small {
    margin-top: 2px;
    color: #6b7b8e;
    line-height: 1.35;
}

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

    .xgestion-comparison__module header {
        grid-template-columns: auto 1fr;
    }

    .xgestion-comparison__module-price {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .xgestion-comparison__tabs {
        margin: 22px auto;
    }

    .xgestion-comparison__segments {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xgestion-comparison__segment {
        padding-right: 10px;
        padding-left: 10px;
    }

    .xgestion-comparison__group summary {
        min-height: 54px;
        padding: 16px 48px 16px 15px;
        font-size: 16px;
    }

    .xgestion-comparison__table {
        min-width: 650px;
    }

    .xgestion-comparison__table thead th:first-child,
    .xgestion-comparison__table tbody th {
        min-width: 210px;
    }

    .xgestion-comparison__module {
        padding: 16px;
    }
}

/* XMenu: mockup y ajustes aislados de la landing. */
.product-landing--productos-xmenu {
    min-height: 0;
    align-items: stretch;
    background:
        radial-gradient(circle at 78% 20%, rgba(37, 196, 149, 0.2), transparent 28%),
        linear-gradient(135deg, #06283f 0%, #0b4d69 54%, #0a8069 100%);
}

.product-landing--productos-xmenu .hero__slides,
.product-landing--productos-xmenu .hero__slide {
    position: relative;
    inset: auto;
}

.product-landing--productos-xmenu .hero__slides {
    width: 100%;
}

.product-landing--productos-xmenu .hero__slide {
    min-height: max(calc(100vh - var(--site-header-height)), 720px);
    min-height: max(calc(100svh - var(--site-header-height)), 720px);
}

.product-landing--productos-xmenu .product-landing-hero__content--stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    grid-template-areas:
        "pitch stage"
        "actions stage";
    gap: 24px 48px;
    align-content: center;
    align-items: center;
    min-height: max(calc(100vh - var(--site-header-height)), 720px);
    min-height: max(calc(100svh - var(--site-header-height)), 720px);
    padding: 64px 0;
}

.product-landing--productos-xmenu .product-landing-hero__pitch {
    grid-area: pitch;
    align-self: end;
    max-width: 620px;
}

.product-landing--productos-xmenu .product-landing-hero__content--stage .hero__actions {
    grid-area: actions;
    align-self: start;
}

.product-landing--productos-xmenu .xgestion-hero-stage {
    grid-area: stage;
    justify-self: end;
    width: min(100%, 500px);
    background: rgba(238, 250, 246, 0.96);
}

.xgestion-story--productos-xmenu.xgestion-story--pain .xgestion-story-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xgestion-story--productos-xmenu.xgestion-story--pain .xgestion-story-tag {
    width: auto;
    height: auto;
    overflow: visible;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 1.2;
    text-align: right;
    text-overflow: clip;
    white-space: normal;
}

.product-features--productos-xmenu .product-features__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 40px 24px;
}

.product-landing-cta--productos-xmenu .product-landing-cta__inner {
    background: linear-gradient(128deg, #06283f, #0c745f);
    border-radius: 28px;
    padding: clamp(32px, 4vw, 54px);
}

.xmenu-screen {
    width: min(100%, 430px);
    margin: 0 auto;
    overflow: hidden;
    color: #183044;
    background: #f6f4ed;
    border: 8px solid #173d42;
    border-radius: 30px;
    box-shadow: 0 24px 54px rgba(5, 39, 52, 0.25);
    font-family: inherit;
}

.xmenu-screen__topbar {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    color: #fff;
    background: #184f4d;
}

.xmenu-screen__logo {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: #184f4d;
    background: #f8dfaa;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.xmenu-screen__topbar div {
    display: grid;
    min-width: 0;
}

.xmenu-screen__topbar strong {
    letter-spacing: 0.08em;
    font-size: 12px;
}

.xmenu-screen__topbar small {
    opacity: 0.72;
    font-size: 9px;
}

.xmenu-screen__menu {
    display: grid;
    gap: 3px;
    margin-left: auto;
}

.xmenu-screen__menu i {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.xmenu-screen__body {
    padding: 15px;
}

.xmenu-screen__search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    color: #80908d;
    background: #fff;
    border: 1px solid #dce5df;
    border-radius: 12px;
    font-size: 10px;
}

.xmenu-screen__search span {
    width: 11px;
    height: 11px;
    border: 2px solid #64817b;
    border-radius: 50%;
    position: relative;
}

.xmenu-screen__search span::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 5px;
    height: 2px;
    background: #64817b;
    transform: rotate(45deg);
}

.xmenu-screen__categories {
    display: flex;
    gap: 6px;
    overflow: hidden;
    margin: 11px 0 13px;
}

.xmenu-screen__categories span {
    flex: 0 0 auto;
    padding: 6px 9px;
    color: #526a65;
    background: #e7ece7;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
}

.xmenu-screen__categories .is-active {
    color: #fff;
    background: #d2814d;
}

.xmenu-screen__products {
    display: grid;
    gap: 8px;
}

.xmenu-screen__products article {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 11px;
    align-items: center;
    padding: 8px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 5px 13px rgba(45, 66, 57, 0.06);
}

.xmenu-screen__products article > div {
    display: grid;
    gap: 3px;
}

.xmenu-screen__products strong {
    font-size: 10px;
}

.xmenu-screen__products small {
    color: #778985;
    font-size: 8px;
    line-height: 1.35;
}

.xmenu-screen__products b {
    color: #c86435;
    font-size: 11px;
}

.xmenu-screen__photo {
    display: grid;
    place-items: center;
    height: 58px;
    overflow: hidden;
    border-radius: 10px;
}

.xmenu-screen__photo i {
    width: 42px;
    height: 30px;
    border-radius: 50% 50% 42% 42%;
    box-shadow: inset 0 -7px 0 rgba(255, 255, 255, 0.25);
}

.xmenu-screen__photo--green {
    background: linear-gradient(145deg, #f2d7a2, #9bc384);
}

.xmenu-screen__photo--green i {
    background: #4d8d60;
}

.xmenu-screen__photo--coffee {
    background: linear-gradient(145deg, #e7c797, #936a4f);
}

.xmenu-screen__photo--coffee i {
    background: #f6e5c9;
    border: 4px solid #80563d;
}

.xmenu-screen__photo--berry {
    background: linear-gradient(145deg, #e8c5cf, #8c5065);
}

.xmenu-screen__photo--berry i {
    background: #a72d55;
}

@media (max-width: 520px) {
    .xmenu-screen {
        border-width: 6px;
        border-radius: 24px;
    }

    .xmenu-screen__products article {
        grid-template-columns: 68px 1fr;
    }
}

@media (max-width: 960px) {
    .product-landing--productos-xmenu .hero__slide,
    .product-landing--productos-xmenu .product-landing-hero__content--stage {
        min-height: 0;
    }

    .product-landing--productos-xmenu .product-landing-hero__content--stage {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "pitch"
            "actions"
            "stage";
        gap: 22px;
        max-width: 720px;
        padding: 56px 0 68px;
    }

    .product-landing--productos-xmenu .product-landing-hero__pitch,
    .product-landing--productos-xmenu .product-landing-hero__content--stage .hero__actions {
        justify-self: start;
    }

    .product-landing--productos-xmenu .xgestion-hero-stage {
        justify-self: center;
        width: min(100%, 540px);
    }

    .product-features--productos-xmenu .product-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .xgestion-story--productos-xmenu.xgestion-story--pain .xgestion-story-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    .product-landing--productos-xmenu .product-landing-hero__content--stage {
        padding: 44px 0 52px;
    }

    .product-features--productos-xmenu .product-features__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.site-nav > .site-nav__item.has-dropdown > .site-nav__link {
    padding-right: 38px;
}

.site-nav__root-toggle {
    position: relative;
}

.site-nav__root-toggle .site-nav__dropdown-chevron {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-65%) rotate(45deg);
}

.site-nav__root-toggle[aria-expanded="true"] .site-nav__dropdown-chevron {
    transform: translateY(-35%) rotate(225deg);
}

.site-nav > .site-nav__item.has-dropdown:hover > .site-nav__link,
.site-nav > .site-nav__item.has-dropdown:focus-within > .site-nav__link,
.site-nav > .site-nav__item.has-dropdown > .site-nav__link.has-open-submenu {
    background: var(--site-primary);
    color: #fff;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: #6d6d6d;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: var(--site-primary);
    color: #fff;
}

.site-nav__link-copy {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 0;
    text-align: left;
}

.site-nav__link-title {
    display: block;
}

.site-nav__link-description {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 2px;
    color: var(--site-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-nav__dropdown .site-nav__link:hover .site-nav__link-description,
.site-nav__dropdown .site-nav__link.is-active .site-nav__link-description {
    color: currentColor;
}

.site-nav__item.has-dropdown .site-nav__link span {
    font-weight: 900;
}

.site-nav__link--cta {
    background: var(--site-primary);
    color: #fff;
}

.site-nav__login {
    justify-content: center;
}

.site-nav__login svg {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 240px;
    padding: 8px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(19, 32, 45, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.site-nav > .site-nav__item > .site-nav__dropdown {
    min-width: 300px;
}

.site-nav__dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--site-ink);
    text-decoration: none;
}

.site-nav__dropdown a:hover {
    background: var(--site-soft);
    color: var(--site-primary-dark);
}

.site-nav__section-label {
    margin: 0 4px 6px;
    padding: 7px 8px 10px;
    border-bottom: 1px solid #d7e3f0;
    color: #667085;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-nav__item:hover > .site-nav__dropdown,
.site-nav__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero__actions,
.product-card__actions,
.cta-band__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav__languages {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.site-nav__language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 26px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-nav__language:hover {
    border-color: var(--site-line);
    background: var(--site-soft);
}

.site-nav__language.is-active {
    border-color: var(--site-primary);
    background: #eaf4fb;
    box-shadow: 0 0 0 2px rgba(15, 111, 179, 0.14);
}

.site-nav__language img {
    width: 18px;
    height: auto;
}

.site-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.site-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--site-ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

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

.xgestion-cta-actions .btn {
    gap: 9px;
}

.site-cta-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.btn--primary {
    background: var(--site-primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--site-primary-dark);
}

.btn--secondary {
    background: #eaf6f2;
    color: #11674f;
    border-color: #bde1d5;
}

.btn--ghost {
    background: #fff;
    color: var(--site-primary-dark);
    border-color: var(--site-line);
}

.btn--light {
    background: #fff;
    color: var(--site-primary-dark);
}

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

.text-link {
    color: var(--site-primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #101820;
}

.hero--carousel {
    align-items: stretch;
}

.hero--compact {
    min-height: 470px;
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.82s ease, visibility 0.82s;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero__image,
.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media {
    background: #102333;
    transform: scale(1.035);
    min-width: 100%;
    min-height: 100%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 3px 3px,
        linear-gradient(90deg, rgba(6, 10, 16, 0.76), rgba(6, 10, 16, 0.56), rgba(6, 10, 16, 0.72));
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 36px 0 92px 48px;
    color: #fff;
}

.hero__content h1,
.hero__content h2 {
    max-width: 690px;
    margin: 0 0 22px;
    font-size: clamp(48px, 5vw, 86px);
    line-height: 1.12;
    letter-spacing: 0;
    color: #fff;
    font-weight: 800;
}

.hero__content p {
    max-width: 760px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.38;
    font-weight: 500;
}

.hero__content .section-eyebrow {
    color: #fff;
}

.hero__cta {
    min-width: 164px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 3px;
    font-size: 0.84rem;
    letter-spacing: 0.01em;
}

.hero__controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__arrow,
.hero__dots button {
    pointer-events: auto;
}

.hero__arrow {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 3px;
    background: rgba(116, 121, 128, 0.72);
    color: #fff;
    cursor: pointer;
    font-size: 3.35rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.16s ease;
}

.hero__arrow[data-hero-prev] {
    left: 0;
}

.hero__arrow[data-hero-next] {
    right: 0;
}

.hero__arrow:hover {
    background: rgba(116, 121, 128, 0.94);
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.hero__dots button {
    width: 17px;
    height: 17px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: rgba(161, 166, 172, 0.86);
    cursor: pointer;
}

.hero__dots button.is-active {
    width: 17px;
    background: transparent;
    border-color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.hero__slide.is-active .hero__media {
    animation: hero-media-drift 7.2s ease-out forwards;
}

@keyframes hero-media-drift {
    from {
        transform: scale(1.035);
    }

    to {
        transform: scale(1.085);
    }
}

.home-hero-carousel {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: calc(100vh - var(--site-header-height));
    min-height: max(650px, calc(100svh - var(--site-header-height)));
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 20%, rgba(16, 131, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #030812 0%, #061426 46%, #02060d 100%);
    color: #fff;
    isolation: isolate;
}

.home-hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle, rgba(89, 190, 255, 0.18) 1px, transparent 1.4px) 0 0 / 28px 28px,
        linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.14) 52%, rgba(0, 0, 0, 0.42));
    opacity: 0.55;
    pointer-events: none;
}

.hero-carousel-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 1;
    display: grid;
    align-items: stretch;
    min-height: inherit;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity 0.78s ease, transform 0.78s ease, visibility 0.78s;
    visibility: hidden;
}

.hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
}

.hero-slide__ambient,
.hero-slide__video,
.hero-slide__video-fallback {
    position: absolute;
    inset: 0;
}

.hero-slide__ambient {
    background:
        radial-gradient(circle at 80% 30%, rgba(0, 133, 255, 0.24), transparent 28%),
        radial-gradient(circle at 15% 72%, rgba(18, 217, 255, 0.1), transparent 28%),
        linear-gradient(90deg, rgba(2, 8, 18, 0.92), rgba(4, 17, 32, 0.78), rgba(2, 8, 18, 0.7));
}

.hero-slide--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 42%, transparent 0, rgba(0, 0, 0, 0.45) 54%, rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(90deg, rgba(2, 8, 18, 0.92), rgba(2, 8, 18, 0.58) 52%, rgba(2, 8, 18, 0.72));
}

.hero-slide__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #061426;
    filter: saturate(0.9) contrast(1.06);
}

.hero-slide__video-fallback {
    z-index: -1;
    background:
        linear-gradient(rgba(4, 14, 28, 0.76), rgba(4, 14, 28, 0.86)),
        var(--home-video-poster, none) center / cover no-repeat,
        #061426;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - var(--site-header-height));
    min-height: max(650px, calc(100svh - var(--site-header-height)));
    padding: clamp(44px, 7vh, 82px) 0 94px;
}

.hero-slide__copy {
    min-width: 0;
}

.hero-slide__eyebrow {
    margin: 0 0 18px;
    color: #29a8ff;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-slide h1,
.hero-slide h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: balance;
}

.hero-slide h1 span {
    color: #36c7ff;
}

.hero-slide__lead {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.45vw, 1.34rem);
    font-weight: 600;
    line-height: 1.58;
}

.hero-slide__kicker {
    display: inline-flex;
    margin: 20px 0 0;
    padding: 7px 12px;
    border: 1px solid rgba(125, 205, 255, 0.32);
    border-radius: 999px;
    background: rgba(5, 24, 43, 0.66);
    color: #d7f4ff;
    font-size: 0.92rem;
    font-weight: 900;
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-slide__button {
    min-height: 56px;
    min-width: 184px;
    padding: 0 22px;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 92, 184, 0.22);
}

.hero-slide__button svg,
.home-hero-carousel button svg {
    width: 19px;
    height: 19px;
    margin-left: 9px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-slide__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-slide__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero-slide__trust svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #5de0ff;
    stroke-width: 2.4;
}

.hero-slide__visual {
    position: relative;
    min-width: 0;
}

.hero-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-network span {
    position: absolute;
    border: 1px solid rgba(63, 187, 255, 0.4);
    border-radius: 50%;
    opacity: 0.72;
}

.hero-network span:nth-child(1) {
    top: 8%;
    right: 6%;
    width: 58%;
    aspect-ratio: 1;
}

.hero-network span:nth-child(2) {
    top: 18%;
    right: 18%;
    width: 76%;
    aspect-ratio: 1;
}

.hero-network span:nth-child(3) {
    top: 2%;
    right: 26%;
    width: 86%;
    aspect-ratio: 1;
    border-style: dashed;
}

.hero-brand-cloud {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-brand-cloud img {
    position: absolute;
    display: block;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 44px rgba(0, 126, 255, 0.26));
}

.hero-brand-cloud__mark {
    top: 10%;
    right: 18%;
    width: min(82px, 9vw);
    opacity: 0.13;
    transform: rotate(-8deg);
}

.hero-brand-cloud__logo {
    right: 5%;
    bottom: 12%;
    width: min(148px, 15vw);
    opacity: 0.09;
}

.platform-stage-scope .product-stage {
    position: relative;
    z-index: 1;
    min-height: 535px;
}

.platform-stage-scope .browser {
    position: absolute;
    inset: 12px 0 38px 30px;
    overflow: hidden;
    border: 1px solid rgba(178, 222, 255, 0.42);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 10, 28, 0.5);
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.platform-stage-scope .browser-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 43px;
    padding: 0 14px;
    border-bottom: 1px solid #e3ebf1;
    background: #f4f7fa;
}

.platform-stage-scope .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c6d2dc;
}

.platform-stage-scope .dot:nth-child(1) { background: #ff7b72; }
.platform-stage-scope .dot:nth-child(2) { background: #f5c451; }
.platform-stage-scope .dot:nth-child(3) { background: #47c98e; }

.platform-stage-scope .address {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 280px;
    height: 24px;
    margin-left: 8px;
    padding: 0 10px;
    border: 1px solid #dde7ee;
    border-radius: 7px;
    background: #fff;
    color: #8391a0;
    font-size: 10px;
}

.platform-stage-scope .demo-badge {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: #e6f7f3;
    color: #087d69;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.platform-stage-scope .app-shell {
    display: grid;
    grid-template-columns: 116px 1fr;
    height: calc(100% - 43px);
    background: #f5f8fb;
}

.platform-stage-scope .sidebar {
    padding: 16px 12px;
    background: #0b2949;
    color: #cbd9e6;
}

.platform-stage-scope .mini-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.platform-stage-scope .mini-brand img {
    width: 18px;
    height: 20px;
    object-fit: contain;
}

.platform-stage-scope .mini-logo {
    position: relative;
    width: 18px;
    height: 20px;
}

.platform-stage-scope .mini-logo::before,
.platform-stage-scope .mini-logo::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 5px;
    width: 7px;
    height: 22px;
    background: #40aeea;
    transform: skew(-24deg);
}

.platform-stage-scope .mini-logo::after {
    left: 8px;
    background: #fff;
    transform: skew(24deg);
}

.platform-stage-scope .side-item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    margin-bottom: 5px;
    padding: 0 8px;
    border-radius: 7px;
    font-size: 8px;
}

.platform-stage-scope .side-item.active {
    background: #0d78bd;
    color: #fff;
}

.platform-stage-scope .side-icon {
    width: 11px;
    height: 11px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

.platform-stage-scope .app-main {
    overflow: hidden;
    padding: 17px 19px 20px;
}

.platform-stage-scope .app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.platform-stage-scope .app-head h2 {
    margin: 0;
    color: #16314d;
    font-size: 15px;
    line-height: 1.2;
}

.platform-stage-scope .app-head p {
    margin: 3px 0 0;
    color: #8090a2;
    font-size: 8px;
}

.platform-stage-scope .branch-switch {
    display: flex;
    gap: 5px;
    padding: 4px;
    border-radius: 8px;
    background: #eaf0f5;
}

.platform-stage-scope .branch-btn {
    padding: 5px 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #637488;
    cursor: pointer;
    font-size: 7px;
    font-weight: 800;
}

.platform-stage-scope .branch-btn.active {
    background: #fff;
    color: #0f6fb3;
    box-shadow: 0 3px 8px rgba(10, 40, 70, 0.08);
}

.platform-stage-scope .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.platform-stage-scope .metric,
.platform-stage-scope .panel {
    min-width: 0;
    border: 1px solid #e3ebf1;
    border-radius: 10px;
    background: #fff;
}

.platform-stage-scope .metric {
    padding: 10px;
}

.platform-stage-scope .metric-label,
.platform-stage-scope .metric-delta,
.platform-stage-scope .panel-title,
.platform-stage-scope .branch-name,
.platform-stage-scope .branch-amount,
.platform-stage-scope .alert {
    font-size: 7px;
}

.platform-stage-scope .metric-label {
    overflow: hidden;
    margin-bottom: 5px;
    color: #78899b;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-stage-scope .metric-value {
    color: #16314d;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.platform-stage-scope .metric-delta {
    margin-top: 4px;
    color: #079269;
    font-weight: 800;
}

.platform-stage-scope .metric-delta--warning {
    color: #d58222;
}

.platform-stage-scope .dashboard-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    gap: 9px;
}

.platform-stage-scope .panel {
    padding: 11px;
}

.platform-stage-scope .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #213c58;
    font-weight: 900;
}

.platform-stage-scope .chart-wrap {
    position: relative;
    height: 125px;
}

.platform-stage-scope .chart-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, transparent 0, transparent 30px, #edf2f6 31px);
}

.platform-stage-scope .chart-svg {
    position: absolute;
    inset: 8px 0 4px;
    width: 100%;
    height: 110px;
    overflow: visible;
}

.platform-stage-scope .chart-area { fill: url(#platformAreaGradient); }
.platform-stage-scope .chart-line { fill: none; stroke: #0b82d1; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.platform-stage-scope .chart-dot { fill: #fff; stroke: #0b82d1; stroke-width: 2; }

.platform-stage-scope .branch-list,
.platform-stage-scope .alert-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.platform-stage-scope .branch-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.platform-stage-scope .branch-name {
    margin-bottom: 3px;
    color: #53667a;
    font-weight: 800;
}

.platform-stage-scope .progress {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #eaf0f4;
}

.platform-stage-scope .progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0a78c9, #54c4f2);
}

.platform-stage-scope .branch-amount {
    color: #193651;
    font-weight: 900;
}

.platform-stage-scope .alert-list {
    margin-top: 10px;
    gap: 5px;
}

.platform-stage-scope .alert {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 7px;
    background: #f6f9fb;
    color: #4f6276;
}

.platform-stage-scope .alert i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f5a33b;
}

.platform-stage-scope .alert .alert-ok {
    background: #1bb59b;
}

.platform-stage-scope .floating-card {
    position: absolute;
    top: 64px;
    right: -22px;
    z-index: 3;
    width: 184px;
    padding: 14px;
    border: 1px solid #dce8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 44px rgba(8, 43, 72, 0.17);
    animation: home-float 5s ease-in-out infinite;
}

.platform-stage-scope .floating-card small,
.platform-stage-scope .mobile-kpi span,
.platform-stage-scope .mobile-kpi small,
.platform-stage-scope .mobile-mini span {
    display: block;
}

.platform-stage-scope .floating-card small {
    margin-bottom: 7px;
    color: #718397;
    font-size: 9px;
    font-weight: 800;
}

.platform-stage-scope .floating-card strong {
    color: #15324f;
    font-size: 15px;
}

.platform-stage-scope .floating-card .status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #078d68;
    font-size: 9px;
    font-weight: 900;
}

.platform-stage-scope .floating-card .status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18b784;
    box-shadow: 0 0 0 5px rgba(24, 183, 132, 0.12);
}

.platform-stage-scope .mobile-card {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 174px;
    height: 290px;
    padding: 8px;
    border-radius: 26px;
    background: #101e2d;
    box-shadow: 0 24px 60px rgba(5, 25, 44, 0.28);
    transform: rotate(-2deg);
}

.platform-stage-scope .mobile-inner {
    height: 100%;
    overflow: hidden;
    padding: 11px;
    border-radius: 20px;
    background: #f4f8fb;
}

.platform-stage-scope .mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.platform-stage-scope .mobile-top b {
    color: #1a3854;
    font-size: 8px;
}

.platform-stage-scope .mobile-top i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d9ecf7;
}

.platform-stage-scope .mobile-kpi {
    margin-bottom: 9px;
    padding: 11px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a78c9, #0b95dd);
    color: #fff;
}

.platform-stage-scope .mobile-kpi span,
.platform-stage-scope .mobile-kpi small {
    font-size: 7px;
    opacity: 0.86;
}

.platform-stage-scope .mobile-kpi strong {
    display: block;
    margin-top: 3px;
    font-size: 18px;
}

.platform-stage-scope .mobile-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.platform-stage-scope .mobile-mini,
.platform-stage-scope .mobile-chart {
    border: 1px solid #e1e9ef;
    border-radius: 9px;
    background: #fff;
}

.platform-stage-scope .mobile-mini {
    padding: 8px;
}

.platform-stage-scope .mobile-mini span {
    color: #789;
    font-size: 6px;
}

.platform-stage-scope .mobile-mini strong {
    display: block;
    margin-top: 4px;
    color: #173651;
    font-size: 11px;
}

.platform-stage-scope .mobile-chart {
    height: 68px;
    margin-top: 8px;
    padding: 7px;
    border-radius: 10px;
}

.hero-slide--argentina {
    --presence-bg: #020b18;
    --presence-bg-soft: #041a31;
    --presence-blue: #0769e8;
    --presence-blue-hot: #2b91ff;
    --presence-cyan: #55dcff;
    --presence-text: #d4deeb;
    --presence-border: rgba(60, 145, 255, 0.45);
    --presence-parallax-x: 0px;
    --presence-parallax-y: 0px;
    --presence-tilt-x: 0deg;
    --presence-tilt-y: 0deg;
}

.xsoft-presence-hero {
    position: relative;
    min-height: inherit;
    overflow: hidden;
    background:
        radial-gradient(circle at 63% 49%, rgba(43, 145, 255, 0.18), transparent 35%),
        radial-gradient(circle at 88% 24%, rgba(85, 220, 255, 0.12), transparent 30%),
        linear-gradient(112deg, rgba(2, 11, 24, 0.98) 0%, rgba(4, 18, 35, 0.96) 48%, rgba(2, 10, 22, 0.98) 100%);
    color: #fff;
}

.xsoft-presence-hero::before,
.xsoft-presence-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.xsoft-presence-hero::before {
    z-index: 0;
    background:
        radial-gradient(circle, rgba(79, 184, 255, 0.24) 1px, transparent 1.5px) 0 0 / 36px 36px,
        linear-gradient(90deg, rgba(2, 11, 24, 0.88), rgba(2, 11, 24, 0.22) 58%, rgba(2, 11, 24, 0.72));
    opacity: 0.5;
}

.xsoft-presence-hero::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.12), transparent 42%, rgba(2, 11, 24, 0.32)),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.5), transparent 48%);
}

.xsoft-presence-hero__glow {
    position: absolute;
    z-index: 0;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(43, 145, 255, 0.18);
    filter: blur(46px);
    opacity: 0.72;
    pointer-events: none;
    animation: presence-glow-drift 16s ease-in-out infinite alternate;
}

.xsoft-presence-hero__glow--one {
    top: 8%;
    right: 22%;
}

.xsoft-presence-hero__glow--two {
    right: -10%;
    bottom: 2%;
    background: rgba(85, 220, 255, 0.12);
    animation-duration: 20s;
    animation-delay: -6s;
}

.xsoft-presence-hero__inner {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(26px, 3.5vw, 62px);
}

.xsoft-presence-hero__copy {
    max-width: 700px;
}

.xsoft-presence-hero .hero-slide__eyebrow {
    color: var(--presence-blue-hot);
    text-shadow: 0 0 18px rgba(43, 145, 255, 0.4);
}

.xsoft-presence-hero h2 {
    max-width: 720px;
    font-size: clamp(54px, 5.8vw, 88px);
    line-height: 1.04;
    text-wrap: balance;
}

.xsoft-presence-hero__rule {
    display: block;
    width: 92px;
    height: 4px;
    margin: 26px 0 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--presence-blue), var(--presence-cyan));
    box-shadow: 0 0 22px rgba(43, 145, 255, 0.64);
}

.xsoft-presence-hero .hero-slide__lead {
    max-width: 700px;
    margin-top: 24px;
    color: var(--presence-text);
    font-size: clamp(1.02rem, 1.35vw, 1.34rem);
    line-height: 1.62;
}

.hero-argentina.xsoft-presence-hero__visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(430px, 1fr) minmax(360px, 0.48fr);
    gap: clamp(14px, 1.8vw, 28px);
    align-items: center;
    min-width: 0;
    perspective: 1200px;
    transform: translate3d(var(--presence-parallax-x), var(--presence-parallax-y), 0);
    transition: transform 0.18s ease-out;
}

.xsoft-presence-hero__map-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 600px;
    transform: rotateX(var(--presence-tilt-x)) rotateY(var(--presence-tilt-y));
    transform-style: preserve-3d;
    transition: transform 0.18s ease-out;
}

.xsoft-presence-hero__map-wrap::before {
    content: "";
    position: absolute;
    width: 76%;
    aspect-ratio: 1;
    border: 1px solid rgba(43, 145, 255, 0.3);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(43, 145, 255, 0.18), transparent 58%),
        repeating-radial-gradient(circle, transparent 0 74px, rgba(43, 145, 255, 0.22) 75px 76px);
    box-shadow: inset 0 0 60px rgba(43, 145, 255, 0.14);
    opacity: 0.78;
}

.hero-argentina__map.xsoft-presence-map {
    position: relative;
    z-index: 2;
    width: min(100%, 640px);
    max-height: 720px;
    margin: 0 auto;
    overflow: visible;
    filter: drop-shadow(0 0 22px rgba(43, 145, 255, 0.55)) drop-shadow(0 34px 48px rgba(0, 0, 0, 0.34));
    animation: presence-map-float 12s ease-in-out infinite;
}

.presence-network path {
    fill: none;
    stroke: rgba(43, 145, 255, 0.34);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    filter: drop-shadow(0 0 6px rgba(43, 145, 255, 0.58));
}

.hero-slide--argentina.is-animating .presence-network path {
    animation: presence-line-draw 2.8s ease forwards;
}

.presence-network path:nth-child(2) { animation-delay: 0.25s; }
.presence-network path:nth-child(3) { animation-delay: 0.5s; }
.presence-network path:nth-child(4) { animation-delay: 0.75s; }

.presence-map-depth {
    fill: rgba(5, 48, 112, 0.8);
    stroke: rgba(27, 128, 236, 0.34);
    stroke-width: 2;
}

.presence-map-depth--two {
    transform: translate(14px, 18px);
    opacity: 0.22;
}

.presence-map-depth--one {
    transform: translate(8px, 10px);
    opacity: 0.36;
}

.presence-map-core {
    fill: url(#presenceArgentinaFill);
    opacity: 0.9;
    filter: url(#presenceArgentinaGlow);
}

.presence-map-outline {
    fill: none;
    stroke: #76ddff;
    stroke-width: 4.5;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(43, 145, 255, 0.95));
}

.presence-map-island {
    fill: url(#presenceArgentinaFill);
    stroke: #76ddff;
    stroke-width: 3;
    filter: drop-shadow(0 0 10px rgba(43, 145, 255, 0.72));
    opacity: 0.82;
}

.presence-map-island--small {
    opacity: 0.62;
}

.presence-map-grid path {
    fill: none;
    stroke: rgba(180, 235, 255, 0.2);
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-dasharray: 7 10;
}

.presence-map-provinces path {
    fill: none;
    stroke: rgba(220, 250, 255, 0.54);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(43, 145, 255, 0.58));
}

.presence-flow path {
    fill: none;
    stroke: rgba(207, 247, 255, 0.42);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-dasharray: 10 12;
    animation: presence-flow 9s linear infinite;
    opacity: 0.72;
}

.presence-flow path:nth-child(2) { animation-delay: -1.3s; }
.presence-flow path:nth-child(3) { animation-delay: -2.6s; }

.presence-pins g {
    transform-box: fill-box;
    transform-origin: center;
}

.presence-pins circle:first-child {
    fill: url(#presencePinGlow);
    opacity: 0.64;
    transform-box: fill-box;
    transform-origin: center;
    animation: presence-pin-pulse 4.8s ease-in-out infinite;
    animation-delay: var(--pin-delay);
}

.presence-pins path {
    fill: #f7fdff;
    stroke: #2b91ff;
    stroke-width: 2.2;
    filter: drop-shadow(0 0 8px rgba(85, 220, 255, 0.95));
}

.presence-pins circle:last-child {
    fill: #0a79ec;
}

.presence-pins .presence-pin--rosario circle:first-child {
    opacity: 0.8;
}

.presence-pins .presence-pin--rosario path {
    stroke-width: 2.6;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.88)) drop-shadow(0 0 18px rgba(43, 145, 255, 0.95));
}

.hero-argentina__cards.xsoft-presence-kpis {
    display: grid;
    gap: 18px;
}

.xsoft-presence-kpi {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 4px 18px;
    align-items: center;
    min-width: 0;
    min-height: 118px;
    padding: 20px 22px;
    border: 1px solid var(--presence-border);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(10, 39, 72, 0.78), rgba(5, 20, 39, 0.64)),
        rgba(4, 26, 49, 0.62);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transform: translateY(18px);
    opacity: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-slide--argentina.is-animating .xsoft-presence-kpi {
    animation: presence-card-in 0.78s cubic-bezier(.2, .75, .24, 1) forwards;
}

.hero-slide--argentina.is-animating .xsoft-presence-kpi:nth-child(2) { animation-delay: 0.14s; }
.hero-slide--argentina.is-animating .xsoft-presence-kpi:nth-child(3) { animation-delay: 0.28s; }

.xsoft-presence-kpi:hover,
.xsoft-presence-kpi:focus-within {
    border-color: rgba(96, 210, 255, 0.78);
    background:
        linear-gradient(135deg, rgba(14, 55, 98, 0.88), rgba(5, 20, 39, 0.72)),
        rgba(6, 36, 70, 0.7);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.38), 0 0 32px rgba(43, 145, 255, 0.22);
    transform: translateY(-4px) rotateX(var(--presence-tilt-x)) rotateY(var(--presence-tilt-y));
}

.xsoft-presence-kpi__icon {
    position: relative;
    display: grid;
    place-items: center;
    grid-row: 1 / span 2;
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    border: 2px solid rgba(104, 214, 255, 0.84);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 145, 255, 0.36), rgba(7, 105, 232, 0.12) 70%);
    box-shadow: inset 0 0 18px rgba(85, 220, 255, 0.2), 0 0 18px rgba(43, 145, 255, 0.32);
}

.xsoft-presence-kpi svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 33px;
    height: 33px;
    display: block;
    fill: none;
    stroke: #eafaff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translate(-50%, -50%);
}

.xsoft-presence-kpi strong,
.xsoft-presence-kpi span {
    display: block;
}

.xsoft-presence-kpi > strong,
.xsoft-presence-kpi > span:last-child {
    grid-column: 2;
}

.xsoft-presence-kpi strong {
    color: #fff;
    font-size: clamp(1.14rem, 1.32vw, 1.46rem);
    font-weight: 900;
    line-height: 1.12;
}

.xsoft-presence-kpi strong [data-presence-count] {
    font-size: clamp(1.7rem, 2.1vw, 2.55rem);
}

.xsoft-presence-kpi > span:last-child,
.xsoft-presence-kpi strong + span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.42;
}

.xsoft-presence-kpi--message strong {
    font-size: clamp(1.04rem, 1.05vw, 1.18rem);
    line-height: 1.28;
}

.xsoft-presence-hero__copy .hero-slide__eyebrow,
.xsoft-presence-hero__copy h2,
.xsoft-presence-hero__rule,
.xsoft-presence-hero__copy .hero-slide__lead,
.xsoft-presence-hero__copy .hero-slide__actions {
    opacity: 0;
    transform: translateY(20px);
}

.xsoft-presence-hero__map-wrap {
    opacity: 0;
}

.hero-slide--argentina.is-animating .xsoft-presence-hero__copy .hero-slide__eyebrow,
.hero-slide--argentina.is-animating .xsoft-presence-hero__copy h2,
.hero-slide--argentina.is-animating .xsoft-presence-hero__rule,
.hero-slide--argentina.is-animating .xsoft-presence-hero__copy .hero-slide__lead,
.hero-slide--argentina.is-animating .xsoft-presence-hero__copy .hero-slide__actions {
    animation: presence-copy-in 0.86s cubic-bezier(.2, .75, .24, 1) forwards;
}

.hero-slide--argentina.is-animating .xsoft-presence-hero__copy h2 { animation-delay: 0.1s; }
.hero-slide--argentina.is-animating .xsoft-presence-hero__rule { animation-delay: 0.2s; }
.hero-slide--argentina.is-animating .xsoft-presence-hero__copy .hero-slide__lead { animation-delay: 0.3s; }
.hero-slide--argentina.is-animating .xsoft-presence-hero__copy .hero-slide__actions { animation-delay: 0.42s; }

.hero-slide--argentina.is-animating .xsoft-presence-hero__map-wrap {
    animation: presence-map-in 1s cubic-bezier(.2, .75, .24, 1) 0.16s forwards;
}

@keyframes presence-copy-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes presence-map-in {
    from {
        opacity: 0;
        filter: blur(6px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes presence-map-float {
    0%,
    100% {
        transform: translate3d(0, -3px, 0);
    }

    50% {
        transform: translate3d(0, 4px, 0);
    }
}

@keyframes presence-line-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes presence-flow {
    to {
        stroke-dashoffset: -120;
    }
}

@keyframes presence-pin-pulse {
    0%,
    100% {
        opacity: 0.82;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes presence-card-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes presence-glow-drift {
    from {
        transform: translate3d(-18px, -10px, 0) scale(0.96);
    }

    to {
        transform: translate3d(22px, 18px, 0) scale(1.08);
    }
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(5, 21, 40, 0.58);
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-carousel-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    transform-origin: center;
}

.hero-carousel-arrow--prev::before {
    transform: translate(-50%, -50%) rotate(225deg);
}

.hero-carousel-arrow--next::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero-carousel-arrow--prev {
    left: 20px;
    border-radius: 8px;
}

.hero-carousel-arrow--next {
    right: 20px;
    border-radius: 8px;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
    background: rgba(17, 102, 190, 0.74);
}

.hero-carousel-dots {
    position: absolute;
    right: 50%;
    bottom: 34px;
    z-index: 8;
    display: flex;
    gap: 10px;
    transform: translateX(50%);
}

.hero-carousel-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.hero-carousel-dots button.is-active {
    border-color: #159cff;
    background: #159cff;
    box-shadow: 0 0 0 5px rgba(21, 156, 255, 0.18);
}

.hero-carousel-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    height: 3px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-carousel-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0f6fb3, #27d7ff);
}

.home-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4, 18, 31, 0.68);
    backdrop-filter: blur(8px);
}

.home-demo-modal.is-open {
    display: flex;
}

.home-demo-modal__dialog {
    position: relative;
    width: min(100%, 580px);
    max-height: min(720px, calc(100vh - 40px));
    overflow: auto;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.home-demo-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--site-line);
    border-radius: 10px;
    background: #fff;
    color: var(--site-ink);
    cursor: pointer;
}

.home-demo-modal__close svg,
.home-demo-modal__success-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.home-demo-modal__eyebrow {
    margin: 0 0 8px;
    color: var(--site-primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-demo-modal h2 {
    margin: 0 42px 8px 0;
    color: var(--site-ink);
    font-size: clamp(28px, 5vw, 34px);
    line-height: 1.08;
}

.home-demo-modal p {
    margin: 0 0 22px;
    color: var(--site-muted);
}

.home-demo-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.home-demo-modal label {
    display: grid;
    gap: 7px;
    color: #385168;
    font-size: 0.82rem;
    font-weight: 900;
}

.home-demo-modal__field-wide {
    grid-column: 1 / -1;
}

.home-demo-modal input,
.home-demo-modal select,
.home-demo-modal textarea {
    width: 100%;
    border: 1px solid #d5e2eb;
    border-radius: 11px;
    padding: 12px 13px;
    background: #fbfdfe;
    color: var(--site-ink);
    font: inherit;
}

.home-demo-modal input:focus,
.home-demo-modal select:focus,
.home-demo-modal textarea:focus {
    border-color: #4daee1;
    box-shadow: 0 0 0 3px rgba(77, 174, 225, 0.15);
    outline: 0;
}

.home-demo-modal__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.home-demo-modal__actions span {
    max-width: 260px;
    color: #7b8d9e;
    font-size: 0.72rem;
}

.home-demo-modal__success {
    padding: 35px 12px;
    text-align: center;
}

.home-demo-modal__success-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f8f3;
    color: #0e9d78;
}

body.modal-open {
    overflow: hidden;
}

@keyframes home-float {
    50% {
        transform: translateY(-8px);
    }
}

@keyframes home-pin-pulse {
    50% {
        opacity: 0.62;
        transform: scale(1.25);
    }
}

.section {
    padding: 84px 0;
}

.section--muted {
    background: var(--site-soft);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-eyebrow {
    margin: 0 0 10px;
    color: var(--site-warm);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section h2,
.section-heading h2,
.cta-band h2,
.subhero h1 {
    margin: 0;
    color: var(--site-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section p,
.subhero p {
    color: var(--site-muted);
}

.remote-admin__grid,
.split-content,
.subhero__grid,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: center;
}

.home-services {
    padding: 118px 0 96px;
    background: #fff;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 46px;
    align-items: start;
}

.home-service {
    max-width: 275px;
    margin: 0 auto;
    text-align: center;
}

.home-service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    color: #075cb4;
}

.home-service__icon svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-service h2 {
    margin: 0 0 18px;
    color: #050b13;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 800;
}

.home-service p {
    margin: 0;
    color: #6a7280;
    font-size: 1rem;
    line-height: 1.45;
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.is-visible {
    opacity: 1;
}

.cards-grid,
.product-grid {
    display: grid;
    gap: 18px;
}

.cards-grid--three,
.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.product-card,
.quote-card,
.contact-card,
.contact-form,
.contact-aside {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.feature-card,
.quote-card {
    padding: 22px;
}

.feature-card h3,
.product-card h3,
.quote-card strong,
.contact-card h2,
.contact-aside h2 {
    margin: 0 0 8px;
    color: var(--site-ink);
    font-size: 1.08rem;
}

.feature-card p,
.quote-card p {
    margin: 0;
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--site-line);
}

.product-card__body {
    padding: 18px;
}

.product-card__body p {
    min-height: 72px;
}

.remote-admin {
    background: #f9fbfd;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
}

.pill-list span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #eaf6f2;
    color: #11674f;
    font-weight: 800;
}

.framed-media,
.subhero__media {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.framed-media img,
.subhero__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.video-shell {
    overflow: hidden;
    border-radius: 8px;
    background: #111827;
}

.video-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.xgestion-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.xgestion-video-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.xgestion-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 24, 0.78);
}

.xgestion-video-modal__panel {
    position: relative;
    width: min(100%, 980px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #071631;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.xgestion-video-modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.xgestion-video-modal__top strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xgestion-video-modal__top button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.xgestion-video-modal__media {
    background: #000;
}

.xgestion-video-modal__media video,
.xgestion-video-modal__media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.site-nav__dropdown-toggle {
    position: absolute;
    top: 50%;
    right: -8px;
    z-index: 2;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--site-primary-dark);
    cursor: pointer;
    transform: translateY(-50%);
}

.site-nav__dropdown-chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.16s ease;
}

.site-nav__dropdown-toggle[aria-expanded="true"] .site-nav__dropdown-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.site-nav__dropdown .site-nav__item {
    display: flex;
    align-items: center;
}

.site-nav__dropdown .site-nav__link {
    width: 100%;
    min-height: 42px;
    padding-right: 38px;
}

.site-nav__dropdown .site-nav__link--parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 2px 0;
    padding: 9px 48px 9px 12px;
    border: 1px solid #d7e3f0;
    background: #f2f7fc;
    color: var(--site-primary-dark);
}

.site-nav__parent-row {
    position: relative;
    width: 100%;
}

.site-nav__dropdown .site-nav__parent-toggle {
    position: relative;
    padding-right: 82px;
    text-align: left;
}

.site-nav__dropdown .site-nav__link--parent:hover,
.site-nav__dropdown .site-nav__link--parent.is-active,
.site-nav__dropdown .site-nav__link--parent.has-open-submenu {
    border-color: #b9cfe4;
    background: #e7f1fa;
    color: var(--site-primary-dark);
}

.site-nav__dropdown .site-nav__link-eye {
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 31px;
    height: 25px;
    padding: 0;
    border: 1px solid #d7e3f0;
    border-radius: 999px;
    background: #fff;
    color: #245f94;
    transform: translateY(-50%);
}

.site-nav__dropdown .site-nav__link-eye:hover,
.site-nav__dropdown .site-nav__link-eye:focus-visible {
    border-color: #9dbbd5;
    background: #fff;
    color: #164d7d;
}

.site-nav__link-eye svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-nav__parent-toggle .site-nav__dropdown-chevron {
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -4px;
    transform: rotate(-45deg);
}

.site-nav__parent-toggle[aria-expanded="true"] .site-nav__dropdown-chevron {
    transform: rotate(45deg);
}

.site-nav__item--nested.has-dropdown > .site-nav__dropdown-toggle {
    right: 11px;
    width: 27px;
    height: 27px;
    border: 1px solid #c7d8e8;
    background: #fff;
    color: #245f94;
    font-weight: 800;
}

.site-nav__item--nested.has-dropdown > .site-nav__dropdown-toggle .site-nav__dropdown-chevron {
    transform: rotate(-45deg);
}

.site-nav__item--nested.has-dropdown > .site-nav__dropdown-toggle[aria-expanded="true"] .site-nav__dropdown-chevron {
    transform: rotate(45deg);
}

.site-nav__submenu {
    top: -8px;
    left: calc(100% + 8px);
}

.site-nav__dropdown .site-nav__dropdown-toggle {
    right: 8px;
}

/* XGestion funnels */
.xgestion-funnel {
    --funnel-dark: #061a3f;
    --funnel-blue: #0b3c70;
    --funnel-mint: #20a67a;
    --funnel-accent: #df2a21;
    overflow: hidden;
    background: var(--funnel-dark);
    color: var(--site-ink);
}

.xgestion-funnel section {
    padding: clamp(64px, 8vw, 112px) 0;
}

.xgestion-funnel h1,
.xgestion-funnel h2,
.xgestion-funnel h3 {
    color: var(--funnel-dark);
}

.xgestion-funnel h1 {
    max-width: 760px;
    margin: 16px 0 22px;
    font-size: clamp(2.65rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.xgestion-funnel h2 {
    max-width: 760px;
    margin: 12px 0 34px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.xgestion-funnel__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding-block: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.2;
}

.xgestion-funnel__breadcrumbs a {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

.xgestion-funnel__breadcrumbs > span {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
}

.xgestion-funnel__breadcrumbs > span[aria-hidden="true"] {
    opacity: 0.58;
}

.xgestion-funnel__hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding-top: clamp(54px, 7vw, 92px) !important;
    background: linear-gradient(135deg, #061a3f 0%, #0b315e 58%, #0b3c70 100%);
}

.xgestion-funnel__hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
    pointer-events: none;
}

.xgestion-funnel__hero::after {
    position: absolute;
    top: -28%;
    right: -10%;
    width: min(720px, 60vw);
    height: min(720px, 60vw);
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(32, 166, 122, 0.28), transparent 67%);
    pointer-events: none;
}

.xgestion-funnel__hero-grid,
.xgestion-funnel__media-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(32px, 7vw, 88px);
}

.xgestion-funnel__hero h1 {
    color: #fff;
}

.xgestion-funnel__hero .section-eyebrow {
    color: #76d9ba;
}

.xgestion-funnel__hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.17rem;
    line-height: 1.72;
}

.xgestion-funnel__final p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.17rem;
    line-height: 1.75;
}

.xgestion-funnel__hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.xgestion-funnel--compact-signals .xgestion-funnel__hero-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
}

.xgestion-funnel--compact-signals .xgestion-funnel__hero-signals span {
    width: 100%;
}

.xgestion-funnel--compact-signals .xgestion-funnel__hero-signals span:first-child {
    grid-column: 1 / -1;
}

.xgestion-funnel__hero-signals span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.xgestion-funnel__hero-signals i {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--funnel-mint);
    font-style: normal;
    font-size: 0.7rem;
}

.xgestion-funnel .site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.xgestion-funnel .site-button:hover {
    transform: translateY(-2px);
}

.xgestion-funnel .site-button:focus-visible {
    outline: 3px solid rgba(32, 166, 122, 0.45);
    outline-offset: 3px;
}

.xgestion-funnel .site-button--primary {
    border-color: var(--funnel-accent);
    background: var(--funnel-accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(223, 42, 33, 0.24);
}

.xgestion-funnel .site-button--primary:hover {
    border-color: #bd2119;
    background: #bd2119;
    color: #fff;
}

.xgestion-funnel .site-button--secondary {
    border-color: #b9cbe0;
    background: #fff;
    color: var(--funnel-blue);
}

.xgestion-funnel .site-button--secondary:hover {
    border-color: var(--funnel-blue);
    color: var(--funnel-dark);
}

.xgestion-funnel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.xgestion-funnel__hero-secondary {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.xgestion-funnel__hero-secondary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--funnel-dark);
}

.xgestion-funnel__hero-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(255, 255, 255, 0.04);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.xgestion-funnel__stage-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    padding: 0 15px;
    border-bottom: 1px solid #dbe3ec;
    background: #f7f9fc;
    color: #586677;
    font-size: 0.76rem;
}

.xgestion-funnel__stage-bar > span {
    display: flex;
    gap: 6px;
}

.xgestion-funnel__stage-bar i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d5dce5;
}

.xgestion-funnel__stage-bar i:first-child { background: #ec6a5f; }
.xgestion-funnel__stage-bar i:nth-child(2) { background: #f4bf4f; }
.xgestion-funnel__stage-bar i:last-child { background: #61c554; }

.xgestion-funnel__stage-bar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xgestion-funnel__hero-stage .xgestion-funnel__visual {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.xgestion-funnel--purchase-video .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    min-height: 0;
    aspect-ratio: 1365 / 716;
    object-fit: contain;
}

.xgestion-funnel--hero-campaign .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    min-height: 0;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    background: #050505;
}

.xgestion-funnel--hero-campaign-featured .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    min-height: 0;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    background: #050505;
}

.xgestion-funnel--hero-campaign-full .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    background: #f4f6f8;
}

.xgestion-funnel--hero-campaign-full-right .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    background: #f4f6f8;
}

.xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    min-height: 0;
    aspect-ratio: 1365 / 716;
    object-fit: contain;
    background: #f3f6f9;
}

@keyframes xgestion-carniceria-stage-float {
    0%,
    100% {
        transform: perspective(1350px) translate3d(0, -10px, 0) rotateY(-4deg) rotateZ(-1deg) scale(1.03);
    }

    50% {
        transform: perspective(1350px) translate3d(0, -18px, 0) rotateY(-3.3deg) rotateZ(-0.65deg) scale(1.04);
    }
}

.xgestion-funnel--hero-retail-featured .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    min-height: 0;
    aspect-ratio: 1365 / 716;
    object-fit: contain;
    background: #f3f6f9;
}

@keyframes xgestion-retail-stage-float {
    0%,
    100% {
        transform: perspective(1350px) translate3d(0, -10px, 0) rotateY(-4deg) rotateZ(-1deg) scale(1.03);
    }

    50% {
        transform: perspective(1350px) translate3d(0, -18px, 0) rotateY(-3.3deg) rotateZ(-0.65deg) scale(1.04);
    }
}

@media (min-width: 1181px) {
    .xgestion-funnel--hero-campaign-full-right .xgestion-funnel__hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
        gap: clamp(30px, 3.5vw, 54px);
    }

    .xgestion-funnel--hero-campaign-full-right .xgestion-funnel__hero-copy {
        max-width: 560px;
    }

    .xgestion-funnel--hero-campaign-full-right .xgestion-funnel__hero-stage {
        justify-self: end;
        width: min(100%, 840px);
        border-color: rgba(118, 217, 186, 0.38);
        box-shadow: 0 48px 106px rgba(0, 0, 0, 0.48), 0 0 0 10px rgba(118, 217, 186, 0.07);
        transform: perspective(1400px) translate(36px, -8px) rotateY(-1deg);
        transform-origin: right center;
    }

    .xgestion-funnel--hero-campaign-full .xgestion-funnel__hero-grid {
        grid-template-columns: minmax(0, 0.76fr) minmax(620px, 1.24fr);
        gap: clamp(30px, 3.5vw, 54px);
    }

    .xgestion-funnel--hero-campaign-full .xgestion-funnel__hero-copy {
        max-width: 560px;
    }

    .xgestion-funnel--hero-campaign-full .xgestion-funnel__hero-stage {
        justify-self: end;
        width: min(112%, 900px);
        border-color: rgba(118, 217, 186, 0.38);
        box-shadow: 0 48px 106px rgba(0, 0, 0, 0.48), 0 0 0 10px rgba(118, 217, 186, 0.07);
        transform: perspective(1400px) translateY(-8px) rotateY(-2deg);
        transform-origin: right center;
    }

    .xgestion-funnel--hero-campaign-featured .xgestion-funnel__hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
        gap: clamp(32px, 4vw, 56px);
    }

    .xgestion-funnel--hero-campaign-featured .xgestion-funnel__hero h1 {
        font-size: clamp(2.65rem, 4.45vw, 4.5rem);
    }

    .xgestion-funnel--hero-campaign-featured .xgestion-funnel__hero-stage {
        justify-self: end;
        width: min(104%, 740px);
        border-color: rgba(118, 217, 186, 0.42);
        box-shadow: 0 52px 110px rgba(0, 0, 0, 0.5), 0 18px 42px rgba(3, 20, 49, 0.38), 0 0 0 10px rgba(118, 217, 186, 0.08);
        transform: perspective(1300px) translateY(-10px) rotateY(-2deg) scale(1.02);
        transform-origin: right center;
    }

    .xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
        gap: clamp(30px, 3.5vw, 52px);
    }

    .xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero-copy {
        max-width: 590px;
    }

    .xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero h1 {
        font-size: clamp(2.45rem, 4vw, 4.15rem);
    }

    .xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero p {
        font-size: 1.08rem;
    }

    .xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero-stage {
        justify-self: end;
        width: min(110%, 860px);
        border-color: rgba(118, 217, 186, 0.42);
        box-shadow: 0 58px 120px rgba(0, 0, 0, 0.52), 20px 24px 56px rgba(7, 42, 83, 0.34), 0 0 0 10px rgba(118, 217, 186, 0.08);
        transform-origin: right center;
        animation: xgestion-carniceria-stage-float 6.8s ease-in-out infinite;
        will-change: transform;
    }

    .xgestion-funnel--hero-retail-featured .xgestion-funnel__hero-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
        gap: clamp(30px, 3.5vw, 52px);
    }

    .xgestion-funnel--hero-retail-featured .xgestion-funnel__hero-copy {
        max-width: 590px;
    }

    .xgestion-funnel--hero-retail-featured .xgestion-funnel__hero h1 {
        font-size: clamp(2.45rem, 4vw, 4.15rem);
    }

    .xgestion-funnel--hero-retail-featured .xgestion-funnel__hero p {
        font-size: 1.08rem;
    }

    .xgestion-funnel--hero-retail-featured .xgestion-funnel__hero-stage {
        justify-self: end;
        width: min(110%, 860px);
        border-color: rgba(118, 217, 186, 0.42);
        box-shadow: 0 58px 120px rgba(0, 0, 0, 0.52), 20px 24px 56px rgba(7, 42, 83, 0.34), 0 0 0 10px rgba(118, 217, 186, 0.08);
        transform-origin: right center;
        animation: xgestion-retail-stage-float 6.8s ease-in-out infinite;
        will-change: transform;
    }
}

.xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    gap: clamp(36px, 5vw, 76px);
}

.xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-copy {
    max-width: 620px;
}

.xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-stage {
    justify-self: end;
    width: min(100%, 820px);
    border-color: rgba(118, 217, 186, 0.34);
    border-radius: 32px 88px 32px 72px;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.46), 0 0 0 10px rgba(118, 217, 186, 0.07), 24px 24px 70px rgba(16, 149, 192, 0.2);
    transform: perspective(1400px) translateY(-8px) rotateY(-4deg) rotateX(1deg);
    transform-origin: right center;
}

.xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-stage .xgestion-funnel__visual img {
    min-height: 0;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    background: #050505;
}

.xgestion-funnel__stage-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-top: 1px solid #e2e8ef;
    color: #4e5f70;
    font-size: 0.78rem;
    font-weight: 700;
}

.xgestion-funnel__stage-caption span {
    color: var(--funnel-mint);
}

.xgestion-funnel__visual {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(6, 26, 63, 0.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(6, 26, 63, 0.16);
}

.xgestion-funnel__visual img {
    display: block;
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.xgestion-funnel__gallery {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.xgestion-funnel__gallery figure,
.xgestion-funnel__gallery a {
    overflow: hidden;
    min-height: 150px;
    margin: 0;
    border: 1px solid rgba(6, 26, 63, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(6, 26, 63, 0.08);
}

.xgestion-funnel__gallery img { width: 100%; height: 100%; object-fit: cover; }
.xgestion-funnel__gallery a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 20px; color: var(--funnel-dark); font-weight: 800; text-decoration: none; }

.xgestion-funnel__section-head {
    max-width: 790px;
    margin-bottom: 36px;
}

.xgestion-funnel__section-head h2 {
    margin-bottom: 0;
}

.xgestion-funnel__questions {
    background: linear-gradient(180deg, #edf4fb 0%, #f6f9fc 100%);
}

.xgestion-funnel__benefits {
    background: #fff;
}

.xgestion-funnel__xmenu {
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(28, 190, 143, 0.22), transparent 32%),
        linear-gradient(135deg, #06234c 0%, #0b4870 58%, #0b765f 100%);
    color: #fff;
}

.xgestion-funnel__xmenu-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
}

.xgestion-funnel__xmenu-copy {
    max-width: 600px;
}

.xgestion-funnel__xmenu-copy .section-eyebrow {
    color: #75e3c1;
}

.xgestion-funnel__xmenu-copy h2 {
    margin: 14px 0 18px;
    color: #fff;
}

.xgestion-funnel__xmenu-copy p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.xgestion-funnel__xmenu-preview {
    width: min(100%, 520px);
    justify-self: end;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(2, 16, 38, 0.35);
    backdrop-filter: blur(12px);
}

.xgestion-funnel__xmenu-preview .xmenu-screen {
    width: 100%;
    max-width: none;
    box-shadow: 0 18px 44px rgba(2, 16, 38, 0.28);
}

.xgestion-funnel__xportal {
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(118, 217, 186, 0.2), transparent 34%),
        linear-gradient(135deg, #061a3f 0%, #0b4770 58%, #08735e 100%);
    color: #fff;
}

.xgestion-funnel__xportal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
}

.xgestion-funnel__xportal-copy { max-width: 620px; }
.xgestion-funnel__xportal-copy .section-eyebrow { color: #75e3c1; }
.xgestion-funnel__xportal-copy h2 { margin: 14px 0 18px; color: #fff; }
.xgestion-funnel__xportal-copy p { margin: 0 0 20px; color: rgba(255, 255, 255, 0.84); font-size: 1.08rem; line-height: 1.7; }
.xgestion-funnel__xportal-copy ul { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.xgestion-funnel__xportal-copy li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, 0.92); font-weight: 700; }
.xgestion-funnel__xportal-copy li span { color: #75e3c1; }

.xgestion-funnel__xportal-preview {
    overflow: hidden;
    width: min(100%, 620px);
    margin: 0;
    justify-self: end;
    padding: clamp(12px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(2, 16, 38, 0.35);
    backdrop-filter: blur(12px);
}

.xgestion-funnel__xportal-preview img { display: block; width: 100%; height: auto; border-radius: 14px; }

.xgestion-funnel__xportal-preview--dashboard-portrait {
    width: min(100%, 560px);
    max-width: 560px;
    justify-self: center;
}

.xgestion-funnel__xportal-preview--dashboard-portrait img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.xgestion-funnel__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.xgestion-funnel__cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.xgestion-funnel__card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(6, 26, 63, 0.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(6, 26, 63, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.xgestion-funnel__card:hover {
    border-color: rgba(11, 60, 112, 0.24);
    box-shadow: 0 22px 50px rgba(6, 26, 63, 0.12);
    transform: translateY(-5px);
}

.xgestion-funnel__card h3 { margin: 12px 0; font-size: 1.2rem; }
.xgestion-funnel__card p { margin: 0; color: #61707b; line-height: 1.65; }

.xgestion-funnel__question-card {
    padding-top: 34px;
}

.xgestion-funnel__question-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.xgestion-funnel__question-heading h3 {
    min-width: 0;
    margin: 0;
}

.xgestion-funnel__question-image {
    flex: 0 0 82px;
    width: 82px;
    height: 72px;
    border: 1px solid rgba(6, 26, 63, 0.1);
    border-radius: 12px;
    object-fit: cover;
    background: #edf4fb;
    box-shadow: 0 8px 20px rgba(6, 26, 63, 0.12);
}

.xgestion-funnel__question-card--wide {
    padding-top: 20px;
}

.xgestion-funnel__question-card--wide .xgestion-funnel__question-heading {
    display: block;
}

.xgestion-funnel__question-card--wide .xgestion-funnel__question-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto 20px;
    object-fit: cover;
    border-radius: 14px;
}

.xgestion-funnel__question-card--wide .xgestion-funnel__question-heading h3 {
    font-weight: 800;
}

.xgestion-funnel__question-card > p {
    margin-top: 18px;
}

.xgestion-funnel--purchase-video .xgestion-funnel__question-card {
    padding-top: 28px;
}

.xgestion-funnel--purchase-video .xgestion-funnel__question-card h3 {
    margin-top: 0;
}

.xgestion-funnel__question-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: #e7f0fb;
    color: var(--funnel-blue);
    font-size: 1.25rem;
    font-weight: 900;
}

.xgestion-funnel__benefit-heading {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}

.xgestion-funnel__benefit-function-icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(11, 60, 112, 0.1);
    border-radius: 10px;
    background: #f4f8fc;
}

.xgestion-funnel__benefit-function-image {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.xgestion-funnel__benefit-check {
    position: absolute;
    right: -5px;
    bottom: -3px;
    z-index: 1;
    width: 20px;
    height: auto;
    filter: drop-shadow(0 2px 3px rgba(7, 78, 54, 0.18));
}

.xgestion-funnel__benefit-heading h3 {
    display: -webkit-box;
    min-width: 0;
    max-height: 2.5em;
    margin: 0;
    overflow: hidden;
    font-size: 1.05rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xgestion-funnel__workflow {
    position: relative;
    background: linear-gradient(135deg, #061a3f 0%, #0b315e 100%);
    color: #fff;
}

.xgestion-funnel__workflow::after {
    position: absolute;
    right: 3%;
    bottom: 8%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(32, 166, 122, 0.2), transparent 70%);
    pointer-events: none;
}

.xgestion-funnel__workflow .site-shell {
    position: relative;
    z-index: 1;
}

.xgestion-funnel__workflow h2,
.xgestion-funnel__workflow h3,
.xgestion-funnel__workflow .section-eyebrow {
    color: #fff;
}

.xgestion-funnel__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.xgestion-funnel__steps li { display: flex; gap: 18px; padding: 26px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(5px); }
.xgestion-funnel__steps li > span { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border-radius: 10px; background: var(--funnel-mint); color: #fff; font-weight: 800; }
.xgestion-funnel__steps h3 { margin: 4px 0 8px; }
.xgestion-funnel__steps p { margin: 0; color: rgba(255, 255, 255, 0.72); line-height: 1.6; }

.xgestion-funnel__media {
    background: linear-gradient(135deg, #f4f8fc 0%, #e9f2fa 100%);
}

#xgestion-rubro-video {
    scroll-margin-top: calc(var(--site-header-height) + 20px);
}

.xgestion-funnel__video-preview {
    position: relative;
    overflow: hidden;
    justify-self: center;
    width: min(100%, 680px);
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(6, 26, 63, 0.12);
    border-radius: 18px;
    background: #061a3f;
    box-shadow: 0 28px 70px rgba(6, 26, 63, 0.2);
}

.xgestion-funnel__video-preview iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.xgestion-funnel__video-preview > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xgestion-funnel__video-preview--portrait {
    width: min(100%, 360px);
    max-height: min(70vh, 640px);
    aspect-ratio: 9 / 16;
}

.xgestion-funnel__video-preview-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    border: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(3, 10, 24, 0.58) 100%);
    cursor: pointer;
}

.xgestion-funnel__video-preview-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(3, 10, 24, 0.8);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease;
}

.xgestion-funnel__video-preview-action i {
    font-style: normal;
    font-size: 1.05rem;
}

.xgestion-funnel__video-preview-trigger:hover .xgestion-funnel__video-preview-action,
.xgestion-funnel__video-preview-trigger:focus-visible .xgestion-funnel__video-preview-action {
    transform: translateY(-2px);
    background: rgba(15, 111, 179, 0.94);
}

.xgestion-funnel__video-preview-trigger:focus-visible {
    outline: 3px solid #b8e63b;
    outline-offset: -5px;
}

.xgestion-video-modal--portrait .xgestion-video-modal__panel {
    width: min(100%, 560px);
    max-height: calc(100vh - 32px);
}

.xgestion-video-modal--portrait .xgestion-video-modal__media {
    display: flex;
    justify-content: center;
}

.xgestion-video-modal--portrait .xgestion-video-modal__media video,
.xgestion-video-modal--portrait .xgestion-video-modal__media iframe {
    display: block;
    width: min(100%, 46.125vh, 520px);
    height: auto;
    aspect-ratio: 9 / 16;
}

.xgestion-funnel__media .xgestion-funnel__section-head p {
    max-width: 640px;
    color: #5c6b7b;
    font-size: 1.08rem;
    line-height: 1.7;
}

.xgestion-funnel__promotion {
    background: linear-gradient(100deg, #102f56, #0b5a5a);
    color: #fff;
}

.xgestion-funnel__promotion h2,
.xgestion-funnel__promotion .section-eyebrow { color: #fff; }
.xgestion-funnel__promotion-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 26px 50px; }
.xgestion-funnel__voucher { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px dashed rgba(255,255,255,.45); border-radius: 12px; }
.xgestion-funnel__voucher strong { padding: 8px 14px; font-size: 1.25rem; letter-spacing: .12em; }
.xgestion-funnel__voucher button { padding: 10px 14px; border: 0; border-radius: 8px; cursor: pointer; }
.xgestion-funnel__countdown { display: flex; flex-wrap: wrap; gap: 10px; }
.xgestion-funnel__countdown span { min-width: 76px; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.1); text-align: center; font-size: .75rem; text-transform: uppercase; }
.xgestion-funnel__countdown strong { display: block; font-size: 1.45rem; }

.xgestion-funnel__faq {
    background: #f3f6fa;
}

.xgestion-funnel__faq .faq-list { max-width: 940px; }
.xgestion-funnel__faq .faq-item { overflow: hidden; border: 1px solid rgba(6, 26, 63, 0.09); border-radius: 10px; background: #fff; box-shadow: 0 10px 28px rgba(6, 26, 63, 0.05); }
.xgestion-funnel__faq .faq-item button { min-height: 66px; padding: 16px 20px; }

.xgestion-funnel__final {
    padding: clamp(44px, 6vw, 80px) 0 !important;
    background: #f3f6fa;
    text-align: center;
}

.xgestion-funnel__final-inner {
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 7vw, 86px) clamp(24px, 7vw, 90px);
    border-radius: 18px;
    background: linear-gradient(135deg, #061a3f, #0b3c70);
    box-shadow: 0 30px 70px rgba(6, 26, 63, 0.22);
}

.xgestion-funnel__final-inner::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.xgestion-funnel__final-inner > * {
    position: relative;
    z-index: 1;
}

.xgestion-funnel__final h2,
.xgestion-funnel__final .section-eyebrow { color: #fff; }
.xgestion-funnel__final h2,
.xgestion-funnel__final p { margin-right: auto; margin-left: auto; }
.xgestion-funnel__final .xgestion-funnel__actions { justify-content: center; }
.xgestion-funnel__final .site-button--secondary { border-color: rgba(255, 255, 255, 0.6); background: transparent; color: #fff; }

.xgestion-video-modal__media > video[hidden],
.xgestion-video-modal__media > iframe[hidden] {
    display: none !important;
}

.xgestion-video-modal__external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 16px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #1677bd;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.xgestion-video-modal__external[hidden] {
    display: none;
}

.xgestion-video-modal__external:hover,
.xgestion-video-modal__external:focus-visible {
    background: #0f5e9d;
    color: #fff;
}

.xgestion-image-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.xgestion-image-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.xgestion-image-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 24, 0.82);
}

.xgestion-image-modal__panel {
    position: relative;
    width: min(100%, 1180px);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #071631;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.xgestion-image-modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.xgestion-image-modal__top strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xgestion-image-modal__top button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.xgestion-image-modal__media {
    display: grid;
    place-items: center;
    margin: 0;
    padding: 16px;
    background: #020817;
}

.xgestion-image-modal__media img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 132px);
    object-fit: contain;
}

.product-landing-hero {
    min-height: calc(100vh - var(--site-header-height));
    min-height: calc(100svh - var(--site-header-height));
}

.product-landing--productos-xgestion.product-landing-hero,
.product-landing--productos-xgestion.product-landing-hero .hero__content {
    min-height: max(calc(100vh - var(--site-header-height)), 640px);
    min-height: max(calc(100svh - var(--site-header-height)), 640px);
}

.product-landing-hero__overlay {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 3px 3px,
        linear-gradient(90deg, rgba(4, 8, 14, 0.8), rgba(4, 8, 14, 0.6), rgba(4, 8, 14, 0.72));
}

.product-landing--productos-xgestion .product-landing-hero__overlay {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 3px 3px,
        linear-gradient(90deg, rgba(4, 8, 14, 0.86), rgba(4, 8, 14, 0.68), rgba(4, 8, 14, 0.82));
}

.product-landing--productos-xgestion .product-landing-hero__slide--stage {
    background:
        radial-gradient(circle at 82% 18%, rgba(32, 166, 122, 0.28), transparent 24%),
        linear-gradient(135deg, #061a3f 0%, #0b3c70 100%);
}

.product-landing--productos-xgestion .product-landing-hero__slide--stage .product-landing-hero__overlay {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 3px 3px,
        linear-gradient(90deg, rgba(4, 8, 14, 0.86), rgba(4, 8, 14, 0.68), rgba(4, 8, 14, 0.82));
}

.product-landing-hero__slide--fraud-alert .product-landing-hero__overlay {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 207, 49, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(5, 12, 26, 0.9), rgba(7, 25, 54, 0.7), rgba(5, 12, 26, 0.82));
}

.product-landing-hero__slide--fraud-alert .section-eyebrow {
    border-color: rgba(255, 207, 49, 0.38);
    background: rgba(255, 207, 49, 0.16);
    color: #fff;
}

.product-landing-hero__slide--fraud-alert .hero__cta {
    background: #ffcf31;
    color: #071631;
}

.product-landing-hero__content {
    max-width: 1280px;
}

.product-landing-hero__logo {
    width: min(220px, 72vw);
    height: auto;
    max-height: 96px;
    margin: 0 0 22px;
    object-fit: contain;
}

.product-landing--productos-xgestion .product-landing-hero__content {
    max-width: 980px;
}

.product-landing--productos-xgestion .product-landing-hero__pitch {
    max-width: 560px;
}

.product-landing--productos-xgestion .product-landing-hero__pitch h1,
.product-landing--productos-xgestion .product-landing-hero__pitch h2 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(40px, 4.2vw, 58px);
    line-height: 1.02;
}

.product-landing--productos-xgestion .product-landing-hero__pitch > p:not(.section-eyebrow) {
    max-width: 520px;
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.45;
}

.product-landing--productos-xgestion .product-landing-hero__content--stage {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 4vw, 64px);
    align-items: center;
    max-width: 1440px;
}

.product-landing--productos-xgestion .xgestion-hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    min-width: 0;
}

.xgestion-hero-stage {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    justify-self: end;
    width: min(100%, 760px);
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.product-landing--productos-xgestion .xgestion-hero-stage {
    grid-row: 1;
}

.xgestion-hero-stage__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 40px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(6, 26, 63, 0.12);
    background: #f7f9fc;
    color: #061a3f;
}

.xgestion-hero-stage__bar span {
    display: flex;
    gap: 5px;
}

.xgestion-hero-stage__bar i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d3dde8;
}

.xgestion-hero-stage__bar strong {
    min-width: 0;
    overflow: hidden;
    font-size: 0.86rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xgestion-hero-stage img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: initial;
}

.xgestion-hero-stage figcaption {
    padding: 10px 16px;
    background: #fff;
    color: #061a3f;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
}

.xgestion-hero-bullets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 820px;
    margin: 0 0 18px;
}

.xgestion-hero-bullets span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.25;
    backdrop-filter: blur(10px);
}

.xgestion-hero-bullets span::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 999px;
    background: #b8e63b;
    box-shadow: 0 0 0 5px rgba(184, 230, 59, 0.18);
}

.xgestion-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 640px;
    margin: 0 0 26px;
}

.xgestion-hero-proof div {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(5, 20, 46, 0.72);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.xgestion-hero-proof strong,
.xgestion-hero-proof span {
    display: block;
}

.xgestion-hero-proof strong {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.1;
}

.xgestion-hero-proof span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 800;
}

.xgestion-story .section-heading {
    max-width: 820px;
    margin-left: 0;
    text-align: left;
}

.xgestion-story .section-eyebrow,
.product-features--productos-xgestion .section-eyebrow,
.product-landing-cta--productos-xgestion .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    max-width: 100%;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(32, 166, 122, 0.16);
    color: #073f78;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.xgestion-story .section-eyebrow::before,
.product-features--productos-xgestion .section-eyebrow::before,
.product-landing-cta--productos-xgestion .section-eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #20d769;
    box-shadow: 0 0 0 6px rgba(32, 215, 105, 0.18);
}

.xgestion-story .section-heading > p:not(.section-eyebrow) {
    color: var(--site-muted);
    max-width: 760px;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.45;
}

.xgestion-story .section-heading h2 {
    max-width: 820px;
    font-size: clamp(36px, 4.9vw, 58px);
    line-height: 1.03;
}

.xgestion-story--pain {
    background: var(--site-soft);
}

.xgestion-story--pain .xgestion-story-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.xgestion-story--pain .xgestion-story-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-content: start;
    min-height: 245px;
    padding: 20px 18px;
}

.xgestion-story--pain .xgestion-story-icon {
    grid-column: 1;
}

.xgestion-story--pain .xgestion-story-tag {
    grid-column: 2;
    justify-self: end;
}

.xgestion-story--pain .xgestion-story-card h3,
.xgestion-story--pain .xgestion-story-card p {
    grid-column: 1 / -1;
}

.xgestion-story-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.xgestion-story-card {
    display: grid;
    gap: 12px;
    min-height: 190px;
    padding: 20px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(19, 32, 45, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.xgestion-story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 126, 190, 0.28);
    box-shadow: 0 22px 48px rgba(19, 32, 45, 0.14);
}

.xgestion-story-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff0eb;
    color: #073f78;
}

.xgestion-story-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xgestion-story-icon--image img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.xgestion-story-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    max-width: 100%;
    height: 30px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(184, 230, 59, 0.18);
    color: var(--site-primary-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xgestion-story--pain .xgestion-story-tag::before {
    content: "\2713";
    font-weight: 900;
}

.xgestion-story-card h3,
.xgestion-integration-card h3 {
    margin: 0;
    color: var(--site-ink);
    font-size: 1.12rem;
    line-height: 1.18;
}

.xgestion-story-card p,
.xgestion-integration-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.xgestion-story-mini-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--site-primary-dark), #00184c);
    color: #fff;
}

.xgestion-story-mini-cta h3,
.xgestion-story-mini-cta p {
    margin: 0;
    color: #fff;
}

.xgestion-story-mini-cta h3 {
    font-size: 1.42rem;
}

.xgestion-story-mini-cta p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.xgestion-story--fraud {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #031529 0%, #083562 58%, #06243f 100%);
    color: #fff;
}

.xgestion-story--fraud::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -140px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(32, 166, 122, 0.22);
    pointer-events: none;
}

.xgestion-fraud-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 40px;
    align-items: center;
}

.xgestion-story--fraud .section-heading {
    margin-bottom: 0;
}

.xgestion-story--fraud .section-eyebrow {
    background: rgba(209, 250, 229, 0.14);
    color: #d9ffe8;
    border: 1px solid rgba(119, 239, 172, 0.32);
}

.xgestion-story--fraud .section-eyebrow::before {
    background: #22d36b;
}

.xgestion-story--fraud .section-heading h2 {
    color: #fff;
    max-width: 740px;
}

.xgestion-story--fraud .section-heading > p:not(.section-eyebrow):not(.xgestion-fraud-note) {
    color: rgba(255, 255, 255, 0.84);
    max-width: 680px;
}

.xgestion-fraud-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.xgestion-fraud-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.xgestion-fraud-actions {
    display: grid;
    gap: 12px;
    justify-items: start;
    margin-top: 24px;
}

.xgestion-fraud-note {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
}

.xgestion-fraud-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(3, 15, 32, 0.72);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.xgestion-fraud-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 21, 41, 0) 45%, rgba(3, 21, 41, 0.28));
    pointer-events: none;
}

.xgestion-fraud-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.xgestion-fraud-media__trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.xgestion-fraud-media__trigger:focus-visible {
    outline: 3px solid rgba(34, 211, 107, 0.85);
    outline-offset: -6px;
}

.xgestion-fraud-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34, 211, 107, 0.94);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.xgestion-fraud-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 18px solid #02162a;
}

.xgestion-fraud-media__trigger:hover .xgestion-fraud-play,
.xgestion-fraud-media__trigger:focus-visible .xgestion-fraud-play {
    background: #4ade80;
    transform: translate(-50%, -50%) scale(1.05);
}

.xgestion-story--owner,
.xgestion-story--trust {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #05142e, var(--site-primary-dark));
    color: #fff;
}

.xgestion-story--trust::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(32, 166, 122, 0.28);
    pointer-events: none;
}

.xgestion-story--owner .site-shell,
.xgestion-story--trust .site-shell {
    position: relative;
    z-index: 1;
}

.xgestion-story--owner .section-heading h2,
.xgestion-story--owner .section-heading p,
.xgestion-story--trust .section-heading h2,
.xgestion-story--trust .section-heading p {
    color: #fff;
}

.xgestion-story--owner .section-heading > p:not(.section-eyebrow),
.xgestion-story--trust .section-heading > p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.xgestion-story--trust .section-eyebrow {
    background: rgba(32, 166, 122, 0.22);
    color: #fff;
}

.xgestion-story--trust .xgestion-story-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.xgestion-owner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.xgestion-owner-main {
    display: grid;
    gap: 24px;
}

.xgestion-owner-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.xgestion-owner-quotes {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.xgestion-owner-quotes blockquote {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.xgestion-owner-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.xgestion-owner-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.xgestion-owner-kpis div {
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    color: var(--site-ink);
}

.xgestion-owner-kpis strong,
.xgestion-owner-kpis span {
    display: block;
}

.xgestion-owner-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.xgestion-owner-panel__top strong {
    color: #fff;
    font-size: 1.04rem;
    letter-spacing: 0.01em;
}

.xgestion-owner-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(184, 230, 59, 0.18);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.xgestion-owner-panel__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b8e63b;
    box-shadow: 0 0 0 4px rgba(184, 230, 59, 0.16);
}

.xgestion-owner-kpis strong {
    font-size: 1.65rem;
    line-height: 1;
}

.xgestion-owner-kpis span {
    margin-top: 5px;
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.xgestion-owner-alerts {
    display: grid;
    gap: 10px;
}

.xgestion-owner-alert {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.xgestion-owner-alert__dot {
    width: 11px;
    height: 11px;
    margin-top: 4px;
    border-radius: 999px;
    background: #ffcf31;
    box-shadow: 0 0 0 4px rgba(255, 207, 49, 0.16);
}

.xgestion-owner-alert--high .xgestion-owner-alert__dot {
    background: #ff6b6b;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.16);
}

.xgestion-owner-alert__body strong,
.xgestion-owner-alert__body span {
    display: block;
}

.xgestion-owner-alert__body strong {
    color: #fff;
    font-size: 0.92rem;
}

.xgestion-owner-alert__body span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.xgestion-owner-alert__chip {
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.xgestion-story-card-grid--owner {
    margin-top: 24px;
}

.xgestion-story-card--dark,
.xgestion-story-card--trust {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.xgestion-story-card--dark:hover,
.xgestion-story-card--trust:hover {
    border-color: rgba(184, 230, 59, 0.34);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.xgestion-story-card--dark h3,
.xgestion-story-card--trust h3 {
    color: #fff;
}

.xgestion-story-card--dark p,
.xgestion-story-card--trust p {
    color: rgba(255, 255, 255, 0.72);
}

.xgestion-story-card--trust {
    min-height: 194px;
    align-content: start;
}

.xgestion-story-card--trust .xgestion-story-icon {
    background: rgba(32, 166, 122, 0.22);
    color: #fff;
}

.xgestion-story-card--dark .xgestion-story-tag,
.xgestion-story-card--trust .xgestion-story-tag {
    border: 1px solid rgba(184, 230, 59, 0.42);
    background: rgba(184, 230, 59, 0.24);
    color: #f8ffe7;
    box-shadow: 0 0 0 1px rgba(4, 20, 46, 0.18);
}

.xgestion-owner-cta {
    margin-top: 24px;
}

.xgestion-industries {
    background: #fff;
}

.xgestion-industries__head {
    display: grid;
    gap: 18px;
}

.xgestion-industries__carousel {
    position: relative;
    margin-top: 30px;
    padding-inline: 36px;
    background: #fff;
}

.xgestion-industries__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 360px);
    gap: clamp(22px, 2.2vw, 32px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 8px 2px 8px;
    background: #fff;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.xgestion-industries__rail::-webkit-scrollbar {
    display: none;
}

.xgestion-industries__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(18, 126, 190, 0.2);
    border-radius: 50%;
    background: #fff;
    color: var(--site-primary-dark);
    box-shadow: 0 14px 34px rgba(19, 32, 45, 0.18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.xgestion-industries__arrow[hidden] {
    display: none;
}

.xgestion-industries__arrow span {
    font-size: 1.35rem;
    line-height: 1;
}

.xgestion-industries__arrow:hover,
.xgestion-industries__arrow:focus-visible {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #fff;
    box-shadow: 0 18px 42px rgba(18, 126, 190, 0.3);
    transform: translateY(-50%) scale(1.06);
}

.xgestion-industries__arrow:focus-visible {
    outline: 3px solid rgba(18, 126, 190, 0.24);
    outline-offset: 3px;
}

.xgestion-industries__arrow--prev {
    left: -14px;
}

.xgestion-industries__arrow--next {
    right: -14px;
}

.xgestion-industry-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-soft);
    box-shadow: 0 16px 34px rgba(19, 32, 45, 0.08);
    scroll-snap-align: start;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.xgestion-industry-card:hover,
.xgestion-industry-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(18, 126, 190, 0.32);
    box-shadow: 0 26px 58px rgba(19, 32, 45, 0.16);
}

.xgestion-industry-card__media {
    position: relative;
    display: block;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--site-line);
    background: #fff;
}

.xgestion-industry-card__media-button {
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
}

.xgestion-industry-card__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    transition: transform 0.24s ease, filter 0.24s ease;
}

.xgestion-industry-card--has-video:hover .xgestion-industry-card__media img,
.xgestion-industry-card__media-button:focus-visible img {
    transform: scale(1.04);
    filter: brightness(0.82);
}

.xgestion-industry-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(13, 112, 183, 0.9);
    box-shadow: 0 16px 34px rgba(4, 20, 46, 0.28);
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, background 0.22s ease;
}

.xgestion-industry-card__play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
}

.xgestion-industry-card--has-video:hover .xgestion-industry-card__play,
.xgestion-industry-card__media-button:focus-visible .xgestion-industry-card__play {
    background: var(--site-primary-dark);
    transform: translate(-50%, -50%) scale(1.08);
}

.xgestion-industry-card__body {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 11px;
    padding: 18px;
}

.xgestion-industry-card__body h3,
.xgestion-industry-card__body p {
    margin: 0;
}

.xgestion-industry-card__body h3 {
    color: var(--site-ink);
    font-size: 1.08rem;
    line-height: 1.18;
}

.xgestion-industry-card__body p {
    color: var(--site-muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.xgestion-industry-card__modules {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.xgestion-industry-card__modules span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff;
    color: var(--site-primary-dark);
    font-size: 0.76rem;
    font-weight: 900;
}

.xgestion-industry-card__action,
.xgestion-industry-card__soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 900;
}

.xgestion-industry-card__action {
    border: 0;
    background: var(--site-primary);
    color: #fff;
    cursor: pointer;
}

.xgestion-industry-card__action:hover,
.xgestion-industry-card__action:focus-visible {
    background: var(--site-primary-dark);
}

.xgestion-industry-card__soon {
    border: 1px solid var(--site-line);
    background: #fff;
    color: var(--site-muted);
}

.xgestion-industry-card__soon--media {
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-height: 32px;
    background: rgba(255, 255, 255, 0.94);
}

.xgestion-industry-card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    min-height: calc(4 * 0.94rem * 1.45);
}

#planes-precios { scroll-margin-top: var(--site-header-height); }
.xgestion-social-proof .xsc-lead { text-align: center; }
.xgestion-story .section-heading, .xgestion-story .section-heading h2, .xgestion-story .section-heading > p:not(.section-eyebrow), .product-features--productos-xgestion .section-heading, .product-features--productos-xgestion .section-heading h2, .product-features--productos-xgestion .section-heading p:not(.section-eyebrow) { max-width: none; }
.xgestion-industry-detail-modal[hidden] { display: none; }
.xgestion-industry-detail-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 20px; }
.xgestion-industry-detail-modal__backdrop { position: absolute; inset: 0; background: rgba(4, 8, 14, .72); }
.xgestion-industry-detail-modal__panel { position: relative; z-index: 1; width: min(100%, 680px); padding: 28px; border-radius: 12px; background: #fff; }
.xgestion-industry-detail-modal__panel > button { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; font-size: 30px; }
.xgestion-industry-detail-modal__media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 18px 0; }
.xgestion-industry-detail-modal__media img { width: 100%; border-radius: 8px; }

.xgestion-industry-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--site-primary);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.xgestion-industry-card__cta:hover,
.xgestion-industry-card__cta:focus-visible {
    background: var(--site-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.xgestion-story--integrations {
    background: #fff;
}

.xgestion-integrations-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.xgestion-integration-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
}

.xgestion-integration-hub {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100%;
    padding: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-dark));
    color: #fff;
    text-align: center;
}

.xgestion-integration-hub strong {
    font-size: 2.2rem;
    line-height: 1;
}

.xgestion-integration-hub span {
    max-width: 320px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.xgestion-integration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.xgestion-integration-card {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 16px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.xgestion-integration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 126, 190, 0.28);
    box-shadow: 0 20px 44px rgba(19, 32, 45, 0.12);
}

.xgestion-integration-card__head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.xgestion-integration-card__head h3 {
    overflow-wrap: anywhere;
}

.xgestion-integration-card__logo,
.xgestion-integration-card__name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 46px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #fff;
    color: var(--site-primary-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.xgestion-integration-card__logo {
    width: 64px;
    height: 50px;
    padding: 8px;
}

.xgestion-integration-card__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.xgestion-integration-card__channel {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(32, 166, 122, 0.14);
    color: #063f76;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.xgestion-integration-card__meta {
    display: grid;
    gap: 8px;
    margin: 0;
}

.xgestion-integration-card__meta div {
    display: grid;
    gap: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(6, 26, 63, 0.08);
}

.xgestion-integration-card__meta dt,
.xgestion-integration-card__meta dd {
    margin: 0;
}

.xgestion-integration-card__meta dt {
    color: var(--site-primary-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.xgestion-integration-card__meta dd {
    color: var(--site-muted);
    font-size: 0.88rem;
    line-height: 1.42;
}

.xgestion-integration-note {
    max-width: 920px;
    margin: 18px 0 0;
    color: var(--site-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.xgestion-integrations-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.product-detail-section,
.product-invoice {
    background: #fff;
}

.product-detail-section:nth-of-type(even) {
    background: var(--site-soft);
}

.product-detail-section__grid,
.product-invoice__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 52px;
    align-items: center;
}

.product-detail-section--reverse .product-detail-section__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.product-detail-section--reverse .product-detail-section__media {
    order: -1;
}

.product-detail-section h2,
.product-invoice h2,
.product-landing-cta h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.product-detail-section p,
.product-invoice p {
    max-width: 680px;
    margin: 18px 0 26px;
    color: var(--site-muted);
    font-size: 1.08rem;
}

.product-detail-section__media,
.product-invoice__media,
.product-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.product-detail-section__media img,
.product-invoice__media img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.product-detail-section__media--mock {
    overflow: visible;
    border: 0;
    background: transparent;
}


.product-features {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 24, 76, 0.92), rgba(0, 24, 76, 0.94)),
        var(--product-features-bg, none) center / cover no-repeat,
        #00184c;
}

.product-features .section-heading h2,
.product-features .section-heading p {
    color: #fff;
}

.product-features .section-eyebrow {
    color: #b8e63b;
}

.product-features--productos-xgestion {
    background: var(--site-soft);
}

.product-features--productos-xgestion .section-heading .section-eyebrow {
    color: #073f78;
}

.product-features--productos-xgestion .section-heading {
    max-width: 820px;
    margin-left: 0;
    text-align: left;
}

.product-features--productos-xgestion .section-heading h2 {
    max-width: 820px;
    color: #061a3f;
    font-size: clamp(36px, 4.9vw, 58px);
    line-height: 1.03;
}

.product-features--productos-xgestion .section-heading p:not(.section-eyebrow) {
    max-width: 760px;
    color: var(--site-muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.45;
}

.product-features--productos-xgestion .product-features__grid {
    gap: 18px;
}

.product-features--productos-xgestion .product-feature {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 250px;
    padding: 22px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    text-align: left;
    box-shadow: 0 16px 36px rgba(19, 32, 45, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-features--productos-xgestion .product-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 126, 190, 0.28);
    box-shadow: 0 22px 48px rgba(19, 32, 45, 0.14);
}

.product-features--productos-xgestion .product-feature__head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.product-features--productos-xgestion .product-feature__icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 14px;
    background: #eef6ff;
    color: var(--site-primary);
}

.product-features--productos-xgestion .product-feature__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 4;
}

.product-features--productos-xgestion .product-feature__badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 28px;
    margin: 0;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(32, 166, 122, 0.14);
    color: #063f76;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-features--productos-xgestion .product-feature__head h3 {
    min-width: 0;
    margin: 0;
    color: #061a3f;
    line-height: 1.16;
}

.product-features--productos-xgestion .product-feature p {
    margin: 0;
    color: #52616f;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 66px 34px;
}

.product-feature {
    min-width: 0;
    text-align: center;
}

.product-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    color: #fff;
}

.xgestion-hero-stage.xsoft-platform-hero-stage {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.xsoft-platform-hero-stage .xsoft-platform-mockup,
.xsoft-platform-hero-stage .product-stage {
    width: 100%;
    min-height: 535px;
}

.product-feature__icon svg {
    width: 82px;
    height: 82px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-feature h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.16rem;
    line-height: 1.26;
}

.product-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.5;
}

.product-gallery {
    background: var(--site-soft);
}

.product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.product-gallery__grid--foodtruck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-gallery__grid--heladeria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-gallery__grid--cafeteria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-gallery__grid--restaurant {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-gallery__grid--restaurant .product-gallery__item:last-child {
    grid-column: 1 / -1;
}

.product-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(19, 32, 45, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-gallery__item:hover,
.product-gallery__item:focus-within {
    transform: translateY(-5px);
    border-color: rgba(18, 126, 190, 0.3);
    box-shadow: 0 24px 52px rgba(19, 32, 45, 0.15);
}

.product-gallery__zoom {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-gallery__item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: var(--site-line);
    transition: transform 0.24s ease, filter 0.24s ease;
}

.product-gallery__item--portrait img {
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: #f4f7fa;
}

.product-gallery__item:hover img,
.product-gallery__zoom:focus-visible img {
    transform: scale(1.04);
    filter: brightness(0.86);
}

.product-gallery__zoom-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(13, 112, 183, 0.92);
    box-shadow: 0 12px 26px rgba(4, 20, 46, 0.24);
}

.product-gallery__zoom-icon::before,
.product-gallery__zoom-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-gallery__zoom-icon::before {
    width: 16px;
    height: 3px;
}

.product-gallery__zoom-icon::after {
    width: 3px;
    height: 16px;
}

.product-gallery__caption {
    display: grid;
    gap: 4px;
    padding: 13px 15px 15px;
    border-top: 1px solid var(--site-line);
    background: #fff;
    text-align: left;
}

.product-gallery__caption strong {
    color: var(--site-ink);
    font-size: 0.98rem;
    line-height: 1.25;
}

.product-gallery__caption span {
    color: var(--site-muted);
    font-size: 0.87rem;
    line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
    .xgestion-funnel--hero-retail-featured .xgestion-funnel__hero-stage {
        animation: none;
        transform: perspective(1350px) translateY(-10px) rotateY(-4deg) rotateZ(-1deg) scale(1.03);
    }

    .xgestion-funnel--hero-carniceria-featured .xgestion-funnel__hero-stage {
        animation: none;
        transform: perspective(1350px) translateY(-10px) rotateY(-4deg) rotateZ(-1deg) scale(1.03);
    }

    .xgestion-story-card,
    .xgestion-industry-card,
    .xgestion-industries__arrow,
    .xgestion-industry-card__cta,
    .xgestion-integration-card,
    .product-features--productos-xgestion .product-feature,
    .product-gallery__item,
    .xgestion-industry-card__media img,
    .product-gallery__item img,
    .xgestion-industry-card__play,
    .xgestion-fraud-play {
        transition: none;
    }

    .xgestion-story-card:hover,
    .xgestion-story-card--dark:hover,
    .xgestion-story-card--trust:hover,
    .xgestion-industry-card:hover,
    .xgestion-industry-card:focus-within,
    .xgestion-industries__arrow:hover,
    .xgestion-industries__arrow:focus-visible,
    .xgestion-industry-card__cta:hover,
    .xgestion-industry-card__cta:focus-visible,
    .xgestion-integration-card:hover,
    .product-features--productos-xgestion .product-feature:hover,
    .product-gallery__item:hover,
    .product-gallery__item:focus-within,
    .xgestion-industry-card--has-video:hover .xgestion-industry-card__play,
    .xgestion-industry-card__media-button:focus-visible .xgestion-industry-card__play {
        transform: none;
    }

    .xgestion-industry-card--has-video:hover .xgestion-industry-card__media img,
    .xgestion-industry-card__media-button:focus-visible img,
    .product-gallery__item:hover img,
    .product-gallery__zoom:focus-visible img {
        transform: none;
    }
}

.product-landing-cta {
    padding: 68px 0;
    background: var(--site-primary-dark);
    color: #fff;
}

.product-landing-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.product-landing-cta h2,
.product-landing-cta p {
    color: #fff;
}

.product-landing-cta p {
    max-width: 680px;
    margin: 10px 0 0;
}

.product-landing-cta--productos-xgestion {
    padding: 80px 0;
    background: var(--site-soft);
}

.product-landing-cta--productos-xgestion .product-landing-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-content: start;
    gap: 22px;
    overflow: hidden;
    padding: 52px 50px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1b4c93 0%, #0b1737 78%);
    box-shadow: 0 26px 70px rgba(6, 26, 63, 0.18);
}

.product-landing-cta--productos-xgestion .product-landing-cta__inner::before,
.product-landing-cta--productos-xgestion .product-landing-cta__inner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(32, 166, 122, 0.28);
    pointer-events: none;
}

.product-landing-cta--productos-xgestion .product-landing-cta__inner::before {
    right: -42px;
    top: -80px;
    width: 230px;
    height: 230px;
}

.product-landing-cta--productos-xgestion .product-landing-cta__inner::after {
    left: -118px;
    bottom: -130px;
    width: 260px;
    height: 260px;
    background: rgba(15, 111, 179, 0.3);
}

.product-landing-cta--productos-xgestion .product-landing-cta__inner > * {
    position: relative;
    z-index: 1;
}

.product-landing-cta--productos-xgestion h2 {
    max-width: none;
    color: #fff;
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.05;
}

.product-landing-cta--productos-xgestion p:not(.section-eyebrow) {
    max-width: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.product-landing-cta--productos-xgestion .section-eyebrow {
    margin-bottom: 22px;
    background: rgba(32, 166, 122, 0.2);
    color: #fff;
}

.product-landing-cta--productos-xgestion .btn {
    width: 100%;
    min-height: 48px;
    border-color: #21d464;
    border-radius: 999px;
    background: #21d464;
    color: #03172e;
    box-shadow: 0 18px 38px rgba(33, 212, 100, 0.18);
}

.product-landing-cta--productos-xgestion .btn:hover,
.product-landing-cta--productos-xgestion .btn:focus-visible {
    background: #18b94f;
    border-color: #18b94f;
    color: #03172e;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 38px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px;
    border: 0;
    background: transparent;
    color: var(--site-ink);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: left;
}

.faq-item button span:first-child {
    min-width: 0;
}

.faq-item__chevron {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin: -4px 2px 0 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.16s ease, margin 0.16s ease;
}

.faq-item button[aria-expanded="true"] .faq-item__chevron {
    margin-top: 4px;
    transform: rotate(225deg);
}

.faq-item__body {
    display: none;
    padding: 0 18px 18px;
}

.faq-item__body.is-open {
    display: block;
}

.quote-card {
    min-height: 180px;
}

.testimonials-carousel {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background-image: var(--testimonials-bg);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.testimonials-carousel__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 52% 35%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(12, 22, 30, 0.84), rgba(29, 43, 44, 0.72)),
        radial-gradient(rgba(255, 255, 255, 0.18) 0.7px, transparent 0.8px);
    background-size: auto, auto, 4px 4px;
}

.testimonials-carousel__inner {
    position: relative;
    z-index: 1;
    padding: 76px 0 88px;
}

.testimonials-carousel h2 {
    width: min(860px, 100%);
    margin: 0 auto 16px;
    color: #fff;
    font-size: clamp(1.25rem, 2.2vw, 1.62rem);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.testimonials-carousel__viewport {
    position: relative;
    min-height: 402px;
    margin: 0 auto;
}

.testimonials-carousel__page {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonials-carousel__page.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.testimonial-card {
    position: relative;
    min-width: 0;
    color: #fff;
    outline: 0;
}

.testimonial-card__bubble {
    position: relative;
    height: 282px;
    padding: 28px 34px 32px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    isolation: isolate;
}

.testimonial-card__bubble::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50px;
    width: 0;
    height: 0;
    border-top: 16px solid rgba(255, 255, 255, 0.32);
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
}

.testimonial-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.25;
}

.testimonial-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0 0 34px;
}

.testimonial-card__person img {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    object-fit: cover;
}

.testimonial-card__person strong,
.testimonial-card__person span {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
}

.testimonial-card__person span {
    font-weight: 800;
}

.testimonial-card__full {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 4;
    max-height: min(360px, 70vh);
    overflow: auto;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: rgba(12, 22, 30, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.testimonial-card__full strong,
.testimonial-card__full span {
    display: block;
    color: #fff;
}

.testimonial-card__full strong {
    margin: 0 0 12px;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.25;
}

.testimonial-card__full span {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.62;
}

.testimonial-card:hover,
.testimonial-card:focus-visible {
    z-index: 5;
}

.testimonial-card:hover .testimonial-card__full,
.testimonial-card:focus-visible .testimonial-card__full,
.testimonial-card:focus-within .testimonial-card__full {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.testimonial-card:focus-visible .testimonial-card__bubble {
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 24px 55px rgba(0, 0, 0, 0.18);
}

.testimonials-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 66px;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.34);
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials-carousel__arrow:hover,
.testimonials-carousel__arrow:focus {
    background: rgba(255, 255, 255, 0.48);
    transform: translateY(-50%) scale(1.02);
}

.testimonials-carousel__arrow--prev {
    left: max(-98px, calc((100vw - 100%) / -2 + 14px));
}

.testimonials-carousel__arrow--next {
    right: max(-98px, calc((100vw - 100%) / -2 + 14px));
}

.testimonials-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonials-carousel__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.testimonials-carousel__dots button.is-active {
    border-color: #fff;
    background: transparent;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.subhero {
    padding: 118px 0 72px;
    background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.subhero--contact {
    background: #f8fbfe;
}

.check-list,
.timeline-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li,
.timeline-list li {
    padding: 12px 14px;
    border-left: 4px solid var(--site-accent);
    border-radius: 6px;
    background: #fff;
    color: var(--site-ink);
    font-weight: 800;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.media-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    background: var(--site-line);
}

.cta-band {
    padding: 60px 0;
    background: var(--site-primary-dark);
    color: #fff;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-band h2,
.cta-band p {
    color: #fff;
}

.cta-band p {
    margin: 8px 0 0;
}

.contact-card,
.contact-form,
.contact-aside {
    padding: 24px;
}

.contact-card a,
.contact-aside a {
    display: block;
    margin-top: 10px;
    color: var(--site-primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.contact-card a:hover,
.contact-aside a:hover {
    text-decoration: underline;
}

.contact-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--site-ink);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #bdcad8;
    border-radius: 8px;
    padding: 12px;
    color: var(--site-ink);
    font: inherit;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 3px rgba(15, 111, 179, 0.16);
    outline: 0;
}

.field-error {
    color: #b42318;
    font-size: 0.88rem;
    font-weight: 700;
}

.form-alert {
    margin-bottom: 18px;
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-alert--success {
    background: #e8f7ef;
    color: #11674f;
}

.form-alert--error {
    background: #fff0ed;
    color: #b42318;
}

.honeypot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 101, 181, 0.16), transparent 30%),
        linear-gradient(180deg, #252525 0%, #1f1f1f 100%);
    color: rgba(255, 255, 255, 0.66);
}

.site-footer__notice {
    padding: 44px 0 30px;
}

.site-footer__notice-inner {
    max-width: 880px;
}

.site-footer__notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.7;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #21a3e8;
    text-decoration: none;
}

.site-footer__notice a {
    color: #1589d2;
}

.site-footer__notice strong {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 34px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand-panel {
    display: block;
    align-items: center;
    justify-content: center;
    min-height: 138px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    text-align-last: center;
}

.site-footer__brand-panel img {
    display: block;
    width: min(230px, 100%);
    max-height: 112px;
    margin: 0 auto;
    object-fit: contain;
}

.site-footer__sitemap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.site-footer__nav-group a {
    display: block;
    width: fit-content;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.35;
}

.site-footer__copyright {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.16);
}

.site-footer__copyright-inner {
    display: flex;
    align-items: center;
    min-height: 58px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.whatsapp-float__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 23px;
    padding: 0 15px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(19, 32, 45, 0.16);
}

.whatsapp-float__bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
}

.whatsapp-float__bubble img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.is-broken-media {
    min-height: 220px;
    background: repeating-linear-gradient(45deg, #eef2f7, #eef2f7 10px, #e5ebf2 10px, #e5ebf2 20px);
}

/* El CTA de trial y el acceso cliente conviven sin comprimir la navegación. */
@media (max-width: 1180px) {
    :root {
        --site-header-height: 76px;
        --site-product-strip-height: 34px;
    }

    .site-header__inner {
        min-height: var(--site-header-height);
    }

    .site-product-strip {
        position: sticky;
        top: 0;
    }

    .site-header--with-product-strip {
        top: var(--site-product-strip-height);
    }

    .site-menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        top: var(--site-header-height);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 18px;
        border-bottom: 1px solid var(--site-line);
        background: #fff;
        box-shadow: 0 16px 30px rgba(19, 32, 45, 0.12);
    }

    .site-header--with-product-strip .site-nav {
        top: calc(var(--site-header-height) + var(--site-product-strip-height));
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__link {
        width: 100%;
        justify-content: space-between;
    }

    .site-nav__dropdown-toggle {
        top: 18px;
        right: 12px;
        transform: none;
    }

    .site-nav__item--nested.has-dropdown > .site-nav__dropdown-toggle .site-nav__dropdown-chevron,
    .site-nav__parent-toggle .site-nav__dropdown-chevron {
        transform: rotate(45deg);
    }

    .site-nav__item--nested.has-dropdown > .site-nav__dropdown-toggle[aria-expanded="true"] .site-nav__dropdown-chevron,
    .site-nav__parent-toggle[aria-expanded="true"] .site-nav__dropdown-chevron {
        transform: rotate(225deg);
    }

    .site-nav__dropdown {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 4px 0 8px;
    }

    .site-nav > .site-nav__item > .site-nav__dropdown {
        width: 100%;
        min-width: 0;
    }

    .site-nav__dropdown.is-open {
        display: block;
    }

    .site-nav__dropdown .site-nav__item--nested.has-dropdown {
        display: block;
    }

    .site-nav__submenu {
        width: auto;
        min-width: 0;
        margin-left: 14px;
    }

    .xgestion-funnel__hero-grid,
    .xgestion-funnel__media-grid,
    .xgestion-funnel__promotion-inner {
        grid-template-columns: 1fr;
    }

    .xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-grid {
        grid-template-columns: 1fr;
    }

    .xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-copy {
        max-width: 720px;
    }

    .xgestion-funnel--hero-campaign-wide .xgestion-funnel__hero-stage {
        justify-self: center;
        width: min(100%, 720px);
        border-radius: 24px 52px 24px 44px;
        transform: none;
    }

    .xgestion-funnel__cards,
    .xgestion-funnel__cards--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xgestion-funnel__xmenu-layout {
        grid-template-columns: 1fr;
    }

    .xgestion-funnel__xportal-layout { grid-template-columns: 1fr; }
    .xgestion-funnel__xportal-copy { max-width: 720px; }
    .xgestion-funnel__xportal-preview { justify-self: center; width: min(100%, 620px); }

    .xgestion-funnel__xmenu-copy {
        max-width: 720px;
    }

    .xgestion-funnel__xmenu-preview {
        justify-self: center;
        width: min(100%, 560px);
    }

    .xgestion-funnel__steps { grid-template-columns: 1fr; }

    .xgestion-funnel__hero-stage {
        justify-self: center;
        width: min(100%, 720px);
        transform: none;
    }

    .xgestion-funnel--hero-campaign-full-right .xgestion-funnel__hero-stage {
        width: 100%;
        max-width: none;
        transform: none;
    }

    .xgestion-funnel__gallery { grid-template-columns: 1fr; }

    .xgestion-funnel__visual img { min-height: 240px; }

    .site-nav__languages {
        justify-content: flex-start;
        margin: 10px 0 0;
        padding: 8px 12px;
    }

    .site-product-strip__inner {
        min-height: 34px;
        font-size: 0.78rem;
    }

    .home-hero-carousel {
        min-height: max(720px, calc(100svh - var(--site-header-height)));
    }

    .hero-slide-content {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        min-height: max(720px, calc(100svh - var(--site-header-height)));
        gap: 28px;
    }

    .hero-slide h1,
    .hero-slide h2 {
        font-size: clamp(38px, 5.4vw, 58px);
    }

    .platform-stage-scope .product-stage {
        transform: scale(0.9);
        transform-origin: center right;
    }

    .hero-argentina {
        grid-template-columns: 1fr;
    }

    .hero-argentina__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-brand-cloud__logo {
        width: 118px;
        opacity: 0.07;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-features__grid,
    .product-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xgestion-hero-bullets,
    .xgestion-story-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xgestion-owner-layout,
    .xgestion-owner-proof,
    .xgestion-integration-map {
        grid-template-columns: 1fr;
    }

    .xgestion-integration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 1180px) {
    .product-landing--productos-xgestion.product-landing-hero,
    .product-landing--productos-xgestion.product-landing-hero .hero__content {
        min-height: 920px;
    }

    .product-landing--productos-xgestion .product-landing-hero__content--stage,
    .xgestion-fraud-layout {
        grid-template-columns: 1fr;
    }

    .product-landing--productos-xgestion .xgestion-hero-copy,
    .product-landing--productos-xgestion .xgestion-hero-stage {
        grid-column: 1;
        grid-row: auto;
    }

    .xgestion-hero-stage {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        width: min(100%, 650px);
    }

    .xgestion-hero-stage.xsoft-platform-hero-stage {
        width: min(100%, 760px);
    }

    .xgestion-story--pain .xgestion-story-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xgestion-story--trust .xgestion-story-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .xgestion-funnel section {
        padding: 58px 0;
    }

    .xgestion-funnel h1 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

    .xgestion-funnel__breadcrumbs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .xgestion-funnel__hero {
        min-height: 0;
        padding-top: 44px !important;
    }

    .xgestion-funnel__hero-signals {
        align-items: stretch;
        flex-direction: column;
    }

    .xgestion-funnel__hero-signals span {
        width: 100%;
    }

    .xgestion-funnel--compact-signals .xgestion-funnel__hero-signals {
        grid-template-columns: 1fr;
    }

    .xgestion-funnel--compact-signals .xgestion-funnel__hero-signals span:first-child {
        grid-column: auto;
    }

    .xgestion-funnel__cards,
    .xgestion-funnel__cards--three {
        grid-template-columns: 1fr;
    }

    .xgestion-funnel__xmenu-layout {
        gap: 34px;
    }

    .xgestion-funnel__xportal-layout { gap: 34px; }
    .xgestion-funnel__xportal-preview { padding: 10px; border-radius: 18px; }

    .xgestion-funnel__xmenu-preview {
        padding: 12px;
        border-radius: 18px;
    }

    .xgestion-funnel__stage-bar strong {
        max-width: 70%;
    }

    .xgestion-funnel__final-inner {
        border-radius: 12px;
    }

    .product-landing--productos-xgestion.product-landing-hero,
    .product-landing--productos-xgestion.product-landing-hero .hero__content {
        min-height: 820px;
    }

    .xgestion-story .section-heading h2,
    .product-features--productos-xgestion .section-heading h2,
    .product-landing-cta--productos-xgestion h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .xgestion-story--pain .xgestion-story-card-grid,
    .xgestion-story--trust .xgestion-story-card-grid {
        grid-template-columns: 1fr;
    }

    .xgestion-story--pain .xgestion-story-card {
        min-height: 0;
    }

    .product-landing--productos-xgestion .product-landing-hero__content--stage {
        gap: 18px;
    }

    .xsoft-platform-hero-stage .xsoft-platform-mockup,
    .xsoft-platform-hero-stage .product-stage {
        min-height: min(430px, 52vh);
    }

    .xgestion-hero-stage__bar strong {
        font-size: 0.78rem;
    }

    .xgestion-hero-stage figcaption {
        padding: 9px 12px;
        font-size: 0.84rem;
    }

    .product-landing-hero__content--stage .xgestion-hero-proof {
        display: none;
    }

    .product-landing-cta--productos-xgestion {
        padding: 54px 0;
    }

    .product-landing-cta--productos-xgestion .product-landing-cta__inner {
        padding: 34px 22px;
        border-radius: 18px;
    }

    .product-features--productos-xgestion .product-feature__head {
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .home-hero-carousel,
    .hero-slide-content {
        min-height: calc(100vh - 70px);
        min-height: calc(100svh - 70px);
    }

    .home-hero-carousel {
        height: calc(100vh - 70px);
        height: calc(100svh - 70px);
    }

    .hero-carousel-track,
    .hero-slide {
        position: absolute;
        inset: 0;
        min-height: inherit;
        height: 100%;
    }

    .hero-slide {
        display: grid;
    }

    .hero-slide.is-active {
        display: grid;
    }

    .hero-slide-content {
        grid-template-columns: 1fr;
        height: 100%;
        overflow: hidden;
        padding: 48px 0 86px;
    }

    .hero-slide__copy {
        max-width: 660px;
        text-align: left;
    }

    .platform-stage-scope .product-stage {
        width: min(100%, 700px);
        min-height: 430px;
        margin: 10px auto 0;
        transform: none;
    }

    .hero-brand-cloud__mark {
        top: 2%;
        right: 4%;
        width: 70px;
        opacity: 0.09;
    }

    .platform-stage-scope .browser {
        inset: 12px 0 60px;
        transform: none;
    }

    .hero-argentina {
        gap: 8px;
    }

    .hero-argentina__map {
        max-height: 430px;
        width: min(100%, 300px);
    }

    .hero-argentina__cards {
        grid-template-columns: 1fr;
    }

    .hero-carousel-arrow {
        top: auto;
        bottom: 24px;
        width: 42px;
        height: 48px;
        font-size: 0;
        transform: none;
    }

    .hero-carousel-arrow--prev {
        left: 0;
    }

    .hero-carousel-arrow--next {
        right: 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero__content {
        min-height: 620px;
        padding: 70px 54px 86px 24px;
    }

    .hero__content h1,
    .hero__content h2 {
        font-size: clamp(42px, 10vw, 64px);
        max-width: 560px;
    }

    .hero__content p {
        font-size: 1.08rem;
    }

    .hero__arrow {
        width: 48px;
        height: 58px;
        font-size: 2.8rem;
    }

    .remote-admin__grid,
    .split-content,
    .product-detail-section__grid,
    .product-invoice__grid,
    .subhero__grid,
    .contact-layout,
    .faq-grid,
    .product-landing-cta__inner,
    .cta-band__inner {
        grid-template-columns: 1fr;
    }

    .product-detail-section__grid,
    .product-invoice__grid {
        gap: 28px;
    }

    .product-detail-section--reverse .product-detail-section__grid {
        grid-template-columns: 1fr;
    }

    .product-detail-section--reverse .product-detail-section__media {
        order: 0;
    }

    .product-landing-cta__inner {
        display: grid;
    }

    .home-services {
        padding: 84px 0 76px;
    }

    .home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 28px;
    }

    .cta-band__inner {
        display: grid;
    }

    .cards-grid--three,
    .cards-grid--six {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        min-height: 0;
    }

    .testimonials-carousel__inner {
        padding: 64px 0 72px;
    }

    .testimonials-carousel__viewport {
        min-height: 392px;
    }

    .testimonials-carousel__page {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .testimonial-card__bubble {
        height: 236px;
    }

    .testimonials-carousel__arrow {
        width: 46px;
        height: 56px;
        font-size: 2.7rem;
    }

    .testimonials-carousel__arrow--prev {
        left: max(-14px, calc((100vw - 100%) / -2 + 8px));
    }

    .testimonials-carousel__arrow--next {
        right: max(-14px, calc((100vw - 100%) / -2 + 8px));
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 0 36px;
    }

    .site-footer__brand-panel {
        min-height: auto;
        padding-right: 0;
        padding-bottom: 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        text-align: center;
        text-align-last: center;
    }

    .site-footer__sitemap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        gap: 20px;
    }

    .product-features__grid {
        gap: 46px 26px;
    }
}

@media (max-width: 560px) {
    :root {
        --site-header-height: 70px;
    }

    .site-shell {
        width: min(100% - 24px, 1160px);
    }

    .site-header__inner {
        min-height: var(--site-header-height);
    }

    .site-brand img {
        width: 118px;
    }

    .site-nav {
        top: var(--site-header-height);
    }

    .home-hero-carousel .site-shell {
        width: min(100% - 30px, 1160px);
    }

    .hero-slide-content {
        padding: 24px 0 74px;
    }

    .hero-slide h1,
    .hero-slide h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
    }

    .home-hero-carousel .hero-slide__eyebrow,
    .home-hero-carousel .hero-slide__lead,
    .home-hero-carousel .hero-slide__trust {
        display: none;
    }

    .hero-slide__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 22px;
    }

    .hero-slide__button {
        min-width: 0;
        min-height: 52px;
        width: 100%;
        padding: 0 10px;
        font-size: 0.92rem;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .home-demo-modal__actions .btn {
        width: 100%;
    }

    .hero-brand-cloud__mark {
        width: 54px;
        opacity: 0.08;
    }

    .hero-brand-cloud__logo {
        display: none;
    }

    .platform-stage-scope .product-stage {
        min-height: min(430px, 52vh);
    }

    .platform-stage-scope .floating-card {
        top: 58px;
        right: -5px;
        width: 145px;
    }

    .platform-stage-scope .mobile-card {
        left: -3px;
        width: 138px;
        height: 235px;
    }

    .platform-stage-scope .app-shell {
        grid-template-columns: 80px 1fr;
    }

    .platform-stage-scope .sidebar {
        padding: 12px 8px;
    }

    .platform-stage-scope .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .platform-stage-scope .metric:nth-child(n+3),
    .platform-stage-scope .dashboard-grid .panel:last-child,
    .platform-stage-scope .branch-switch {
        display: none;
    }

    .platform-stage-scope .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .platform-stage-scope .app-main {
        padding: 12px;
    }

    .hero-argentina__map {
        max-height: 340px;
        width: min(100%, 240px);
    }

    .hero-argentina__cards article {
        padding: 13px;
    }

    .home-demo-modal {
        padding: 14px;
    }

    .home-demo-modal__dialog {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .home-demo-modal__grid,
    .home-demo-modal__actions {
        grid-template-columns: 1fr;
    }

    .home-demo-modal__grid,
    .home-demo-modal__actions {
        display: grid;
    }

    .home-demo-modal__field-wide {
        grid-column: auto;
    }

    .hero {
        min-height: 600px;
    }

    .hero__content {
        min-height: 600px;
        padding: 56px 38px 86px 14px;
    }

    .hero__content h1,
    .hero__content h2 {
        font-size: 38px;
        line-height: 1.12;
    }

    .hero__content p {
        margin-bottom: 24px;
    }

    .product-landing-hero__content {
        padding-right: 46px;
    }

    .home-services {
        padding: 66px 0;
    }

    .home-services__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-service__icon {
        margin-bottom: 18px;
    }

    .hero__cta {
        min-width: 142px;
        min-height: 48px;
        padding: 0 18px;
    }

    .hero__arrow {
        width: 38px;
        height: 50px;
        font-size: 2.4rem;
    }

    .testimonials-carousel {
        min-height: 0;
    }

    .testimonials-carousel__inner {
        padding: 52px 0 68px;
    }

    .testimonials-carousel h2 {
        font-size: 1.18rem;
    }

    .testimonials-carousel__viewport {
        min-height: 406px;
    }

    .testimonial-card__bubble {
        height: 254px;
        padding: 24px 24px 28px;
    }

    .testimonial-card p {
        -webkit-line-clamp: 5;
    }

    .testimonial-card__full {
        right: 12px;
        bottom: 14px;
        left: 12px;
        max-height: min(380px, 68vh);
        padding: 18px;
    }

    .testimonial-card__person {
        margin-left: 24px;
    }

    .testimonials-carousel__arrow {
        width: 38px;
        height: 50px;
        font-size: 2.4rem;
    }

    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float__bubble {
        width: 60px;
        height: 60px;
    }

    .section {
        padding: 62px 0;
    }

    .subhero {
        padding: 96px 0 56px;
    }

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

    .product-features__grid,
    .product-gallery__grid {
        grid-template-columns: 1fr;
    }

    .product-gallery__grid--restaurant .product-gallery__item:last-child {
        grid-column: auto;
    }

    .xgestion-story-card-grid,
    .xgestion-integration-grid,
    .xgestion-owner-kpis,
    .xgestion-integrations-head {
        grid-template-columns: 1fr;
    }

    .xgestion-fraud-layout {
        gap: 22px;
    }

    .xgestion-fraud-actions {
        justify-items: stretch;
    }

    .xgestion-fraud-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .xgestion-fraud-chips {
        gap: 8px;
    }

    .xgestion-fraud-chips span {
        min-height: 32px;
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .xgestion-hero-bullets {
        display: none;
    }

    .xgestion-owner-alert {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .xgestion-owner-alert__chip {
        grid-column: 2;
        justify-self: start;
    }

    .xgestion-hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 22px;
    }

    .xgestion-hero-proof div {
        padding: 10px 10px;
    }

    .xgestion-hero-proof strong {
        font-size: 0.98rem;
    }

    .xgestion-hero-proof span {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .product-landing--productos-xgestion .product-landing-hero__pitch h1,
    .product-landing--productos-xgestion .product-landing-hero__pitch h2 {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.1;
    }

    .product-landing--productos-xgestion .product-landing-hero__pitch > p:not(.section-eyebrow) {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .xgestion-story-card {
        min-height: 0;
    }

    .xgestion-story-mini-cta {
        display: grid;
    }

    .xgestion-industries__rail {
        grid-auto-columns: minmax(260px, 88vw);
        gap: 18px;
        padding-inline: 8px;
    }

    .xgestion-industries__carousel {
        padding-inline: 0;
    }

    .xgestion-industries__arrow {
        width: 40px;
        height: 40px;
    }

    .xgestion-industries__arrow--prev {
        left: 6px;
    }

    .xgestion-industries__arrow--next {
        right: 6px;
    }

    .xgestion-video-modal {
        padding: 14px;
    }

    .xgestion-image-modal {
        padding: 14px;
    }

    .xgestion-image-modal__panel {
        max-height: calc(100vh - 28px);
    }

    .xgestion-image-modal__media {
        padding: 10px;
    }

    .xgestion-image-modal__media img {
        max-height: calc(100vh - 108px);
    }

    .xgestion-integrations-head .btn {
        width: 100%;
    }

    .product-feature {
        max-width: 330px;
        margin: 0 auto;
    }

    .product-detail-section__media img,
    .product-invoice__media img {
        min-height: 240px;
    }

    .product-landing-cta__inner .btn {
        width: 100%;
    }

    .btn,
    .subhero .hero__actions .btn {
        width: 100%;
    }

    .site-footer__notice {
        padding: 34px 0 24px;
    }

    .site-footer__notice p {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .site-footer__brand-panel img {
        width: 190px;
    }

    .site-footer__sitemap {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .site-footer__nav-group a {
        width: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .site-footer__copyright-inner {
        justify-content: center;
        min-height: 56px;
        text-align: center;
    }
}

@media (max-width: 1180px) {
    .hero-slide--argentina .xsoft-presence-hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 24px;
    }

    .hero-argentina.xsoft-presence-hero__visual {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .xsoft-presence-hero__map-wrap {
        min-height: 460px;
    }

    .hero-argentina__map.xsoft-presence-map {
        width: min(100%, 520px);
        max-height: 540px;
    }

    .hero-argentina__cards.xsoft-presence-kpis {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 10px;
    }

    .xsoft-presence-kpi {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
        min-height: 126px;
        padding: 16px;
    }

    .xsoft-presence-kpi__icon {
        width: 54px;
        height: 54px;
    }

    .xsoft-presence-kpi svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 820px) {
    .hero-slide--argentina .xsoft-presence-hero__inner {
        grid-template-columns: 1fr;
        padding: 46px 0 98px;
    }

    .xsoft-presence-hero h2 {
        max-width: 720px;
        font-size: clamp(42px, 8.2vw, 64px);
    }

    .xsoft-presence-hero .hero-slide__lead {
        max-width: 680px;
    }

    .hero-argentina.xsoft-presence-hero__visual {
        transform: none;
    }

    .xsoft-presence-hero__map-wrap {
        min-height: 390px;
    }

    .hero-argentina__map.xsoft-presence-map {
        width: min(100%, 430px);
        max-height: 430px;
    }

    .hero-argentina__cards.xsoft-presence-kpis {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }

    .xsoft-presence-kpi {
        min-height: 128px;
        padding: 14px;
    }
}

@media (max-width: 560px) {
    .hero-slide--argentina .xsoft-presence-hero__inner {
        padding: 24px 0 74px;
        gap: 14px;
    }

    .hero-slide--argentina .xsoft-presence-hero .hero-slide__eyebrow,
    .hero-slide--argentina .xsoft-presence-hero .hero-slide__lead {
        display: none;
    }

    .xsoft-presence-hero h2 {
        font-size: clamp(40px, 11vw, 48px);
        line-height: 1.05;
    }

    .xsoft-presence-hero__rule {
        width: 78px;
        height: 3px;
        margin-top: 18px;
    }

    .xsoft-presence-hero .hero-slide__lead {
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.45;
    }

    .xsoft-presence-hero .hero-slide__actions {
        margin-top: 18px;
    }

    .xsoft-presence-hero__map-wrap {
        min-height: min(280px, 35vh);
    }

    .xsoft-presence-hero__map-wrap::before {
        width: 92%;
    }

    .hero-argentina__map.xsoft-presence-map {
        width: min(100%, 280px);
        max-height: min(280px, 34vh);
    }

    .presence-network {
        opacity: 0.45;
    }

    .hero-argentina__cards.xsoft-presence-kpis {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-slide-content,
    .hero-slide--argentina .xsoft-presence-hero__inner {
        padding-top: 18px;
        padding-bottom: 68px;
    }

    .xsoft-presence-hero__map-wrap {
        min-height: 210px;
    }

    .hero-argentina__map.xsoft-presence-map {
        width: min(100%, 235px);
        max-height: 230px;
    }
}

.xsoft-site-content {
    --xsc-navy: #071c33;
    --xsc-navy-2: #0b2949;
    --xsc-blue: #0a78c9;
    --xsc-blue-2: #0c91df;
    --xsc-cyan: #57c8ff;
    --xsc-teal: #1bb59b;
    --xsc-ink: #10233c;
    --xsc-muted: #5d6d80;
    --xsc-line: #dce7f0;
    --xsc-soft: #f4f8fb;
    --xsc-soft-blue: #eaf5fc;
    --xsc-white: #ffffff;
    color: var(--xsc-ink);
    background: var(--xsc-white);
    overflow: hidden;
}

.xsoft-site-content *,
.xsoft-site-content *::before,
.xsoft-site-content *::after {
    box-sizing: border-box;
}

.xsoft-site-content svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xsc-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.xsc-section {
    padding: 110px 0;
    background: var(--xsc-white);
}

.xsc-section--soft {
    background: var(--xsc-soft);
}

.xsc-section--dark {
    background: var(--xsc-navy);
    color: var(--xsc-white);
}

.xsc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--xsc-blue);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.xsc-center {
    text-align: center;
}

.xsoft-site-content h2,
.xsoft-site-content h3,
.xsoft-site-content h4,
.xsoft-site-content p {
    margin-top: 0;
}

.xsoft-site-content h2 {
    margin-bottom: 22px;
    color: var(--xsc-ink);
    font-size: clamp(2.125rem, 4vw, 3.25rem);
    line-height: 1.06;
    font-weight: 900;
}

.xsc-section--dark h2,
.xsc-final-cta h2 {
    color: var(--xsc-white);
}

.xsoft-site-content h3 {
    color: var(--xsc-ink);
    font-size: 1.35rem;
    line-height: 1.14;
    font-weight: 900;
}

.xsc-lead {
    color: var(--xsc-muted);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.6;
}

.xsc-center .xsc-lead {
    margin-left: auto;
    margin-right: auto;
}

.xsc-section--dark .xsc-lead,
.xsc-final-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.xsc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.xsc-btn:hover,
.xsc-btn:focus-visible {
    transform: translateY(-3px);
    text-decoration: none;
}

.xsc-btn:focus-visible,
.xsc-faq-question:focus-visible {
    outline: 3px solid rgba(87, 200, 255, 0.5);
    outline-offset: 3px;
}

.xsc-btn--primary {
    background: linear-gradient(135deg, var(--xsc-blue), var(--xsc-blue-2));
    color: var(--xsc-white);
    box-shadow: 0 18px 34px rgba(10, 120, 201, 0.22);
}

.xsc-btn--light,
.xsc-btn--white {
    background: var(--xsc-white);
    color: var(--xsc-ink);
    box-shadow: 0 18px 36px rgba(5, 24, 48, 0.18);
}

.xsc-btn--outline {
    color: var(--xsc-white);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.xsc-icon-box {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    color: var(--xsc-blue-2);
    background: var(--xsc-soft-blue);
}

.xsc-trust-strip {
    background: var(--xsc-white);
    border-top: 1px solid var(--xsc-line);
    border-bottom: 1px solid var(--xsc-line);
}

.xsc-trust-strip__grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    align-items: center;
    gap: 24px;
}

.xsc-trust-strip h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.24;
}

.xsc-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-weight: 900;
}

.xsc-platform-head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 70px;
}

.xsc-platform-head .xsc-lead {
    margin-bottom: 0;
}

.xsc-platform-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.xsc-product-card {
    min-height: 335px;
    padding: 38px;
    border: 1px solid var(--xsc-line);
    border-radius: 24px;
    background: var(--xsc-white);
    box-shadow: 0 22px 48px rgba(12, 44, 76, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xsc-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(10, 120, 201, 0.34);
    box-shadow: 0 28px 62px rgba(12, 44, 76, 0.12);
}

.xsc-product-label {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--xsc-soft-blue);
    color: var(--xsc-blue);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.xsc-product-card p:not(.xsc-product-label) {
    color: var(--xsc-muted);
    line-height: 1.62;
}

.xsc-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.xsc-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.xsc-feature-list span {
    color: var(--xsc-teal);
}

.xsc-flow-link {
    position: relative;
    display: grid;
    place-items: center;
    gap: 14px;
    color: var(--xsc-blue);
    font-size: .78rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.xsc-flow-link::before,
.xsc-flow-link::after {
    content: "";
    position: absolute;
    top: 42px;
    width: 44px;
    height: 1px;
    background: var(--xsc-line);
}

.xsc-flow-link::before {
    right: calc(50% + 43px);
}

.xsc-flow-link::after {
    left: calc(50% + 43px);
}

.xsc-sync-ring {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 1px solid var(--xsc-line);
    border-radius: 50%;
    background: var(--xsc-white);
    box-shadow: 0 18px 38px rgba(12, 44, 76, 0.08);
}

.xsc-sync-ring svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.4;
}

.xsc-platform-note {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
    padding: 26px 30px;
    border: 1px solid rgba(27, 181, 155, 0.28);
    border-radius: 16px;
    color: #006b5d;
    background: rgba(27, 181, 155, 0.11);
    font-weight: 800;
}

.xsc-platform-note svg {
    flex: 0 0 auto;
}

.xsc-outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 62px;
}

.xsc-outcome-card {
    min-height: 235px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 34px;
    border: 1px solid var(--xsc-line);
    border-radius: 20px;
    background: var(--xsc-white);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xsc-outcome-card:hover,
.xsc-module-card:hover,
.xsc-quote-card:hover {
    transform: translateY(-4px);
    border-color: rgba(10, 120, 201, 0.34);
    box-shadow: 0 22px 45px rgba(12, 44, 76, 0.10);
}

.xsc-outcome-card h3 {
    margin: 26px 0 14px;
}

.xsc-outcome-card p,
.xsc-module-card p,
.xsc-tenant-points p,
.xsc-quote-card small,
.xsc-process-grid p {
    color: var(--xsc-muted);
    line-height: 1.55;
}

.xsc-modules-layout {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.55fr);
    gap: 92px;
    align-items: start;
}

.xsc-sticky-copy {
    position: sticky;
    top: calc(var(--site-header-height, 80px) + 28px);
}

.xsc-sticky-copy .xsc-btn {
    margin-top: 12px;
}

.xsc-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.xsc-module-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--xsc-line);
    border-radius: 18px;
    background: var(--xsc-white);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xsc-module-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.xsoft-site-content .xsc-section--dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 24%, rgba(43, 145, 255, .16), transparent 34%),
        radial-gradient(circle at 13% 34%, rgba(12, 145, 223, .14), transparent 30%),
        linear-gradient(135deg, #071c33 0%, #06182d 56%, #061527 100%);
}

.xsc-section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(87, 200, 255, .035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(87, 200, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
    opacity: .35;
    pointer-events: none;
}

.xsc-portal-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(270px, .82fr) minmax(0, 1.18fr);
    gap: 76px;
    align-items: center;
}

.xsc-portal-copy .xsc-eyebrow {
    color: var(--xsc-cyan);
}

.xsc-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 36px;
}

.xsc-pill-list span {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: var(--xsc-white);
    font-weight: 800;
}

.xsc-portal-demo {
    position: relative;
    min-height: 520px;
}

.xsc-portal-window {
    overflow: hidden;
    aspect-ratio: 1905 / 910;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 44%, rgba(52, 153, 255, .16), transparent 46%),
        #060d23;
    box-shadow: 0 36px 75px rgba(0, 0, 0, .34);
}

.xsc-portal-window-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .28));
}

.xsc-portal-phone {
    position: absolute;
    right: -28px;
    bottom: -4px;
    width: 220px;
    padding: 14px;
    border-radius: 34px;
    background: linear-gradient(145deg, #0a1422, #172335);
    box-shadow: 0 30px 62px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.08);
    animation: xscPhoneFloat 5.6s ease-in-out infinite;
}

.xsc-portal-phone::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 52px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    transform: translateX(-50%);
}

.xsc-portal-phone-screen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 912 / 1600;
    border-radius: 24px;
    background: #eef3f7;
}

.xsc-portal-phone-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.xsc-tenant-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 80px;
    align-items: center;
}

.xsc-tenant-points {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.xsc-tenant-points article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
}

.xsc-tenant-points span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--xsc-soft-blue);
    color: var(--xsc-blue);
    font-weight: 900;
}

.xsc-tenant-points h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.xsc-org-card {
    position: relative;
    overflow: hidden;
    padding: 40px 36px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0d345a, #103f67);
    color: #fff;
    box-shadow: 0 32px 75px rgba(13, 52, 90, .20);
}

.xsc-org-card::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(87, 200, 255, .10);
}

.xsc-org-head,
.xsc-org-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.xsc-org-head small,
.xsc-company-node small,
.xsc-branch-nodes span,
.xsc-org-footer span {
    display: block;
    color: rgba(255,255,255,.66);
}

.xsc-org-head strong,
.xsc-company-node strong,
.xsc-branch-nodes strong,
.xsc-org-footer strong {
    display: block;
    color: #fff;
}

.xsc-org-head strong {
    margin-top: 8px;
    font-size: 1.35rem;
}

.xsc-org-head span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(27, 181, 155, .22);
    color: #7df0df;
    font-size: .75rem;
    font-weight: 900;
}

.xsc-company-node {
    position: relative;
    z-index: 1;
    width: min(340px, 100%);
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 42px auto 52px;
    padding: 18px 22px;
    border-radius: 16px;
    background: #fff;
    color: var(--xsc-ink);
}

.xsc-company-node::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.42);
}

.xsc-company-node span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #57c8ff, #0a78c9);
    color: #fff;
    font-weight: 900;
}

.xsc-company-node strong {
    color: var(--xsc-ink);
}

.xsc-branch-nodes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.xsc-branch-nodes::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: rgba(255,255,255,.42);
}

.xsc-branch-nodes article {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 15px;
    background: rgba(255,255,255,.08);
}

.xsc-branch-nodes em {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #57ffc9;
    font-size: .78rem;
    font-style: normal;
    font-weight: 900;
}

.xsc-branch-nodes i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: xscStatusPulse 1.8s ease-in-out infinite;
}

.xsc-org-footer {
    margin-top: 34px;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
}

.xsc-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.xsc-industry-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 42px 34px;
    border-radius: 24px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.xsc-industry-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -76px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
}

.xsc-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(8, 40, 70, .18);
}

.xsc-industry-card h3,
.xsc-industry-card p,
.xsc-industry-card a {
    position: relative;
}

.xsc-industry-card h3 {
    color: #fff;
    font-size: 1.75rem;
}

.xsc-industry-card p {
    color: rgba(255,255,255,.92);
}

.xsc-industry-card a {
    align-self: flex-start;
    margin-top: 22px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.xsc-industry-card svg {
    position: absolute;
    right: 34px;
    top: 32px;
    width: 74px;
    height: 74px;
    opacity: .42;
    stroke-width: 1.4;
}

.xsc-industry-card--retail { background: linear-gradient(135deg, #0d345a, #0d5c8a); }
.xsc-industry-card--distribution { background: linear-gradient(135deg, #12576d, #0f8790); }
.xsc-industry-card--food { background: linear-gradient(135deg, #41386f, #125c90); }
.xsc-industry-card--services { background: linear-gradient(135deg, #245168, #0b7e68); }

.xsc-testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(43, 145, 255, .24), transparent 38%),
        radial-gradient(circle at 16% 60%, rgba(10, 120, 201, .20), transparent 34%),
        linear-gradient(135deg, #041426 0%, #061f3a 54%, #041222 100%);
    color: #fff;
}

.xsc-testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(87, 200, 255, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(87, 200, 255, .03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
    pointer-events: none;
}

.xsc-testimonials-section .xsc-container {
    position: relative;
}

.xsc-testimonials-section .xsc-eyebrow {
    margin-bottom: 10px;
    color: #9de7ff;
    font-size: .72rem;
    letter-spacing: .08em;
}

.xsc-testimonials-section h2 {
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.xsc-testimonial-carousel {
    margin-top: 28px;
}

.xsc-testimonial-viewport {
    overflow: hidden;
    padding: 4px;
}

.xsc-testimonial-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform .72s cubic-bezier(.22, .78, .2, 1);
}

.xsc-quote-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px 28px 24px;
    border: 1px solid rgba(150, 195, 230, .20);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(45, 70, 99, .88), rgba(31, 51, 78, .86));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 45px rgba(0,0,0,.20);
    color: #fff;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.xsc-quote-card:hover {
    transform: translateY(-3px);
    border-color: rgba(87, 200, 255, .44);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 28px 55px rgba(0,0,0,.28);
}

.xsc-quote-mark {
    position: absolute;
    left: 20px;
    top: 12px;
    color: rgba(255, 255, 255, .48);
    font-size: 4rem;
    line-height: 1;
    font-weight: 900;
}

.xsc-quote-card h3 {
    position: relative;
    margin: 0 0 12px 42px;
    color: #fff;
    font-size: 1rem;
}

.xsc-quote-card blockquote {
    position: relative;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .94);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.45;
}

.xsc-quote-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
}

.xsc-quote-author > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.xsc-quote-author small {
    display: block;
    color: rgba(255, 255, 255, .82);
}

.xsc-quote-avatar {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a78c9, #57c8ff);
    color: #fff;
    font-weight: 900;
    overflow: hidden;
}

.xsc-quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xsc-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.xsc-testimonial-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.xsc-testimonial-dots button.is-active {
    border-color: #3aa7ff;
    background: #0b82f3;
    box-shadow: 0 0 0 4px rgba(11,130,243,.18);
}

.xsc-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    margin-top: 68px;
}

.xsc-process-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: #b7cedd;
}

.xsc-process-grid article {
    position: relative;
    text-align: center;
}

.xsc-process-grid span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 26px;
    border: 1px solid var(--xsc-line);
    border-radius: 16px;
    background: #fff;
    color: var(--xsc-blue);
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(12, 44, 76, .08);
}

.xsc-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 82px;
    align-items: start;
}

.xsc-faq-list {
    display: grid;
    gap: 14px;
}

.xsc-faq-item {
    border: 1px solid var(--xsc-line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.xsc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    color: var(--xsc-ink);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: left;
}

.xsc-faq-question svg {
    flex: 0 0 auto;
    transition: transform .25s ease;
}

.xsc-faq-item.is-open .xsc-faq-question svg {
    transform: rotate(45deg);
}

.xsc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.xsc-faq-item.is-open .xsc-faq-answer {
    max-height: 260px;
}

.xsc-faq-answer p {
    margin: 0;
    padding: 0 28px 26px;
    color: var(--xsc-muted);
    line-height: 1.62;
}

.xsc-final-cta {
    position: relative;
    overflow: hidden;
    padding: 98px 0;
    background: linear-gradient(135deg, #0b83d3, #0b508b);
    color: #fff;
}

.xsc-final-cta::before,
.xsc-final-cta::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 50%;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: xscAmbientOrbit 9s ease-in-out infinite alternate;
}

.xsc-final-cta::after {
    right: -2%;
    width: 650px;
    height: 650px;
    animation-delay: -3s;
}

.xsc-final-cta__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 70px;
    align-items: center;
}

.xsc-final-cta .xsc-eyebrow {
    color: #9de7ff;
}

.xsc-final-cta h2 {
    max-width: 720px;
}

.xsc-final-cta p {
    max-width: 620px;
    font-size: 1.12rem;
    line-height: 1.6;
}

.xsc-final-cta__actions {
    display: grid;
    gap: 16px;
}

[data-xsc-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: var(--xsc-reveal-delay, 0ms);
}

[data-xsc-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes xscPhoneFloat {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes xscStatusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(87, 255, 201, .45); }
    50% { box-shadow: 0 0 0 7px rgba(87, 255, 201, 0); }
}

@keyframes xscAmbientOrbit {
    from { transform: translateY(-50%) scale(1); }
    to { transform: translateY(-53%) scale(1.05); }
}

@media (min-width: 1200px) {
    .xsc-outcome-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .xsc-section {
        padding: 84px 0;
    }

    .xsc-trust-strip__grid {
        grid-template-columns: 1fr 1fr;
        padding: 24px 0;
    }

    .xsc-trust-strip h2 {
        grid-column: 1 / -1;
    }

    .xsc-platform-head,
    .xsc-modules-layout,
    .xsc-portal-grid,
    .xsc-tenant-grid,
    .xsc-faq-layout {
        gap: 44px;
    }

    .xsc-platform-flow {
        grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
    }

    .xsc-product-card {
        padding: 30px;
    }

    .xsc-portal-demo {
        min-height: 440px;
    }

    .xsc-portal-phone {
        right: -16px;
        width: 196px;
    }
}

@media (max-width: 880px) {
    .xsc-section {
        padding: 76px 0;
    }

    .xsc-platform-head,
    .xsc-modules-layout,
    .xsc-portal-grid,
    .xsc-tenant-grid,
    .xsc-faq-layout,
    .xsc-final-cta__grid {
        grid-template-columns: 1fr;
    }

    .xsc-sticky-copy {
        position: static;
    }

    .xsc-platform-flow {
        grid-template-columns: 1fr;
    }

    .xsc-flow-link::before,
    .xsc-flow-link::after {
        display: none;
    }

    .xsc-product-card {
        min-height: 0;
    }

    .xsc-portal-demo {
        min-height: 500px;
    }

    .xsc-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .xsc-quote-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .xsc-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .xsc-process-grid::before {
        display: none;
    }

    .xsc-final-cta__actions {
        max-width: 340px;
    }
}

@media (max-width: 620px) {
    .xsc-container {
        width: min(100% - 28px, 1180px);
    }

    .xsc-section {
        padding: 68px 0;
    }

    .xsoft-site-content h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .xsc-trust-strip__grid,
    .xsc-outcome-grid,
    .xsc-module-grid,
    .xsc-industry-grid,
    .xsc-process-grid,
    .xsc-branch-nodes {
        grid-template-columns: 1fr;
    }

    .xsc-trust-item {
        align-items: flex-start;
    }

    .xsc-product-card,
    .xsc-outcome-card,
    .xsc-module-card,
    .xsc-quote-card {
        padding: 26px;
    }

    .xsc-quote-card {
        flex-basis: 100%;
    }

    .xsc-feature-list {
        grid-template-columns: 1fr;
    }

    .xsc-platform-note {
        align-items: flex-start;
        padding: 22px;
    }

    .xsc-module-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
    }

    .xsc-portal-demo {
        min-height: 420px;
    }

    .xsc-portal-window {
        border-radius: 18px;
    }

    .xsc-portal-phone {
        right: 12px;
        bottom: 12px;
        width: min(210px, 58vw);
        padding: 12px;
    }

    .xsc-portal-phone-screen {
        border-radius: 22px;
    }

    .xsc-org-card {
        padding: 28px 22px;
    }

    .xsc-branch-nodes::before,
    .xsc-company-node::after {
        display: none;
    }

    .xsc-industry-card {
        min-height: 220px;
        align-items: flex-start;
        text-align: left;
    }

    .xsc-quote-author {
        justify-content: flex-start;
    }

    .xsc-quote-card {
        flex-basis: 100%;
    }

    .xsc-faq-question {
        padding: 20px;
    }

    .xsc-faq-answer p {
        padding: 0 20px 22px;
    }

    .xsc-final-cta {
        padding: 78px 0;
    }

    .xsc-final-cta__actions {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xsoft-site-content [data-xsc-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .xsoft-site-content .xsc-portal-phone,
    .xsoft-site-content .xsc-branch-nodes i,
    .xsoft-site-content .xsc-final-cta::before,
    .xsoft-site-content .xsc-final-cta::after {
        animation: none;
    }

    .scroll-animate {
        opacity: 1;
    }

    .hero-carousel-progress span {
        width: 0 !important;
    }

    .platform-stage-scope .floating-card,
    .argentina-pins circle,
    .xsoft-presence-hero__glow,
    .hero-argentina__map.xsoft-presence-map,
    .presence-flow path,
    .presence-pins circle:first-child {
        animation: none !important;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.xsoft-about {
    --about-navy: #061d35;
    --about-navy-deep: #041526;
    --about-blue: #0879c4;
    --about-blue-bright: #1399e4;
    --about-cyan: #43bff2;
    --about-ink: #09233f;
    --about-muted: #52687c;
    --about-line: #dce7ef;
    --about-soft: #f5f9fc;
    --about-white: #ffffff;
    --about-shadow: 0 22px 60px rgba(5, 29, 52, 0.10);
    --about-shadow-hover: 0 28px 70px rgba(5, 29, 52, 0.16);
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 42%, rgba(8, 121, 196, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 58%, #ffffff 100%);
    color: var(--about-ink);
}

.xsoft-about .about-container {
    width: min(1238px, calc(100% - 64px));
    margin: 0 auto;
}

.xsoft-about .about-hero {
    position: relative;
    min-height: 590px;
    overflow: visible;
    background: var(--about-navy-deep);
    color: var(--about-white);
}

.xsoft-about .about-hero__bg,
.xsoft-about .about-hero__shade {
    position: absolute;
    inset: 0;
}

.xsoft-about .about-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: saturate(0.88) contrast(1.04);
}

.xsoft-about .about-hero__shade {
    background:
        radial-gradient(circle at 75% 34%, rgba(67, 191, 242, 0.22), transparent 28%),
        radial-gradient(circle at 46% 80%, rgba(19, 153, 228, 0.14), transparent 32%),
        linear-gradient(90deg, rgba(4, 21, 38, 0.96) 0%, rgba(4, 21, 38, 0.84) 39%, rgba(4, 21, 38, 0.62) 100%);
}

.xsoft-about .about-hero__shade::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 4px 4px,
        linear-gradient(180deg, rgba(4, 21, 38, 0.1), rgba(4, 21, 38, 0.34));
    opacity: 0.28;
}

.xsoft-about .about-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    min-height: 590px;
    padding: 54px 0 46px;
}

.xsoft-about .about-hero__copy {
    max-width: 590px;
}

.xsoft-about .about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 700;
}

.xsoft-about .about-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.xsoft-about .about-breadcrumb a:hover,
.xsoft-about .about-breadcrumb a:focus-visible {
    color: var(--about-white);
    text-decoration: underline;
}

.xsoft-about .about-hero h1 {
    margin: 0 0 14px;
    color: var(--about-white);
    font-size: clamp(46px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: 0;
}

.xsoft-about .about-hero__lead,
.xsoft-about .about-hero__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.xsoft-about .about-hero__lead {
    max-width: 500px;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.34;
    font-weight: 700;
}

.xsoft-about .about-hero__text {
    max-width: 590px;
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.66;
}

.xsoft-about .about-product-visual {
    position: relative;
    display: grid;
    gap: 20px;
    align-content: center;
    min-height: 430px;
    margin: 0;
    transform: perspective(1100px) rotateY(var(--about-tilt-y, -1.1deg)) rotateX(var(--about-tilt-x, 0.4deg)) translate3d(var(--about-parallax-x, 0), var(--about-parallax-y, 0), 0);
    transform-origin: center;
    transition: transform 0.18s ease-out;
}

.xsoft-about .about-product-visual::before {
    content: "";
    position: absolute;
    inset: 12% 5% 0;
    border-radius: 42px;
    background: rgba(67, 191, 242, 0.22);
    filter: blur(38px);
}

.xsoft-about .about-brand-visual__map {
    position: relative;
    z-index: 1;
}

.xsoft-about .about-brand-visual__map {
    overflow: hidden;
    aspect-ratio: 998 / 637;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    background: var(--about-navy-deep);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.xsoft-about .about-brand-visual__map::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.xsoft-about .about-brand-visual__map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xsoft-about .about-history {
    padding: 86px 0 26px;
    background:
        radial-gradient(circle at 12% 20%, rgba(8, 121, 196, 0.06), transparent 24%),
        radial-gradient(circle at 92% 78%, rgba(67, 191, 242, 0.07), transparent 28%),
        #ffffff;
}

.xsoft-about .about-history__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 62px;
    align-items: center;
}

.xsoft-about .about-history__copy {
    max-width: 520px;
}

.xsoft-about .about-history h2,
.xsoft-about .about-values h2 {
    margin: 0;
    color: var(--about-ink);
    font-size: clamp(32px, 3.3vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

.xsoft-about .about-history p {
    margin: 22px 0 0;
    color: var(--about-muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.xsoft-about .about-history__media {
    display: block;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(220, 231, 239, 0.9);
    border-radius: 18px;
    background: var(--about-soft);
    box-shadow: var(--about-shadow);
}

.xsoft-about .about-history__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

@media (hover: hover) {
    .xsoft-about .about-history__media:hover img {
        transform: scale(1.025);
    }
}

.xsoft-about .about-stats {
    padding: 34px 0 52px;
}

.xsoft-about .about-stats__card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(5, 29, 52, 0.08);
    backdrop-filter: blur(8px);
}

.xsoft-about .about-stat {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 130px;
    padding: 26px 28px;
    border-left: 1px solid var(--about-line);
}

.xsoft-about .about-stat:first-child {
    border-left: 0;
}

.xsoft-about .about-stat__icon,
.xsoft-about .about-value-card__icon {
    display: grid;
    place-items: center;
    color: var(--about-blue);
}

.xsoft-about .about-stat__icon svg,
.xsoft-about .about-value-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xsoft-about .about-stat strong {
    display: block;
    color: var(--about-ink);
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.1;
}

.xsoft-about .about-stat span:not(.about-stat__icon) {
    display: block;
    margin-top: 5px;
    color: var(--about-muted);
    font-size: 0.91rem;
    line-height: 1.35;
}

.xsoft-about .about-values {
    padding: 24px 0 92px;
    background:
        linear-gradient(180deg, rgba(245, 249, 252, 0), #f5f9fc 100%);
}

.xsoft-about .about-values h2 {
    text-align: center;
}

.xsoft-about .about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 38px;
}

.xsoft-about .about-value-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-content: start;
    min-height: 220px;
    padding: 30px 24px;
    border: 1px solid var(--about-line);
    border-radius: 16px;
    background: var(--about-white);
    box-shadow: 0 14px 34px rgba(5, 29, 52, 0.05);
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.xsoft-about .about-value-card__icon {
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 16px;
    background: #edf7fd;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.xsoft-about .about-value-card h3 {
    margin: 0 0 10px;
    color: var(--about-ink);
    font-size: 1.04rem;
    line-height: 1.28;
}

.xsoft-about .about-value-card p {
    margin: 0;
    color: var(--about-muted);
    font-size: 0.94rem;
    line-height: 1.62;
}

@media (hover: hover) {
    .xsoft-about .about-value-card:hover {
        transform: translateY(-5px);
        border-color: rgba(8, 121, 196, 0.42);
        box-shadow: var(--about-shadow-hover);
    }

    .xsoft-about .about-value-card:hover .about-value-card__icon {
        background: #e1f4ff;
        color: var(--about-blue-bright);
        box-shadow: 0 16px 34px rgba(8, 121, 196, 0.16);
    }
}

.xsoft-about.has-motion [data-about-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.68s ease, transform 0.68s ease;
    transition-delay: var(--about-reveal-delay, 0ms);
}

.xsoft-about.has-motion [data-about-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1100px) {
    .xsoft-about.has-motion .about-product-visual[data-about-reveal] {
        transform: perspective(1100px) rotateY(var(--about-tilt-y, -1.1deg)) rotateX(var(--about-tilt-x, 0.4deg)) translate3d(calc(var(--about-parallax-x, 0px) + 24px), var(--about-parallax-y, 0px), 0) scale(0.985);
    }

    .xsoft-about.has-motion .about-product-visual[data-about-reveal].is-visible {
        transform: perspective(1100px) rotateY(var(--about-tilt-y, -1.1deg)) rotateX(var(--about-tilt-x, 0.4deg)) translate3d(var(--about-parallax-x, 0px), var(--about-parallax-y, 0px), 0) scale(1);
    }
}

@media (max-width: 1099px) {
    .xsoft-about .about-container {
        width: min(100%, calc(100% - 48px));
    }

    .xsoft-about .about-hero {
        min-height: 0;
        margin-bottom: 0;
    }

    .xsoft-about .about-hero__shade {
        background:
            radial-gradient(circle at 74% 62%, rgba(67, 191, 242, 0.2), transparent 32%),
            linear-gradient(180deg, rgba(4, 21, 38, 0.94) 0%, rgba(4, 21, 38, 0.86) 66%, rgba(4, 21, 38, 0.74) 100%);
    }

    .xsoft-about .about-hero__inner {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 0;
        padding: 38px 0 46px;
    }

    .xsoft-about .about-hero__copy {
        max-width: 720px;
    }

    .xsoft-about .about-hero h1 {
        font-size: clamp(42px, 6vw, 58px);
    }

    .xsoft-about .about-product-visual {
        width: min(90%, 720px);
        min-height: 0;
        margin: 0 auto;
        transform: none;
    }

    .xsoft-about.has-motion .about-product-visual[data-about-reveal],
    .xsoft-about.has-motion .about-product-visual[data-about-reveal].is-visible {
        transform: none;
    }

    .xsoft-about .about-history {
        padding: 58px 0 24px;
    }

    .xsoft-about .about-history__grid {
        display: block;
    }

    .xsoft-about .about-history__copy {
        max-width: 760px;
    }

    .xsoft-about .about-history__media {
        display: none;
    }

    .xsoft-about .about-stats__card {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .xsoft-about .about-stat {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 126px;
        padding: 22px 14px;
        text-align: center;
    }

    .xsoft-about .about-stat__icon svg {
        width: 36px;
        height: 36px;
    }

    .xsoft-about .about-stat span:not(.about-stat__icon) {
        font-size: 0.82rem;
    }

    .xsoft-about .about-values__grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .xsoft-about .about-value-card {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 18px;
        align-items: center;
        min-height: 0;
        padding: 24px;
        text-align: left;
    }

    .xsoft-about .about-value-card__icon {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .xsoft-about .about-container {
        width: min(100%, calc(100% - 36px));
    }

    .xsoft-about .about-hero {
        margin-bottom: 0;
    }

    .xsoft-about .about-hero__inner {
        padding: 28px 0 36px;
    }

    .xsoft-about .about-breadcrumb {
        margin-bottom: 18px;
        font-size: 0.82rem;
    }

    .xsoft-about .about-hero h1 {
        max-width: 360px;
        font-size: clamp(32px, 9vw, 38px);
    }

    .xsoft-about .about-hero__lead {
        font-size: 1.05rem;
    }

    .xsoft-about .about-hero__text {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .xsoft-about .about-product-visual {
        width: 100%;
        min-height: 0;
        margin-bottom: 0;
    }

    .xsoft-about .about-product-visual::before {
        display: none;
    }

    .xsoft-about .about-brand-visual__map {
        border-radius: 16px;
    }

    .xsoft-about .about-history {
        padding: 48px 0 18px;
    }

    .xsoft-about .about-history h2,
    .xsoft-about .about-values h2 {
        font-size: clamp(27px, 8vw, 34px);
    }

    .xsoft-about .about-history p {
        margin-top: 16px;
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .xsoft-about .about-stats {
        padding: 24px 0 42px;
    }

    .xsoft-about .about-stats__card {
        display: block;
        border-radius: 14px;
    }

    .xsoft-about .about-stat {
        grid-template-columns: 50px minmax(0, 1fr);
        justify-items: start;
        min-height: 0;
        padding: 18px 16px;
        border-top: 1px solid var(--about-line);
        border-left: 0;
        text-align: left;
    }

    .xsoft-about .about-stat:first-child {
        border-top: 0;
    }

    .xsoft-about .about-stat strong {
        font-size: 1.35rem;
    }

    .xsoft-about .about-stat span:not(.about-stat__icon) {
        font-size: 0.82rem;
    }

    .xsoft-about .about-values {
        padding: 18px 0 64px;
    }

    .xsoft-about .about-values__grid {
        margin-top: 26px;
    }

    .xsoft-about .about-value-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 18px;
        text-align: left;
    }

    .xsoft-about .about-value-card__icon {
        width: 52px;
        height: 52px;
    }

    .xsoft-about .about-value-card h3 {
        font-size: 1rem;
    }

    .xsoft-about .about-value-card p {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xsoft-about.has-motion [data-about-reveal],
    .xsoft-about.has-motion [data-about-reveal].is-visible,
    .xsoft-about.has-motion .about-product-visual[data-about-reveal],
    .xsoft-about.has-motion .about-product-visual[data-about-reveal].is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.xsoft-contact {
    --contact-navy: #061d35;
    --contact-navy-deep: #041526;
    --contact-blue: #0879c4;
    --contact-blue-bright: #1399e4;
    --contact-green: #1fc466;
    --contact-green-dark: #109d50;
    --contact-ink: #09233f;
    --contact-muted: #52687c;
    --contact-line: #dce7ef;
    --contact-soft: #f4f8fb;
    --contact-white: #ffffff;
    --contact-error: #c83f49;
    --contact-success: #168968;
    --contact-shadow: 0 18px 48px rgba(5, 29, 52, 0.10);
    --contact-shadow-hover: 0 24px 64px rgba(5, 29, 52, 0.16);
    overflow: hidden;
    background: var(--contact-soft);
    color: var(--contact-ink);
}

.xsoft-contact .contact-container {
    width: min(1238px, calc(100% - 64px));
    margin: 0 auto;
}

.xsoft-contact svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xsoft-contact .contact-whatsapp-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    object-fit: contain;
}

.xsoft-contact .contact-info-icon .contact-whatsapp-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

.xsoft-contact .contact-hero {
    position: relative;
    min-height: 318px;
    overflow: hidden;
    background: var(--contact-navy);
    color: var(--contact-white);
    isolation: isolate;
}

.xsoft-contact .contact-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(var(--contact-hero-x, 0), var(--contact-hero-y, 0), 0) scale(1.03);
    transition: transform 0.18s ease-out;
}

.xsoft-contact .contact-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 72% 22%, rgba(67, 191, 242, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(4, 21, 38, 0.94), rgba(4, 21, 38, 0.8) 52%, rgba(4, 21, 38, 0.58));
}

.xsoft-contact .contact-hero__inner {
    display: flex;
    min-height: 318px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1238px;
    padding: 34px 0 66px;
}

.xsoft-contact .contact-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 700;
}

.xsoft-contact .contact-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.xsoft-contact .contact-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(36px, 4.3vw, 54px);
    line-height: 1.02;
    letter-spacing: 0;
}

.xsoft-contact .contact-hero p {
    max-width: 650px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.55;
}

.xsoft-contact .contact-actions,
.xsoft-contact .contact-direct-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.xsoft-contact .contact-actions {
    margin-top: 26px;
}

.xsoft-contact .contact-btn,
.xsoft-contact .contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.xsoft-contact .contact-btn:hover,
.xsoft-contact .contact-submit:hover {
    transform: translateY(-2px);
}

.xsoft-contact .contact-submit {
    background: linear-gradient(135deg, var(--contact-blue), #0067bd);
    color: var(--contact-white);
    box-shadow: 0 14px 28px rgba(8, 121, 196, 0.2);
}

.xsoft-contact .contact-btn--whatsapp {
    border-color: rgba(31, 196, 102, 0.82);
    background: rgba(4, 21, 38, 0.72);
    color: var(--contact-white);
}

.xsoft-contact .contact-info-item--whatsapp .contact-info-icon {
    color: var(--contact-green);
}

.xsoft-contact .contact-info-wrap {
    position: relative;
    z-index: 2;
    margin-top: -48px;
}

.xsoft-contact .contact-info-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--contact-line);
    border-radius: 12px;
    background: var(--contact-white);
    box-shadow: var(--contact-shadow);
}

.xsoft-contact .contact-info-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    min-height: 112px;
    padding: 24px 26px;
    border-left: 1px solid var(--contact-line);
    color: inherit;
    text-decoration: none;
}

.xsoft-contact .contact-info-item:first-child {
    border-left: 0;
}

.xsoft-contact .contact-info-icon {
    display: grid;
    place-items: center;
    color: var(--contact-blue);
}

.xsoft-contact .contact-info-icon svg {
    width: 34px;
    height: 34px;
}

.xsoft-contact .contact-info-item strong,
.xsoft-contact .contact-info-item b,
.xsoft-contact .contact-info-item small {
    display: block;
}

.xsoft-contact .contact-info-item strong {
    color: #0b4f95;
    font-size: 0.88rem;
    line-height: 1.2;
}

.xsoft-contact .contact-info-item b {
    margin-top: 5px;
    font-size: 0.92rem;
    line-height: 1.38;
}

.xsoft-contact .contact-info-item small {
    margin-top: 7px;
    color: var(--contact-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.xsoft-contact .contact-body {
    padding: 26px 0 0;
}

.xsoft-contact .contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.xsoft-contact .contact-map-card,
.xsoft-contact .contact-form-card {
    border: 1px solid var(--contact-line);
    border-radius: 12px;
    background: var(--contact-white);
    box-shadow: 0 12px 32px rgba(5, 29, 52, 0.06);
}

.xsoft-contact .contact-map-card {
    overflow: hidden;
    min-height: 414px;
}

.xsoft-contact .contact-map {
    position: relative;
    height: 100%;
    min-height: 414px;
    overflow: hidden;
}

.xsoft-contact .contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 414px;
    border: 0;
    filter: saturate(0.78) contrast(1.04);
}

.xsoft-contact .contact-map__label {
    position: absolute;
    top: 42%;
    left: 50%;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    max-width: 250px;
    padding: 12px 14px;
    border: 1px solid rgba(220, 231, 239, 0.9);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--contact-ink);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(5, 29, 52, 0.18);
    transform: translate(-14%, -50%);
}

.xsoft-contact .contact-map__pin {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 0;
    background: #ed3f32;
    transform: rotate(-45deg);
    box-shadow: 0 6px 16px rgba(237, 63, 50, 0.35);
}

.xsoft-contact .contact-map__pin::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #fff;
}

.xsoft-contact.has-motion .contact-map__pin {
    animation: contact-pin-pulse 2.4s ease-in-out infinite;
}

.xsoft-contact .contact-map__label strong,
.xsoft-contact .contact-map__label small {
    grid-column: 2;
}

.xsoft-contact .contact-map__label strong {
    font-size: 0.83rem;
    line-height: 1.25;
}

.xsoft-contact .contact-map__label small {
    color: var(--contact-blue);
    font-size: 0.75rem;
    font-weight: 800;
}

.xsoft-contact .contact-form-card {
    padding: 28px;
}

.xsoft-contact .contact-form-card h2,
.xsoft-contact .contact-direct-cta h2 {
    margin: 0;
    color: var(--contact-ink);
    font-size: 1.48rem;
    line-height: 1.15;
    letter-spacing: 0;
}

.xsoft-contact .contact-form-card > p {
    margin: 8px 0 20px;
    color: var(--contact-muted);
    font-size: 0.92rem;
}

.xsoft-contact .contact-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
}

.xsoft-contact .contact-alert--success {
    border: 1px solid rgba(22, 137, 104, 0.24);
    background: #e9f8f1;
    color: var(--contact-success);
}

.xsoft-contact .contact-alert--error {
    border: 1px solid rgba(200, 63, 73, 0.24);
    background: #fff1f2;
    color: var(--contact-error);
}

.xsoft-contact .contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.xsoft-contact .contact-field,
.xsoft-contact .contact-type {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.xsoft-contact .contact-field label,
.xsoft-contact .contact-type legend {
    color: var(--contact-ink);
    font-size: 0.82rem;
    font-weight: 900;
}

.xsoft-contact .contact-field input,
.xsoft-contact .contact-field select,
.xsoft-contact .contact-field textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid #cbd8e4;
    border-radius: 7px;
    background: #fff;
    color: var(--contact-ink);
    font: inherit;
    font-size: 0.9rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.xsoft-contact .contact-field input,
.xsoft-contact .contact-field select {
    padding: 0 12px;
}

.xsoft-contact .contact-field textarea {
    min-height: 96px;
    padding: 12px;
    resize: vertical;
}

.xsoft-contact .contact-field input:focus,
.xsoft-contact .contact-field select:focus,
.xsoft-contact .contact-field textarea:focus {
    border-color: var(--contact-blue);
    box-shadow: 0 0 0 4px rgba(8, 121, 196, 0.14);
    outline: 0;
}

.xsoft-contact .contact-type {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 16px 0 14px;
    padding: 0;
    border: 0;
}

.xsoft-contact .contact-type legend {
    grid-column: 1 / -1;
    margin-bottom: 6px;
    padding: 0;
}

.xsoft-contact .contact-type label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    min-width: 0;
    min-height: 38px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid #d7e2ec;
    border-radius: 7px;
    background: #fff;
    color: var(--contact-ink);
    font-size: 0.86rem;
    font-weight: 700;
}

.xsoft-contact .contact-type input {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    accent-color: var(--contact-blue);
}

.xsoft-contact .contact-type label span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.xsoft-contact .contact-type > span {
    grid-column: 1 / -1;
}

.xsoft-contact .contact-field__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--contact-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.xsoft-contact .field-error {
    display: block;
    margin-top: 2px;
    color: var(--contact-error);
    font-size: 0.78rem;
    font-weight: 800;
}

.xsoft-contact .contact-submit {
    width: 100%;
    margin-top: 14px;
    border: 0;
    cursor: pointer;
}

.xsoft-contact .contact-submit[disabled] {
    cursor: progress;
    opacity: 0.72;
}

.xsoft-contact .contact-submit.is-sending svg {
    animation: contact-submit-spin 0.9s linear infinite;
}

.xsoft-contact .contact-direct-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin: 12px 0 64px;
    padding: 24px 30px;
    border: 1px solid rgba(67, 191, 242, 0.24);
    border-radius: 14px;
    background:
        radial-gradient(circle at 78% 15%, rgba(67, 191, 242, 0.16), transparent 34%),
        linear-gradient(135deg, var(--contact-navy), var(--contact-navy-deep));
    color: #fff;
    box-shadow: var(--contact-shadow);
}

.xsoft-contact .contact-direct-cta h2 {
    color: #fff;
    font-size: 1.16rem;
}

.xsoft-contact .contact-direct-cta p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.xsoft-contact .contact-btn--green {
    background: linear-gradient(135deg, var(--contact-green), var(--contact-green-dark));
    color: #fff;
}

.xsoft-contact .contact-btn--green svg {
    color: #fff;
}

.xsoft-contact.has-motion [data-contact-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.62s ease, transform 0.62s ease;
    transition-delay: var(--contact-reveal-delay, 0ms);
}

.xsoft-contact.has-motion [data-contact-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes contact-pin-pulse {
    50% {
        box-shadow: 0 6px 16px rgba(237, 63, 50, 0.35), 0 0 0 10px rgba(237, 63, 50, 0.14);
    }
}

@keyframes contact-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1099px) {
    .xsoft-contact .contact-container {
        width: min(100% - 48px, 1238px);
    }

    .xsoft-contact .contact-hero,
    .xsoft-contact .contact-hero__inner {
        min-height: 276px;
    }

    .xsoft-contact .contact-hero__inner {
        padding: 30px 0 58px;
    }

    .xsoft-contact .contact-info-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xsoft-contact .contact-info-item {
        min-height: 104px;
    }

    .xsoft-contact .contact-info-item:nth-child(odd) {
        border-left: 0;
    }

    .xsoft-contact .contact-info-item:nth-child(n+3) {
        border-top: 1px solid var(--contact-line);
    }

    .xsoft-contact .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .xsoft-contact .contact-map-card,
    .xsoft-contact .contact-map,
    .xsoft-contact .contact-map iframe {
        min-height: 224px;
    }

}

@media (max-width: 699px) {
    .xsoft-contact .contact-container {
        width: min(100% - 34px, 1238px);
    }

    .xsoft-contact .contact-hero,
    .xsoft-contact .contact-hero__inner {
        min-height: 0;
    }

    .xsoft-contact .contact-hero__inner {
        padding: 28px 0 72px;
    }

    .xsoft-contact .contact-hero h1 {
        font-size: clamp(30px, 9vw, 36px);
    }

    .xsoft-contact .contact-actions,
    .xsoft-contact .contact-btn,
    .xsoft-contact .contact-submit {
        width: 100%;
    }

    .xsoft-contact .contact-info-wrap {
        margin-top: -42px;
    }

    .xsoft-contact .contact-info-panel {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .xsoft-contact .contact-info-item,
    .xsoft-contact .contact-info-item:nth-child(odd) {
        min-height: 0;
        padding: 18px;
        border-left: 0;
        border-top: 1px solid var(--contact-line);
    }

    .xsoft-contact .contact-info-item:first-child {
        border-top: 0;
    }

    .xsoft-contact .contact-body {
        padding-top: 18px;
    }

    .xsoft-contact .contact-map-card,
    .xsoft-contact .contact-map,
    .xsoft-contact .contact-map iframe {
        min-height: 190px;
    }

    .xsoft-contact .contact-map__label {
        max-width: 210px;
        padding: 9px 11px;
        transform: translate(-28%, -50%);
    }

    .xsoft-contact .contact-form-card {
        padding: 22px 18px;
    }

    .xsoft-contact .contact-field-grid {
        grid-template-columns: 1fr;
    }

    .xsoft-contact .contact-type {
        grid-template-columns: 1fr;
    }

    .xsoft-contact .contact-type label {
        padding: 0 8px;
    }

    .xsoft-contact .contact-direct-cta {
        display: grid;
        margin-bottom: 46px;
        padding: 22px 18px 26px;
    }

    .xsoft-contact .contact-direct-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xsoft-contact .contact-hero__image,
    .xsoft-contact.has-motion [data-contact-reveal],
    .xsoft-contact.has-motion [data-contact-reveal].is-visible {
        transform: none;
        transition: none;
    }

    .xsoft-contact.has-motion .contact-map__pin,
    .xsoft-contact .contact-submit.is-sending svg {
        animation: none;
    }
}

/* XGestion conversion sections remain isolated from shared site pages. */
.product-landing--productos-xgestion .hero__media {
    object-position: center;
}

.xgestion-hero__microcopy {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

.xgestion-social-proof.xsc-testimonials-section {
    padding: 64px 0;
    border-bottom: 0;
}

.xgestion-social-proof .site-shell {
    position: relative;
    z-index: 1;
}

.xgestion-social-proof .xsc-testimonials-head {
    max-width: 860px;
    margin: 0 auto;
}

.xgestion-social-proof .xsc-eyebrow {
    margin-bottom: 10px;
    color: #9de7ff;
}

.xgestion-social-proof .xsc-testimonials-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.08;
}

.xgestion-pricing h2,
.xgestion-faq h2 {
    margin: 0;
    color: #061a3f;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.08;
}

.xgestion-social-proof .xsc-lead {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
    line-height: 1.5;
}

.xgestion-pricing .section-heading > p:not(.section-eyebrow),
.xgestion-faq .section-heading > p:not(.section-eyebrow) {
    margin: 12px 0 0;
    color: var(--site-muted);
    font-size: 1.02rem;
    line-height: 1.5;
}

.xgestion-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.xgestion-pricing__card {
    display: grid;
    align-content: start;
    gap: 13px;
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-soft);
}

.xgestion-pricing__card h3 {
    margin: 0;
    color: #061a3f;
    font-size: 1.05rem;
    line-height: 1.25;
}

.xgestion-pricing__card p {
    color: var(--site-muted);
    font-size: 0.94rem;
    line-height: 1.48;
}

.xgestion-pricing {
    background: var(--site-soft);
}

.xgestion-pricing .section-heading,
.xgestion-faq .section-heading {
    max-width: 760px;
    margin-left: 0;
    text-align: left;
}

.xgestion-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-top: 28px;
}

.xgestion-pricing__card {
    min-height: 220px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(19, 32, 45, 0.07);
}

.xgestion-pricing__card > span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(32, 166, 122, 0.14);
    color: #063f76;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.xgestion-pricing__card p {
    margin: 0;
}

.xgestion-pricing__price,
.xgestion-pricing__unavailable {
    margin-top: auto;
    color: #061a3f;
    font-size: 1.08rem;
    line-height: 1.3;
}

.xgestion-pricing__unavailable {
    color: var(--site-muted);
    font-size: 0.94rem;
}

.xgestion-pricing__cta {
    margin-top: 20px;
}

.xgestion-pricing .section-heading {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.xgestion-pricing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 20px;
}

.xgestion-pricing__card {
    position: relative;
    min-height: 0;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(19, 32, 45, 0.07);
}

.xgestion-pricing__card--featured {
    border: 2px solid #15956b;
    box-shadow: 0 18px 38px rgba(21, 149, 107, 0.16);
}

.xgestion-pricing__badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(32, 166, 122, 0.14);
    color: #063f76;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.xgestion-pricing__card--featured .xgestion-pricing__badge {
    background: #15956b;
    color: #fff;
}

.xgestion-pricing__price-group {
    display: grid;
    gap: 12px;
    margin: 4px 0 0;
}

.xgestion-pricing__price-group > div {
    display: grid;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--site-line);
}

.xgestion-pricing__price-group span {
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.xgestion-pricing__price-group strong {
    color: #061a3f;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.1;
}

.xgestion-pricing__price-group small,
.xgestion-pricing__price-group em {
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
}

.xgestion-pricing__unavailable {
    display: block;
    min-height: 78px;
    padding-top: 18px;
    border-top: 1px solid var(--site-line);
    color: #061a3f;
    font-size: 1.2rem;
}

.xgestion-pricing__benefits {
    display: grid;
    gap: 10px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.xgestion-pricing__benefits li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #263d5d;
    font-size: 0.91rem;
    line-height: 1.35;
}

.xgestion-pricing__benefits li::before {
    content: '✓';
    color: #15956b;
    font-weight: 900;
}

.xgestion-pricing__card-cta {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.xgestion-pricing__switch {
    position: relative;
    margin-top: 28px;
}

.xgestion-pricing__segment-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.xgestion-pricing__switch-labels {
    display: flex;
    width: min(100%, 360px);
    margin: 0 auto 22px;
    padding: 4px;
    border-radius: 999px;
    background: #e8edf2;
}

.xgestion-pricing__switch-labels label {
    flex: 1;
    padding: 10px 14px;
    border-radius: 999px;
    color: #4e6077;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

#xgestion-pricing-comercio:checked ~ .xgestion-pricing__switch-labels label[for="xgestion-pricing-comercio"],
#xgestion-pricing-empresa:checked ~ .xgestion-pricing__switch-labels label[for="xgestion-pricing-empresa"] {
    background: #fff;
    color: #061a3f;
    box-shadow: 0 2px 7px rgba(19, 32, 45, 0.12);
}

.xgestion-pricing__segment-input:focus-visible ~ .xgestion-pricing__switch-labels label {
    outline: 3px solid rgba(21, 149, 107, 0.35);
    outline-offset: 2px;
}

.xgestion-pricing__segment-panel {
    display: none;
    margin-top: 0;
}

#xgestion-pricing-comercio:checked ~ .xgestion-pricing__panels .xgestion-pricing__segment-panel--comercio,
#xgestion-pricing-empresa:checked ~ .xgestion-pricing__panels .xgestion-pricing__segment-panel--empresa {
    display: grid;
}

.xgestion-expand {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.xgestion-expand > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(15, 111, 179, 0.35);
    border-radius: 8px;
    background: #fff;
    color: #063f76;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 900;
    list-style: none;
}

.xgestion-expand > summary::-webkit-details-marker {
    display: none;
}

.xgestion-expand [data-xgestion-expand-close] {
    display: none;
}

.xgestion-expand[open] [data-xgestion-expand-open] {
    display: none;
}

.xgestion-expand[open] [data-xgestion-expand-close] {
    display: inline;
}

.xgestion-expand__grid {
    margin-top: 0;
}

.xgestion-expand--dark > summary {
    border-color: rgba(184, 230, 59, 0.56);
    background: rgba(6, 26, 63, 0.78);
    color: #fff;
}

.xgestion-expand--industries {
    margin: 0 0 18px;
}

.xgestion-expand--industries + .xgestion-industries__rail--limit-3 > article:nth-child(n + 4) {
    display: none;
}

.xgestion-expand--industries[open] + .xgestion-industries__rail--limit-3 > article:nth-child(n + 4) {
    display: grid;
}

.xgestion-faq {
    background: #fff;
}

.xgestion-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
}

.xgestion-faq__list {
    display: grid;
    gap: 10px;
}

.xgestion-faq__item {
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-soft);
}

.xgestion-faq__item summary {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 48px 14px 16px;
    color: #061a3f;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.35;
    list-style: none;
    position: relative;
}

.xgestion-faq__item summary::-webkit-details-marker {
    display: none;
}

.xgestion-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 17px;
    color: var(--site-primary);
    font-size: 1.35rem;
    font-weight: 700;
}

.xgestion-faq__item[open] summary::after {
    content: "-";
}

.xgestion-faq__item p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--site-muted);
    line-height: 1.5;
}

.xgestion-video-modal__top button:focus-visible,
.xgestion-image-modal__top button:focus-visible,
.xgestion-expand > summary:focus-visible,
.xgestion-faq__item summary:focus-visible {
    outline: 3px solid #b8e63b;
    outline-offset: 3px;
}

.product-landing-cta--productos-xgestion .xgestion-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.product-landing-cta--productos-xgestion .xgestion-cta-actions .btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.product-landing-cta--productos-xgestion .xgestion-cta-actions .btn--ghost-light:hover,
.product-landing-cta--productos-xgestion .xgestion-cta-actions .btn--ghost-light:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.xgestion-funnel__final--purchase {
    text-align: left;
}

.product-landing-cta--productos-xgestion.xgestion-funnel__final--purchase .xgestion-cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
}

@media (max-width: 820px) {
    .xgestion-pricing__grid,
    .xgestion-faq__layout {
        grid-template-columns: 1fr;
    }

    .xgestion-faq__layout {
        gap: 26px;
    }
}

@media (max-width: 560px) {
    .xgestion-social-proof.xsc-testimonials-section {
        padding: 34px 0;
    }

    .xgestion-pricing__grid {
        gap: 12px;
    }

    .xgestion-pricing__card {
        padding: 18px;
    }

    .xgestion-pricing__cta,
    .xgestion-expand > summary,
    .product-landing-cta--productos-xgestion .xgestion-cta-actions {
        width: 100%;
    }

    .product-landing-cta--productos-xgestion .xgestion-cta-actions {
        grid-template-columns: 1fr;
    }

    .xgestion-expand > summary {
        justify-content: center;
    }
}

/* Keep XPedidos hero overrides after shared XGestion stage rules. */
.xgestion-hero-stage.xpedidos-hero-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: min(100%, 560px);
    border-color: rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    background: rgba(245, 248, 255, 0.98);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

@media (max-width: 1100px) {
    .xgestion-hero-stage.xpedidos-hero-stage {
        grid-column: 1;
        grid-row: 3;
        justify-self: stretch;
        width: 100%;
        max-width: 680px;
        margin-top: 12px;
    }
}

/* XPedidos commercial landing */
.product-landing--productos-xpedidos,
.product-landing--productos-xpedidos .hero__content {
    min-height: max(calc(100svh - var(--site-header-height)), 680px);
}

.product-landing--productos-xpedidos .product-landing-hero__slide--stage {
    background: radial-gradient(circle at 82% 18%, rgba(104, 70, 242, 0.38), transparent 28%), linear-gradient(135deg, #04172b, #082f55 58%, #10143f);
}

.product-landing--productos-xpedidos .product-landing-hero__overlay {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 4px 4px, linear-gradient(90deg, rgba(3, 13, 29, 0.88), rgba(4, 25, 51, 0.6), rgba(8, 14, 43, 0.78));
}

.product-landing--productos-xpedidos .product-landing-hero__content--stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    column-gap: clamp(36px, 4vw, 64px);
    row-gap: clamp(20px, 2.4vw, 30px);
    align-items: center;
    align-content: center;
    max-width: 1238px;
    padding: clamp(54px, 7vh, 76px) 0 clamp(62px, 8vh, 90px);
}

.product-landing--productos-xpedidos .product-landing-hero__pitch,
.product-landing--productos-xpedidos .product-landing-hero__content--stage .hero__actions {
    grid-column: 1;
}

.product-landing--productos-xpedidos .product-landing-hero__pitch {
    align-self: end;
    max-width: 650px;
}

.product-landing--productos-xpedidos .product-landing-hero__content--stage .hero__actions {
    align-self: start;
}

.product-landing--productos-xpedidos .product-landing-hero__pitch h1 {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(44px, 3.55vw, 56px);
    line-height: 1.04;
}

.product-landing--productos-xpedidos .product-landing-hero__pitch > p:not(.section-eyebrow) {
    max-width: 600px;
    margin-bottom: 24px;
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.45;
}

.product-landing--productos-xpedidos .xgestion-hero-bullets span {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.xpedidos-hero-stage .xpedidos-screen {
    min-height: 490px;
    padding: 22px;
    border-radius: 0;
}

.xpedidos-screen {
    --xp-primary: #6846f2;
    --xp-dark: #062541;
    --xp-ink: #0f172a;
    --xp-muted: #64748b;
    --xp-line: #dbe4ef;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 500px;
    padding: clamp(14px, 3vw, 28px);
    border-radius: 24px;
    background: radial-gradient(circle at 88% 10%, rgba(104, 70, 242, 0.14), transparent 24%), linear-gradient(145deg, #f8fbff, #eef3fb);
    color: var(--xp-ink);
}

.xpedidos-screen__device {
    display: flex;
    flex-direction: column;
    width: min(100%, 410px);
    min-height: 460px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.17);
}

.xpedidos-screen__topbar,
.xpedidos-screen__sticky {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 0 16px;
    color: #fff;
    font-size: 0.7rem;
}

.xpedidos-screen__topbar { background: var(--xp-dark); }
.xpedidos-screen__sticky { background: linear-gradient(90deg, #6846f2, #7347ec); }
.xpedidos-screen__sticky strong,
.xpedidos-screen__sticky span { color: #fff; font-size: inherit; }

.xpedidos-screen__body {
    flex: 1;
    min-height: 0;
    padding: 14px;
    background: #f8fafc;
}

.xpedidos-screen__search,
.xpedidos-screen__google,
.xpedidos-screen__payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--xp-line);
    border-radius: 9px;
    background: #fff;
    color: var(--xp-muted);
    font-size: 0.65rem;
}

.xpedidos-screen__chips,
.xpedidos-screen__choice,
.xpedidos-screen__suggestions {
    display: flex;
    gap: 6px;
    margin: 10px 0 13px;
    overflow: hidden;
}

.xpedidos-screen__chips span,
.xpedidos-screen__choice span {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid var(--xp-line);
    border-radius: 999px;
    background: #fff;
    color: var(--xp-muted);
    font-size: 0.58rem;
    font-weight: 800;
}

.xpedidos-screen__chips .is-active,
.xpedidos-screen__choice .is-active {
    border-color: var(--xp-primary);
    background: var(--xp-primary);
    color: #fff;
}

.xpedidos-screen__section-title {
    display: block;
    margin: 0 0 9px;
    color: var(--xp-ink);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
}

.xpedidos-screen__products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.xpedidos-screen__product {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 5px;
    min-width: 0;
    padding: 7px;
    border: 1px solid var(--xp-line);
    border-radius: 11px;
    background: #fff;
}

.xpedidos-screen__food {
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    min-height: 58px;
    border-radius: 8px;
    background: #fff4d8;
    font-size: 2.1rem;
}

.xpedidos-screen__product strong {
    grid-column: 1 / -1;
    overflow: hidden;
    font-size: 0.59rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xpedidos-screen__product small,
.xpedidos-screen__product b { font-size: 0.57rem; }
.xpedidos-screen__product b { color: var(--xp-primary); }

.xpedidos-screen__body--customize {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.1fr);
    gap: 14px;
}

.xpedidos-screen__custom-media {
    display: grid;
    place-items: center;
    min-height: 210px;
    border-radius: 16px;
    background: #fff1c6;
    font-size: 5rem;
}

.xpedidos-screen__custom-copy,
.xpedidos-screen__body--cart,
.xpedidos-screen__body--payment { display: grid; align-content: start; gap: 8px; }
.xpedidos-screen__custom-copy > strong { font-size: 0.86rem; }
.xpedidos-screen__custom-copy > b,
.xpedidos-screen__custom-copy > small { font-size: 0.62rem; }

.xpedidos-screen__custom-copy label {
    display: grid;
    grid-template-columns: 12px 1fr auto;
    gap: 6px;
    align-items: center;
    color: var(--xp-muted);
    font-size: 0.58rem;
}

.xpedidos-screen__custom-copy label i,
.xpedidos-screen__payment-option i {
    width: 12px;
    height: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 3px;
    background: #fff;
}

.xpedidos-screen__custom-copy label i.is-checked { border-color: var(--xp-primary); background: var(--xp-primary); box-shadow: inset 0 0 0 2px #fff; }
.xpedidos-screen__notes { padding: 7px; border: 1px dashed #cbd5e1; border-radius: 7px; color: var(--xp-muted); font-size: 0.56rem; }
.xpedidos-screen__quantity { display: flex; justify-content: space-between; font-size: 0.6rem; font-weight: 900; }

.xpedidos-screen__cart-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--xp-line);
    border-radius: 10px;
    background: #fff;
}

.xpedidos-screen__cart-item > span,
.xpedidos-screen__suggestions span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: #fff4d8; font-size: 1.35rem; }
.xpedidos-screen__cart-item div { display: grid; min-width: 0; }
.xpedidos-screen__cart-item strong,
.xpedidos-screen__cart-item b,
.xpedidos-screen__cart-item small,
.xpedidos-screen__cart-item em { font-size: 0.56rem; }
.xpedidos-screen__cart-item em { padding: 5px; border: 1px solid var(--xp-line); border-radius: 7px; font-style: normal; white-space: nowrap; }

.xpedidos-screen__summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px;
    padding-top: 8px;
    border-top: 1px solid var(--xp-line);
    font-size: 0.62rem;
}

.xpedidos-screen__payment-option strong { flex: 1; color: var(--xp-ink); font-size: 0.63rem; }
.xpedidos-screen__payment-option i { border-radius: 50%; }
.xpedidos-screen__payment-option.is-active { border-color: var(--xp-primary); }
.xpedidos-screen__payment-option.is-active i { border: 4px solid var(--xp-primary); }
.xpedidos-screen__secure { color: #16835e; font-size: 0.56rem; text-align: center; }
.xpedidos-screen__body--payment > small { color: var(--xp-muted); font-size: 0.55rem; text-align: center; }

.xpedidos-screen--confirmacion .xpedidos-screen__device,
.xpedidos-screen__body--success { background: radial-gradient(circle at 50% 16%, rgba(80, 161, 255, 0.24), transparent 30%), linear-gradient(150deg, #062541, #03172c); }
.xpedidos-screen--confirmacion .xpedidos-screen__topbar { background: transparent; }

.xpedidos-screen__body--success {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-align: center;
}

.xpedidos-screen__body--success > strong { color: #fff; font-size: 1.15rem; }
.xpedidos-screen__body--success p,
.xpedidos-screen__body--success small { margin: 0; color: rgba(255, 255, 255, 0.76); font-size: 0.65rem; }
.xpedidos-screen__check { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--xp-primary); font-size: 1.8rem; }
.xpedidos-screen__order { display: grid; gap: 4px; width: min(100%, 230px); padding: 12px; border: 1px solid rgba(255, 255, 255, 0.17); border-radius: 12px; }
.xpedidos-screen__order strong,
.xpedidos-screen__order b { color: #fff; font-size: 0.78rem; }
.xpedidos-screen__order span { color: rgba(255, 255, 255, 0.68); font-size: 0.58rem; }
.xpedidos-screen__home { width: min(100%, 230px); padding: 9px; border-radius: 8px; background: var(--xp-primary); color: #fff; font-size: 0.63rem; font-weight: 900; }
.xpedidos-screen__confetti { position: absolute; inset: 26px 18px auto; display: flex; justify-content: space-around; }
.xpedidos-screen__confetti i { width: 5px; height: 12px; transform: rotate(28deg); border-radius: 2px; background: #fbbf24; }
.xpedidos-screen__confetti i:nth-child(even) { transform: rotate(-34deg); background: #a78bfa; }

.xpedidos-flow {
    overflow: hidden;
    background: radial-gradient(circle at 100% 0, rgba(104, 70, 242, 0.12), transparent 30%), #f7f9fd;
}

.xpedidos-flow__head,
.xpedidos-flow__progress { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.xpedidos-flow__head { align-items: end; margin-bottom: 28px; }
.xpedidos-flow__head .section-heading { max-width: 800px; margin: 0; text-align: left; }
.xpedidos-flow__controls { display: flex; gap: 9px; }

.xpedidos-flow__controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ccd7e5;
    border-radius: 50%;
    background: #fff;
    color: #062541;
    cursor: pointer;
    font-size: 1.2rem;
}

.xpedidos-flow__controls button:hover:not(:disabled),
.xpedidos-flow__controls button:focus-visible { border-color: #6846f2; background: #6846f2; color: #fff; }
.xpedidos-flow__controls button:disabled { opacity: 0.38; cursor: default; }
.xpedidos-flow__controls button:focus-visible,
.xpedidos-flow__track:focus-visible { outline: 3px solid rgba(104, 70, 242, 0.35); outline-offset: 3px; }
.xpedidos-flow__viewport { overflow: hidden; }

.xpedidos-flow__track {
    display: flex;
    gap: 22px;
    width: 100%;
    margin: 0;
    padding: 2px 2px 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    list-style: none;
}

.xpedidos-flow__track::-webkit-scrollbar { display: none; }

.xpedidos-flow__slide {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(410px, 1.3fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
    flex: 0 0 calc(100% - 46px);
    min-width: 0;
    min-height: 570px;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid #dce5f0;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 52px rgba(15, 23, 42, 0.09);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.xpedidos-flow__copy { max-width: 420px; }
.xpedidos-flow__number { display: inline-grid; place-items: center; width: 50px; height: 32px; margin-bottom: 18px; border-radius: 999px; background: rgba(104, 70, 242, 0.1); color: #6846f2; font-weight: 900; }
.xpedidos-flow__copy h3 { margin: 0 0 13px; color: #062541; font-size: clamp(30px, 3vw, 44px); line-height: 1.05; }
.xpedidos-flow__copy p { margin: 0; color: #5f6f82; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.6; }
.xpedidos-flow__mockup { min-width: 0; margin: 0; }
.xpedidos-flow__progress { margin-top: 8px; color: #526477; font-size: 0.82rem; font-weight: 800; }
.xpedidos-flow__progress div { display: flex; gap: 6px; }
.xpedidos-flow__progress i { width: 8px; height: 8px; border-radius: 999px; background: #cbd5e1; }
.xpedidos-flow__progress i.is-active { width: 26px; background: #6846f2; }

.product-features--productos-xpedidos { background: radial-gradient(circle at 86% 14%, rgba(104, 70, 242, 0.3), transparent 30%), linear-gradient(145deg, #04172b, #082f55 62%, #11123d); }
.product-features--productos-xpedidos .product-feature { border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.09); }
.product-landing-cta--productos-xpedidos {
    padding: clamp(72px, 8vw, 104px) 0;
    background: #f7f9fd;
}

.product-landing-cta--productos-xpedidos .product-landing-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
    overflow: hidden;
    padding: clamp(34px, 4.5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: radial-gradient(circle at 85% 15%, rgba(104, 70, 242, 0.42), transparent 26%), linear-gradient(135deg, #062541, #10143f);
    box-shadow: 0 28px 70px rgba(6, 23, 43, 0.2);
}

.product-landing-cta--productos-xpedidos .product-landing-cta__inner::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.035), 0 0 0 88px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.product-landing-cta--productos-xpedidos .product-landing-cta__inner > * {
    position: relative;
    z-index: 1;
}

.product-landing-cta--productos-xpedidos .section-eyebrow {
    display: inline-flex;
    width: max-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(184, 230, 59, 0.28);
    border-radius: 999px;
    background: rgba(184, 230, 59, 0.1);
    color: #dffc8c;
}

.product-landing-cta--productos-xpedidos h2 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.06;
}

.product-landing-cta--productos-xpedidos .product-landing-cta__inner > div:first-child > p:last-child {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.55;
}

.product-landing-cta--productos-xpedidos .xgestion-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
}

.product-landing-cta--productos-xpedidos .xgestion-cta-actions .btn {
    width: 100%;
    justify-content: center;
}

.product-landing-cta--productos-xpedidos .btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.product-landing-cta--productos-xpedidos .btn--ghost-light:hover,
.product-landing-cta--productos-xpedidos .btn--ghost-light:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 1100px) {
    .product-landing--productos-xpedidos,
    .product-landing--productos-xpedidos .hero__content { min-height: auto; }
    .product-landing--productos-xpedidos .product-landing-hero__content--stage { grid-template-columns: 1fr; max-width: 720px; padding: 58px 0 68px; }
    .product-landing--productos-xpedidos .product-landing-hero__pitch { grid-column: 1; grid-row: 1; }
    .product-landing--productos-xpedidos .product-landing-hero__content--stage .hero__actions { grid-column: 1; grid-row: 2; }
    .xpedidos-flow__slide { grid-template-columns: 1fr; flex-basis: calc(100% - 22px); }
}

@media (max-width: 820px) {
    .product-landing-cta--productos-xpedidos .product-landing-cta__inner {
        grid-template-columns: 1fr;
    }

    .product-landing-cta--productos-xpedidos .xgestion-cta-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-landing--productos-xpedidos .product-landing-hero__content--stage { padding: 46px 0 54px; }
    .product-landing--productos-xpedidos .product-landing-hero__pitch h1 { font-size: clamp(36px, 10.5vw, 46px); }
    .product-landing--productos-xpedidos .xgestion-hero-bullets { grid-template-columns: 1fr; }
    .xpedidos-hero-stage .xpedidos-screen { min-height: 440px; padding: 10px; }
    .xpedidos-flow__head { align-items: flex-start; flex-direction: column; margin-bottom: 18px; }
    .xpedidos-flow__controls { align-self: flex-end; }
    .xpedidos-flow__track { gap: 12px; margin-right: -16px; padding-right: 16px; }
    .xpedidos-flow__slide { gap: 20px; flex-basis: calc(100% - 16px); min-height: 0; padding: 18px 14px; border-radius: 20px; }
    .xpedidos-flow__copy h3 { font-size: clamp(28px, 9vw, 38px); }
    .xpedidos-screen { min-height: 430px; padding: 8px; border-radius: 17px; }
    .xpedidos-screen__device { min-height: 420px; border-radius: 18px; }
    .xpedidos-screen__body { padding: 10px; }
    .xpedidos-screen__body--customize { grid-template-columns: 1fr; }
    .xpedidos-screen__custom-media { min-height: 110px; font-size: 3.6rem; }
    .product-landing-cta--productos-xpedidos { padding: 56px 0; }
    .product-landing-cta--productos-xpedidos .product-landing-cta__inner { padding: 28px 20px; border-radius: 22px; }
    .product-landing-cta--productos-xpedidos h2 { font-size: clamp(32px, 9.5vw, 42px); }
    .product-landing-cta--productos-xpedidos .xgestion-cta-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .xpedidos-flow__track { scroll-behavior: auto; }
}
.xportal-ecosystem{position:relative;background:linear-gradient(180deg,#f7fbff 0%,#fff 100%)}
.xportal-ecosystem__layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:48px;align-items:center}
.xportal-ecosystem .section-heading{margin:0;text-align:left}
.xportal-ecosystem__cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.xportal-ecosystem__card{position:relative;padding:28px;border:1px solid rgba(23,91,153,.15);border-radius:22px;background:#fff;box-shadow:0 18px 46px rgba(20,62,103,.08)}
.xportal-ecosystem__card:after{content:"";position:absolute;top:42px;right:-19px;width:20px;height:2px;background:#56a6dc}
.xportal-ecosystem__card:last-child:after{display:none}
.xportal-ecosystem__card span{display:inline-flex;margin-bottom:18px;padding:6px 10px;border-radius:999px;background:#eaf5fd;color:#17689f;font-size:.76rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.xportal-ecosystem__card h3{margin:0 0 10px;color:#112d4d;font-size:1.35rem}.xportal-ecosystem__card p{margin:0;color:#5b6d82;line-height:1.65}
.xgestion-pricing__grid--2{grid-template-columns:repeat(2,minmax(0,1fr));max-width:880px;margin-right:auto;margin-left:auto}.xgestion-pricing__grid--1{grid-template-columns:minmax(0,480px);justify-content:center}
@media(max-width:900px){.xportal-ecosystem__layout{grid-template-columns:1fr;gap:28px}}
@media(max-width:700px){.xgestion-pricing__grid--2{grid-template-columns:1fr}}
@media(max-width:560px){.xportal-ecosystem__cards{grid-template-columns:1fr}.xportal-ecosystem__card{padding:22px}.xportal-ecosystem__card:after{display:none}}

/* XPortal has a real product capture: keep copy and stage balanced instead of inheriting the oversized generic hero. */
.product-landing--productos-xportal,
.product-landing--productos-xportal .hero__content {
    min-height: max(calc(100svh - var(--site-header-height)), 700px);
}

.product-landing--productos-xportal .product-landing-hero__slide--stage {
    background: radial-gradient(circle at 82% 20%, rgba(28, 133, 194, 0.32), transparent 28%), linear-gradient(135deg, #03162c 0%, #082d50 58%, #061d35 100%);
}

.product-landing--productos-xportal .product-landing-hero__overlay {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.075) 1px, transparent 1px) 0 0 / 4px 4px, linear-gradient(90deg, rgba(2, 12, 25, 0.84), rgba(3, 24, 44, 0.58), rgba(2, 14, 29, 0.72));
}

.product-landing--productos-xportal .product-landing-hero__content--stage {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    grid-template-rows: auto;
    column-gap: clamp(38px, 5vw, 72px);
    row-gap: 0;
    align-content: center;
    align-items: center;
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    padding: 48px 0 56px;
}

.product-landing--productos-xportal .product-landing-hero__logo {
    grid-column: 1;
    grid-row: 1;
    width: min(160px, 42vw);
    max-height: 64px;
    margin: 0;
}

.product-landing--productos-xportal .product-landing-hero__pitch {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 590px;
}

.product-landing--productos-xportal .product-landing-hero__pitch h1,
.product-landing--productos-xportal .product-landing-hero__pitch h2 {
    max-width: 590px;
    margin-bottom: 18px;
    font-size: clamp(42px, 3.7vw, 58px);
    line-height: 1.03;
    text-wrap: balance;
}

.product-landing--productos-xportal .product-landing-hero__pitch > p:not(.section-eyebrow) {
    max-width: 570px;
    margin-bottom: 22px;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.48;
}

.product-landing--productos-xportal .xgestion-hero-bullets {
    max-width: 590px;
    margin-bottom: 0;
}

.product-landing--productos-xportal .product-landing-hero__content--stage .hero__actions {
    grid-column: 1;
    grid-row: 3;
    margin-top: 2px;
}

.product-landing--productos-xportal .xgestion-hero-stage {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    width: min(100%, 650px);
}

.xportal-stage-carousel__viewport {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1917 / 914;
    background: #e8eef5;
}

.xportal-stage-carousel__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.xportal-stage-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.xgestion-hero-stage .xportal-stage-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.xportal-stage-carousel__controls {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto 38px;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 5px 12px;
    border-top: 1px solid rgba(6, 26, 63, 0.08);
    background: #f7f9fc;
    color: #29435f;
}

.xportal-stage-carousel__controls > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(23, 104, 159, 0.24);
    border-radius: 50%;
    background: #fff;
    color: #17689f;
    font: inherit;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.xportal-stage-carousel__controls > button:hover,
.xportal-stage-carousel__controls > button:focus-visible {
    border-color: #17689f;
    background: #eaf5fd;
    outline: none;
}

.xportal-stage-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.xportal-stage-carousel__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #b8c6d5;
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
}

.xportal-stage-carousel__dots button.is-active {
    width: 24px;
    background: #17689f;
}

.xportal-stage-carousel__dots button:focus-visible {
    outline: 2px solid #17689f;
    outline-offset: 3px;
}

.xportal-stage-carousel__controls [data-product-stage-status] {
    min-width: 38px;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
}

.xgestion-hero-stage[data-product-stage-carousel] figcaption {
    min-height: 52px;
}

.product-landing-cta--productos-xportal {
    padding: 80px 0;
    background: var(--site-soft);
}

.product-landing-cta--productos-xportal .product-landing-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    overflow: hidden;
    padding: 50px;
    border-radius: 28px;
    background: linear-gradient(135deg, #17689f 0%, #082d50 58%, #061d35 100%);
    box-shadow: 0 26px 70px rgba(6, 26, 63, 0.18);
}

.product-landing-cta--productos-xportal .product-landing-cta__inner > * {
    position: relative;
    z-index: 1;
}

.product-landing-cta--productos-xportal h2 {
    max-width: none;
    font-size: clamp(38px, 4.8vw, 58px);
}

.product-landing-cta--productos-xportal p:not(.section-eyebrow) {
    max-width: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.product-landing-cta--productos-xportal .section-eyebrow {
    background: rgba(86, 166, 220, 0.22);
    color: #fff;
}

.product-landing-cta--productos-xportal .xgestion-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.product-landing-cta--productos-xportal .xgestion-cta-actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
}

.product-landing-cta--productos-xportal .btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #fff;
}

.product-landing-cta--productos-xportal .btn--ghost-light:hover,
.product-landing-cta--productos-xportal .btn--ghost-light:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 1100px) {
    .product-landing--productos-xportal,
    .product-landing--productos-xportal .hero__content {
        min-height: 900px;
    }

    .product-landing--productos-xportal .product-landing-hero__content--stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        align-content: center;
        width: min(760px, calc(100% - 40px));
        padding: 54px 0 64px;
    }

    .product-landing--productos-xportal .product-landing-hero__logo,
    .product-landing--productos-xportal .product-landing-hero__pitch,
    .product-landing--productos-xportal .product-landing-hero__content--stage .hero__actions,
    .product-landing--productos-xportal .xgestion-hero-stage {
        grid-column: 1;
        grid-row: auto;
    }

    .product-landing--productos-xportal .product-landing-hero__pitch,
    .product-landing--productos-xportal .product-landing-hero__pitch h1,
    .product-landing--productos-xportal .product-landing-hero__pitch h2,
    .product-landing--productos-xportal .product-landing-hero__pitch > p:not(.section-eyebrow),
    .product-landing--productos-xportal .xgestion-hero-bullets {
        max-width: 100%;
    }

    .product-landing--productos-xportal .xgestion-hero-stage {
        justify-self: center;
        width: min(100%, 720px);
    }
}

@media (max-width: 640px) {
    .product-landing--productos-xportal,
    .product-landing--productos-xportal .hero__content {
        min-height: 820px;
    }

    .product-landing--productos-xportal .product-landing-hero__content--stage {
        width: min(100% - 28px, 560px);
        gap: 16px;
        padding: 38px 0 48px;
    }

    .product-landing--productos-xportal .product-landing-hero__pitch h1,
    .product-landing--productos-xportal .product-landing-hero__pitch h2 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.06;
    }

    .product-landing--productos-xportal .product-landing-hero__pitch > p:not(.section-eyebrow) {
        margin-bottom: 16px;
        font-size: 1rem;
    }

    .product-landing--productos-xportal .xgestion-hero-bullets {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-landing--productos-xportal .xgestion-hero-bullets span {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .product-landing--productos-xportal .hero__actions {
        width: 100%;
    }

    .product-landing--productos-xportal .hero__actions .btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .xportal-stage-carousel__controls {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 8px;
        padding: 5px 8px;
    }

    .xportal-stage-carousel__controls [data-product-stage-status] {
        display: none;
    }

    .product-landing-cta--productos-xportal {
        padding: 56px 0;
    }

    .product-landing-cta--productos-xportal .product-landing-cta__inner {
        gap: 20px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .product-landing-cta--productos-xportal h2 {
        font-size: clamp(32px, 9.5vw, 42px);
    }

    .product-landing-cta--productos-xportal .xgestion-cta-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xportal-stage-carousel__slide,
    .xportal-stage-carousel__dots button {
        transition: none;
    }
}

/* XConsultador mirrors the current web product with a lightweight, tenant-free preview. */
.product-landing--productos-xconsultador,
.product-landing--productos-xconsultador .hero__content {
    min-height: max(calc(100svh - var(--site-header-height)), 720px);
}

.product-landing--productos-xconsultador .product-landing-hero__slide--stage {
    background:
        radial-gradient(circle at 82% 16%, rgba(70, 88, 255, 0.42), transparent 28%),
        radial-gradient(circle at 18% 82%, rgba(15, 156, 219, 0.2), transparent 34%),
        linear-gradient(135deg, #06152e 0%, #102a5a 55%, #131b48 100%);
}

.product-landing--productos-xconsultador .product-landing-hero__overlay {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 4px 4px,
        linear-gradient(90deg, rgba(2, 10, 27, 0.82), rgba(7, 22, 53, 0.56), rgba(5, 12, 34, 0.74));
}

.product-landing--productos-xconsultador .product-landing-hero__content--stage {
    display: grid;
    grid-template-columns: minmax(330px, 0.88fr) minmax(480px, 1.12fr);
    grid-template-rows: auto auto;
    column-gap: clamp(42px, 5vw, 74px);
    row-gap: 24px;
    align-content: center;
    align-items: center;
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    padding: 56px 0 64px;
    min-width: 0;
}

.product-landing--productos-xconsultador .product-landing-hero__pitch {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 590px;
}

.product-landing--productos-xconsultador .product-landing-hero__pitch h1,
.product-landing--productos-xconsultador .product-landing-hero__pitch h2 {
    max-width: 590px;
    margin-bottom: 18px;
    font-size: clamp(42px, 3.75vw, 60px);
    line-height: 1.03;
    text-wrap: balance;
}

.product-landing--productos-xconsultador .product-landing-hero__pitch > p:not(.section-eyebrow) {
    max-width: 570px;
    margin-bottom: 24px;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.5;
}

.product-landing--productos-xconsultador .xgestion-hero-bullets {
    max-width: 590px;
    margin-bottom: 0;
}

.product-landing--productos-xconsultador .product-landing-hero__content--stage .hero__actions {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
}

.xgestion-hero-stage.xconsultador-hero-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: min(100%, 650px);
    min-width: 0;
    border-color: rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    background: #f4f7fb;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.4);
}

.xconsultador-screen {
    width: 100%;
    min-width: 0;
    min-height: 410px;
    overflow: hidden;
    background: #f4f7fb;
    color: #071631;
    font-family: inherit;
}

.xconsultador-screen__header {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid #dce5f1;
    background: #fff;
}

.xconsultador-screen__brand-mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 32px;
    color: #079bd8;
    font-size: 1.45rem;
    font-weight: 950;
    transform: skew(-10deg);
}

.xconsultador-screen__header strong {
    font-size: 1rem;
    font-weight: 900;
}

.xconsultador-screen__header small {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4d55ed;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.xconsultador-screen__body {
    min-width: 0;
    padding: 18px;
}

.xconsultador-screen__search {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    min-width: 0;
}

.xconsultador-screen__search > span {
    position: relative;
    width: 22px;
    height: 18px;
    border-right: 2px solid #5362ff;
    border-left: 2px solid #5362ff;
}

.xconsultador-screen__search > span::before {
    content: "";
    position: absolute;
    inset: 3px 4px;
    background: repeating-linear-gradient(90deg, #5362ff 0 1px, transparent 1px 3px);
}

.xconsultador-screen__search em {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #aeb8ff;
    border-radius: 9px;
    background: #fff;
    color: #6a7586;
    font-size: 0.82rem;
    font-style: normal;
}

.xconsultador-screen__search b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 9px;
    background: linear-gradient(135deg, #5267ff, #5334e8);
    color: #fff;
    font-size: 0.78rem;
    box-shadow: 0 10px 22px rgba(82, 77, 240, 0.22);
}

.xconsultador-screen__search b i {
    width: 15px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.xconsultador-screen__result {
    display: grid;
    grid-template-columns: minmax(150px, 0.82fr) minmax(0, 1.18fr);
    gap: 14px;
    min-width: 0;
}

.xconsultador-screen__product,
.xconsultador-screen__category,
.xconsultador-screen__price {
    min-width: 0;
    border: 1px solid #dde5f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 42, 76, 0.07);
}

.xconsultador-screen__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 18px;
    text-align: center;
}

.xconsultador-screen__product-visual {
    position: relative;
    display: grid;
    place-items: end center;
    width: 94px;
    height: 132px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    clip-path: polygon(12% 0, 88% 0, 100% 12%, 94% 100%, 6% 100%, 0 12%);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.38), transparent 42%),
        linear-gradient(145deg, #0c8d88, #04615f);
    color: #fff;
    box-shadow: 0 12px 24px rgba(4, 97, 95, 0.2);
}

.xconsultador-screen__product-visual::before {
    content: "MATE";
    position: absolute;
    top: 22px;
    left: 12px;
    right: 12px;
    padding: 8px 2px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.xconsultador-screen__product-visual span {
    font-size: 0.68rem;
    font-weight: 900;
}

.xconsultador-screen__product-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.xconsultador-screen__product-copy strong {
    font-size: 0.9rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.xconsultador-screen__product-copy small {
    color: #69778a;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
}

.xconsultador-screen__details {
    display: grid;
    grid-template-rows: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 14px;
    min-width: 0;
}

.xconsultador-screen__category {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 106px;
    padding: 18px;
}

.xconsultador-screen__category > span {
    width: 34px;
    height: 34px;
    border: 2px solid #5362ff;
    border-radius: 50% 50% 50% 10%;
    background: #f1f3ff;
    transform: rotate(45deg) scale(0.7);
}

.xconsultador-screen__category div {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.xconsultador-screen__category small {
    color: #6b7688;
    font-size: 0.7rem;
}

.xconsultador-screen__category strong {
    font-size: 0.82rem;
}

.xconsultador-screen__price {
    display: grid;
    place-items: center;
    min-height: 140px;
    border-color: transparent;
    background: linear-gradient(135deg, #5267ff, #4a2ee2);
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 3px 14px rgba(20, 11, 100, 0.2);
}

.product-features--productos-xconsultador {
    background: linear-gradient(180deg, #f3f7fc 0%, #eef4fb 100%);
}

.product-features--productos-xconsultador .section-heading {
    max-width: 850px;
    margin-left: 0;
    text-align: left;
}

.product-features--productos-xconsultador .section-heading h2 {
    color: #071631;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: 1.04;
}

.product-features--productos-xconsultador .section-heading p:not(.section-eyebrow) {
    max-width: 760px;
    color: #58697e;
    font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.product-features--productos-xconsultador .section-heading .section-eyebrow {
    display: inline-flex;
    width: max-content;
    padding: 7px 11px;
    border: 1px solid rgba(63, 77, 222, 0.2);
    border-radius: 999px;
    background: #fff;
    color: #3341c8;
}

.product-features--productos-xconsultador .product-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-features--productos-xconsultador .product-feature {
    min-height: 230px;
    padding: 24px;
    border: 1px solid #dce5f1;
    border-radius: 14px;
    background: #fff;
    text-align: left;
    box-shadow: 0 16px 36px rgba(15, 42, 76, 0.07);
}

.product-features--productos-xconsultador .product-feature__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features--productos-xconsultador .product-feature__icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 13px;
    background: #eef1ff;
    color: #4d55ed;
}

.product-features--productos-xconsultador .product-feature__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 4;
}

.product-features--productos-xconsultador .product-feature h3 {
    margin: 0;
    color: #071631;
}

.product-features--productos-xconsultador .product-feature p {
    margin-top: 16px;
    color: #58697e;
}

.product-landing-cta--productos-xconsultador {
    padding: clamp(70px, 8vw, 100px) 0;
    background: #f3f7fc;
}

.product-landing-cta--productos-xconsultador .product-landing-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
    overflow: hidden;
    padding: clamp(36px, 4.5vw, 58px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(83, 98, 255, 0.55), transparent 30%),
        linear-gradient(135deg, #071a39 0%, #102c5c 58%, #171a48 100%);
    box-shadow: 0 28px 70px rgba(6, 23, 43, 0.2);
}

.product-landing-cta--productos-xconsultador .product-landing-cta__inner::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.035), 0 0 0 92px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.product-landing-cta--productos-xconsultador .product-landing-cta__inner > * {
    position: relative;
    z-index: 1;
}

.product-landing-cta--productos-xconsultador h2 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.06;
}

.product-landing-cta--productos-xconsultador p:not(.section-eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.55;
}

.product-landing-cta--productos-xconsultador .section-eyebrow {
    display: inline-flex;
    width: max-content;
    margin-bottom: 14px;
    border-color: rgba(132, 198, 255, 0.3);
    background: rgba(83, 98, 255, 0.18);
    color: #cfe8ff;
}

.product-landing-cta--productos-xconsultador .xgestion-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
}

.product-landing-cta--productos-xconsultador .xgestion-cta-actions .btn {
    width: 100%;
    justify-content: center;
}

.product-landing-cta--productos-xconsultador .btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.product-landing-cta--productos-xconsultador .btn--ghost-light:hover,
.product-landing-cta--productos-xconsultador .btn--ghost-light:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 1100px) {
    .product-landing--productos-xconsultador,
    .product-landing--productos-xconsultador .hero__content {
        min-height: 1040px;
    }

    .product-landing--productos-xconsultador .product-landing-hero__content--stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        width: min(760px, calc(100% - 40px));
        padding: 54px 0 64px;
    }

    .product-landing--productos-xconsultador .product-landing-hero__pitch,
    .product-landing--productos-xconsultador .product-landing-hero__content--stage .hero__actions,
    .product-landing--productos-xconsultador .xconsultador-hero-stage {
        grid-column: 1;
        grid-row: auto;
    }

    .product-landing--productos-xconsultador .product-landing-hero__pitch,
    .product-landing--productos-xconsultador .product-landing-hero__pitch h1,
    .product-landing--productos-xconsultador .product-landing-hero__pitch h2,
    .product-landing--productos-xconsultador .product-landing-hero__pitch > p:not(.section-eyebrow),
    .product-landing--productos-xconsultador .xgestion-hero-bullets {
        max-width: 100%;
    }

    .product-landing--productos-xconsultador .xconsultador-hero-stage {
        justify-self: center;
        width: min(100%, 720px);
    }
}

@media (max-width: 820px) {
    .product-features--productos-xconsultador .product-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-landing-cta--productos-xconsultador .product-landing-cta__inner {
        grid-template-columns: 1fr;
    }

    .product-landing-cta--productos-xconsultador .xgestion-cta-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-landing--productos-xconsultador,
    .product-landing--productos-xconsultador .hero__content {
        min-height: 1120px;
    }

    .product-landing--productos-xconsultador .product-landing-hero__content--stage {
        width: min(100% - 28px, 560px);
        gap: 16px;
        padding: 40px 0 50px;
    }

    .product-landing--productos-xconsultador .product-landing-hero__pitch h1,
    .product-landing--productos-xconsultador .product-landing-hero__pitch h2 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.06;
    }

    .product-landing--productos-xconsultador .product-landing-hero__pitch > p:not(.section-eyebrow) {
        margin-bottom: 16px;
        font-size: 1rem;
        overflow-wrap: anywhere;
    }

    .product-landing--productos-xconsultador .xgestion-hero-bullets {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-landing--productos-xconsultador .hero__actions,
    .product-landing--productos-xconsultador .hero__actions .btn {
        width: 100%;
    }

    .xconsultador-screen {
        min-height: 500px;
    }

    .xconsultador-screen__header {
        min-height: 44px;
        padding: 0 10px;
    }

    .xconsultador-screen__header small {
        display: none;
    }

    .xconsultador-screen__body {
        padding: 10px;
    }

    .xconsultador-screen__search {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-bottom: 9px;
    }

    .xconsultador-screen__search > span {
        display: none;
    }

    .xconsultador-screen__search em,
    .xconsultador-screen__search b {
        width: 100%;
        min-height: 36px;
        padding: 0 9px;
        font-size: 0.65rem;
    }

    .xconsultador-screen__search b {
        justify-content: center;
    }

    .xconsultador-screen__search b i {
        display: none;
    }

    .xconsultador-screen__result {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .xconsultador-screen__product {
        flex-direction: row;
        min-height: 150px;
        padding: 10px;
        text-align: left;
    }

    .xconsultador-screen__product-visual {
        width: 68px;
        height: 96px;
        margin: 0 14px 0 0;
    }

    .xconsultador-screen__details {
        grid-template-rows: auto auto;
        gap: 8px;
    }

    .xconsultador-screen__price {
        grid-row: 1;
    }

    .xconsultador-screen__category {
        grid-row: 2;
    }

    .xconsultador-screen__category {
        min-height: 66px;
        padding: 10px;
    }

    .xconsultador-screen__category > span {
        display: none;
    }

    .xconsultador-screen__price {
        min-height: 94px;
        font-size: clamp(1.35rem, 7vw, 2.2rem);
    }

    .product-features--productos-xconsultador .product-features__grid {
        grid-template-columns: 1fr;
    }

    .product-landing-cta--productos-xconsultador {
        padding: 56px 0;
    }

    .product-landing-cta--productos-xconsultador .product-landing-cta__inner {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .product-landing-cta--productos-xconsultador h2 {
        font-size: clamp(32px, 9.5vw, 42px);
    }

    .product-landing-cta--productos-xconsultador .xgestion-cta-actions {
        grid-template-columns: 1fr;
    }
}
/* CTA compartido: prueba gratuita de XGestión */
.site-nav__trial {
    min-height: 40px;
    padding-right: 16px;
    padding-left: 16px;
    border: 1px solid #0f6fb3;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--site-primary), #36c7ff);
    box-shadow: 0 5px 14px rgba(15, 111, 179, .22);
    color: #fff;
    gap: .45rem;
    white-space: nowrap;
}

.site-nav__trial:hover,
.site-nav__trial:focus-visible {
    border-color: var(--site-primary-dark);
    background: linear-gradient(135deg, var(--site-primary-dark), #159fdb);
    box-shadow: 0 7px 18px rgba(15, 111, 179, .28);
    color: #fff;
    transform: translateY(-1px);
}

.site-nav__trial:active {
    box-shadow: 0 3px 9px rgba(15, 111, 179, .22);
    transform: translateY(1px);
}

.site-nav__trial-spinner {
    display: none;
    width: .85rem;
    height: .85rem;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: site-trial-spin .7s linear infinite;
}

.site-nav__trial.is-loading .site-nav__trial-spinner {
    display: inline-block;
}

@keyframes site-trial-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav__trial,
    .site-nav__trial-spinner {
        animation: none;
        transition: none;
    }
}

/* Selector público de soluciones XGastronomía. */
.xgastronomia-subrubros {
    padding: 72px 0;
    background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.xgastronomia-subrubros__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.xgastronomia-subrubros__card {
    display: flex;
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(15, 111, 179, .16);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(14, 45, 72, .08);
    color: var(--site-text);
    flex-direction: column;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.xgastronomia-subrubros__card:hover,
.xgastronomia-subrubros__card:focus-visible {
    border-color: var(--site-primary);
    box-shadow: 0 18px 42px rgba(15, 111, 179, .16);
    color: var(--site-text);
    outline: none;
    transform: translateY(-4px);
}

.xgastronomia-subrubros__card > span {
    color: var(--site-primary-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.xgastronomia-subrubros__card p {
    margin: 14px 0 22px;
    color: var(--site-muted);
    line-height: 1.6;
}

.xgastronomia-subrubros__card strong {
    margin-top: auto;
    color: var(--site-primary);
}

.xgastronomia-subrubros__card i {
    font-style: normal;
}

@media (max-width: 1100px) {
    .xgastronomia-subrubros__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .xgastronomia-subrubros { padding: 52px 0; }
    .xgastronomia-subrubros__grid { grid-template-columns: 1fr; }
    .xgastronomia-subrubros__card { min-height: 0; }
}

/* Oportunidades laborales del sitio público. */
.site-footer__jobs-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 12px;
    padding: 9px 13px;
    border: 1px solid rgba(33, 163, 232, .48);
    border-radius: 9px;
    background: rgba(33, 163, 232, .1);
    color: #fff;
    font: inherit;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer__jobs-trigger svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-footer__jobs-trigger:hover,
.site-footer__jobs-trigger:focus-visible {
    border-color: #36b8f4;
    background: rgba(33, 163, 232, .2);
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.site-jobs-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(9, 25, 42, .72);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.site-jobs-modal[hidden] {
    display: none !important;
}

.site-jobs-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-jobs-modal__panel {
    width: min(100%, 880px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(4, 21, 37, .34);
    transform: translateY(12px) scale(.985);
    transition: transform .2s ease;
}

.site-jobs-modal.is-open .site-jobs-modal__panel {
    transform: translateY(0) scale(1);
}

.site-jobs-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.site-jobs-modal__eyebrow,
.career-application__intro > span {
    color: var(--site-primary);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-jobs-modal__header h2 {
    margin: 5px 0 0;
    color: var(--site-text);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    line-height: 1.15;
}

.site-jobs-modal__close {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--site-line);
    border-radius: 50%;
    background: var(--site-soft);
    color: var(--site-primary-dark);
    cursor: pointer;
}

.site-jobs-modal__close:hover,
.site-jobs-modal__close:focus-visible {
    border-color: var(--site-primary);
    background: #e8f4fc;
    outline: none;
}

.site-jobs-modal__close svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.site-jobs-modal__intro {
    max-width: 650px;
    margin: 12px 0 22px;
    color: var(--site-muted);
    line-height: 1.6;
}

.site-jobs-modal__notice,
.career-page__language-notice {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    border: 1px solid #b9dbef;
    border-radius: 9px;
    background: #eef8fe;
    color: #174f78;
    font-size: .9rem;
    font-weight: 700;
}

.site-jobs-modal__notice {
    margin: 0 0 20px;
}

.site-jobs-modal__notice svg,
.career-page__language-notice svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-jobs-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.site-jobs-modal__card {
    display: flex;
    min-width: 0;
    padding: 21px;
    border: 1px solid #d8e5f0;
    border-radius: 14px;
    background: #f9fcff;
    flex-direction: column;
}

.site-jobs-modal__type {
    align-self: flex-start;
    padding: 5px 9px;
    border-radius: 999px;
    background: #e4f3fc;
    color: var(--site-primary-dark);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.site-jobs-modal__card h3 {
    margin: 14px 0 9px;
    color: var(--site-text);
    font-size: 1.22rem;
}

.site-jobs-modal__card p {
    margin: 0 0 18px;
    color: var(--site-muted);
    font-size: .94rem;
    line-height: 1.55;
}

.site-jobs-modal__card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: auto;
    color: var(--site-primary-dark);
    font-weight: 900;
    text-decoration: none;
}

.site-jobs-modal__card a:hover,
.site-jobs-modal__card a:focus-visible {
    color: var(--site-primary);
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-jobs-modal__card a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.career-page {
    padding: 70px 0 82px;
    background: linear-gradient(180deg, #f3f8fc 0%, #fff 58%);
}

.career-page__shell {
    max-width: 1120px;
}

.career-page__language-notice {
    width: fit-content;
    margin: 0 0 18px;
}

.career-page__hero {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 6vw, 58px);
    border-radius: 22px;
    background: linear-gradient(135deg, #073f70 0%, #0f6fb3 70%, #159bd4 100%);
    box-shadow: 0 24px 60px rgba(8, 67, 111, .18);
    color: #fff;
}

.career-page__hero::after {
    position: absolute;
    top: -45%;
    right: -8%;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    content: '';
    pointer-events: none;
}

.career-page__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.career-page__hero h1 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(2.35rem, 6vw, 4.4rem);
    line-height: 1.02;
}

.career-page__summary {
    position: relative;
    z-index: 1;
    max-width: 790px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1rem, 2vw, 1.16rem);
    line-height: 1.7;
}

.career-page__actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.career-page__actions .site-button--primary {
    border-color: #fff;
    background: #fff;
    color: var(--site-primary-dark);
}

.career-page__actions .site-button--primary:hover,
.career-page__actions .site-button--primary:focus-visible {
    border-color: #d8effc;
    background: #dff3fe;
}

.career-page__actions > span {
    max-width: 460px;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    line-height: 1.45;
}

.career-page__sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.career-page__section {
    padding: 26px;
    border: 1px solid #dbe6ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 51, 80, .06);
}

.career-page__section h2 {
    margin: 0 0 18px;
    color: var(--site-primary-dark);
    font-size: 1.16rem;
    line-height: 1.3;
}

.career-page__section ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.career-page__section li {
    position: relative;
    padding-left: 20px;
    color: var(--site-text);
    line-height: 1.58;
}

.career-page__section li::before {
    position: absolute;
    top: .62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--site-primary);
    content: '';
}

.career-application {
    margin-top: 24px;
    padding: clamp(24px, 5vw, 38px);
    border: 1px solid #cfdfea;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(16, 51, 80, .08);
    scroll-margin-top: calc(var(--site-header-height) + 24px);
}

.career-application__intro h2 {
    margin: 6px 0 8px;
    color: var(--site-text);
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.career-application__intro p {
    max-width: 700px;
    margin: 0;
    color: var(--site-muted);
    line-height: 1.6;
}

.career-application__intro small {
    display: block;
    margin-top: 8px;
    color: #637589;
}

.career-application__status {
    margin-top: 20px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 10px;
    font-weight: 750;
    line-height: 1.5;
}

.career-application__status--success {
    border-color: #9bd4b1;
    background: #edf9f1;
    color: #176b38;
}

.career-application__status--error {
    border-color: #efb5ae;
    background: #fff4f2;
    color: #9f2d25;
}

.career-application__form {
    margin-top: 24px;
}

.career-application__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
}

.career-application__field {
    display: flex;
    min-width: 0;
    gap: 7px;
    color: var(--site-text);
    font-size: .93rem;
    font-weight: 800;
    flex-direction: column;
}

.career-application__field--wide {
    grid-column: 1 / -1;
}

.career-application__field input,
.career-application__field textarea {
    width: 100%;
    border: 1px solid #b9cad8;
    border-radius: 9px;
    background: #fff;
    color: var(--site-text);
    font: inherit;
    font-weight: 500;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.career-application__field input {
    min-height: 46px;
    padding: 10px 12px;
}

.career-application__field input[type="file"] {
    padding: 8px 10px;
}

.career-application__field textarea {
    min-height: 126px;
    padding: 12px;
    resize: vertical;
}

.career-application__field input:focus,
.career-application__field textarea:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 3px rgba(15, 111, 179, .14);
}

.career-application__field input[aria-invalid="true"],
.career-application__field textarea[aria-invalid="true"] {
    border-color: #c94439;
}

.career-application__hint {
    color: #66778a;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.4;
}

.career-application__field .field-error {
    display: block;
    color: #b42318;
    font-size: .83rem;
    font-weight: 700;
    line-height: 1.4;
}

.career-application__submit {
    margin-top: 22px;
}

@media (max-width: 760px) {
    .career-page__sections,
    .career-application__grid {
        grid-template-columns: 1fr;
    }

    .career-application__field--wide {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .site-footer__jobs-trigger {
        margin-right: auto;
        margin-left: auto;
    }

    .site-jobs-modal {
        align-items: end;
        padding: 0;
    }

    .site-jobs-modal__panel {
        width: 100%;
        max-height: 90vh;
        max-height: 90dvh;
        padding: 24px 18px calc(22px + env(safe-area-inset-bottom));
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 22px 22px 0 0;
        transform: translateY(24px);
    }

    .site-jobs-modal__grid {
        grid-template-columns: 1fr;
    }

    .career-page {
        padding: 44px 0 58px;
    }

    .career-page__hero {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .career-page__hero h1 {
        font-size: clamp(2.15rem, 12vw, 3rem);
    }

    .career-page__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-page__section,
    .career-application {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .career-application__submit {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__jobs-trigger,
    .site-jobs-modal,
    .site-jobs-modal__panel {
        transition: none;
    }
}
