:root {
    --sa-lime: #BFFF3A;
    --sa-lime-hover: #AEEB25;
    --sa-lime-soft: rgba(191,255,58,.14);

    --sa-navy: #101828;
    --sa-dark: #344054;
    --sa-gray: #98A2B3;
    --sa-light: #F2F4F7;
    --sa-white: #FFFFFF;

    --sa-border: #EAECF0;

    --sa-shadow-sm: 0 4px 14px rgba(16,24,40,.06);
    --sa-shadow: 0 16px 45px rgba(16,24,40,.10);
    --sa-shadow-lg: 0 28px 70px rgba(16,24,40,.16);

    --sa-radius-sm: 12px;
    --sa-radius: 18px;
    --sa-radius-lg: 30px;

    --sa-container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--sa-navy);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.sa-container {
    width: min(calc(100% - 40px), var(--sa-container));
    margin-inline: auto;
}


/* =========================================================
   GLOBAL BUTTONS
   ========================================================= */

.sa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 12px 20px;

    border: 0;
    border-radius: 13px;

    font: inherit;
    font-size: 14px;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

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

.sa-btn-primary {
    color: var(--sa-navy);
    background: var(--sa-lime);
    box-shadow: 0 9px 24px rgba(191,255,58,.24);
}

.sa-btn-primary:hover {
    background: var(--sa-lime-hover);
}

.sa-btn-dark {
    color: white;
    background: var(--sa-navy);
}

.sa-btn-dark:hover {
    background: #1D2939;
}

.sa-btn-outline {
    color: var(--sa-navy);
    background: white;
    border: 1px solid #D0D5DD;
}


/* =========================================================
   BRAND
   ========================================================= */

.sa-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sa-brand-symbol {
    width: 42px;
    height: 42px;
    display: block;
}

.sa-brand-name {
    color: var(--sa-navy);
    font-size: 25px;
    font-weight: 850;
    letter-spacing: -1.3px;
}

.sa-brand-name span {
    color: var(--sa-lime);
}


/* =========================================================
   HEADER
   ========================================================= */

.sa-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(234,236,240,.85);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.sa-nav {
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 30px;
}

.sa-menu {
    display: flex;
    align-items: center;
    gap: 29px;

    margin-left: auto;
}

.sa-menu a {
    color: var(--sa-dark);
    font-size: 14px;
    font-weight: 650;

    transition: color .2s ease;
}

.sa-menu a:hover {
    color: var(--sa-navy);
}

.sa-nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* =========================================================
   HERO
   ========================================================= */

.sa-hero {
    padding: 34px 0 80px;
}

.sa-hero-shell {
    position: relative;
    overflow: visible;

    min-height: 600px;

    border-radius: var(--sa-radius-lg);

    background:
        radial-gradient(circle at 72% 18%, rgba(191,255,58,.26), transparent 27%),
        linear-gradient(125deg, #FFFFFF 0%, #F5F8FA 46%, #EAF1F7 100%);

    box-shadow: var(--sa-shadow);
}

.sa-hero-grid {
    min-height: 600px;

    display: grid;
    grid-template-columns: 1.02fr .98fr;

    overflow: hidden;

    border-radius: var(--sa-radius-lg);
}

.sa-hero-content {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 72px 45px 120px 60px;
}

.sa-kicker {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding: 8px 13px;
    margin-bottom: 23px;

    border-radius: 999px;

    color: var(--sa-navy);
    background: var(--sa-lime-soft);

    font-size: 12px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .075em;
}

.sa-hero h1 {
    max-width: 680px;

    margin: 0;

    color: var(--sa-navy);

    font-size: clamp(48px, 5.3vw, 76px);
    font-weight: 875;
    line-height: .98;
    letter-spacing: -4.4px;
}

.sa-highlight {
    position: relative;
    display: inline-block;
}

.sa-highlight::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 8px;

    border-radius: 999px;

    background: var(--sa-lime);
}

.sa-hero-description {
    max-width: 555px;

    margin: 35px 0 0;

    color: var(--sa-dark);

    font-size: 18px;
    line-height: 1.7;
}

.sa-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 31px;
}


/* Hero visual */

.sa-hero-visual {
    position: relative;
    overflow: hidden;

    min-height: 600px;

    background: #E4EAF0;
}

.sa-hero-photo {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.sa-hero-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(244,248,251,.92) 0%,
            rgba(244,248,251,.24) 25%,
            transparent 53%
        );
}

.sa-lime-orbit {
    position: absolute;

    left: -120px;
    bottom: -135px;

    width: 470px;
    height: 470px;

    border: 68px solid var(--sa-lime);
    border-radius: 50%;

    opacity: .93;

    transform: rotate(-18deg);
}


/* =========================================================
   SEARCH
   ========================================================= */

.sa-search-card {
    position: absolute;
    z-index: 30;

    left: 40px;
    right: 40px;
    bottom: -48px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;

    gap: 9px;

    padding: 17px;

    border: 1px solid var(--sa-border);
    border-radius: 18px;

    background: rgba(255,255,255,.98);

    box-shadow: var(--sa-shadow-lg);
}

.sa-field {
    min-height: 54px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 14px;

    border: 1px solid #E4E7EC;
    border-radius: 12px;

    background: #fff;
}

.sa-field svg {
    width: 20px;
    height: 20px;

    flex: 0 0 auto;

    stroke: var(--sa-dark);
}

.sa-field input,
.sa-field select {
    width: 100%;

    border: 0;
    outline: 0;

    color: var(--sa-navy);
    background: transparent;

    font: inherit;
    font-size: 14px;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.sa-benefits {
    padding: 86px 0 35px;
}

.sa-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border: 1px solid var(--sa-border);
    border-radius: 22px;

    background: white;

    box-shadow: var(--sa-shadow-sm);
}

.sa-benefit {
    position: relative;

    padding: 34px 25px;

    text-align: center;
}

.sa-benefit + .sa-benefit::before {
    content: "";

    position: absolute;

    left: 0;
    top: 23%;

    width: 1px;
    height: 54%;

    background: var(--sa-border);
}

.sa-round-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin: 0 auto 16px;

    border-radius: 50%;

    color: var(--sa-navy);
    background: var(--sa-light);
}

.sa-round-icon svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
}

.sa-benefit h3 {
    margin: 0 0 7px;

    font-size: 16px;
}

.sa-benefit p {
    margin: 0;

    color: var(--sa-gray);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.sa-section {
    padding: 85px 0;
}

.sa-section-heading {
    max-width: 760px;

    margin: 0 auto 46px;

    text-align: center;
}

.sa-section-heading small {
    color: var(--sa-dark);

    font-size: 12px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.sa-section-heading h2 {
    margin: 11px 0 15px;

    color: var(--sa-navy);

    font-size: clamp(34px, 4vw, 53px);
    font-weight: 850;

    line-height: 1.04;
    letter-spacing: -2.6px;
}

.sa-section-heading p {
    margin: 0;

    color: var(--sa-gray);

    font-size: 17px;
    line-height: 1.68;
}


/* =========================================================
   SERVICES
   ========================================================= */

.sa-services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    gap: 13px;
}

.sa-service {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 20px 10px;

    border: 1px solid var(--sa-border);
    border-radius: 18px;

    background: white;

    text-align: center;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.sa-service:hover {
    transform: translateY(-5px);

    border-color: var(--sa-lime);

    box-shadow: var(--sa-shadow);
}

.sa-service-icon {
    width: 57px;
    height: 57px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: var(--sa-lime-soft);
}

.sa-service-icon svg {
    width: 29px;
    height: 29px;

    stroke: var(--sa-navy);
}

.sa-service strong {
    color: var(--sa-navy);

    font-size: 14px;
    font-weight: 750;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.sa-how {
    color: white;
    background: var(--sa-navy);
}

.sa-how .sa-section-heading small {
    color: var(--sa-lime);
}

.sa-how .sa-section-heading h2 {
    color: white;
}

.sa-how .sa-section-heading p {
    color: #98A2B3;
}

.sa-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 19px;
}

.sa-step {
    padding: 30px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;

    background: rgba(255,255,255,.045);
}

.sa-step-number {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--sa-navy);
    background: var(--sa-lime);

    font-weight: 900;
}

.sa-step h3 {
    margin: 22px 0 9px;

    color: white;

    font-size: 19px;
}

.sa-step p {
    margin: 0;

    color: #98A2B3;

    line-height: 1.63;
}


/* =========================================================
   BRAND PROMISE
   ========================================================= */

.sa-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.sa-promise {
    min-height: 340px;

    padding: 46px;

    border: 1px solid var(--sa-border);
    border-radius: 26px;

    background: white;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sa-promise--lime {
    color: var(--sa-navy);
    background: var(--sa-lime);
    border-color: var(--sa-lime);
}

.sa-promise h2 {
    max-width: 520px;

    margin: 0 0 14px;

    font-size: clamp(34px,3.5vw,49px);
    line-height: 1.02;
    letter-spacing: -2.4px;
}

.sa-promise p {
    max-width: 520px;

    margin: 0;

    color: var(--sa-gray);

    font-size: 16px;
    line-height: 1.7;
}

.sa-promise--lime p {
    color: var(--sa-dark);
}


/* =========================================================
   CITIES
   ========================================================= */

.sa-cities-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 20px;
}

.sa-city-card {
    position: relative;

    overflow: hidden;

    min-height: 340px;

    border-radius: 22px;

    background: var(--sa-light);

    box-shadow: var(--sa-shadow-sm);
}

.sa-city-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.sa-city-card:hover img {
    transform: scale(1.035);
}

.sa-city-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    color: white;

    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(16,24,40,.88) 100%
        );
}

.sa-city-overlay h3 {
    margin: 0 0 5px;

    font-size: 28px;
    letter-spacing: -1px;
}

.sa-city-overlay p {
    margin: 0;

    color: #EAECF0;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.sa-final-cta {
    padding: 100px 0;
}

.sa-final-box {
    padding: 80px 35px;

    border-radius: 30px;

    color: var(--sa-navy);
    background: var(--sa-lime);

    text-align: center;
}

.sa-final-box h2 {
    max-width: 850px;

    margin: 0 auto 18px;

    font-size: clamp(40px,5vw,66px);
    font-weight: 875;
    line-height: .99;
    letter-spacing: -3.7px;
}

.sa-final-box p {
    max-width: 640px;

    margin: 0 auto;

    color: var(--sa-dark);

    font-size: 17px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .sa-menu {
        display: none;
    }

    .sa-hero-grid {
        grid-template-columns: 1fr;
    }

    .sa-hero-content {
        padding-bottom: 75px;
    }

    .sa-hero-visual {
        min-height: 430px;
    }

    .sa-search-card {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: calc(100% - 40px);

        margin: -40px auto 0;

        grid-template-columns: repeat(2,1fr);
    }

    .sa-services-grid {
        grid-template-columns: repeat(4,1fr);
    }
}


@media (max-width: 800px) {

    .sa-container {
        width: min(calc(100% - 28px), var(--sa-container));
    }

    .sa-nav {
        min-height: 70px;
    }

    .sa-nav-actions .sa-btn-outline {
        display: none;
    }

    .sa-brand-symbol {
        width: 37px;
        height: 37px;
    }

    .sa-brand-name {
        font-size: 21px;
    }

    .sa-hero {
        padding-top: 16px;
    }

    .sa-hero-shell,
    .sa-hero-grid {
        border-radius: 22px;
    }

    .sa-hero-content {
        padding: 45px 24px 54px;
    }

    .sa-hero h1 {
        font-size: 48px;
        letter-spacing: -2.8px;
    }

    .sa-hero-description {
        font-size: 16px;
    }

    .sa-search-card,
    .sa-benefits-grid,
    .sa-services-grid,
    .sa-steps,
    .sa-promise-grid,
    .sa-cities-grid {
        grid-template-columns: 1fr;
    }

    .sa-benefit + .sa-benefit::before {
        display: none;
    }

    .sa-section {
        padding: 65px 0;
    }

    .sa-promise {
        min-height: 280px;
        padding: 32px;
    }
}


/* =========================================================
   SAVIORALL HEADER EXTRAS
   ========================================================= */

.sa-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-right: 5px;

    color: var(--sa-gray);

    font-size: 12px;
    font-weight: 800;
}

.sa-language-switcher a {
    color: var(--sa-gray);
    transition: color .2s ease;
}

.sa-language-switcher a:hover,
.sa-language-switcher a.active {
    color: var(--sa-navy);
}

.sa-language-switcher a.active {
    position: relative;
}

.sa-language-switcher a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 3px;

    border-radius: 999px;

    background: var(--sa-lime);
}


@media (max-width: 800px) {

    .sa-language-switcher {
        margin-left: auto;
    }

    .sa-nav-actions {
        margin-left: auto;
    }

}


/* =========================================================
   SAVIORALL HOME V1
   ========================================================= */

.sa-home {
    overflow: hidden;
}


/* HERO FALLBACK */

.sa-hero-fallback {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(191,255,58,.55),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #F2F4F7 0%,
            #E4EAF0 100%
        );
}

.sa-hero-fallback-logo {
    width: min(38%, 210px);

    opacity: .92;
}


/* FLOATING HERO CARD */

.sa-hero-floating-card {
    position: absolute;
    z-index: 4;

    right: 28px;
    bottom: 28px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 16px;

    background: rgba(255,255,255,.90);

    box-shadow:
        0 16px 40px rgba(16,24,40,.14);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sa-floating-status {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--sa-lime);

    box-shadow:
        0 0 0 5px rgba(191,255,58,.2);
}

.sa-hero-floating-card div {
    display: flex;
    flex-direction: column;
}

.sa-hero-floating-card strong {
    color: var(--sa-navy);

    font-size: 14px;
}

.sa-hero-floating-card span:not(.sa-floating-status) {
    margin-top: 2px;

    color: var(--sa-gray);

    font-size: 11px;
    font-weight: 650;

    letter-spacing: .03em;
}


/* SERVICES BACKGROUND */

.sa-services-section {
    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #FAFBFC 100%
        );
}


/* SVG NORMALIZATION */

.sa-round-icon svg,
.sa-service-icon svg {
    fill: none;
    stroke: currentColor;
}

.sa-service-icon svg circle[fill="currentColor"] {
    stroke: none;
    fill: currentColor;
}


/* =========================================================
   LOCATION DISCOVERY
   ========================================================= */

.sa-location-discovery {
    background: #F8FAFC;
}

.sa-location-discovery-box {
    min-height: 430px;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    overflow: hidden;

    border: 1px solid var(--sa-border);
    border-radius: 28px;

    background: #FFFFFF;

    box-shadow: var(--sa-shadow-sm);
}

.sa-discovery-graphic {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(191,255,58,.25),
            transparent 33%
        ),
        #F2F4F7;
}

.sa-discovery-logo {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 5;

    width: 92px;
    height: 92px;

    display: grid;
    place-items: center;

    transform: translate(-50%, -50%);

    border-radius: 28px;

    background: white;

    box-shadow:
        0 18px 50px rgba(16,24,40,.17);
}

.sa-discovery-logo img {
    width: 64px;
    height: 64px;
}

.sa-discovery-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(16,24,40,.10);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.sa-discovery-ring--one {
    width: 235px;
    height: 235px;
}

.sa-discovery-ring--two {
    width: 390px;
    height: 390px;
}

.sa-discovery-dot {
    position: absolute;

    width: 18px;
    height: 18px;

    border: 4px solid white;
    border-radius: 50%;

    background: var(--sa-lime);

    box-shadow:
        0 5px 18px rgba(16,24,40,.18);
}

.sa-dot-1 {
    left: 19%;
    top: 25%;
}

.sa-dot-2 {
    right: 21%;
    top: 19%;
}

.sa-dot-3 {
    right: 17%;
    bottom: 25%;
}

.sa-dot-4 {
    left: 25%;
    bottom: 18%;
}

.sa-discovery-copy {
    padding: 55px;
}

.sa-discovery-copy h3 {
    max-width: 560px;

    margin: 6px 0 18px;

    color: var(--sa-navy);

    font-size: clamp(35px,4vw,52px);
    font-weight: 850;

    line-height: 1.03;
    letter-spacing: -2.5px;
}

.sa-discovery-copy p {
    max-width: 570px;

    margin: 0 0 28px;

    color: var(--sa-gray);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PROMISE
   ========================================================= */

.sa-kicker-dark {
    background: rgba(16,24,40,.10);
}

.sa-promise .sa-kicker {
    margin-bottom: 20px;
}


/* =========================================================
   PARTNER
   ========================================================= */

.sa-partner-section {
    padding-top: 25px;
}

.sa-partner-box {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;

    align-items: center;

    gap: 45px;

    padding: 50px 55px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 27px;

    color: white;

    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(191,255,58,.18),
            transparent 25%
        ),
        var(--sa-navy);
}

.sa-partner-box .sa-kicker {
    color: var(--sa-lime);
    background: rgba(191,255,58,.09);
}

.sa-partner-box h2 {
    max-width: 750px;

    margin: 3px 0 15px;

    color: white;

    font-size: clamp(34px,4vw,50px);

    line-height: 1.05;
    letter-spacing: -2.4px;
}

.sa-partner-box p {
    max-width: 700px;

    margin: 0;

    color: #98A2B3;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.sa-final-symbol {
    width: 70px;
    height: 70px;

    margin-bottom: 24px;
}

.sa-final-actions {
    margin-top: 30px;
}


/* =========================================================
   RESPONSIVE HOME
   ========================================================= */

@media (max-width: 1100px) {

    .sa-location-discovery-box {
        grid-template-columns: 1fr;
    }

    .sa-discovery-graphic {
        min-height: 350px;
    }

}


@media (max-width: 800px) {

    .sa-hero-floating-card {
        right: 16px;
        bottom: 16px;
    }

    .sa-location-discovery-box {
        border-radius: 22px;
    }

    .sa-discovery-graphic {
        min-height: 300px;
    }

    .sa-discovery-copy {
        padding: 32px 24px 38px;
    }

    .sa-partner-box {
        grid-template-columns: 1fr;

        padding: 35px 28px;
    }

    .sa-partner-box .sa-btn {
        width: 100%;
    }

    .sa-final-box {
        padding: 60px 24px;
    }

}


/* =========================================================
   SAVIORALL PREMIUM FULL WIDTH HERO
   ========================================================= */

.sa-hero-premium {
    padding: 18px 0 72px;
}

.sa-hero-container {
    width: min(calc(100% - 32px), 1480px);
}

.sa-hero-premium .sa-hero-shell {
    position: relative;

    min-height: 670px;

    overflow: hidden;

    border-radius: 30px;

    background: #E8EDF2;

    box-shadow:
        0 25px 70px rgba(16,24,40,.13);
}


/* SLIDES */

.sa-hero-slides {
    position: absolute;
    inset: 0;
}

.sa-hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity .9s ease;
}

.sa-hero-slide.is-active {
    opacity: 1;
}

.sa-hero-slide .sa-hero-photo {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.01);
}


/* OVERLAY */

.sa-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.98) 0%,
            rgba(255,255,255,.96) 22%,
            rgba(255,255,255,.72) 39%,
            rgba(255,255,255,.18) 57%,
            rgba(255,255,255,0) 72%
        );
}


/* COPY */

.sa-hero-copy {
    position: relative;

    z-index: 6;

    width: min(51%, 720px);

    min-height: 670px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        70px
        30px
        70px
        55px;
}

.sa-hero-kicker {
    color: #7CA900;

    background: transparent;

    padding: 0;

    margin-bottom: 22px;
}

.sa-hero-premium h1 {
    margin: 0;

    color: var(--sa-navy);

    font-size: clamp(55px, 5.9vw, 88px);

    line-height: .94;

    letter-spacing: -5px;

    font-weight: 880;
}

.sa-hero-premium .sa-hero-description {
    max-width: 550px;

    margin-top: 34px;

    color: var(--sa-dark);

    font-size: 17px;

    line-height: 1.65;
}

.sa-hero-premium .sa-hero-actions {
    margin-top: 28px;
}

.sa-hero-secondary {
    background: rgba(255,255,255,.70);

    backdrop-filter: blur(8px);
}


/* LIME GRAPHIC */

.sa-hero-premium .sa-lime-orbit {
    z-index: 4;

    left: auto;
    right: -120px;
    bottom: -245px;

    width: 520px;
    height: 520px;

    border-width: 68px;

    pointer-events: none;
}


/* FLOATING CARD */

.sa-hero-premium .sa-hero-floating-card {
    z-index: 8;

    right: 38px;
    bottom: 34px;
}


/* DOTS */

.sa-hero-dots {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 18px;

    display: flex;

    gap: 7px;

    transform: translateX(-50%);
}

.sa-hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 999px;

    background: rgba(255,255,255,.70);

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease;
}

.sa-hero-dot.is-active {
    width: 28px;

    background: var(--sa-lime);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .sa-hero-premium .sa-hero-shell {
        min-height: 620px;
    }

    .sa-hero-copy {
        width: 60%;

        min-height: 620px;

        padding-left: 42px;
    }

    .sa-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.98) 0%,
                rgba(255,255,255,.90) 35%,
                rgba(255,255,255,.30) 66%,
                transparent 82%
            );
    }

    .sa-hero-premium h1 {
        font-size: clamp(50px,7vw,70px);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .sa-hero-premium {
        padding-top: 10px;
        padding-bottom: 45px;
    }

    .sa-hero-container {
        width: calc(100% - 20px);
    }

    .sa-hero-premium .sa-hero-shell {
        min-height: 720px;

        border-radius: 23px;
    }

    .sa-hero-slide .sa-hero-photo {
        object-position: 62% center;
    }

    .sa-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.97) 0%,
                rgba(255,255,255,.88) 43%,
                rgba(255,255,255,.18) 67%,
                rgba(255,255,255,0) 82%
            );
    }

    .sa-hero-copy {
        width: 100%;

        min-height: auto;

        padding:
            46px
            24px
            0;

        justify-content: flex-start;
    }

    .sa-hero-premium h1 {
        max-width: 500px;

        font-size: clamp(48px,14vw,64px);

        letter-spacing: -3px;

        line-height: .96;
    }

    .sa-hero-premium .sa-hero-description {
        max-width: 420px;

        margin-top: 28px;

        font-size: 15px;

        line-height: 1.6;
    }

    .sa-hero-premium .sa-hero-actions {
        gap: 8px;

        margin-top: 22px;
    }

    .sa-hero-premium .sa-btn {
        min-height: 46px;

        padding:
            11px
            15px;
    }

    .sa-hero-premium .sa-lime-orbit {
        right: -140px;
        bottom: -150px;

        width: 400px;
        height: 400px;

        border-width: 52px;
    }

    .sa-hero-premium .sa-hero-floating-card {
        right: 16px;
        bottom: 28px;

        max-width: calc(100% - 32px);
    }

    .sa-hero-dots {
        left: 24px;
        bottom: 20px;

        transform: none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .sa-hero-premium .sa-hero-shell {
        min-height: 700px;
    }

    .sa-hero-premium h1 {
        font-size: 47px;
    }

    .sa-hero-premium .sa-hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .sa-hero-premium .sa-btn {
        width: auto;
    }

    .sa-hero-floating-card {
        padding: 11px 13px;
    }

}


/* =========================================================
   SAVIORALL FOOTER
   ========================================================= */

.sa-footer {
    position: relative;

    padding: 72px 0 28px;

    color: #FFFFFF;

    background:
        radial-gradient(
            circle at 86% 5%,
            rgba(191,255,58,.12),
            transparent 24%
        ),
        #101828;
}

.sa-footer-top {
    display: grid;

    grid-template-columns:
        minmax(270px, 1.7fr)
        1fr
        1fr
        1.2fr;

    gap: 54px;

    padding-bottom: 50px;
}

.sa-footer-brand {
    max-width: 370px;
}

.sa-footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 11px;
}

.sa-footer-logo img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

.sa-footer-logo > span {
    color: #FFFFFF;

    font-size: 28px;
    font-weight: 850;

    letter-spacing: -1.5px;
}

.sa-footer-logo > span span {
    color: var(--sa-lime);
}

.sa-footer-claim {
    margin-top: 18px;

    color: var(--sa-lime);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: .085em;

    text-transform: uppercase;
}

.sa-footer-brand p {
    max-width: 340px;

    margin: 14px 0 0;

    color: #98A2B3;

    font-size: 14px;
    line-height: 1.7;
}

.sa-footer-col {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.sa-footer-col h3 {
    margin: 4px 0 8px;

    color: #FFFFFF;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.sa-footer-col a {
    color: #98A2B3;

    font-size: 14px;
    line-height: 1.45;

    transition:
        color .2s ease,
        transform .2s ease;
}

.sa-footer-col a:hover {
    color: var(--sa-lime);

    transform: translateX(2px);
}


/* Partner CTA */

.sa-footer-partner {
    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 25px 28px;

    margin-bottom: 32px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 20px;

    background:
        rgba(255,255,255,.045);
}

.sa-footer-partner > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.sa-footer-partner strong {
    color: #FFFFFF;

    font-size: 17px;
}

.sa-footer-partner span {
    color: #98A2B3;

    font-size: 13px;
}


/* Bottom */

.sa-footer-bottom {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 24px;

    border-top:
        1px solid rgba(255,255,255,.10);
}

.sa-footer-bottom p {
    margin: 0;

    color: #667085;

    font-size: 12px;
}

.sa-footer-language {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #667085;

    font-size: 12px;
    font-weight: 850;
}

.sa-footer-language a {
    color: #98A2B3;
}

.sa-footer-language a:hover,
.sa-footer-language a.active {
    color: var(--sa-lime);
}


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .sa-footer-top {
        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 40px;
    }

    .sa-footer-brand {
        grid-column:
            1 / -1;

        max-width: 520px;
    }

}


@media (max-width: 720px) {

    .sa-footer {
        padding-top: 55px;
    }

    .sa-footer-top {
        grid-template-columns:
            repeat(2,1fr);

        gap: 38px 28px;
    }

    .sa-footer-brand {
        grid-column:
            1 / -1;
    }

    .sa-footer-partner {
        grid-template-columns: 1fr;

        align-items: stretch;
    }

    .sa-footer-partner .sa-btn {
        width: 100%;
    }

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

        align-items: flex-start;

        gap: 16px;
    }

}


@media (max-width: 480px) {

    .sa-footer-top {
        grid-template-columns: 1fr;
    }

    .sa-footer-logo > span {
        font-size: 24px;
    }

}

/* =========================================================
   SAVIORALL FOOTER - FINAL BRAND OVERRIDE
   ========================================================= */

.sa-footer {
    background: #101828 !important;
    color: #FFFFFF !important;
}

.sa-footer::before,
.sa-footer::after {
    background: none !important;
}

.sa-footer .sa-footer-logo > span {
    color: #FFFFFF !important;
}

.sa-footer .sa-footer-logo > span span,
.sa-footer .sa-footer-claim,
.sa-footer .sa-footer-language a.active {
    color: #BFFF3A !important;
}

.sa-footer .sa-footer-col h3,
.sa-footer .sa-footer-partner strong {
    color: #FFFFFF !important;
}

.sa-footer .sa-footer-brand p,
.sa-footer .sa-footer-col a,
.sa-footer .sa-footer-partner span {
    color: #98A2B3 !important;
}

.sa-footer .sa-footer-col a:hover {
    color: #BFFF3A !important;
}

.sa-footer .sa-footer-partner {
    background: rgba(255,255,255,.035) !important;
    border-color: rgba(255,255,255,.10) !important;
}

.sa-footer .sa-footer-bottom {
    border-color: rgba(255,255,255,.10) !important;
}

.sa-footer .sa-footer-bottom p {
    color: #98A2B3 !important;
}

.sa-footer .sa-btn-primary {
    background: #BFFF3A !important;
    color: #101828 !important;
    border-color: #BFFF3A !important;
}

.sa-footer .sa-btn-primary:hover {
    background: #FFFFFF !important;
    color: #101828 !important;
    border-color: #FFFFFF !important;
}


/* SAVIORALL NETWORK RADAR - FINAL BRAND STYLE */

.sa-discovery-graphic {
    background: #BFFF3A !important;
}

.sa-discovery-ring {
    border-color: #FFFFFF !important;
    opacity: 1 !important;
}

.sa-discovery-dot {
    background: #BFFF3A !important;
    border: 5px solid #FFFFFF !important;
    box-shadow: 0 5px 18px rgba(16, 24, 40, .14);
}

.sa-discovery-logo {
    background: #FFFFFF !important;
    box-shadow:
        0 18px 45px rgba(16, 24, 40, .12),
        0 0 60px rgba(255, 255, 255, .38);
}


/* =========================================================
   SAVIORALL HERO - WIDE RESPONSIVE LAYOUT
   ========================================================= */

/* Desktop: hero prácticamente de borde a borde */
.sa-hero-premium .sa-hero-container {
    width: calc(100% - 48px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Aprovechamos el ancho extra sin estirar demasiado la altura */
.sa-hero-premium .sa-hero-shell {
    width: 100% !important;
    min-height: clamp(650px, 42vw, 780px);
}

/* El texto mantiene una anchura controlada */
.sa-hero-premium .sa-hero-copy {
    width: min(46%, 760px);
    padding-left: clamp(48px, 6vw, 110px);
}

/* La fotografía aprovecha todo el nuevo espacio */
.sa-hero-premium .sa-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pantallas grandes */
@media (min-width: 1600px) {

    .sa-hero-premium .sa-hero-container {
        width: calc(100% - 64px) !important;
    }

    .sa-hero-premium .sa-hero-shell {
        min-height: 720px;
    }

}


/* Tablet */
@media (max-width: 1100px) {

    .sa-hero-premium .sa-hero-container {
        width: calc(100% - 32px) !important;
    }

    .sa-hero-premium .sa-hero-shell {
        min-height: 620px;
    }

    .sa-hero-premium .sa-hero-copy {
        width: 60%;
        padding-left: 42px;
    }

}


/* Móvil */
@media (max-width: 760px) {

    .sa-hero-premium .sa-hero-container {
        width: calc(100% - 20px) !important;
    }

    .sa-hero-premium .sa-hero-shell {
        min-height: 720px;
    }

    .sa-hero-premium .sa-hero-copy {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

}


/* Móvil pequeño */
@media (max-width: 430px) {

    .sa-hero-premium .sa-hero-container {
        width: calc(100% - 16px) !important;
    }

    .sa-hero-premium .sa-hero-shell {
        min-height: 700px;
        border-radius: 20px;
    }

}


/* =========================================================
   SAVIORALL BENEFITS - LIME BRAND PANEL
   ========================================================= */

.sa-benefits .sa-benefits-grid {
    background: #BFFF3A !important;
    border-color: #BFFF3A !important;
    box-shadow:
        0 18px 45px rgba(16, 24, 40, .08) !important;
}

/* Iconos */
.sa-benefits .sa-round-icon {
    background: #FFFFFF !important;
    color: #101828 !important;
    border: 0 !important;
    box-shadow:
        0 8px 24px rgba(16, 24, 40, .08);
}

.sa-benefits .sa-round-icon svg {
    stroke: #101828 !important;
}

/* Títulos */
.sa-benefits .sa-benefit h3 {
    color: #101828 !important;
}

/* Descripciones */
.sa-benefits .sa-benefit p {
    color: #344054 !important;
}

/* Separadores blancos */
.sa-benefits .sa-benefit + .sa-benefit {
    border-left-color: rgba(255, 255, 255, .95) !important;
}


/* TABLET */
@media (max-width: 900px) {

    .sa-benefits .sa-benefit + .sa-benefit {
        border-left-color: rgba(255, 255, 255, .95) !important;
    }

}


/* MÓVIL */
@media (max-width: 650px) {

    .sa-benefits .sa-benefits-grid {
        border-radius: 24px;
    }

    .sa-benefits .sa-benefit + .sa-benefit {
        border-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, .95) !important;
    }

    .sa-benefits .sa-benefit {
        padding-top: 28px;
        padding-bottom: 28px;
    }

}



/* =========================================================
   SAVIORALL MOBILE NAVIGATION V2
   ========================================================= */

.sa-mobile-menu-toggle,
.sa-mobile-menu {
    display: none;
}

.sa-language-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sa-language-flag {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
}

.sa-language-separator {
    opacity: .45;
}


/* =========================================================
   TABLET AND MOBILE HEADER
   ========================================================= */

@media (max-width: 1024px) {

    .sa-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .sa-header .sa-container {
        position: relative;
    }

    .sa-nav {
        position: relative;
        min-height: 76px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .sa-nav > .sa-menu,
    .sa-nav > .sa-nav-actions {
        display: none !important;
    }

    .sa-mobile-menu-toggle {
        width: 48px;
        height: 48px;

        display: inline-flex;
        flex: 0 0 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        margin-left: auto;
        padding: 0;

        border: 1px solid #E4E7EC;
        border-radius: 14px;

        color: #101828;
        background: #FFFFFF;

        box-shadow: 0 8px 24px rgba(16, 24, 40, .08);

        cursor: pointer;

        transition:
            background .22s ease,
            border-color .22s ease,
            transform .22s ease;
    }

    .sa-mobile-menu-toggle:hover {
        border-color: #BFFF3A;
        background: #F8FFE8;
    }

    .sa-mobile-menu-toggle span {
        width: 22px;
        height: 2px;

        display: block;

        border-radius: 999px;

        background: #101828;

        transform-origin: center;

        transition:
            transform .22s ease,
            opacity .18s ease;
    }

    .sa-mobile-menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .sa-mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .sa-mobile-menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .sa-mobile-menu {
        position: absolute;

        top: calc(100% + 10px);
        left: 0;
        right: 0;

        z-index: 1002;

        display: block;

        max-height: 0;
        overflow: hidden;

        padding: 0 20px;

        border: 1px solid transparent;
        border-radius: 22px;

        background: #FFFFFF;

        opacity: 0;
        visibility: hidden;

        box-shadow: 0 28px 70px rgba(16, 24, 40, .18);

        transform: translateY(-10px);

        transition:
            max-height .32s ease,
            padding .32s ease,
            opacity .22s ease,
            visibility .22s ease,
            transform .32s ease,
            border-color .22s ease;
    }

    .sa-mobile-menu.is-open {
        max-height: calc(100vh - 110px);
        overflow-y: auto;

        padding: 18px 20px 20px;

        border-color: #E4E7EC;

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .sa-mobile-menu__links {
        display: grid;
    }

    .sa-mobile-menu__links > a {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 51px;

        padding: 0 6px;

        border-bottom: 1px solid #EEF1F5;

        color: #101828;

        font-size: 16px;
        font-weight: 750;
    }

    .sa-mobile-menu__links > a::after {
        content: "→";

        color: #7DA900;

        font-size: 18px;
    }

    .sa-mobile-menu__links > a:hover {
        color: #5B7E00;
    }

    .sa-mobile-menu__language {
        margin-top: 17px;
        padding-top: 17px;

        border-top: 1px solid #E4E7EC;
    }

    .sa-mobile-menu__language > span {
        display: block;

        margin-bottom: 10px;

        color: #667085;

        font-size: 11px;
        font-weight: 800;

        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .sa-mobile-menu__language > div {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .sa-mobile-menu__language a {
        min-height: 47px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        padding: 10px 12px;

        border: 1px solid #E4E7EC;
        border-radius: 12px;

        color: #344054;
        background: #FFFFFF;

        font-size: 14px;
        font-weight: 750;
    }

    .sa-mobile-menu__language a.active {
        border-color: #BFFF3A;

        color: #101828;
        background: rgba(191, 255, 58, .18);
    }

    .sa-mobile-menu__account {
        margin-top: 16px;
    }

    .sa-mobile-account-button {
        min-height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;

        padding: 12px 18px;

        border-radius: 13px;

        color: #101828 !important;
        background: #BFFF3A;

        font-size: 15px;
        font-weight: 850;

        box-shadow: 0 12px 30px rgba(191, 255, 58, .18);
    }

    .sa-mobile-account-button:hover {
        background: #AEEB25;
    }

    body.sa-mobile-menu-open {
        overflow: hidden;
    }
}


/* =========================================================
   SMALL MOBILE ADJUSTMENTS
   ========================================================= */

@media (max-width: 520px) {

    .sa-nav {
        min-height: 70px;
    }

    .sa-brand-symbol {
        width: 38px;
        height: 38px;
    }

    .sa-brand-name {
        font-size: 23px;
    }

    .sa-mobile-menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;

        border-radius: 12px;
    }

    .sa-mobile-menu {
        left: -2px;
        right: -2px;

        border-radius: 18px;
    }

    .sa-mobile-menu__language > div {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   MOBILE HEADER — FINAL BRAND OVERRIDES
   ========================================================= */

@media (max-width: 1024px) {

    .sa-header .sa-mobile-menu-toggle,
    .sa-header .sa-mobile-menu-toggle:hover,
    .sa-header .sa-mobile-menu-toggle:focus,
    .sa-header .sa-mobile-menu-toggle.is-active {
        color: #101828 !important;
        background: #BFFF3A !important;
        border-color: #BFFF3A !important;
        box-shadow:
            0 10px 28px rgba(191, 255, 58, .26) !important;
    }

    .sa-header .sa-mobile-menu-toggle:hover {
        background: #AEEB25 !important;
        border-color: #AEEB25 !important;
    }

    .sa-header .sa-mobile-menu-toggle span {
        background: #101828 !important;
    }
}



/* =========================================================
   MOBILE LANGUAGE FLAGS — COMPACT
   ========================================================= */

@media (max-width: 1024px) {

    .sa-mobile-menu__language {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .sa-mobile-menu__language > span {
        margin: 0 !important;
    }

    .sa-mobile-menu__language > .sa-mobile-language-flags {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 8px !important;
    }

    .sa-mobile-language-flags a {
        width: 46px !important;
        height: 42px !important;
        min-height: 42px !important;

        display: grid !important;
        place-items: center !important;

        padding: 0 !important;

        border: 1px solid #E4E7EC !important;
        border-radius: 11px !important;

        background: #FFFFFF !important;

        font-size: 20px !important;
        line-height: 1 !important;
    }

    .sa-mobile-language-flags a.active {
        border-color: #BFFF3A !important;
        background: rgba(191, 255, 58, .20) !important;
        box-shadow:
            0 0 0 2px rgba(191, 255, 58, .12) !important;
    }

    .sa-mobile-language-flags a:hover {
        border-color: #BFFF3A !important;
        transform: translateY(-1px);
    }
}

