:root {
    --bs-ink: #07111f;
    --bs-ink-2: #0d2238;
    --bs-card: rgba(255, 255, 255, .075);
    --bs-line: rgba(255, 255, 255, .14);
    --bs-text: #f8fbff;
    --bs-muted: #a9bbce;
    --bs-cyan: #22d3ee;
    --bs-blue: #2499ff;
    --bs-gold: #f6bd35;
    --bs-pink: #f472b6;
    --bs-green: #31d98b;
    --bs-radius: 8px;
}

#global-loader {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    transition: opacity .5s ease, visibility .5s ease;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: grid;
    place-items: center;
    width: 250px;
    height: 250px;
}

.loader-logo {
    position: relative;
    z-index: 2;
    width: 130px;
    filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(34, 211, 238, .75));
    animation: logoBreathe 2s ease-in-out infinite;
}

.electric-ring {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 50%;
}

.ring-1 {
    border-top: 5px solid #22d3ee;
    box-shadow: 0 0 25px #22d3ee;
    animation: spinRay 1.5s linear infinite;
}

.ring-2 {
    inset: 25px;
    border-right: 5px solid #a855f7;
    box-shadow: 0 0 25px #a855f7;
    animation: spinRay 2s linear infinite reverse;
}

.ring-3 {
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    animation: spinRay 3s linear infinite;
}

.loader-sparks {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.l-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    animation: floatUpLoader linear infinite;
}

.l-spark-large {
    width: 12px;
    height: 12px;
    filter: blur(1px);
}

.l-spark.s1 {
    left: 10%;
    animation-duration: 4s;
    background: #22d3ee;
    box-shadow: 0 0 10px #22d3ee;
}

.l-spark.s2 {
    left: 30%;
    animation-duration: 6s;
    animation-delay: 1s;
    background: #a855f7;
}

.l-spark.s3 {
    left: 50%;
    animation-duration: 5s;
    animation-delay: 2s;
}

.l-spark.s4 {
    left: 70%;
    animation-duration: 7s;
    animation-delay: .5s;
    background: #22d3ee;
}

.l-spark.s5 {
    left: 90%;
    animation-duration: 5s;
    animation-delay: 1.5s;
    background: #f59e0b;
}

.l-spark.s6 {
    left: 15%;
    animation-duration: 8s;
    background: #22d3ee;
    box-shadow: 0 0 20px #22d3ee;
}

.l-spark.s7 {
    left: 45%;
    animation-duration: 10s;
    animation-delay: 2s;
    background: #a855f7;
    box-shadow: 0 0 20px #a855f7;
}

.l-spark.s8 {
    left: 76%;
    animation-duration: 9s;
    animation-delay: 1s;
    box-shadow: 0 0 15px #fff;
}

@keyframes spinRay {
    to {
        transform: rotate(360deg);
    }
}

@keyframes logoBreathe {
    50% {
        transform: scale(1.1);
        filter: brightness(0) invert(1) drop-shadow(0 0 32px rgba(34, 211, 238, .95));
    }
}

@keyframes floatUpLoader {
    0% {
        transform: translateY(110vh) scale(.5);
        opacity: 0;
    }

    20% {
        opacity: .8;
    }

    80% {
        opacity: .6;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--bs-text);
    background: #f6f8fb;
    font-family: Manrope, "Open Sans", system-ui, sans-serif;
}

button,
input,
textarea,
select {
    font: inherit;
}

.bs-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.bs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(34, 211, 238, .35);
    border-radius: var(--bs-radius);
    color: #d7fffb;
    background: rgba(34, 211, 238, .11);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--bs-radius);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.bs-btn--primary {
    color: #061423;
    background: linear-gradient(135deg, #8cf9f1, var(--bs-cyan));
    box-shadow: 0 18px 35px rgba(34, 211, 238, .24);
}

.bs-btn--ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
}

.bs-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-line);
    border-radius: var(--bs-radius);
    background: var(--bs-card);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
}

.bs-section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

    .bs-section-head h2 {
        margin: 16px 0 10px;
        color: #fff;
        font-size: clamp(2.1rem, 4vw, 3.6rem);
        font-weight: 900;
        line-height: 1.05;
    }

    .bs-section-head p {
        margin: 0;
        color: var(--bs-muted);
        line-height: 1.7;
    }

.bs-section-head--light h2 {
    color: #102033;
}

.bs-section-head--light p {
    color: #5d7084;
}

.bs-nav {
    position: fixed;
    z-index: 1000;
    top: 14px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 24px));
    min-height: 66px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(4, 17, 35, .82);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: top .24s ease, min-height .24s ease, background .24s ease, box-shadow .24s ease;
}

.bs-nav__brand img {
    width: auto;
    height: 44px;
}

.bs-nav.is-scrolled {
    top: 8px;
    min-height: 58px;
    background: rgba(3, 13, 31, .94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
}

    .bs-nav.is-scrolled .bs-nav__brand img {
        height: 38px;
    }

.bs-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .bs-nav__links a,
    .bs-nav__cta,
    .bs-nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 42px;
        padding: 0 11px;
        border: 0;
        border-radius: var(--bs-radius);
        color: #edf6ff;
        background: transparent;
        font-size: .82rem;
        font-weight: 800;
        text-decoration: none;
        cursor: pointer;
    }

        .bs-nav__links a:hover,
        .bs-nav__cta {
            background: rgba(255, 255, 255, .1);
        }

.bs-nav__counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(34, 166, 153, .45);
    border-radius: 999px;
    color: #fff;
    background: rgba(24, 48, 89, .62);
    box-shadow: 0 0 18px rgba(34, 166, 153, .14);
    font-size: .78rem;
    font-weight: 900;
}

    .bs-nav__counter i {
        color: var(--bs-cyan);
        text-shadow: 0 0 8px var(--bs-cyan);
    }

    .bs-nav__counter small {
        color: #b7c8d9;
        font-weight: 800;
    }

.bs-nav__mobile-status {
    display: none;
}

.bs-nav__cta {
    color: #061423;
    background: var(--bs-gold);
}

.bs-nav__toggle {
    display: none;
    width: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(.82);
        opacity: .55;
    }

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

    100% {
        transform: scale(.82);
        opacity: .55;
    }
}

@keyframes sparkVersionBlush {
    0%, 42% {
        transform: translateX(0) rotate(14deg);
        opacity: 0;
    }

    52% {
        opacity: .9;
    }

    72%, 100% {
        transform: translateX(380%) rotate(14deg);
        opacity: 0;
    }
}

.flash-update {
    animation: counterFlash .65s cubic-bezier(.2, .8, .2, 1);
}

@keyframes counterFlash {
    0% {
        color: #061423;
        text-shadow: 0 0 0 transparent;
        transform: scale(1);
    }

    35% {
        color: #fff;
        text-shadow: 0 0 18px var(--bs-cyan), 0 0 30px #fff;
        transform: scale(1.35);
    }

    100% {
        color: inherit;
        text-shadow: none;
        transform: scale(1);
    }
}

.bs-hero {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    background: #061423;
}

.bs-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transition: opacity .7s ease;
}

    .bs-hero__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

.bs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 8, 23, .9), rgba(2, 8, 23, .58) 52%, rgba(2, 8, 23, .3)), radial-gradient(circle at 77% 21%, rgba(246, 189, 53, .26), transparent 22%), radial-gradient(circle at 22% 78%, rgba(34, 211, 238, .24), transparent 26%);
}

.bs-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(10.4rem, auto) minmax(5.4rem, auto) auto;
    align-content: center;
    max-width: 920px;
    padding: 150px 0 100px;
}

.bs-hero h1 {
    max-width: 860px;
    margin: 20px 0 18px;
    color: #fff;
    font-size: clamp(2.35rem, 5.25vw, 5.15rem);
    font-weight: 900;
    line-height: 1;
    overflow-wrap: normal;
    text-wrap: balance;
}

.bs-hero p {
    max-width: 680px;
    margin: 0;
    color: #d7e4f0;
    font-size: 1.08rem;
    line-height: 1.75;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.bs-hero__actions,
.bs-offer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.bs-hero__rail {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 30px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #d9e8f7;
    font-weight: 900;
}

.bs-offer,
.bs-purpose,
.bs-services,
.bs-partners,
.bs-contact,
.bs-what {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
}

.bs-offer {
    color: #fff;
    background: linear-gradient(135deg, #04111f 0%, #09243b 48%, #123c4a 100%);
}

.bs-offer__layout,
.bs-contact__layout,
.bs-what__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 34px;
    align-items: center;
}

.bs-offer h2,
.bs-contact h2,
.bs-what h2 {
    max-width: 760px;
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.03;
}

.bs-offer p,
.bs-contact p,
.bs-what p {
    max-width: 720px;
    color: #d1deeb;
    line-height: 1.75;
}

.bs-offer__panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--bs-radius);
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(18px);
}

.bs-offer__panel-top,
.bs-footer__layout {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.bs-offer__price,
.bs-offer__mini {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--bs-radius);
    background: rgba(3, 14, 32, .45);
}

    .bs-offer__price small,
    .bs-offer__mini span {
        display: block;
        color: #b7c6d6;
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .bs-offer__price strong {
        display: block;
        margin-top: 4px;
        color: var(--bs-gold);
        font-size: 3.2rem;
        line-height: 1;
    }

    .bs-offer__mini strong {
        display: block;
        margin-top: 6px;
        font-size: 1.25rem;
    }

.bs-offer__qr {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--bs-radius);
    color: #052039;
    background: rgba(255, 255, 255, .94);
}

    .bs-offer__qr img {
        width: 92px;
        height: 92px;
        border-radius: 6px;
    }

.bs-purpose,
.bs-services,
.bs-partners,
.bs-what {
    background: radial-gradient(circle at 11% 14%, rgba(34, 211, 238, .16), transparent 25%), radial-gradient(circle at 86% 74%, rgba(246, 189, 53, .13), transparent 25%), linear-gradient(145deg, #07111f, #10213a 54%, #071a25);
}

.bs-purpose__grid,
.bs-services__grid,
.bs-method__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bs-purpose__card,
.bs-service,
.bs-partner {
    padding: 28px;
}

    .bs-purpose__card > i,
    .bs-service__top > i,
    .bs-partner > i {
        display: grid;
        place-items: center;
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
        border-radius: var(--bs-radius);
        background: rgba(255, 255, 255, .08);
        font-size: 1.45rem;
    }

.theme-cyan > i,
.theme-blue .bs-service__top > i {
    color: var(--bs-cyan);
}

.theme-violet > i,
.theme-pink .bs-service__top > i {
    color: var(--bs-pink);
}

.theme-gold > i,
.theme-gold .bs-service__top > i {
    color: var(--bs-gold);
}

.bs-purpose__card h3,
.bs-service h3,
.bs-partner h3,
.bs-method__step h3 {
    color: #fff;
    font-weight: 900;
}

.bs-purpose__card p,
.bs-service p,
.bs-partner p,
.bs-method__step p {
    color: var(--bs-muted);
    line-height: 1.65;
}

.bs-purpose__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

    .bs-purpose__tags span {
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 0 0.62rem;
        color: #dffaff;
        border: 1px solid rgba(34, 211, 238, .16);
        border-radius: 999px;
        background: rgba(255, 255, 255, .06);
        font-size: 0.68rem;
        font-weight: 850;
    }

.bs-method {
    padding: 92px 0;
    background: #f6f8fb;
}

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

.bs-method__step {
    min-height: 260px;
    padding: 26px;
    border: 1px solid #dbe4ee;
    border-radius: var(--bs-radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 35, 55, .08);
}

    .bs-method__step span {
        color: var(--bs-blue);
        font-weight: 900;
    }

    .bs-method__step i {
        display: block;
        margin: 18px 0;
        color: var(--bs-gold);
        font-size: 1.6rem;
    }

    .bs-method__step h3 {
        color: #102033;
    }

.bs-service__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

    .bs-service__top span,
    .bs-partner__badge {
        padding: 6px 10px;
        border-radius: 999px;
        color: #061423;
        background: var(--bs-gold);
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

.bs-service__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

    .bs-service__items button {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 36px;
        padding: 0 12px;
        border: 1px solid rgba(255, 255, 255, .13);
        border-radius: 999px;
        color: #dce8f5;
        background: rgba(255, 255, 255, .055);
        font-size: .78rem;
        font-weight: 800;
    }

.bs-partners__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 18px;
}

.bs-partner {
    border-top: 5px solid var(--partner-color);
}

    .bs-partner > i {
        color: var(--partner-color);
    }

    .bs-partner strong,
    .bs-partner small,
    .bs-partner a {
        display: block;
    }

    .bs-partner strong {
        color: #fff;
        text-transform: uppercase;
    }

    .bs-partner small {
        color: #bdcad9;
        line-height: 1.55;
    }

    .bs-partner a {
        margin-top: 18px;
        color: var(--partner-color);
        font-weight: 900;
        text-decoration: none;
    }

.bs-what__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0;
}

    .bs-what__features span {
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--bs-radius);
        color: #dbe8f5;
        background: rgba(255, 255, 255, .06);
        font-weight: 800;
    }

.bs-what__visual {
    display: grid;
    gap: 14px;
}

.bs-what__file,
.bs-what__cloud,
.bs-what__engine {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--bs-radius);
    background: rgba(255, 255, 255, .075);
}

    .bs-what__file i,
    .bs-what__cloud i,
    .bs-what__engine i {
        color: var(--bs-cyan);
        font-size: 2rem;
    }

    .bs-what__file strong,
    .bs-what__cloud strong {
        display: block;
        margin-top: 12px;
        color: #fff;
    }

    .bs-what__file small,
    .bs-what__cloud small {
        color: var(--bs-muted);
    }

.bs-what__engine {
    text-align: center;
}

.bs-contact {
    color: #fff;
    background: radial-gradient(circle at 15% 80%, rgba(49, 217, 139, .18), transparent 25%), linear-gradient(135deg, #102033, #07111f);
}

.bs-offer-page {
    min-height: 100vh;
    padding: 150px 0 90px;
    color: #fff;
    background: radial-gradient(circle at 82% 18%, rgba(246, 189, 53, .18), transparent 24%), radial-gradient(circle at 18% 78%, rgba(34, 211, 238, .18), transparent 24%), linear-gradient(135deg, #07111f, #12324a);
}

.bs-offer-page__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: 34px;
    align-items: start;
}

.bs-offer-page h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.02;
}

.bs-offer-page p {
    color: #d7e4f0;
    line-height: 1.75;
}

.bs-quote {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--bs-radius);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.bs-quote__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.bs-quote__service {
    display: grid;
    grid-template-columns: 18px 32px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 68px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--bs-radius);
    background: rgba(3, 14, 32, .35);
    color: #fff;
}

    .bs-quote__service i {
        color: var(--bs-gold);
    }

    .bs-quote__service span {
        display: grid;
        gap: 2px;
    }

    .bs-quote__service small {
        color: var(--bs-muted);
    }

.bs-contact-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--bs-radius);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.bs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .bs-form-grid label,
    .bs-consent {
        display: grid;
        gap: 7px;
        color: #e8f2fb;
        font-size: .82rem;
        font-weight: 800;
    }

    .bs-form-grid .span-2 {
        grid-column: 1 / -1;
    }

    .bs-form-grid input,
    .bs-form-grid textarea,
    .bs-form-grid select {
        width: 100%;
        min-height: 45px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: var(--bs-radius);
        color: #fff;
        background: rgba(3, 14, 32, .45);
        padding: 10px 12px;
    }

    .bs-form-grid textarea {
        resize: vertical;
    }

.validation-message {
    color: #ffd46c;
    font-size: .74rem;
}

.bs-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    color: #cddceb;
}

.bs-contact-card__submit {
    width: 100%;
}

.bs-contact-card__result {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: var(--bs-radius);
}

    .bs-contact-card__result.is-ok {
        color: #062117;
        background: #8ff5c0;
    }

    .bs-contact-card__result.is-error {
        color: #fff;
        background: #d94141;
    }

.bs-footer {
    padding: 32px 0;
    color: #dbe8f6;
    background: #030b16;
}

    .bs-footer img {
        width: 152px;
    }

    .bs-footer p {
        max-width: 520px;
        margin: 10px 0 0;
        color: #91a6bd;
    }

.bs-footer__layout > div:last-child {
    display: grid;
    align-content: center;
    justify-items: end;
}

.bs-analytics-pill {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 32px);
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    background: rgba(4, 17, 35, .84);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
    font-size: .78rem;
    font-weight: 900;
}

.bs-service-modal {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: none;
    place-items: center;
    padding: 20px;
}

    .bs-service-modal.is-open {
        display: grid;
    }

.bs-service-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 9, 18, .75);
    backdrop-filter: blur(8px);
}

.bs-service-modal__panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: min(760px, 92vh);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--bs-radius);
    color: #fff;
    background: #102033;
    box-shadow: 0 35px 95px rgba(0, 0, 0, .45);
}

.bs-service-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.bs-service-modal__panel > i {
    color: var(--bs-cyan);
    font-size: 2.2rem;
}

.bs-service-modal__panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.bs-service-modal__panel li {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--bs-radius);
    color: #dbe8f6;
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 980px) {
    .bs-nav__toggle {
        display: inline-flex;
    }

    .bs-nav__links {
        position: fixed;
        top: 78px;
        right: 12px;
        left: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 18px;
        background: rgba(4, 17, 35, .96);
    }

    .bs-nav__mobile-status {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        padding: 16px;
        border: 1px solid rgba(34, 211, 238, .28);
        border-left: 4px solid var(--bs-cyan);
        border-radius: var(--bs-radius);
        background: linear-gradient(145deg, rgba(15, 23, 42, .95), rgba(30, 41, 59, .9));
        box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
    }

        .bs-nav__mobile-status small,
        .bs-nav__mobile-status strong {
            display: block;
        }

        .bs-nav__mobile-status small {
            color: var(--bs-cyan);
            font-size: .66rem;
            font-weight: 900;
            letter-spacing: .08em;
        }

        .bs-nav__mobile-status strong {
            color: #fff;
            font-size: .86rem;
        }

        .bs-nav__mobile-status span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--bs-radius);
            background: #000;
            color: #fff;
            font-family: Consolas, monospace;
            font-weight: 900;
            letter-spacing: .08em;
        }

        .bs-nav__mobile-status i {
            color: var(--bs-cyan);
        }

    .bs-nav__counter {
        display: none;
    }

    .bs-nav__links.is-open {
        display: flex;
    }

    .bs-nav__links a,
    .bs-nav__cta {
        justify-content: flex-start;
        width: 100%;
    }

    .bs-offer__layout,
    .bs-contact__layout,
    .bs-what__layout,
    .bs-offer-page__layout {
        grid-template-columns: 1fr;
    }

    .bs-purpose__grid,
    .bs-services__grid,
    .bs-method__grid,
    .bs-partners__track {
        grid-template-columns: 1fr;
    }
}

/* Motion, particles and WebForms visual polish */
.bs-spark-field {
    --spark-a: #22d3ee;
    --spark-b: #8b5cf6;
    --spark-c: #f6bd35;
    --spark-d: #31d98b;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bs-spark-field--gold {
    --spark-a: #f6bd35;
    --spark-b: #22d3ee;
    --spark-c: #fff4c2;
}

.bs-spark-field--violet {
    --spark-a: #8b5cf6;
    --spark-b: #22d3ee;
    --spark-c: #f472b6;
}

.bs-spark-field--partners,
.bs-spark-field--footer {
    --spark-a: #22d3ee;
    --spark-b: #8b5cf6;
    --spark-c: #f59e0b;
    --spark-d: #10b981;
}

.bs-spark-field--contact {
    --spark-a: rgba(34, 166, 153, .65);
    --spark-b: rgba(24, 48, 89, .42);
    --spark-c: rgba(246, 189, 53, .48);
}

.bs-spark {
    position: absolute;
    bottom: -64px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--spark-a);
    opacity: 0;
    filter: blur(1.5px);
    box-shadow: 0 0 28px var(--spark-a);
    animation: bsSparkFloat linear infinite;
}

    .bs-spark:nth-child(2n) {
        background: var(--spark-b);
        box-shadow: 0 0 32px var(--spark-b);
    }

    .bs-spark:nth-child(3n) {
        background: var(--spark-c);
        box-shadow: 0 0 38px var(--spark-c);
    }

    .bs-spark:nth-child(4n) {
        background: var(--spark-d);
        box-shadow: 0 0 30px var(--spark-d);
    }

    .bs-spark:nth-child(1) {
        left: 8%;
        width: 18px;
        height: 18px;
        animation-duration: 20s;
    }

    .bs-spark:nth-child(2) {
        left: 18%;
        width: 10px;
        height: 10px;
        animation-duration: 25s;
        animation-delay: 2s;
    }

    .bs-spark:nth-child(3) {
        left: 29%;
        width: 24px;
        height: 24px;
        animation-duration: 22s;
        animation-delay: 5s;
    }

    .bs-spark:nth-child(4) {
        left: 39%;
        width: 13px;
        height: 13px;
        animation-duration: 28s;
        animation-delay: 1s;
    }

    .bs-spark:nth-child(5) {
        left: 49%;
        width: 9px;
        height: 9px;
        animation-duration: 24s;
        animation-delay: 8s;
    }

    .bs-spark:nth-child(6) {
        left: 58%;
        width: 16px;
        height: 16px;
        animation-duration: 26s;
        animation-delay: 10s;
    }

    .bs-spark:nth-child(7) {
        left: 67%;
        width: 28px;
        height: 28px;
        animation-duration: 30s;
        animation-delay: 3s;
    }

    .bs-spark:nth-child(8) {
        left: 77%;
        width: 12px;
        height: 12px;
        animation-duration: 21s;
        animation-delay: 6s;
    }

    .bs-spark:nth-child(9) {
        left: 88%;
        width: 20px;
        height: 20px;
        animation-duration: 27s;
        animation-delay: 4s;
    }

    .bs-spark:nth-child(10) {
        left: 94%;
        width: 8px;
        height: 8px;
        animation-duration: 18s;
        animation-delay: 9s;
    }

    .bs-spark:nth-child(11) {
        left: 13%;
        width: 7px;
        height: 7px;
        animation-duration: 32s;
        animation-delay: 12s;
    }

    .bs-spark:nth-child(12) {
        left: 72%;
        width: 18px;
        height: 18px;
        animation-duration: 23s;
        animation-delay: 14s;
    }

    .bs-spark:nth-child(13) {
        left: 44%;
        width: 11px;
        height: 11px;
        animation-duration: 29s;
        animation-delay: 7s;
    }

    .bs-spark:nth-child(14) {
        left: 83%;
        width: 15px;
        height: 15px;
        animation-duration: 34s;
        animation-delay: 15s;
    }

@keyframes bsSparkFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(.45);
        opacity: 0;
    }

    5% {
        opacity: .92;
        transform: translate3d(0, -4vh, 0) scale(1.18);
    }

    12% {
        opacity: .38;
        transform: translate3d(18px, -12vh, 0) scale(.82);
    }

    45% {
        opacity: .72;
    }

    62% {
        opacity: .94;
        transform: translate3d(-20px, -72vh, 0) scale(1.28);
    }

    100% {
        transform: translate3d(24px, -125vh, 0) scale(.5);
        opacity: 0;
    }
}

.bs-hero > .bs-spark-field {
    z-index: 1;
}

.bs-hero__content,
.bs-hero__rail,
.bs-offer > .bs-container,
.bs-purpose > .bs-container,
.bs-services > .bs-container,
.bs-partners > .bs-container,
.bs-what > .bs-container,
.bs-contact > .bs-container,
.bs-offer-page > .bs-container,
.bs-footer > .bs-container {
    position: relative;
    z-index: 2;
}

.bs-hero__slide {
    transform: scale(1.025);
}

    .bs-hero__slide.is-active {
        transform: scale(1);
        transition: opacity .8s ease, transform 5.5s ease;
    }

.reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: opacity .72s cubic-bezier(.22, .8, .26, 1), transform .72s cubic-bezier(.22, .8, .26, 1), filter .72s ease;
    will-change: opacity, transform, filter;
}

html.bs-reveal-ready .reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 28px, 0);
}

html.bs-reveal-ready .reveal-left {
    transform: translate3d(-36px, 18px, 0);
}

html.bs-reveal-ready .reveal-right {
    transform: translate3d(36px, 18px, 0);
}

html.bs-reveal-ready .reveal-scale {
    transform: translate3d(0, 24px, 0) scale(.96);
}

html.bs-reveal-ready .reveal.is-visible,
html.bs-reveal-ready .reveal.show,
.reveal.is-visible,
.reveal.show {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-stagger > .reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal-stagger > .reveal:nth-child(3) {
    transition-delay: .16s;
}

.reveal-stagger > .reveal:nth-child(4) {
    transition-delay: .24s;
}

.reveal-stagger > .reveal:nth-child(5) {
    transition-delay: .32s;
}

.reveal-stagger > .reveal:nth-child(6) {
    transition-delay: .4s;
}

.bs-card,
.bs-method__step,
.bs-offer__panel,
.bs-quote,
.bs-contact__cta,
.bs-what__file,
.bs-what__cloud,
.bs-what__engine {
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

    .bs-card::before,
    .bs-offer__panel::before,
    .bs-quote::before,
    .bs-contact__cta::before,
    .bs-method__step::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -130%;
        width: 55%;
        content: "";
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
        transform: skewX(-22deg);
        transition: left .65s ease;
        pointer-events: none;
    }

    .bs-card:hover,
    .bs-method__step:hover,
    .bs-offer__panel:hover,
    .bs-quote:hover,
    .bs-contact__cta:hover,
    .bs-what__file:hover,
    .bs-what__cloud:hover,
    .bs-what__engine:hover {
        transform: translateY(-8px);
        border-color: rgba(34, 211, 238, .42);
        box-shadow: 0 30px 80px rgba(2, 8, 23, .28);
    }

        .bs-card:hover::before,
        .bs-offer__panel:hover::before,
        .bs-quote:hover::before,
        .bs-contact__cta:hover::before,
        .bs-method__step:hover::before {
            left: 145%;
        }

.bs-method {
    position: relative;
    overflow: hidden;
}

    .bs-method::before {
        position: absolute;
        inset: 0;
        content: "";
        opacity: .72;
        background-image: linear-gradient(rgba(16, 32, 51, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 32, 51, .055) 1px, transparent 1px);
        background-size: 46px 46px;
        mask-image: linear-gradient(to bottom, #000, transparent 86%);
        pointer-events: none;
    }

    .bs-method > .bs-container {
        position: relative;
        z-index: 2;
    }

.bs-service__items button,
.bs-quote__service,
.bs-footer a,
.bs-footer button,
.bs-contact__trigger,
.bs-service-modal__close,
.bs-contact-modal__close {
    transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .bs-service__items button:hover,
    .bs-quote__service:hover,
    .bs-footer a:hover,
    .bs-footer button:hover,
    .bs-contact__trigger:hover {
        transform: translateY(-3px);
    }

    .bs-service__items button:hover {
        border-color: rgba(34, 211, 238, .42);
        color: #fff;
        background: rgba(34, 211, 238, .12);
        box-shadow: 0 12px 25px rgba(34, 211, 238, .12);
    }

    .bs-quote__service:has(input:checked) {
        border-color: var(--bs-cyan);
        background: rgba(34, 211, 238, .12);
        box-shadow: 0 0 0 1px rgba(34, 211, 238, .16), 0 14px 30px rgba(34, 211, 238, .12);
    }

.bs-service-modal {
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .26s ease, visibility 0s linear .26s;
}

    .bs-service-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

.bs-service-modal__panel {
    transform: translateY(18px) scale(.96);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.bs-service-modal.is-open .bs-service-modal__panel {
    transform: none;
}

.bs-service-modal__close:hover,
.bs-contact-modal__close:hover {
    color: #fff;
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.bs-contact-modal {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility 0s linear .28s;
}

    .bs-contact-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

.bs-contact-modal__window {
    transform: translateY(22px) scale(.97);
    transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}

.bs-contact-modal.is-open .bs-contact-modal__window {
    transform: none;
}

.bs-contact__trigger:hover {
    box-shadow: 0 18px 46px rgba(34, 166, 153, .42);
}

.bs-monitor {
    animation: bsMonitorFloat 5s ease-in-out infinite;
}

@keyframes bsMonitorFloat {
    50% {
        transform: perspective(1000px) rotateY(5deg) translateY(-8px);
    }
}

.bs-footer {
    position: relative;
    overflow: hidden;
    padding: 74px 0 28px;
    color: #c7d6e8;
    background: radial-gradient(circle at 12% 0, rgba(34, 211, 238, .18), transparent 28%), radial-gradient(circle at 88% 88%, rgba(246, 189, 53, .12), transparent 30%), linear-gradient(160deg, #020817 0%, #06152d 52%, #020817 100%);
}

    .bs-footer::before {
        position: absolute;
        inset: 0;
        content: "";
        opacity: .38;
        background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
        pointer-events: none;
    }

.bs-footer__layout {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, .75fr));
    gap: 34px;
    align-items: start;
}

.bs-footer__brand,
.bs-footer__col {
    position: relative;
    min-width: 0;
}

.bs-footer__logo {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

    .bs-footer__logo img,
    .bs-footer img {
        width: 176px;
        height: auto;
        filter: drop-shadow(0 0 18px rgba(34, 211, 238, .22));
    }

.bs-footer__brand p {
    max-width: 470px;
    margin: 20px 0;
    color: #93a8c1;
    line-height: 1.75;
}

.bs-footer__status {
    display: grid;
    gap: 9px;
    margin: 22px 0;
}

    .bs-footer__status span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
        padding: 9px 12px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 999px;
        color: #d7e8f9;
        background: rgba(255, 255, 255, .055);
        font-size: .78rem;
        font-weight: 900;
    }

    .bs-footer__status i,
    .bs-footer__pulse i {
        color: var(--bs-cyan);
    }

.bs-footer__cta,
.bs-footer__contact button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #061423;
    background: linear-gradient(135deg, #8cf9f1, var(--bs-cyan));
    box-shadow: 0 16px 36px rgba(34, 211, 238, .22);
    font-weight: 900;
    cursor: pointer;
}

.bs-footer__col h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bs-footer__col a,
.bs-footer__contact button {
    width: fit-content;
}

    .bs-footer__col a,
    .bs-footer__contact button:not(.bs-footer__cta) {
        display: flex;
        align-items: center;
        gap: 9px;
        margin: 0 0 11px;
        border: 0;
        color: #91a6bd;
        background: transparent;
        font-size: .84rem;
        font-weight: 800;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
    }

        .bs-footer__col a:hover,
        .bs-footer__contact button:not(.bs-footer__cta):hover {
            color: #fff;
        }

.bs-footer__contact > a,
.bs-footer__contact > button:not(.bs-footer__cta) {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
}

    .bs-footer__contact > a:hover,
    .bs-footer__contact > button:not(.bs-footer__cta):hover {
        border-color: rgba(34, 211, 238, .35);
        background: rgba(34, 211, 238, .09);
    }

.bs-footer__social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

    .bs-footer__social a {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, .11);
        border-radius: 8px;
        color: #dce8f5;
        background: rgba(255, 255, 255, .055);
    }

        .bs-footer__social a:hover {
            color: #061423;
            background: var(--bs-cyan);
            box-shadow: 0 0 24px rgba(34, 211, 238, .28);
        }

.bs-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #7890aa;
    font-size: .78rem;
    font-weight: 800;
}

    .bs-footer__bottom > span:not(.bs-footer__version):not(.bs-footer__pulse) {
        display: none;
    }

.bs-footer__version {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    width: fit-content;
    min-height: 34px;
    padding: 0.34rem 0.78rem;
    overflow: hidden;
    color: #ecfeff;
    border: 1px solid rgba(103, 232, 249, .24);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8, 47, 73, .72), rgba(15, 23, 42, .84));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 28px rgba(34, 211, 238, .12);
    font-size: .75rem;
    font-weight: 950;
}

    .bs-footer__version::after {
        position: absolute;
        inset: -40% auto -40% -30%;
        width: 42%;
        content: "";
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
        filter: blur(1px);
        transform: rotate(14deg);
        animation: sparkVersionBlush 3.8s ease-in-out infinite;
    }

    .bs-footer__version i {
        color: #67e8f9;
        text-shadow: 0 0 14px rgba(103, 232, 249, .68);
    }

.bs-footer__pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .bs-footer__pulse i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10b981;
        box-shadow: 0 0 12px #10b981;
        animation: livePulse 1.8s infinite;
    }

@media (max-width: 980px) {
    .bs-footer__layout {
        grid-template-columns: 1fr 1fr;
    }

    .bs-footer__brand,
    .bs-footer__contact {
        grid-column: 1 / -1;
    }

    .bs-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .bs-hero__slide {
        background-position: center;
    }
}

@media (max-width: 620px) {
    .bs-spark {
        width: 8px;
        height: 8px;
        filter: blur(1px);
    }

    .bs-hero {
        min-height: 700px;
    }

    .bs-hero__content {
        padding: 132px 0 84px;
    }

    .bs-hero h1,
    .bs-offer h2,
    .bs-what h2,
    .bs-contact__cta h2,
    .bs-offer-page h1 {
        overflow-wrap: anywhere;
    }

    .bs-contact__cta {
        padding: 38px 20px;
        border-radius: 18px;
    }

    .bs-contact__trigger,
    .bs-footer__cta,
    .bs-footer__contact > a,
    .bs-footer__contact > button:not(.bs-footer__cta) {
        width: 100%;
    }

    .bs-contact-modal__right {
        padding: 24px 18px;
    }

    .bs-contact-modal__head {
        padding-right: 46px;
    }

    .bs-footer {
        padding-top: 58px;
    }

    .bs-footer__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bs-footer__logo img,
    .bs-footer img {
        width: 154px;
    }

    .bs-footer__status span {
        width: 100%;
    }
}

@keyframes bsRevealIn {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translate3d(0, 22px, 0);
    }

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

.reveal {
    animation: bsRevealIn .72s cubic-bezier(.22, .8, .26, 1) both;
}

.reveal-stagger > .reveal:nth-child(2) {
    animation-delay: .08s;
}

.reveal-stagger > .reveal:nth-child(3) {
    animation-delay: .16s;
}

.reveal-stagger > .reveal:nth-child(4) {
    animation-delay: .24s;
}

.reveal-stagger > .reveal:nth-child(5) {
    animation-delay: .32s;
}

.reveal-stagger > .reveal:nth-child(6) {
    animation-delay: .4s;
}

html.bs-reveal-ready .reveal {
    opacity: 1;
    filter: none;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .bs-spark,
    .reveal,
    .bs-monitor,
    .bs-hero__slide,
    .bs-footer__pulse i {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/* Loader logo fix: preserve BitSpark colors instead of forcing the asset to white */
.loader-logo {
    width: 148px;
    max-height: 148px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(34, 211, 238, .55)) drop-shadow(0 0 38px rgba(246, 189, 53, .16));
    animation: logoBreatheColor 2s ease-in-out infinite;
}

@keyframes logoBreatheColor {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 18px rgba(34, 211, 238, .45)) drop-shadow(0 0 28px rgba(246, 189, 53, .14));
    }

    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 30px rgba(34, 211, 238, .82)) drop-shadow(0 0 44px rgba(246, 189, 53, .26));
    }
}

/* Original WebForms-inspired timeline */
.bs-method--timeline {
    color: #102033;
    background: radial-gradient(circle at 15% 8%, rgba(34, 211, 238, .16), transparent 27%), radial-gradient(circle at 90% 78%, rgba(255, 0, 85, .08), transparent 24%), linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.timeline-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 10px;
}

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 10;
    width: 60px;
    transform: translateX(-50%);
}

.timeline-line-bg,
.timeline-line-progress {
    position: absolute;
    left: 50%;
    border-radius: 4px;
    transform: translateX(-50%);
}

.timeline-line-bg {
    top: 0;
    bottom: 0;
    width: 4px;
    background: #334155;
}

.timeline-line-progress {
    top: 0;
    width: 6px;
    height: 0%;
    background: linear-gradient(180deg, #10b981 0%, #10b981 60%, #ff0055 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, .6);
    transition: height .1s linear;
}

.timeline-bubble {
    position: absolute;
    left: 50px;
    z-index: 20;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    color: #fff;
    background: rgba(15, 23, 42, .95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    font-size: .95rem;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-30px) scale(.8);
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
}

    .timeline-bubble::before {
        position: absolute;
        top: 50%;
        left: -8px;
        content: "";
        border-top: 8px solid transparent;
        border-right: 8px solid #10b981;
        border-bottom: 8px solid transparent;
        transform: translateY(-50%);
    }

    .timeline-bubble.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
    }

.bubble-green {
    border-left: 5px solid #10b981;
}

.bubble-red {
    right: 50px;
    left: auto;
    border-right: 5px solid #ff0055;
    border-left: 1px solid rgba(255, 0, 85, .3);
    text-align: right;
}

    .bubble-red::before {
        right: -8px;
        left: auto;
        border-right: none;
        border-left: 8px solid #ff0055;
    }

.line-hotspot {
    position: absolute;
    left: 50%;
    z-index: 15;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    cursor: crosshair;
    transform: translateX(-50%);
}

.hotspot-core {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: inherit;
    background: currentColor;
    box-shadow: 0 0 15px currentColor;
    transition: .3s;
}

.line-hotspot:hover .hotspot-core {
    transform: scale(1.8);
    background: #fff;
    box-shadow: 0 0 20px #fff;
}

.timeline-row {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    opacity: .35;
    filter: blur(2px);
    transform: scale(.95);
    transition: opacity .5s ease, filter .5s ease, transform .5s ease;
}

    .timeline-row.active {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }

.timeline-content,
.timeline-empty {
    width: 45%;
    padding: 0 50px;
}

    .timeline-content.text-end {
        text-align: right;
    }

    .timeline-content.text-start {
        text-align: left;
    }

.timeline-dot-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    width: 10%;
}

.timeline-dot {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 4px solid #e2e8f0;
    border-radius: 50%;
    color: #cbd5e1;
    background: #fff;
    font-size: 1.8rem;
    transition: all .4s ease;
}

.glass-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .glass-card:hover {
        transform: translateY(-5px);
    }

.step-number-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    color: rgba(0, 0, 0, .035);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.glass-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 900;
}

.glass-card p {
    margin: 0;
    color: #65758a;
    line-height: 1.68;
}

.style-green .glass-card {
    border-bottom: 4px solid #10b981;
}

.style-green .text-gradient {
    color: #10b981;
    background: linear-gradient(90deg, #064e3b, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style-green .timeline-dot {
    border-color: #10b981;
    color: #10b981;
}

.timeline-row.active.style-green .timeline-dot {
    color: #fff;
    background: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, .6);
    transform: scale(1.15);
}

.timeline-row.active.style-green .glass-card {
    border-color: rgba(16, 185, 129, .4);
    box-shadow: 0 15px 50px rgba(16, 185, 129, .15);
}

.style-red .glass-card {
    border-bottom: 4px solid #ff0055;
}

.style-red .text-gradient {
    color: #ff0055;
    background: linear-gradient(90deg, #881337, #ff0055);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style-red .timeline-dot {
    border-color: #ff0055;
    color: #ff0055;
}

.timeline-row.active.style-red .timeline-dot {
    color: #fff;
    background: #ff0055;
    box-shadow: 0 0 40px rgba(255, 0, 85, .8);
    transform: scale(1.2);
    animation: shakeIcon 3s infinite;
}

.timeline-row.active.style-red .glass-card {
    border-color: rgba(255, 0, 85, .5);
    box-shadow: 0 15px 50px rgba(255, 0, 85, .2);
}

.spark-particle {
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f6bd35;
    box-shadow: 0 0 20px #f6bd35;
    transform: translateX(-50%);
    pointer-events: none;
}

@keyframes shootSpark {
    0% {
        top: var(--start);
        opacity: 0;
        transform: translateX(-50%) scale(.5);
    }

    20% {
        opacity: 1;
    }

    100% {
        top: var(--end);
        opacity: 0;
        transform: translateX(-50%) scale(1.5);
    }
}

@keyframes shakeIcon {
    0%, 100% {
        transform: scale(1.2) rotate(0deg);
    }

    10% {
        transform: scale(1.2) rotate(-5deg);
    }

    20% {
        transform: scale(1.2) rotate(5deg);
    }

    30% {
        transform: scale(1.2) rotate(-5deg);
    }

    40% {
        transform: scale(1.2) rotate(0deg);
    }
}

/* CEO footer modal */
.bs-footer__ceo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    margin: 0 10px 10px 0;
    padding: 0 18px;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #22A699 0%, #115e56 100%);
    box-shadow: 0 10px 25px rgba(34, 166, 153, .4);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}

    .bs-footer__ceo:hover {
        color: #183059;
        background: #fff;
        border-color: #22A699;
        box-shadow: 0 0 40px rgba(34, 166, 153, .75), 0 0 10px #fff inset;
    }

.bs-ceo-modal {
    position: fixed;
    z-index: 1600;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility 0s linear .28s;
}

    .bs-ceo-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

body.ceo-modal-open {
    overflow: hidden;
}

.bs-ceo-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 8, 23, .82);
    backdrop-filter: blur(10px);
}

.bs-ceo-modal__panel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: min(1040px, 100%);
    max-height: min(92vh, 860px);
    border-radius: 24px;
    color: #334155;
    background: #f0f2f5;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
    transform: translateY(18px) scale(.96);
    transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}

.bs-ceo-modal.is-open .bs-ceo-modal__panel {
    transform: none;
}

.bs-ceo-modal__header,
.bs-ceo-modal__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 28px;
    background: #e2e8f0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.bs-ceo-modal__footer {
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 0;
}

.bs-ceo-modal__header h2 {
    margin: 12px 0 0;
    color: #183059;
    font-weight: 900;
}

.bs-ceo-modal__close {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #334155;
    background: #fff;
    cursor: pointer;
    transition: .2s;
}

    .bs-ceo-modal__close:hover {
        color: #fff;
        background: #ef4444;
        border-color: #ef4444;
        transform: rotate(90deg);
    }

.bs-ceo-modal__body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 32px;
    max-height: calc(92vh - 170px);
    overflow: auto;
    padding: 32px;
}

.bs-ceo-modal__profile {
    text-align: center;
}

.modal-sparks-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.m-spark {
    position: absolute;
    bottom: -70px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
    animation: modalFloatUp linear infinite;
}

    .m-spark.s1 {
        left: 10%;
        background: #a855f7;
        animation-duration: 7s;
    }

    .m-spark.s2 {
        left: 30%;
        background: #3b82f6;
        animation-duration: 10s;
        animation-delay: 1s;
    }

    .m-spark.s3 {
        left: 50%;
        background: #ef4444;
        animation-duration: 8s;
        animation-delay: 2s;
    }

    .m-spark.s4 {
        left: 80%;
        background: #f59e0b;
        animation-duration: 11s;
        animation-delay: .5s;
    }

    .m-spark.s5 {
        left: 90%;
        background: #22d3ee;
        animation-duration: 9s;
        animation-delay: 1.5s;
    }

@keyframes modalFloatUp {
    0% {
        transform: translateY(100px) scale(.5);
        opacity: 0;
    }

    20% {
        opacity: .42;
    }

    100% {
        transform: translateY(-650px) scale(1.2);
        opacity: 0;
    }
}

.ceo-photo-wrapper.square-mode {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.ceo-img.square-img {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 4px solid #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: transform .35s ease, filter .35s ease;
}

.ceo-photo-wrapper:hover .ceo-img.square-img {
    filter: grayscale(0%) contrast(1.03);
    transform: scale(1.03);
}

.ceo-ring.square-ring {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 2px dashed #0ea5e9;
    border-radius: 30px;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.ceo-name {
    margin: 18px 0 8px;
    color: #0f172a;
    font-size: 1.65rem;
    font-weight: 900;
}

.ceo-role {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #0369a1;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.typewriter-terminal {
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 12px;
    color: #fff;
    background: #0f172a;
    font-family: Consolas, monospace;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .dot.red {
        background: #ef4444;
    }

    .dot.yellow {
        background: #f59e0b;
    }

    .dot.green {
        background: #10b981;
    }

.terminal-title {
    margin-left: 10px;
    color: #94a3b8;
    font-size: .72rem;
}

.prompt {
    color: #10b981;
    margin-right: 5px;
}

.typewriter-text {
    min-height: 70px;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.58;
}

.cursor-blink {
    color: #22d3ee;
    font-weight: 900;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cred-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 132px;
    padding: 15px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

    .cred-badge:hover {
        transform: translateY(-5px);
    }

.cred-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all .3s ease;
}

.cred-text small,
.cred-text strong {
    display: block;
}

.cred-text small {
    margin-bottom: 4px;
    color: #64748b;
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cred-text strong {
    color: #1e293b;
    font-size: .78rem;
    line-height: 1.15;
}

.cred-badge-master .cred-icon {
    color: #a855f7;
    background: #f3e8ff;
}

.cred-badge-iso .cred-icon {
    color: #ef4444;
    background: #fee2e2;
}

.cred-badge-scrum .cred-icon {
    color: #65a30d;
    background: #ecfccb;
}

.cred-badge-ba .cred-icon {
    color: #0d9488;
    background: #ccfbf1;
}

.cred-badge-db .cred-icon {
    color: #f59e0b;
    background: #fef3c7;
}

.cred-badge-pm .cred-icon {
    color: #3b82f6;
    background: #dbeafe;
}

.cred-badge:hover .cred-icon {
    color: #fff;
    box-shadow: 0 0 15px currentColor;
}

.cred-badge-master:hover {
    border-color: #a855f7;
    box-shadow: 0 10px 20px rgba(168, 85, 247, .15);
}

    .cred-badge-master:hover .cred-icon {
        background: #a855f7;
    }

.cred-badge-iso:hover {
    border-color: #ef4444;
    box-shadow: 0 10px 20px rgba(239, 68, 68, .15);
}

    .cred-badge-iso:hover .cred-icon {
        background: #ef4444;
    }

.cred-badge-scrum:hover {
    border-color: #65a30d;
    box-shadow: 0 10px 20px rgba(101, 163, 13, .15);
}

    .cred-badge-scrum:hover .cred-icon {
        background: #65a30d;
    }

.cred-badge-ba:hover {
    border-color: #0d9488;
    box-shadow: 0 10px 20px rgba(13, 148, 136, .15);
}

    .cred-badge-ba:hover .cred-icon {
        background: #0d9488;
    }

.cred-badge-db:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 20px rgba(245, 158, 11, .15);
}

    .cred-badge-db:hover .cred-icon {
        background: #f59e0b;
    }

.cred-badge-pm:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, .15);
}

    .cred-badge-pm:hover .cred-icon {
        background: #3b82f6;
    }

.badge-market {
    padding: 8px 15px;
    border-radius: 30px;
    color: #F2A900;
    background: #183059;
    box-shadow: 0 4px 10px rgba(24, 48, 89, .3);
    font-weight: 900;
}

@media (max-width: 991px) {
    .timeline-track {
        left: 30px;
        width: 40px;
    }

    .timeline-bubble {
        left: 50px !important;
        right: auto !important;
        max-width: calc(100vw - 96px);
        text-align: left !important;
        white-space: normal;
    }

    .timeline-row {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 70px;
    }

    .timeline-content {
        width: 100%;
        padding-right: 15px;
        padding-left: 80px;
        text-align: left !important;
    }

    .timeline-empty {
        display: none;
    }

    .timeline-dot-wrapper {
        position: absolute;
        top: 0;
        left: 30px;
        width: auto;
        transform: translateX(-50%);
    }

    .bubble-red {
        border-right: none;
        border-left: 5px solid #ff0055;
    }

        .bubble-red::before {
            right: auto;
            left: -8px;
            border-right: 8px solid #ff0055;
            border-left: none;
        }

    .bs-ceo-modal {
        align-items: flex-start;
        padding: 12px;
    }

    .bs-ceo-modal__body {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 128px);
        padding: 22px;
    }

    .bs-ceo-modal__profile {
        order: -1;
    }
}

@media (max-width: 620px) {
    .timeline-container {
        padding-top: 54px;
    }

    .timeline-dot {
        width: 58px;
        height: 58px;
        font-size: 1.35rem;
    }

    .timeline-content {
        padding-left: 68px;
    }

    .glass-card {
        padding: 24px 18px;
    }

    .step-number-bg {
        font-size: 4.8rem;
    }

    .bs-ceo-modal__header,
    .bs-ceo-modal__footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .bs-ceo-modal__close {
        position: absolute;
        top: 14px;
        right: 14px;
    }

    .bs-ceo-modal__header h2 {
        padding-right: 44px;
    }

    .ceo-img.square-img {
        width: 168px;
        height: 168px;
    }

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

@media (max-width: 620px) {
    .bs-container {
        width: min(100% - 22px, 1180px);
    }

    .bs-hero {
        min-height: 760px;
    }

        .bs-hero h1 {
            font-size: 2.7rem;
        }

    .bs-hero__actions,
    .bs-offer__actions,
    .bs-form-grid,
    .bs-what__features,
    .bs-quote__services,
    .bs-service-modal__panel ul {
        grid-template-columns: 1fr;
    }

    .bs-hero__actions,
    .bs-offer__actions {
        display: grid;
    }

    .bs-btn,
    .bs-form-grid .span-2 {
        width: 100%;
        grid-column: auto;
    }

    .bs-offer__qr {
        grid-template-columns: 76px 1fr;
    }

        .bs-offer__qr img {
            width: 76px;
            height: 76px;
        }
}

/* WebForms-inspired contact modal polish */
.bs-contact {
    background: radial-gradient(circle at center, #f8fafc 0%, #e2e8f0 100%) !important;
}

.bs-contact__cta {
    max-width: 820px;
    margin: 0 auto;
    padding: 58px 38px;
    border-bottom: 6px solid #22a699;
    border-radius: 24px;
    color: #183059;
    text-align: center;
    background: #fff;
    box-shadow: 0 24px 70px rgba(24, 48, 89, .13);
}

    .bs-contact__cta h2 {
        max-width: 720px;
        margin-inline: auto;
        color: #183059;
        font-size: clamp(2rem, 4vw, 3.4rem);
    }

    .bs-contact__cta p {
        max-width: 650px;
        margin-inline: auto;
        color: #64748b;
    }

.bs-contact__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    margin-top: 18px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #22a699, #126c65);
    box-shadow: 0 14px 34px rgba(34, 166, 153, .35);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.bs-contact-modal {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .bs-contact-modal.is-open {
        display: flex;
    }

body.contact-modal-open {
    overflow: hidden;
}

.bs-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 8, 23, .92);
    backdrop-filter: blur(10px);
}

.bs-contact-modal__window {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 50px 100px rgba(0, 0, 0, .6);
}

.bs-contact-modal__left {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    padding: 36px;
    color: #fff;
    background: linear-gradient(160deg, #183059 0%, #050a14 100%);
}

    .bs-contact-modal__left p {
        max-width: 300px;
        color: #cbd5e1;
        text-align: center;
    }

.bs-monitor {
    width: min(100%, 340px);
    padding: 12px 12px 0;
    border: 8px solid #2d3748;
    border-radius: 15px;
    background: #1a202c;
    box-shadow: 0 40px 70px rgba(0, 0, 0, .5);
    transform: perspective(1000px) rotateY(5deg);
}

.bs-monitor__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-bottom: 1px solid #334155;
    background: #1e293b;
}

    .bs-monitor__bar span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

        .bs-monitor__bar span:nth-child(1) {
            background: #ef4444;
        }

        .bs-monitor__bar span:nth-child(2) {
            background: #f59e0b;
        }

        .bs-monitor__bar span:nth-child(3) {
            background: #10b981;
        }

    .bs-monitor__bar strong {
        flex: 1;
        color: #22d3ee;
        text-align: center;
        font: 800 .7rem Consolas, monospace;
    }

.bs-monitor__screen {
    height: 220px;
    padding: 20px;
    background: #0f172a;
}

.bs-monitor__bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 120px;
    border-bottom: 1px solid #334155;
}

    .bs-monitor__bars i {
        width: 12%;
        border-radius: 4px 4px 0 0;
        background: linear-gradient(to top, #22a699, #4fd1c5);
        animation: growBar 1.8s infinite alternate ease-in-out;
    }

@keyframes growBar {
    from {
        transform: scaleY(.55);
        opacity: .65;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.bs-monitor__screen small {
    display: block;
    margin-top: 18px;
    color: #f2a900;
    font: 800 .75rem Consolas, monospace;
}

.bs-contact-modal__right {
    position: relative;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 34px;
    color: #183059;
    background: #fff;
}

.bs-contact-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    color: #334155;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
}

.bs-contact-modal__head {
    padding-right: 54px;
    margin-bottom: 18px;
}

    .bs-contact-modal__head h3 {
        margin: 12px 0 6px;
        color: #183059;
        font-weight: 900;
    }

.bs-contact-card {
    padding: 0 !important;
    color: #183059;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

    .bs-contact-card .bs-form-grid label,
    .bs-contact-card .bs-consent {
        color: #64748b;
    }

    .bs-contact-card .bs-form-grid input,
    .bs-contact-card .bs-form-grid textarea,
    .bs-contact-card .bs-form-grid select {
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        color: #183059;
        background: #f8fafc;
    }

        .bs-contact-card .bs-form-grid input:focus,
        .bs-contact-card .bs-form-grid textarea:focus,
        .bs-contact-card .bs-form-grid select:focus {
            border-color: #22a699;
            outline: 0;
            box-shadow: 0 0 0 4px rgba(34, 166, 153, .1);
        }

@media (max-width: 980px) {
    .bs-contact-modal {
        align-items: flex-start;
        padding: 14px;
    }

    .bs-contact-modal__window {
        display: block;
        max-height: calc(100vh - 28px);
        overflow: auto;
    }

    .bs-contact-modal__left {
        display: none;
    }

    .bs-contact-modal__right {
        max-height: none;
        padding: 26px;
    }
}
/* ==========================================================
   IDENTIDAD EJECUTIVA DEL MODAL
========================================================== */

.bs-ceo-modal__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.bs-ceo-modal__identity {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.55rem 1rem 0.55rem 0.6rem;
    overflow: hidden;
    border: 1px solid rgba(67, 219, 255, 0.24);
    border-radius: 16px;
    background: linear-gradient( 120deg, rgba(0, 174, 239, 0.11), rgba(5, 28, 53, 0.55) );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

    .bs-ceo-modal__identity::before {
        position: absolute;
        width: 80px;
        height: 80px;
        top: -55px;
        right: -15px;
        border-radius: 50%;
        content: "";
        background: rgba(67, 219, 255, 0.28);
        filter: blur(25px);
        pointer-events: none;
    }

.bs-ceo-modal__identity-icon {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    color: #051827;
    border-radius: 12px;
    background: linear-gradient( 145deg, #65e6ff, #16a9df );
    box-shadow: 0 8px 22px rgba(15, 188, 232, 0.25);
}

    .bs-ceo-modal__identity-icon i {
        font-size: 1rem;
    }

.bs-ceo-modal__identity-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.bs-ceo-modal__identity-title {
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bs-ceo-modal__identity-copy small {
    margin-top: 0.27rem;
    color: rgba(207, 236, 248, 0.66);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}


/* ==========================================================
   CREDENCIAL UAEM
========================================================== */

.ceo-university {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(255, 193, 57, 0.19);
    border-radius: 15px;
    background: linear-gradient( 120deg, rgba(255, 190, 59, 0.09), rgba(255, 255, 255, 0.025) );
}

.ceo-university__icon {
    display: grid;
    place-items: center;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    color: #f7c44f;
    border: 1px solid rgba(247, 196, 79, 0.2);
    border-radius: 11px;
    background: rgba(247, 196, 79, 0.08);
}

.ceo-university > span:last-child {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ceo-university small {
    color: rgba(214, 232, 241, 0.56);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ceo-university strong {
    margin-top: 0.15rem;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 750;
}


/* ==========================================================
   SOPORTE PARA BOTONES SOCIAL ORB
========================================================== */

button.social-orb {
    padding: 0;
    border: none;
    font-family: inherit;
    cursor: pointer;
}


/* ==========================================================
   BOTONES SOCIALES DEL FOOTER
========================================================== */

.bs-footer__social button {
    display: grid;
    place-items: center;
    padding: 0;
    color: inherit;
    border: inherit;
    background: inherit;
    font: inherit;
    cursor: pointer;
}


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

@media (max-width: 640px) {

    .bs-ceo-modal__identity {
        width: 100%;
        padding-right: 0.75rem;
    }

    .bs-ceo-modal__identity-title {
        font-size: 0.68rem;
    }

    .bs-ceo-modal__identity-copy small {
        font-size: 0.61rem;
    }

    .ceo-university {
        max-width: 300px;
        margin-inline: auto;
    }
}
/* ==========================================================
   FORMACIÓN ACADÉMICA · ESTILO PREMIUM BITSPARK
========================================================== */

.ceo-university {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 285px;
    margin: 0.8rem auto 0;
    padding: 0.7rem 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(70, 210, 255, 0.16);
    border-radius: 14px;
    background: linear-gradient( 135deg, rgba(7, 31, 52, 0.82), rgba(11, 46, 72, 0.48) );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .ceo-university::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        content: "";
        background: linear-gradient( 180deg, #57dcff, #188ec7 );
    }

    .ceo-university:hover {
        transform: translateY(-2px);
        border-color: rgba(87, 220, 255, 0.3);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 30px rgba(0, 0, 0, 0.17);
    }


/* ICONO */

.ceo-university__icon {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-right: 0.75rem;
    color: #72ddff;
    border: 1px solid rgba(87, 220, 255, 0.16);
    border-radius: 11px;
    background: rgba(54, 188, 231, 0.08);
}

    .ceo-university__icon i {
        font-size: 0.95rem;
    }


/* TEXTO */

.ceo-university__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-align: left;
}

    .ceo-university__content small {
        margin: 0 0 0.2rem;
        color: rgba(180, 209, 224, 0.62);
        font-size: 0.62rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .ceo-university__content strong {
        color: #f4fbff;
        font-size: 0.82rem;
        font-weight: 750;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }


/* MÓVIL */

@media (max-width: 640px) {

    .ceo-university {
        max-width: 270px;
        padding: 0.65rem 0.75rem;
    }

    .ceo-university__icon {
        flex-basis: 35px;
        width: 35px;
        height: 35px;
    }

    .ceo-university__content strong {
        font-size: 0.78rem;
    }
}

/* ==========================================================
   SPARK IA CHAT
========================================================== */

.bs-offer-detail {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    color: #f8fbff;
    background: radial-gradient(circle at 15% 20%, rgba(246, 189, 53, 0.13), transparent 28%), radial-gradient(circle at 88% 48%, rgba(34, 211, 238, 0.13), transparent 30%), linear-gradient(180deg, #06111f 0%, #081c2e 58%, #07111f 100%);
}

.bs-offer-detail__head {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

    .bs-offer-detail__head h2,
    .bs-offer-modules__copy h2 {
        margin: 0.7rem 0 0.75rem;
        color: #ffffff;
        font-size: clamp(2rem, 4vw, 3.55rem);
        line-height: 1.02;
        letter-spacing: 0;
    }

    .bs-offer-detail__head p,
    .bs-offer-modules__copy p {
        color: rgba(215, 236, 248, 0.76);
        line-height: 1.65;
    }

.bs-offer-value {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

    .bs-offer-value article,
    .bs-offer-modules__grid article,
    .bs-offer-faq {
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
        box-shadow: 0 18px 40px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .bs-offer-value article {
        display: grid;
        gap: 0.35rem;
        min-height: 178px;
        padding: 1.25rem;
    }

    .bs-offer-value i {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        color: #07111f;
        border-radius: 8px;
        background: linear-gradient(135deg, #f6bd35, #22d3ee);
    }

    .bs-offer-value span {
        color: rgba(214, 233, 244, 0.7);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .bs-offer-value strong {
        color: #ffffff;
        font-size: clamp(1.65rem, 3vw, 2.3rem);
        line-height: 1;
    }

    .bs-offer-value small,
    .bs-offer-modules__grid span {
        color: rgba(210, 231, 243, 0.68);
        line-height: 1.48;
    }

.bs-offer-modules {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: start;
}

.bs-offer-modules__copy {
    position: sticky;
    top: 96px;
}

.bs-offer-modules__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
}

    .bs-offer-modules__grid article {
        display: grid;
        gap: 0.55rem;
        min-height: 152px;
        padding: 1rem;
        transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }

        .bs-offer-modules__grid article:hover {
            transform: translateY(-4px);
            border-color: rgba(246, 189, 53, 0.28);
            background: linear-gradient(145deg, rgba(246, 189, 53, 0.1), rgba(34, 211, 238, 0.055));
        }

    .bs-offer-modules__grid i {
        color: #f6bd35;
        font-size: 1.25rem;
    }

    .bs-offer-modules__grid strong {
        color: #ffffff;
        font-size: 1rem;
    }

.bs-offer-faq {
    display: grid;
    grid-template-columns: 0.7fr repeat(3, 1fr);
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 4rem);
    padding: 1.15rem;
}

    .bs-offer-faq > div {
        padding-left: 1rem;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .bs-offer-faq strong {
        color: #ffffff;
    }

    .bs-offer-faq p {
        margin: 0.4rem 0 0;
        color: rgba(210, 231, 243, 0.68);
        font-size: 0.86rem;
        line-height: 1.52;
    }

@media (max-width: 900px) {
    .bs-offer-value,
    .bs-offer-modules,
    .bs-offer-faq {
        grid-template-columns: 1fr;
    }

    .bs-offer-modules__copy {
        position: static;
    }

    .bs-offer-faq > div {
        padding-left: 0;
        padding-top: 0.85rem;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 620px) {
    .bs-offer-modules__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   OFERTA ESPECIAL BLAZOR
========================================================== */

.bs-special-offer {
    color: #f8fbff;
    background: #06111f;
}

.bs-special-hero,
.bs-special-calc,
.bs-special-capabilities,
.bs-special-faq {
    position: relative;
    overflow: hidden;
}

.bs-special-hero {
    min-height: 100vh;
    padding: 150px 0 92px;
    background: radial-gradient(circle at 86% 16%, rgba(246, 189, 53, .18), transparent 26%), radial-gradient(circle at 10% 76%, rgba(34, 211, 238, .18), transparent 28%), linear-gradient(135deg, #030b17 0%, #0b2748 54%, #081827 100%);
}

.bs-special-hero__grid,
.bs-special-calc__layout,
.bs-special-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
    gap: clamp(1.4rem, 4vw, 3.2rem);
    align-items: center;
}

.bs-special-hero h1,
.bs-special-calc h2,
.bs-special-faq h2 {
    margin: 1rem 0;
    color: #fff;
    font-size: clamp(2.35rem, 5.5vw, 5.1rem);
    font-weight: 950;
    line-height: 1.01;
}

.bs-special-hero p,
.bs-special-calc p,
.bs-special-faq p,
.bs-special-capabilities .bs-section-head p {
    max-width: 760px;
    color: rgba(219, 236, 247, .78);
    line-height: 1.72;
}

.bs-special-hero__actions,
.bs-special-hero__proof,
.bs-special-email {
    display: flex;
    flex-wrap: wrap;
    gap: .72rem;
}

.bs-special-hero__actions {
    margin-top: 1.6rem;
}

.bs-special-hero__proof {
    margin-top: 1rem;
}

    .bs-special-hero__proof span,
    .bs-special-referral,
    .bs-special-note {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        color: rgba(231, 246, 255, .78);
        font-size: .82rem;
        font-weight: 850;
    }

        .bs-special-hero__proof i,
        .bs-special-note i {
            color: var(--bs-gold);
        }

.bs-special-hero__panel,
.bs-special-calc__panel,
.bs-special-trust article,
.bs-special-capabilities__grid article,
.bs-special-faq__items article {
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
    box-shadow: 0 24px 60px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
}

.bs-special-hero__panel {
    padding: clamp(1rem, 3vw, 1.55rem);
}

.bs-special-hero__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(226, 239, 248, .72);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .bs-special-hero__panel-head strong {
        color: #fff;
    }

.bs-special-price {
    margin-top: .95rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(3, 14, 32, .42);
}

    .bs-special-price small,
    .bs-special-price span {
        display: block;
        color: rgba(210, 230, 242, .68);
        font-size: .72rem;
        font-weight: 850;
    }

    .bs-special-price strong {
        display: block;
        margin: .22rem 0;
        color: var(--bs-gold);
        font-size: clamp(2.25rem, 5vw, 3.6rem);
        line-height: 1;
    }

.bs-special-price--monthly strong {
    color: var(--bs-cyan);
    font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.bs-special-hero__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    margin-top: .95rem;
}

    .bs-special-hero__stack div,
    .bs-special-summary div {
        display: grid;
        gap: .3rem;
        min-width: 0;
        padding: .85rem;
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 8px;
        background: rgba(255,255,255,.045);
    }

    .bs-special-hero__stack i {
        color: var(--bs-cyan);
    }

    .bs-special-hero__stack span {
        color: rgba(232, 243, 250, .78);
        font-size: .78rem;
        font-weight: 800;
    }

.bs-special-trust {
    padding: 1rem 0;
    background: #071525;
}

.bs-special-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.bs-special-trust article,
.bs-special-capabilities__grid article,
.bs-special-faq__items article {
    display: grid;
    gap: .55rem;
    padding: 1rem;
}

.bs-special-trust i,
.bs-special-capabilities__grid i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #07111f;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--bs-gold), var(--bs-cyan));
}

.bs-special-trust strong,
.bs-special-capabilities__grid strong,
.bs-special-faq__items strong {
    color: #fff;
    font-size: .98rem;
}

.bs-special-trust span,
.bs-special-capabilities__grid span,
.bs-special-faq__items p {
    color: rgba(214, 233, 244, .68);
    font-size: .86rem;
    line-height: 1.55;
}

.bs-special-calc {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: radial-gradient(circle at 15% 20%, rgba(34, 211, 238, .13), transparent 28%), linear-gradient(180deg, #06111f 0%, #082033 100%);
}

.bs-special-calc__layout {
    align-items: start;
}

.bs-special-calc__copy {
    position: sticky;
    top: 96px;
}

.bs-special-note {
    margin-top: 1.2rem;
    padding: .9rem;
    border: 1px solid rgba(246, 189, 53, .18);
    border-radius: 8px;
    background: rgba(246, 189, 53, .08);
}

.bs-special-calc__panel {
    display: grid;
    gap: .95rem;
    padding: clamp(1rem, 3vw, 1.3rem);
}

.bs-special-result {
    display: grid;
    gap: .25rem;
    padding: .9rem;
    border-radius: 8px;
    color: #dcfce7;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .22);
}

    .bs-special-result.is-error {
        color: #fee2e2;
        background: rgba(239, 68, 68, .12);
        border-color: rgba(239, 68, 68, .22);
    }

    .bs-special-result span {
        color: inherit;
        opacity: .78;
        font-size: .82rem;
    }

.bs-special-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .62rem;
}

.bs-special-service {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: .65rem;
    min-height: 106px;
    padding: .82rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: #fff;
    text-align: left;
    background: rgba(3, 14, 32, .42);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

    .bs-special-service:hover,
    .bs-special-service.is-selected {
        transform: translateY(-2px);
        border-color: rgba(34, 211, 238, .36);
        background: rgba(34, 211, 238, .08);
    }

    .bs-special-service i {
        color: var(--bs-gold);
        font-size: 1.1rem;
    }

    .bs-special-service span {
        display: grid;
        gap: .24rem;
        min-width: 0;
    }

    .bs-special-service strong {
        font-size: .88rem;
    }

    .bs-special-service small {
        color: rgba(210, 231, 243, .64);
        font-size: .72rem;
        line-height: 1.35;
    }

    .bs-special-service b {
        grid-column: 1 / -1;
        justify-self: start;
        color: var(--bs-cyan);
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.bs-special-email {
    align-items: center;
    padding: .8rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
}

    .bs-special-email > span {
        flex: 1 0 150px;
        color: rgba(232, 243, 250, .78);
        font-size: .8rem;
        font-weight: 900;
    }

    .bs-special-email button {
        min-height: 36px;
        padding: 0 .72rem;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px;
        color: #e8f6ff;
        background: rgba(3, 14, 32, .42);
        font-size: .76rem;
        font-weight: 850;
    }

        .bs-special-email button.is-selected {
            color: #06111f;
            background: var(--bs-gold);
        }

    .bs-special-email small {
        opacity: .72;
    }

.bs-special-referral {
    padding: .78rem .9rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
}

    .bs-special-referral input {
        width: 18px;
        height: 18px;
    }

.bs-special-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .62rem;
}

    .bs-special-summary span {
        color: rgba(214, 233, 244, .62);
        font-size: .72rem;
        font-weight: 850;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .bs-special-summary strong {
        color: #fff;
        font-size: 1.1rem;
    }

    .bs-special-summary .is-total {
        border-color: rgba(246, 189, 53, .2);
        background: rgba(246, 189, 53, .075);
    }

        .bs-special-summary .is-total strong {
            color: var(--bs-gold);
        }

.bs-special-calc .bs-btn {
    width: 100%;
    margin-top: .85rem;
}

.bs-special-capabilities,
.bs-special-faq {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.bs-special-capabilities {
    background: radial-gradient(circle at 84% 24%, rgba(246, 189, 53, .12), transparent 28%), linear-gradient(180deg, #082033 0%, #07111f 100%);
}

    .bs-special-capabilities .bs-section-head h2 {
        color: #fff;
    }

.bs-special-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.bs-special-faq {
    background: #f6f8fb;
    color: #10213a;
}

.bs-special-faq__intro {
    position: sticky;
    top: 110px;
    padding: 24px;
    border: 1px solid rgba(34, 211, 238, .18);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(236, 253, 245, .92)), radial-gradient(circle at 12% 8%, rgba(34, 211, 238, .16), transparent 34%);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .09);
}

    .bs-special-faq__intro .bs-kicker {
        color: #0f766e;
    }

.bs-special-faq h2 {
    color: #10213a;
    font-size: clamp(2rem, 4vw, 3.55rem);
    margin-bottom: 14px;
}

.bs-special-faq p {
    color: #64748b;
}

.bs-special-faq__promise {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

    .bs-special-faq__promise span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 11px;
        color: #0f172a;
        border: 1px solid rgba(20, 184, 166, .18);
        border-radius: 999px;
        background: rgba(255,255,255,.78);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
        font-size: .78rem;
        font-weight: 900;
    }

    .bs-special-faq__promise i {
        color: #0891b2;
    }

.bs-special-faq__grid {
    align-items: start;
}

.bs-special-faq__items {
    display: grid;
    gap: .75rem;
}

    .bs-special-faq__items article {
        position: relative;
        overflow: hidden;
        border-color: rgba(15, 23, 42, .07);
        background: linear-gradient(180deg, #ffffff, #f8fbff);
        box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

        .bs-special-faq__items article::before {
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            content: "";
            background: linear-gradient(180deg, #22d3ee, #31d98b, #f6bd35);
        }

        .bs-special-faq__items article:hover {
            transform: translateY(-3px);
            border-color: rgba(34, 211, 238, .22);
            box-shadow: 0 24px 52px rgba(15, 23, 42, .11);
        }

    .bs-special-faq__items strong {
        display: block;
        margin-bottom: 8px;
        color: #10213a;
    }

    .bs-special-faq__items p {
        margin: 0;
    }

@media (max-width: 1100px) {
    .bs-special-trust__grid,
    .bs-special-capabilities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bs-special-hero__grid,
    .bs-special-calc__layout,
    .bs-special-faq__grid {
        grid-template-columns: 1fr;
    }

    .bs-special-calc__copy {
        position: static;
    }

    .bs-special-faq__intro {
        position: static;
    }
}

@media (max-width: 620px) {
    .bs-special-hero {
        padding-top: 118px;
    }

    .bs-special-picker,
    .bs-special-summary,
    .bs-special-hero__stack,
    .bs-special-trust__grid,
    .bs-special-capabilities__grid {
        grid-template-columns: 1fr;
    }

    .bs-special-service {
        min-height: 0;
    }
}

.spark-ia {
    position: fixed;
    z-index: 2450;
    left: 18px;
    bottom: 18px;
    width: min(392px, calc(100vw - 28px));
    color: #f8fbff;
    font-family: inherit;
}

    .spark-ia,
    .spark-ia * {
        box-sizing: border-box;
    }

.spark-ia__launcher {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 12px;
    align-items: center;
    gap: 0.75rem;
    width: min(270px, calc(100vw - 28px));
    min-height: 64px;
    padding: 0.65rem 0.85rem;
    color: #ffffff;
    border: 1px solid rgba(80, 224, 255, 0.34);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(6, 22, 38, 0.94), rgba(11, 45, 67, 0.9));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34), 0 0 34px rgba(34, 211, 238, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    overflow: hidden;
    transform-origin: left bottom;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .spark-ia__launcher::before,
    .spark-ia__panel::before {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(255,255,255,0.42) 0 1px, transparent 1.4px);
        background-size: 42px 42px;
        opacity: 0.12;
    }

    .spark-ia__launcher:hover {
        border-color: rgba(246, 189, 53, 0.46);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42), 0 0 42px rgba(246, 189, 53, 0.19);
        transform: translateY(-3px);
    }

.spark-ia__orb,
.spark-ia__avatar {
    display: grid;
    place-items: center;
    color: #07111f;
    background: linear-gradient(135deg, #f6bd35, #22d3ee);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.36);
}

.spark-ia__orb {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1.15rem;
    animation: sparkIaOrbGlow 2.6s ease-in-out infinite;
}

.spark-ia__launcher-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-align: left;
    line-height: 1.12;
}

    .spark-ia__launcher-copy strong {
        font-size: 0.98rem;
        font-weight: 850;
    }

    .spark-ia__launcher-copy small {
        margin-top: 0.22rem;
        color: rgba(213, 235, 247, 0.68);
        font-size: 0.72rem;
        font-weight: 650;
    }

.spark-ia__pulse {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #31d98b;
    box-shadow: 0 0 0 0 rgba(49, 217, 139, 0.55);
    animation: sparkIaPulse 1.65s ease-out infinite;
}

.spark-ia__unread {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    padding: 0 0.38rem;
    color: #06111f;
    border: 2px solid rgba(255,255,255,0.72);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6bd35, #5eead4);
    box-shadow: 0 0 22px rgba(246, 189, 53, 0.36);
    font-size: 0.72rem;
    font-weight: 950;
}

.spark-ia__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    height: min(680px, calc(100vh - 34px));
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(80, 224, 255, 0.2);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(4, 16, 30, 0.98), rgba(8, 31, 49, 0.96) 52%, rgba(11, 20, 34, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    animation: sparkIaOpen 0.34s ease both;
}

    .spark-ia__panel.is-ai-active {
        border-color: rgba(246, 189, 53, 0.42);
        box-shadow: 0 28px 84px rgba(0, 0, 0, 0.5), 0 0 54px rgba(246, 189, 53, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .spark-ia__panel.is-human-live {
        border-color: rgba(52, 211, 153, 0.42);
        box-shadow: 0 28px 84px rgba(0, 0, 0, 0.52), 0 0 54px rgba(52, 211, 153, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .spark-ia__panel.is-human-pending {
        border-color: rgba(96, 165, 250, 0.42);
        box-shadow: 0 28px 84px rgba(0, 0, 0, 0.5), 0 0 48px rgba(96, 165, 250, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .spark-ia__panel.is-ai-active .spark-ia__glow {
        background: linear-gradient(90deg, rgba(246, 189, 53, 0.28), rgba(34, 211, 238, 0.24), rgba(244, 114, 182, 0.18));
        animation: sparkIaGlowSweep 1.6s ease-in-out infinite;
    }

    .spark-ia__panel.is-human-pending .spark-ia__glow {
        background: linear-gradient(90deg, rgba(96, 165, 250, 0.26), rgba(34, 211, 238, 0.18), rgba(246, 189, 53, 0.14));
        animation: sparkIaGlowSweep 2s ease-in-out infinite;
    }

    .spark-ia__panel.is-closing {
        border-color: rgba(244, 114, 182, 0.32);
    }

    .spark-ia__panel.is-topic-web {
        border-color: rgba(56, 189, 248, 0.44);
    }

    .spark-ia__panel.is-topic-erp {
        border-color: rgba(167, 139, 250, 0.44);
    }

    .spark-ia__panel.is-topic-school {
        border-color: rgba(74, 222, 128, 0.44);
    }

    .spark-ia__panel.is-topic-logistics {
        border-color: rgba(251, 146, 60, 0.48);
    }

    .spark-ia__panel.is-topic-ecommerce {
        border-color: rgba(244, 114, 182, 0.44);
    }

    .spark-ia__panel.is-topic-mobile {
        border-color: rgba(45, 212, 191, 0.44);
    }

    .spark-ia__panel.is-topic-branding {
        border-color: rgba(250, 204, 21, 0.46);
    }

    .spark-ia__panel.is-topic-warehouse {
        border-color: rgba(34, 197, 94, 0.44);
    }

    .spark-ia__panel.is-topic-billing {
        border-color: rgba(96, 165, 250, 0.44);
    }

    .spark-ia__panel.is-topic-health {
        border-color: rgba(248, 113, 113, 0.44);
    }

    .spark-ia__panel.is-topic-construction {
        border-color: rgba(251, 191, 36, 0.48);
    }

    .spark-ia__panel.is-topic-games {
        border-color: rgba(129, 140, 248, 0.5);
    }

    .spark-ia__panel[class*="is-topic-"] .spark-ia__glow {
        background: linear-gradient(90deg, rgba(34, 211, 238, 0.2), rgba(246, 189, 53, 0.16), rgba(244, 114, 182, 0.12));
    }

.spark-ia__glow {
    position: absolute;
    inset: auto 24px -80px 24px;
    height: 150px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(246, 189, 53, 0.2));
    filter: blur(36px);
}

.spark-ia__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.92rem 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spark-ia__panel.is-ai-active .spark-ia__header {
    background: linear-gradient(90deg, rgba(246, 189, 53, 0.08), rgba(34, 211, 238, 0.04));
}

.spark-ia__brand {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.spark-ia__avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.spark-ia__brand strong,
.spark-ia__brand small {
    display: block;
}

.spark-ia__brand strong {
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 0;
}

.spark-ia__brand small {
    margin-top: 0.18rem;
    color: rgba(211, 232, 245, 0.68);
    font-size: 0.72rem;
    font-weight: 650;
}

.spark-ia__mode {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    max-width: 128px;
    padding: 0.34rem 0.52rem;
    color: rgba(219, 244, 255, 0.86);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.07);
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

    .spark-ia__mode i {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #31d98b;
        box-shadow: 0 0 12px rgba(49, 217, 139, 0.65);
    }

.spark-ia__panel.is-ai-active .spark-ia__mode {
    color: #07111f;
    border-color: rgba(246, 189, 53, 0.42);
    background: linear-gradient(135deg, #f6bd35, #22d3ee);
}

.spark-ia__panel.is-human-live .spark-ia__mode {
    color: #052e1a;
    border-color: rgba(52, 211, 153, 0.42);
    background: linear-gradient(135deg, #86efac, #5eead4);
}

.spark-ia__panel.is-human-pending .spark-ia__mode {
    color: #dbeafe;
    border-color: rgba(96, 165, 250, 0.34);
    background: rgba(96, 165, 250, 0.16);
}

    .spark-ia__panel.is-human-pending .spark-ia__mode i {
        background: #60a5fa;
        animation: sparkIaPulseBlue 1.4s ease-out infinite;
    }

.spark-ia__panel.is-ai-active .spark-ia__mode i {
    background: #07111f;
    box-shadow: 0 0 0 4px rgba(7, 17, 31, 0.14);
    animation: sparkIaPulse 1.1s ease-out infinite;
}

.spark-ia__close,
.spark-ia__composer button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #dff8ff;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.spark-ia__close {
    width: 38px;
    height: 38px;
}

    .spark-ia__close:hover,
    .spark-ia__composer button:hover {
        transform: translateY(-1px);
        border-color: rgba(34, 211, 238, 0.32);
        background: rgba(34, 211, 238, 0.1);
    }

.spark-ia__intro {
    position: relative;
    z-index: 1;
    padding: 0.82rem 1rem 0.1rem;
}

.spark-ia__status {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #a7f3d0;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

    .spark-ia__status i {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #31d98b;
        box-shadow: 0 0 16px rgba(49, 217, 139, 0.7);
    }

.spark-ia__intro h3 {
    margin: 0.46rem 0 0.28rem;
    color: #ffffff;
    font-size: clamp(1.18rem, 2.4vw, 1.38rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.spark-ia__intro p {
    margin: 0;
    color: rgba(211, 232, 245, 0.76);
    font-size: 0.78rem;
    line-height: 1.38;
}

.spark-ia__lead-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    margin-top: 0.62rem;
}

    .spark-ia__lead-pills span {
        display: inline-flex;
        align-items: center;
        gap: 0.32rem;
        min-height: 28px;
        padding: 0.26rem 0.52rem;
        color: rgba(238, 246, 250, 0.86);
        border: 1px solid rgba(52, 211, 153, 0.16);
        border-radius: 999px;
        background: rgba(52, 211, 153, 0.07);
        font-size: 0.66rem;
        font-weight: 820;
        line-height: 1;
    }

    .spark-ia__lead-pills i {
        color: #34d399;
        font-size: 0.7rem;
    }

.spark-ia__signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.9rem;
}

    .spark-ia__signal-grid span {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-height: 58px;
        padding: 0.55rem;
        color: rgba(234, 248, 255, 0.9);
        border: 1px solid rgba(255,255,255,0.09);
        border-radius: 13px;
        background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
        font-size: 0.66rem;
        font-weight: 820;
        line-height: 1.22;
    }

    .spark-ia__signal-grid i {
        margin-bottom: 0.34rem;
        color: #f6bd35;
        font-size: 0.92rem;
    }

.spark-ia__lead {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.72rem;
    padding: 0.9rem 1rem 1rem;
}

    .spark-ia__lead label {
        display: grid;
        gap: 0.32rem;
    }

        .spark-ia__lead label span {
            color: rgba(222, 239, 250, 0.82);
            font-size: 0.72rem;
            font-weight: 780;
        }

            .spark-ia__lead label span small {
                color: rgba(211, 232, 245, 0.48);
                font-size: 0.62rem;
                font-weight: 760;
            }

    .spark-ia__lead input,
    .spark-ia__lead select,
    .spark-ia__composer input {
        width: 100%;
        min-width: 0;
        color: #ffffff;
        border: 1px solid rgba(255,255,255,0.12);
        outline: none;
        background: rgba(255,255,255,0.065);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .spark-ia__lead input,
    .spark-ia__lead select {
        height: 40px;
        padding: 0 0.72rem;
        border-radius: 12px;
        font-size: 0.88rem;
    }

        .spark-ia__lead input:focus,
        .spark-ia__lead select:focus,
        .spark-ia__composer input:focus {
            border-color: rgba(34, 211, 238, 0.52);
            background: rgba(255,255,255,0.09);
            box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
        }

        .spark-ia__lead input.is-invalid {
            border-color: rgba(248, 113, 113, 0.62);
            box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
        }

    .spark-ia__lead select {
        cursor: pointer;
    }

        .spark-ia__lead select option {
            color: #07111f;
            background: #f8fbff;
        }

    .spark-ia__lead input::placeholder,
    .spark-ia__composer input::placeholder {
        color: rgba(202, 224, 238, 0.44);
    }

.spark-ia__email-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
    margin-top: 0.18rem;
}

    .spark-ia__email-suggestions button {
        width: auto;
        min-height: 28px;
        padding: 0 0.5rem;
        color: #dff8ff;
        border: 1px solid rgba(34, 211, 238, 0.22);
        border-radius: 999px;
        background: rgba(34, 211, 238, 0.08);
        font-size: 0.68rem;
        font-weight: 820;
        cursor: pointer;
    }

.spark-ia__field-hint,
.spark-ia__field-error {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    width: fit-content;
    max-width: 100%;
    margin-top: 0.22rem;
    font-size: 0.64rem;
    font-weight: 760;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.spark-ia__field-hint {
    padding: 0.22rem 0.38rem;
    color: rgba(226, 241, 248, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
}

    .spark-ia__field-hint mark {
        max-width: 140px;
        padding: 0.06rem 0.3rem;
        overflow: hidden;
        color: #03212a;
        border-radius: 999px;
        background: linear-gradient(135deg, #67e8f9, #a7f3d0);
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.spark-ia__field-error {
    color: #fecaca;
}

.spark-ia__consent {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 0.55rem !important;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
}

    .spark-ia__consent input {
        width: 16px;
        height: 16px;
        margin-top: 0.1rem;
        accent-color: #22d3ee;
    }

    .spark-ia__consent span {
        font-size: 0.74rem !important;
        line-height: 1.35;
    }

.spark-ia__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.72rem 0.95rem;
    color: #07111f;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #f6bd35, #22d3ee);
    box-shadow: 0 14px 28px rgba(34, 211, 238, 0.19);
    font-weight: 860;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

    .spark-ia__primary:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
    }

    .spark-ia__primary:disabled,
    .spark-ia__composer button:disabled,
    .spark-ia__chips button:disabled {
        cursor: not-allowed;
        opacity: 0.62;
    }

.spark-ia__messages {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.68rem;
    min-height: 0;
    padding: 0.9rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 211, 238, 0.45) rgba(255,255,255,0.06);
}

.spark-ia__ai-strip {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.34rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    color: #07111f;
    border: 1px solid rgba(246, 189, 53, 0.42);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(246, 189, 53, 0.96), rgba(34, 211, 238, 0.92));
    box-shadow: 0 12px 24px rgba(246, 189, 53, 0.12);
    font-size: 0.72rem;
    font-weight: 900;
}

.spark-ia__notice--floating {
    position: absolute;
    right: 0.78rem;
    bottom: 5rem;
    left: 0.78rem;
    z-index: 12;
    max-height: 3.15rem;
    margin: 0;
    padding: 0.48rem 0.62rem;
    overflow: hidden;
    color: #f2fbff;
    border-color: rgba(111, 247, 232, 0.28);
    border-radius: 14px;
    background: rgba(5, 18, 31, 0.92);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    font-size: 0.68rem;
    line-height: 1.25;
    backdrop-filter: blur(12px);
}

.spark-ia__lead ~ .spark-ia__notice--floating,
.spark-ia__intro ~ .spark-ia__notice--floating {
    bottom: 0.8rem;
}

.spark-ia__human-strip {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.58rem 0.68rem;
    color: #052e1a;
    border: 1px solid rgba(52, 211, 153, 0.38);
    border-radius: 13px;
    background: linear-gradient(135deg, #86efac, #5eead4);
    box-shadow: 0 12px 24px rgba(52, 211, 153, 0.16);
    font-size: 0.72rem;
    font-weight: 900;
}

.spark-ia__human-strip--pending {
    color: #dbeafe;
    border-color: rgba(96, 165, 250, 0.34);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(8, 47, 73, 0.92));
    box-shadow: 0 12px 24px rgba(96, 165, 250, 0.15);
}

    .spark-ia__human-strip--pending i {
        color: #bfdbfe;
        animation: sparkIaSoftBlink 1.25s ease-in-out infinite;
    }

.spark-ia__ai-strip i {
    display: block;
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.82);
    animation: sparkIaBars 0.82s ease-in-out infinite;
}

    .spark-ia__ai-strip i:nth-child(2) {
        animation-delay: 0.12s;
    }

    .spark-ia__ai-strip i:nth-child(3) {
        animation-delay: 0.24s;
    }

.spark-ia__message {
    display: flex;
    flex-direction: column;
    max-width: 88%;
    animation: sparkIaMessage 0.28s ease both;
}

    .spark-ia__message span {
        display: block;
        padding: 0.72rem 0.82rem;
        white-space: pre-wrap;
        overflow-wrap: anywhere;
        border-radius: 16px;
        font-size: 0.86rem;
        line-height: 1.42;
    }

    .spark-ia__message small {
        margin: 0.24rem 0.45rem 0;
        color: rgba(211, 232, 245, 0.5);
        font-size: 0.65rem;
        font-weight: 750;
    }

.spark-ia__key,
.spark-ia__folio-key {
    display: inline;
    padding: 0.08rem 0.34rem;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 950;
}

.spark-ia__key {
    color: #07111f;
    background: linear-gradient(135deg, #f6bd35, #8fe8ff);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.24) inset;
}

.spark-ia__folio-key {
    color: #ecfeff;
    background: rgba(34, 211, 238, 0.16);
    border: 1px solid rgba(34, 211, 238, 0.32);
}

.spark-ia__message--assistant {
    align-self: flex-start;
}

    .spark-ia__message--assistant span {
        color: #eff6ff;
        border: 1px solid rgba(96, 165, 250, 0.24);
        border-bottom-left-radius: 6px;
        background: linear-gradient(145deg, rgba(30, 64, 175, 0.48), rgba(79, 70, 229, 0.34));
        box-shadow: 0 12px 28px rgba(59, 130, 246, 0.13);
    }

.spark-ia__message--source-human {
    align-self: flex-start;
}

    .spark-ia__message--source-human span {
        color: #052e1a;
        border: 1px solid rgba(52, 211, 153, 0.34);
        border-bottom-left-radius: 6px;
        background: linear-gradient(135deg, #86efac, #5eead4);
        box-shadow: 0 12px 28px rgba(52, 211, 153, 0.16);
        font-weight: 780;
    }

    .spark-ia__message--source-human small {
        width: fit-content;
        padding: 0.18rem 0.48rem;
        color: #07111f;
        border-radius: 999px;
        background: #8fe8ff;
        box-shadow: 0 8px 18px rgba(34, 211, 238, 0.14);
    }

.spark-ia__message--user {
    align-self: flex-end;
}

    .spark-ia__message--user span {
        color: #06111f;
        border-bottom-right-radius: 6px;
        background: linear-gradient(135deg, #f6bd35, #8fe8ff);
        font-weight: 720;
    }

.spark-ia__typing {
    display: inline-flex !important;
    align-items: center;
    gap: 0.24rem;
    width: auto;
}

    .spark-ia__typing i {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #22d3ee;
        animation: sparkIaTyping 1s ease-in-out infinite;
    }

        .spark-ia__typing i:nth-child(2) {
            animation-delay: 0.14s;
        }

        .spark-ia__typing i:nth-child(3) {
            animation-delay: 0.28s;
        }

.spark-ia__typing-row {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 92%;
    padding: 0.46rem 0.62rem;
    color: #e0f2fe;
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(15, 23, 42, 0.64));
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.12);
    font-size: 0.72rem;
}

    .spark-ia__typing-row strong {
        font-size: 0.72rem;
        font-weight: 850;
    }

.spark-ia__topic-nudge {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.58rem;
    margin: 0 0.9rem 0.62rem;
    padding: 0.62rem 0.68rem;
    color: #e0f2fe;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(15, 23, 42, 0.7));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    font-size: 0.74rem;
    line-height: 1.34;
}

    .spark-ia__topic-nudge i {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        color: #06111f;
        border-radius: 11px;
        background: linear-gradient(135deg, #38bdf8, #f6bd35);
    }

.spark-ia__chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
    padding: 0.1rem 0.78rem 0.62rem;
    overflow: visible;
}

    .spark-ia__chips button {
        flex: 0 0 auto;
        max-width: 152px;
        min-height: 30px;
        padding: 0.32rem 0.5rem;
        color: #dff8ff;
        border: 1px solid rgba(34, 211, 238, 0.18);
        border-radius: 999px;
        background: rgba(34, 211, 238, 0.08);
        font-size: 0.66rem;
        font-weight: 780;
        white-space: nowrap;
        cursor: pointer;
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

        .spark-ia__chips button:hover {
            transform: translateY(-1px);
            border-color: rgba(246, 189, 53, 0.36);
            background: rgba(246, 189, 53, 0.1);
        }

    .spark-ia__chips .spark-ia__join-status {
        color: #dbeafe;
        border-color: rgba(96, 165, 250, 0.34);
        background: rgba(96, 165, 250, 0.16);
        opacity: 1;
    }

.spark-ia__join-status i {
    color: #93c5fd;
    animation: sparkIaSpin 1.05s linear infinite;
}

.spark-ia__notice {
    position: relative;
    z-index: 1;
    margin: 0 0.9rem 0.72rem;
    padding: 0.62rem 0.72rem;
    color: #dff8ff;
    border: 1px solid rgba(246, 189, 53, 0.22);
    border-radius: 12px;
    background: rgba(246, 189, 53, 0.08);
    font-size: 0.76rem;
    line-height: 1.35;
}

.spark-ia__human-modal {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 5.35rem;
    z-index: 9;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.72rem;
    padding: 0.85rem 0.95rem;
    color: #ecfdf5;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(6, 78, 59, 0.96), rgba(15, 23, 42, 0.96));
    box-shadow: 0 18px 54px rgba(0,0,0,0.42), 0 0 30px rgba(52, 211, 153, 0.14);
    animation: sparkIaHumanModal 0.32s ease both;
}

    .spark-ia__human-modal > button {
        position: absolute;
        top: 0.45rem;
        right: 0.45rem;
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        color: rgba(236, 253, 245, 0.82);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 10px;
        background: rgba(255,255,255,0.08);
    }

    .spark-ia__human-modal > span {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        color: #052e1a;
        border-radius: 14px;
        background: linear-gradient(135deg, #86efac, #5eead4);
    }

    .spark-ia__human-modal strong,
    .spark-ia__human-modal p {
        grid-column: 2;
        margin: 0;
    }

    .spark-ia__human-modal strong {
        padding-right: 1.7rem;
        font-size: 0.92rem;
        font-weight: 900;
    }

    .spark-ia__human-modal p {
        color: rgba(236, 253, 245, 0.78);
        font-size: 0.76rem;
        line-height: 1.38;
    }

.spark-ia__lead .spark-ia__notice {
    margin: 0;
}

.spark-ia__composer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 0.55rem;
    padding: 0.85rem 0.9rem 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(2, 11, 22, 0.48);
}

    .spark-ia__composer input {
        height: 44px;
        padding: 0 0.85rem;
        border-radius: 13px;
        font-size: 0.84rem;
    }

    .spark-ia__composer button {
        width: 44px;
        height: 44px;
        color: #06111f;
        border-color: transparent;
        background: linear-gradient(135deg, #22d3ee, #f6bd35);
    }

@keyframes sparkIaFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes sparkIaOrbGlow {
    0%, 100% {
        filter: brightness(1);
        box-shadow: 0 0 24px rgba(34, 211, 238, 0.36);
    }

    50% {
        filter: brightness(1.12);
        box-shadow: 0 0 30px rgba(246, 189, 53, 0.42);
    }
}

@keyframes sparkIaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(49, 217, 139, 0.55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(49, 217, 139, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(49, 217, 139, 0);
    }
}

@keyframes sparkIaPulseBlue {
    0% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(96, 165, 250, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
    }
}

@keyframes sparkIaSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sparkIaSoftBlink {
    0%, 100% {
        opacity: 0.58;
    }

    50% {
        opacity: 1;
    }
}

@keyframes sparkIaOpen {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

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

@keyframes sparkIaMessage {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

@keyframes sparkIaTyping {
    0%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@keyframes sparkIaGlowSweep {
    0%, 100% {
        transform: translateX(-8px);
        opacity: 0.72;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

@keyframes sparkIaBars {
    0%, 100% {
        transform: scaleY(0.52);
        opacity: 0.54;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes sparkIaHumanModal {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

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

body.spark-chat-soft-alert .spark-ia__panel,
body.spark-chat-soft-alert .spark-ia__launcher {
    animation: sparkIaSoftAttention 1.8s ease both;
}

.bs-privacy-card {
    position: fixed;
    right: clamp(0.75rem, 2vw, 1.2rem);
    bottom: clamp(0.75rem, 2vw, 1.2rem);
    z-index: 2200;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    gap: 0.62rem;
    width: min(390px, calc(100vw - 1.5rem));
    padding: 0.72rem;
    color: #e5f7ff;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(9, 18, 32, 0.94), rgba(15, 23, 42, 0.9));
    box-shadow: 0 18px 54px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

    .bs-privacy-card[hidden] {
        display: none;
    }

    .bs-privacy-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.bs-privacy-card__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #06202a;
    border-radius: 11px;
    background: linear-gradient(135deg, #67e8f9, #a7f3d0);
}

.bs-privacy-card strong,
.bs-privacy-card p {
    margin: 0;
}

.bs-privacy-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
}

.bs-privacy-card p {
    margin-top: 0.16rem;
    color: rgba(226, 241, 248, 0.68);
    font-size: 0.68rem;
    line-height: 1.34;
}

.bs-privacy-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
    margin-top: 0.48rem;
}

    .bs-privacy-card__actions button,
    .bs-privacy-card__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        color: #dff8ff;
        border: 1px solid rgba(125, 211, 252, 0.18);
        border-radius: 999px;
        background: rgba(14, 165, 233, 0.08);
        font-size: 0.68rem;
        font-weight: 850;
        cursor: pointer;
    }

    .bs-privacy-card__actions button {
        padding: 0 0.58rem;
    }

        .bs-privacy-card__actions button.is-location {
            color: #052e2b;
            border: 0;
            background: linear-gradient(135deg, #67e8f9, #a7f3d0);
        }

.bs-privacy-card__close {
    width: 26px;
    height: 26px;
    min-height: 26px;
    padding: 0;
    color: rgba(226, 241, 248, 0.78);
    background: rgba(255,255,255,0.06);
}

body.bs-location-enabled .bs-privacy-card {
    animation: sparkIaSoftAttention 1.8s ease both;
}

@keyframes sparkIaSoftAttention {
    0%, 100% {
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255,255,255,0.06);
    }

    24%, 62% {
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 0 4px rgba(94, 234, 212, 0.16), 0 0 42px rgba(52, 211, 153, 0.22);
    }
}

@media (max-width: 700px) {
    .bs-privacy-card {
        top: 0.7rem;
        right: 0.7rem;
        bottom: auto;
        left: 0.7rem;
        grid-template-columns: 30px minmax(0, 1fr) 24px;
        width: auto;
        padding: 0.58rem;
        border-radius: 13px;
    }

    .bs-privacy-card__icon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .bs-privacy-card p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.62rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .bs-privacy-card__actions {
        margin-top: 0.34rem;
    }

        .bs-privacy-card__actions button {
            min-height: 28px;
            padding: 0 0.48rem;
            font-size: 0.62rem;
        }

    .spark-ia {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
    }

    .spark-ia__launcher {
        width: min(260px, calc(100vw - 24px));
        min-height: 60px;
    }

    .spark-ia__panel {
        height: min(680px, calc(100dvh - 20px));
        min-height: 0;
        border-radius: 16px;
    }

    .spark-ia__header {
        gap: 0.5rem;
        padding: 0.72rem;
    }

    .spark-ia__avatar {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .spark-ia__brand {
        gap: 0.55rem;
    }

        .spark-ia__brand strong {
            font-size: 0.92rem;
        }

        .spark-ia__brand small {
            max-width: 155px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .spark-ia__messages {
        gap: 0.58rem;
        padding: 0.68rem;
    }

    .spark-ia__message {
        max-width: 94%;
    }

        .spark-ia__message span {
            padding: 0.68rem 0.76rem;
            border-radius: 14px;
            font-size: 0.84rem;
        }

    .spark-ia__chips {
        padding: 0.1rem 0.68rem 0.62rem;
    }

        .spark-ia__chips button {
            min-height: 38px;
            max-width: 220px;
            padding: 0.46rem 0.68rem;
        }

    .spark-ia__composer {
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 0.45rem;
        padding: 0.68rem;
    }

        .spark-ia__composer input,
        .spark-ia__composer button {
            height: 42px;
        }

    .spark-ia__human-modal {
        left: 0.68rem;
        right: 0.68rem;
        bottom: 4.75rem;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 0.62rem;
        padding: 0.78rem;
    }

    .spark-ia__intro h3 {
        font-size: 1.36rem;
    }

    .spark-ia__mode {
        max-width: 112px;
    }

    .spark-ia__signal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .bs-hero {
        min-height: min(760px, 100svh);
    }

    .bs-hero__content {
        grid-template-rows: auto minmax(7.2rem, auto) minmax(4.4rem, auto) auto;
        max-width: 100%;
        padding: 118px 0 88px;
    }

    .bs-hero h1 {
        max-width: 100%;
        margin: 14px 0 12px;
        font-size: clamp(2.05rem, 11vw, 3.15rem);
        line-height: 1.02;
        overflow-wrap: break-word;
    }

    .bs-hero p {
        max-width: 100%;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .bs-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        max-width: 310px;
        margin-top: 0;
    }

        .bs-hero__actions .bs-btn {
            width: 100%;
            min-height: 42px;
            padding: 0 0.82rem;
            font-size: 0.82rem;
        }

    .bs-hero__rail {
        bottom: 18px;
        font-size: 0.76rem;
    }

    .bs-footer__bottom {
        align-items: flex-start;
        gap: 0.72rem;
    }

    .bs-footer__version {
        max-width: 100%;
        font-size: 0.68rem;
    }
}

/* ==========================================================
   SPARK IA LIVE OPERATOR
========================================================== */

.spark-live {
    min-height: 100vh;
    padding: clamp(1rem, 3vw, 2rem);
    color: #f8fbff;
    background: radial-gradient(circle at 14% 12%, rgba(52, 211, 153, 0.14), transparent 28%), radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.16), transparent 32%), linear-gradient(145deg, #07111f, #12151c 52%, #08111d);
}

.spark-live__shell {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    width: min(1120px, 100%);
    height: calc(100vh - clamp(2rem, 6vw, 4rem));
    min-height: 620px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(18, 21, 28, 0.96), rgba(15, 23, 42, 0.94));
    box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}

.spark-live__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .spark-live__top span {
        color: #34d399;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .spark-live__top h1 {
        margin: 0.22rem 0;
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        line-height: 1;
    }

    .spark-live__top p {
        margin: 0;
        color: rgba(226, 232, 240, 0.68);
    }

.spark-live__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.68rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.78);
    background: rgba(148, 163, 184, 0.08);
    font-size: 0.75rem;
}

    .spark-live__status i {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #94a3b8;
    }

    .spark-live__status.is-on {
        color: #dcfce7;
        border-color: rgba(52, 211, 153, 0.28);
        background: rgba(52, 211, 153, 0.1);
    }

        .spark-live__status.is-on i {
            background: #22c55e;
            box-shadow: 0 0 16px rgba(34, 197, 94, 0.7);
        }

.spark-live__actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.spark-live__end {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 38px;
    padding: 0 0.72rem;
    color: #ffe4e6;
    border: 1px solid rgba(251, 113, 133, 0.34);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.24), rgba(244, 63, 94, 0.16));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 26px rgba(244, 63, 94, 0.12);
    font-size: 0.74rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

    .spark-live__end:hover {
        transform: translateY(-1px);
        border-color: rgba(251, 113, 133, 0.58);
        background: linear-gradient(135deg, rgba(190, 18, 60, 0.34), rgba(244, 63, 94, 0.22));
    }

    .spark-live__end:disabled {
        opacity: 0.58;
        cursor: not-allowed;
        transform: none;
    }

.spark-live__lead {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .spark-live__lead span {
        display: inline-flex;
        align-items: center;
        gap: 0.38rem;
        min-height: 32px;
        padding: 0.36rem 0.62rem;
        border: 1px solid rgba(96, 165, 250, 0.18);
        border-radius: 999px;
        color: rgba(239, 246, 255, 0.9);
        background: rgba(96, 165, 250, 0.08);
        font-size: 0.76rem;
        font-weight: 760;
    }

.spark-live__copilot {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.78rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(15, 23, 42, 0.62)), rgba(255,255,255,0.025);
}

    .spark-live__copilot > div:first-child {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 0.58rem;
        align-items: start;
        min-width: 0;
    }

        .spark-live__copilot > div:first-child > span {
            display: grid;
            width: 40px;
            height: 40px;
            place-items: center;
            color: #06111f;
            border-radius: 13px;
            background: linear-gradient(135deg, #38bdf8, #f6bd35);
        }

    .spark-live__copilot strong,
    .spark-live__copilot p {
        margin: 0;
    }

    .spark-live__copilot strong {
        grid-column: 2;
        color: #f8fbff;
        font-size: 0.86rem;
        font-weight: 920;
    }

    .spark-live__copilot p {
        grid-column: 2;
        margin-top: 0.22rem;
        color: rgba(226, 232, 240, 0.68);
        font-size: 0.74rem;
        line-height: 1.34;
    }

.spark-live__shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.48rem;
    min-width: 0;
}

    .spark-live__shortcuts button {
        display: inline-flex;
        align-items: center;
        gap: 0.38rem;
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 0.42rem 0.62rem;
        color: #e0f2fe;
        border: 1px solid rgba(125, 211, 252, 0.2);
        border-radius: 999px;
        background: rgba(14, 165, 233, 0.1);
        font-size: 0.7rem;
        font-weight: 850;
        cursor: pointer;
        white-space: normal;
        line-height: 1.16;
        text-align: left;
    }

        .spark-live__shortcuts button i {
            flex: 0 0 auto;
        }

        .spark-live__shortcuts button span {
            min-width: 0;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .spark-live__shortcuts button:hover {
            border-color: rgba(246, 189, 53, 0.42);
            background: rgba(246, 189, 53, 0.1);
        }

.spark-live__copilot.is-topic-erp > div:first-child > span,
.spark-live__copilot.is-topic-games > div:first-child > span {
    background: linear-gradient(135deg, #a78bfa, #38bdf8);
}

.spark-live__copilot.is-topic-logistics > div:first-child > span,
.spark-live__copilot.is-topic-construction > div:first-child > span {
    background: linear-gradient(135deg, #fb923c, #f6bd35);
}

.spark-live__copilot.is-topic-school > div:first-child > span,
.spark-live__copilot.is-topic-warehouse > div:first-child > span {
    background: linear-gradient(135deg, #86efac, #5eead4);
}

.spark-live__copilot.is-topic-ecommerce > div:first-child > span,
.spark-live__copilot.is-topic-health > div:first-child > span {
    background: linear-gradient(135deg, #f472b6, #fb7185);
}

.spark-live__messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
    padding: 1rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 165, 250, 0.48) rgba(255,255,255,0.06);
}

.spark-live__message {
    display: flex;
    flex-direction: column;
    max-width: 78%;
}

    .spark-live__message span {
        padding: 0.72rem 0.82rem;
        border-radius: 16px;
        white-space: pre-wrap;
        overflow-wrap: anywhere;
        line-height: 1.45;
    }

    .spark-live__message small {
        margin-top: 0.24rem;
        color: rgba(226, 232, 240, 0.5);
        font-size: 0.66rem;
        font-weight: 780;
    }

.spark-live__message--user {
    align-self: flex-start;
}

    .spark-live__message--user span {
        border-bottom-left-radius: 6px;
        color: #e0f2fe;
        background: rgba(14, 165, 233, 0.18);
        border: 1px solid rgba(14, 165, 233, 0.24);
    }

.spark-live__message--assistant {
    align-self: flex-start;
}

    .spark-live__message--assistant span {
        border-bottom-left-radius: 6px;
        color: #eef2ff;
        background: rgba(79, 70, 229, 0.2);
        border: 1px solid rgba(129, 140, 248, 0.22);
    }

.spark-live__message--human {
    align-self: flex-end;
}

    .spark-live__message--human span {
        border-bottom-right-radius: 6px;
        color: #052e1a;
        background: linear-gradient(135deg, #86efac, #5eead4);
        font-weight: 780;
    }

    .spark-live__message--human small {
        text-align: right;
    }

.spark-live__typing {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: max-content;
    max-width: 92%;
    padding: 0.48rem 0.68rem;
    color: #ecfeff;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(15, 23, 42, 0.62));
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.12);
}

    .spark-live__typing span {
        display: inline-flex;
        align-items: center;
        gap: 0.22rem;
    }

    .spark-live__typing i {
        display: block;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #60a5fa;
        animation: sparkIaTyping 1s ease-in-out infinite;
    }

        .spark-live__typing i:nth-child(2) {
            animation-delay: 0.14s;
        }

        .spark-live__typing i:nth-child(3) {
            animation-delay: 0.28s;
        }

    .spark-live__typing strong {
        font-size: 0.74rem;
        font-weight: 860;
    }

.spark-live__notice {
    margin: 0.75rem 1rem;
    padding: 0.64rem 0.75rem;
    color: #dbeafe;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 12px;
    background: rgba(96, 165, 250, 0.09);
    font-size: 0.82rem;
}

.spark-live__composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(2, 6, 23, 0.38);
}

    .spark-live__composer input,
    .spark-live__modal input {
        width: 100%;
        min-width: 0;
        height: 46px;
        padding: 0 0.85rem;
        color: #fff;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 13px;
        outline: none;
        background: rgba(255,255,255,0.07);
    }

    .spark-live__composer button,
    .spark-live__modal button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        min-height: 46px;
        padding: 0 0.95rem;
        color: #052e1a;
        border: 0;
        border-radius: 13px;
        background: linear-gradient(135deg, #86efac, #5eead4);
        font-weight: 900;
        cursor: pointer;
    }

        .spark-live__composer button:disabled,
        .spark-live__modal button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

.spark-live__gate {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.58);
    backdrop-filter: blur(16px);
}

.spark-live__modal {
    width: min(420px, 100%);
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(18, 21, 28, 0.98), rgba(15, 23, 42, 0.98));
    box-shadow: 0 28px 90px rgba(0,0,0,0.44);
}

.spark-live__robot {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #052e1a;
    border-radius: 16px;
    background: linear-gradient(135deg, #86efac, #5eead4);
}

.spark-live__modal h2 {
    margin: 0.9rem 0 0.35rem;
    font-size: 1.65rem;
}

.spark-live__modal p {
    margin: 0 0 1rem;
    color: rgba(226, 232, 240, 0.72);
}

.spark-live__modal form,
.spark-live__modal label {
    display: grid;
    gap: 0.62rem;
}

    .spark-live__modal label span {
        color: rgba(226, 232, 240, 0.72);
        font-size: 0.75rem;
        font-weight: 820;
    }

@media (max-width: 700px) {
    .spark-live {
        padding: 0.7rem;
    }

    .spark-live__shell {
        height: calc(100vh - 1.4rem);
        min-height: 0;
        border-radius: 16px;
    }

    .spark-live__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .spark-live__copilot {
        grid-template-columns: 1fr;
        padding: 0.68rem;
    }

    .spark-live__shortcuts {
        grid-template-columns: 1fr;
    }

        .spark-live__shortcuts button {
            max-width: none;
        }

    .spark-live__message {
        max-width: 92%;
    }

    .spark-live__composer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .spark-ia__launcher {
        grid-template-columns: 42px minmax(0, 1fr) 10px;
        gap: 0.55rem;
    }

    .spark-ia__orb {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .spark-ia__lead,
    .spark-ia__intro,
    .spark-ia__composer {
        padding-inline: 0.75rem;
    }
}

/* ==========================================================
   SPARK IA VISUAL REFRESH
========================================================== */

.spark-ia__launcher,
.spark-ia__panel {
    border-color: rgba(255,255,255,0.13);
    background: linear-gradient(150deg, rgba(18, 21, 28, 0.98), rgba(30, 36, 48, 0.96) 54%, rgba(17, 24, 39, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

    .spark-ia__launcher:hover {
        border-color: rgba(52, 211, 153, 0.34);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), 0 0 36px rgba(52, 211, 153, 0.14);
    }

.spark-ia__orb,
.spark-ia__avatar,
.spark-ia__primary,
.spark-ia__composer button {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #0f766e);
    box-shadow: 0 12px 26px rgba(22, 163, 74, 0.24);
}

.spark-ia__panel.is-ai-active {
    border-color: rgba(244, 114, 182, 0.34);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.52), 0 0 54px rgba(244, 114, 182, 0.14), inset 0 1px 0 rgba(255,255,255,0.08);
}

    .spark-ia__panel.is-ai-active .spark-ia__glow {
        background: linear-gradient(90deg, rgba(52, 211, 153, 0.18), rgba(244, 114, 182, 0.22), rgba(249, 115, 22, 0.16));
    }

    .spark-ia__panel.is-ai-active .spark-ia__mode,
    .spark-ia__ai-strip {
        color: #ffffff;
        border-color: rgba(244, 114, 182, 0.28);
        background: linear-gradient(135deg, #e11d48, #7c3aed);
    }

.spark-ia__signal-grid i,
.spark-ia__offer-modules__grid i {
    color: #34d399;
}

.spark-ia__message--user span {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #0f766e);
}

.spark-ia__message--assistant span {
    color: #eff6ff;
    border-color: rgba(96, 165, 250, 0.26);
    background: linear-gradient(145deg, rgba(30, 64, 175, 0.52), rgba(79, 70, 229, 0.36));
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.14);
}

.spark-ia__message--source-human span {
    color: #052e1a;
    border-color: rgba(52, 211, 153, 0.34);
    background: linear-gradient(135deg, #86efac, #5eead4);
    box-shadow: 0 12px 28px rgba(52, 211, 153, 0.16);
}

.spark-ia__chips {
    align-items: center;
    flex-wrap: wrap;
    overflow: visible;
}

    .spark-ia__chips > strong {
        flex: 0 0 auto;
        align-self: center;
        color: rgba(238, 246, 250, 0.64);
        font-size: 0.62rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .spark-ia__chips button {
        border-color: rgba(52, 211, 153, 0.18);
        background: rgba(52, 211, 153, 0.08);
    }

        .spark-ia__chips button:hover {
            border-color: rgba(244, 114, 182, 0.28);
            background: rgba(244, 114, 182, 0.1);
        }

.spark-ia__folio {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 100%;
    margin: 0.1rem auto 0.25rem;
    padding: 0.45rem 0.7rem;
    color: rgba(246, 250, 252, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.24);
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.08);
    font-size: 0.74rem;
    font-weight: 750;
}

    .spark-ia__folio i {
        color: #fb923c;
    }

    .spark-ia__folio strong {
        color: #ffffff;
        letter-spacing: 0.02em;
    }

/* ==========================================================
   SPARK IA PRESENCE + LEAD FORM FIX
========================================================== */

.spark-ia__panel.is-lead-gate {
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - 34px);
    overflow: visible;
    scrollbar-width: thin;
    scrollbar-color: rgba(52, 211, 153, 0.38) rgba(255,255,255,0.06);
}

    .spark-ia__panel.is-lead-gate .spark-ia__header {
        position: sticky;
        top: 0;
        z-index: 8;
        background: rgba(18, 21, 28, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .spark-ia__panel.is-lead-gate .spark-ia__intro {
        padding-bottom: 0;
    }

    .spark-ia__panel.is-lead-gate .spark-ia__lead {
        grid-template-columns: 1fr;
        gap: 0.52rem;
        padding: 0.58rem 0.78rem 0.9rem;
    }

    .spark-ia__panel.is-lead-gate .spark-ia__primary {
        position: relative;
        z-index: 6;
        width: 100%;
        min-height: 50px;
        margin-top: 0.15rem;
        box-shadow: 0 16px 32px rgba(22, 163, 74, 0.34), 0 0 0 7px rgba(18, 21, 28, 0.78);
    }

    .spark-ia__panel.is-lead-gate .spark-ia__signal-grid span {
        min-height: 50px;
    }

.spark-ia__teaser,
.spark-ia__lead-nudge,
.spark-ia__presence-line,
.spark-ia__presence-toast {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.62rem;
    color: #eef8f4;
    border: 1px solid rgba(52, 211, 153, 0.18);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(21, 27, 36, 0.98), rgba(28, 36, 47, 0.94));
    box-shadow: 0 16px 42px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
}

.spark-ia__teaser {
    position: absolute;
    left: 0;
    bottom: calc(100% + 0.8rem);
    width: min(350px, calc(100vw - 28px));
    padding: 0.72rem 0.78rem;
    cursor: pointer;
    animation: sparkIaTeaserIn 0.38s ease both;
}

    .spark-ia__teaser.is-ping,
    .spark-ia__lead-nudge.is-ping,
    .spark-ia__presence-line.is-ping,
    .spark-ia__presence-toast.is-ping {
        animation: sparkIaPresencePing 1.12s cubic-bezier(.22, .8, .26, 1) both;
    }

    .spark-ia__teaser::after {
        position: absolute;
        left: 30px;
        bottom: -7px;
        width: 14px;
        height: 14px;
        content: "";
        border-right: 1px solid rgba(52, 211, 153, 0.18);
        border-bottom: 1px solid rgba(52, 211, 153, 0.18);
        background: rgba(21, 27, 36, 0.98);
        transform: rotate(45deg);
    }

.spark-ia__lead-nudge {
    margin-top: 0.85rem;
    padding: 0.66rem 0.7rem;
}

.spark-ia__presence-line {
    grid-column: 1 / -1;
    flex: 0 0 100%;
    width: 100%;
    padding: 0.58rem 0.66rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(22, 163, 74, 0.12), rgba(244, 114, 182, 0.08));
}

.spark-ia__presence-toast {
    position: relative;
    z-index: 3;
    width: calc(100% - 1.8rem);
    margin: -0.2rem auto 0.62rem;
    padding: 0.62rem 0.68rem;
    border-color: rgba(244, 114, 182, 0.24);
    background: linear-gradient(145deg, rgba(88, 28, 135, 0.88), rgba(15, 23, 42, 0.96));
    box-shadow: 0 16px 42px rgba(0,0,0,0.36), 0 0 26px rgba(244, 114, 182, 0.12);
    animation: sparkIaToastLife 7.25s ease both;
}

    .spark-ia__presence-toast.is-chat-toast {
        position: absolute;
        left: calc(100% + 14px);
        right: auto;
        bottom: 92px;
        width: min(320px, calc(100vw - 430px));
        margin: 0;
        pointer-events: none;
        border-color: rgba(96, 165, 250, 0.28);
        background: linear-gradient(145deg, rgba(30, 64, 175, 0.94), rgba(88, 28, 135, 0.92));
        box-shadow: 0 18px 46px rgba(0,0,0,0.34), 0 0 30px rgba(96, 165, 250, 0.14);
    }

    .spark-ia__presence-toast::before {
        position: absolute;
        left: 14px;
        top: -8px;
        width: 16px;
        height: 16px;
        content: "";
        border-left: 1px solid rgba(244, 114, 182, 0.22);
        border-top: 1px solid rgba(244, 114, 182, 0.22);
        background: rgba(88, 28, 135, 0.88);
        transform: rotate(45deg);
    }

    .spark-ia__presence-toast.is-chat-toast::before {
        left: -8px;
        top: auto;
        bottom: 28px;
        border-top: 0;
        border-left: 1px solid rgba(96, 165, 250, 0.24);
        border-bottom: 1px solid rgba(96, 165, 250, 0.24);
        background: rgba(30, 64, 175, 0.94);
    }

.spark-ia__mini-bot {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #0f766e);
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.24);
}

.spark-ia__teaser p,
.spark-ia__lead-nudge p,
.spark-ia__presence-line p,
.spark-ia__presence-toast p {
    margin: 0;
    color: rgba(241, 250, 246, 0.9);
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.35;
}

.spark-ia__mini-dots {
    display: inline-flex;
    gap: 0.18rem;
}

    .spark-ia__mini-dots i {
        width: 5px;
        height: 5px;
        border-radius: 999px;
        background: #34d399;
        animation: sparkIaMiniDot 1s ease-in-out infinite;
    }

        .spark-ia__mini-dots i:nth-child(2) {
            animation-delay: 0.14s;
        }

        .spark-ia__mini-dots i:nth-child(3) {
            animation-delay: 0.28s;
        }

@keyframes sparkIaTeaserIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

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

@keyframes sparkIaMiniDot {
    0%, 100% {
        opacity: 0.32;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@keyframes sparkIaPresencePing {
    0% {
        transform: translateY(6px) scale(0.985);
        box-shadow: 0 12px 30px rgba(0,0,0,0.28), 0 0 0 0 rgba(52, 211, 153, 0.32);
    }

    42% {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 18px 48px rgba(0,0,0,0.36), 0 0 0 9px rgba(52, 211, 153, 0.08);
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 16px 42px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
    }
}

@keyframes sparkIaToastLife {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    12%, 78% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-6px) scale(0.985);
    }
}

@media (max-width: 700px) {
    .spark-ia__teaser {
        width: min(340px, calc(100vw - 24px));
    }

    .spark-ia__presence-toast.is-chat-toast {
        left: 0;
        right: 0;
        bottom: calc(100% + 0.7rem);
        width: 100%;
        max-width: none;
    }

        .spark-ia__presence-toast.is-chat-toast::before {
            left: 28px;
            right: auto;
            top: auto;
            bottom: -8px;
            border-left: 0;
            border-top: 0;
            border-right: 1px solid rgba(96, 165, 250, 0.24);
            border-bottom: 1px solid rgba(96, 165, 250, 0.24);
        }

    .spark-ia__panel.is-lead-gate .spark-ia__lead {
        grid-template-columns: 1fr;
    }

    .spark-ia__panel.is-lead-gate .spark-ia__primary {
        grid-column: auto;
    }

    .spark-ia__lead-nudge,
    .spark-ia__presence-line {
        grid-template-columns: 32px minmax(0, 1fr);
    }

        .spark-ia__lead-nudge .spark-ia__mini-dots,
        .spark-ia__presence-line .spark-ia__mini-dots {
            display: none;
        }
}

/* ==========================================================
   BitSpark Admin Command Center
   ========================================================== */

.bs-admin {
    min-height: 100vh;
    color: #eff6ff;
    background: radial-gradient(circle at 16% 10%, rgba(20, 184, 166, 0.16), transparent 30%), radial-gradient(circle at 88% 4%, rgba(248, 113, 113, 0.12), transparent 28%), linear-gradient(145deg, #07111f, #111827 58%, #050914);
}

.bs-admin-gate {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1rem;
}

.bs-admin-gate__panel {
    width: min(440px, 100%);
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.94));
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.bs-admin-gate__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #042f2e;
    border-radius: 16px;
    background: linear-gradient(135deg, #5eead4, #a7f3d0);
    box-shadow: 0 18px 42px rgba(20, 184, 166, 0.24);
}

.bs-admin-gate__panel p,
.bs-admin__hero span,
.bs-admin-panel header span {
    margin: 1rem 0 0.25rem;
    color: #5eead4;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.bs-admin-gate__panel h1,
.bs-admin__hero h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.45rem);
    line-height: 0.98;
}

.bs-admin-gate__panel > span:not(.bs-admin-gate__icon),
.bs-admin__hero p {
    display: block;
    margin-top: 0.6rem;
    color: rgba(226, 232, 240, 0.72);
}

.bs-admin-gate__panel form {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.bs-admin-gate__panel label {
    display: grid;
    gap: 0.38rem;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.78rem;
    font-weight: 820;
}

.bs-admin-gate__panel input,
.bs-admin-panel select {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 0.75rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    outline: none;
    background: rgba(255,255,255,0.07);
}

.bs-admin-gate__panel button,
.bs-admin__hero-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    min-height: 42px;
    padding: 0 0.9rem;
    color: #042f2e;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #5eead4, #a7f3d0);
    font-weight: 900;
    cursor: pointer;
}

.bs-admin__shell {
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
}

.bs-admin__hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
}

.bs-admin__hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

    .bs-admin__hero-actions button {
        color: #e0f2fe;
        border: 1px solid rgba(125, 211, 252, 0.18);
        background: rgba(14, 165, 233, 0.11);
    }

        .bs-admin__hero-actions button.is-on {
            color: #052e1a;
            border: 0;
            background: linear-gradient(135deg, #86efac, #5eead4);
        }

.bs-admin__notice {
    margin: 0.75rem 0;
    padding: 0.72rem 0.85rem;
    color: #dbeafe;
    border: 1px solid rgba(96, 165, 250, 0.24);
    border-radius: 12px;
    background: rgba(96, 165, 250, 0.1);
    font-size: 0.85rem;
}

.bs-admin__metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.bs-admin-card,
.bs-admin-panel {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 55px rgba(0,0,0,0.2);
    backdrop-filter: blur(18px);
}

.bs-admin-card {
    display: grid;
    gap: 0.35rem;
    min-height: 150px;
    padding: 0.95rem;
    border-radius: 16px;
}

    .bs-admin-card span {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        color: #ccfbf1;
        border: 1px solid rgba(94, 234, 212, 0.18);
        border-radius: 12px;
        background: rgba(20, 184, 166, 0.1);
    }

    .bs-admin-card small,
    .bs-admin-card em,
    .bs-admin-panel header small,
    .bs-admin-table small,
    .bs-admin-lead small,
    .bs-admin-lead em,
    .bs-admin-bars small,
    .bs-admin-events small {
        color: rgba(226, 232, 240, 0.58);
        font-size: 0.72rem;
        font-style: normal;
        font-weight: 760;
    }

    .bs-admin-card strong {
        font-size: clamp(1.55rem, 3vw, 2.15rem);
        line-height: 1;
    }

.bs-admin__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 0.85rem;
    margin-top: 0.85rem;
}

.bs-admin-panel {
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.bs-admin-panel--wide {
    grid-column: 1 / -1;
}

.bs-admin-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .bs-admin-panel header h2 {
        margin: 0.2rem 0 0;
        font-size: 1.1rem;
    }

.bs-admin-table {
    overflow-x: auto;
}

    .bs-admin-table table {
        width: 100%;
        border-collapse: collapse;
        min-width: 760px;
    }

    .bs-admin-table th,
    .bs-admin-table td {
        padding: 0.78rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        text-align: left;
        vertical-align: top;
    }

    .bs-admin-table th {
        color: rgba(226, 232, 240, 0.62);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .bs-admin-table td {
        color: rgba(241, 245, 249, 0.9);
        font-size: 0.82rem;
    }

        .bs-admin-table td strong,
        .bs-admin-table td small {
            display: block;
        }

    .bs-admin-table a,
    .bs-admin-lead a {
        color: #67e8f9;
        font-weight: 850;
        text-decoration: none;
    }

.bs-admin-list {
    display: grid;
    gap: 0.72rem;
    max-height: 560px;
    overflow: auto;
    padding: 0.9rem;
}

.bs-admin-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    padding: 0.78rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
}

    .bs-admin-lead p {
        display: -webkit-box;
        margin: 0.35rem 0;
        overflow: hidden;
        color: rgba(226, 232, 240, 0.75);
        font-size: 0.78rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

.bs-admin-chat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-top: 0.45rem;
}

.bs-admin-lead select {
    grid-column: 1 / -1;
}

.bs-admin-pill {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 28px;
    padding: 0 0.55rem;
    color: #dbeafe;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.09);
    font-size: 0.7rem;
    font-weight: 900;
}

    .bs-admin-pill.is-live {
        color: #dcfce7;
        border-color: rgba(34, 197, 94, 0.28);
        background: rgba(34, 197, 94, 0.12);
    }

    .bs-admin-pill.is-ai {
        color: #dbeafe;
        border-color: rgba(96, 165, 250, 0.3);
        background: rgba(96, 165, 250, 0.12);
    }

    .bs-admin-pill.is-human {
        color: #dcfce7;
        border-color: rgba(34, 197, 94, 0.3);
        background: rgba(34, 197, 94, 0.12);
    }

    .bs-admin-pill.is-user {
        color: #fef3c7;
        border-color: rgba(245, 158, 11, 0.32);
        background: rgba(245, 158, 11, 0.12);
    }

.bs-admin-bars,
.bs-admin-events {
    display: grid;
    gap: 0.78rem;
    padding: 0.95rem;
}

    .bs-admin-bars div {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.32rem 0.75rem;
    }

    .bs-admin-bars span,
    .bs-admin-events strong {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bs-admin-bars i {
        grid-column: 1 / -1;
        display: block;
        height: 8px;
        max-width: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #5eead4, #60a5fa);
    }

    .bs-admin-events div {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.2rem 0.8rem;
        padding: 0.72rem;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        background: rgba(255,255,255,0.04);
    }

    .bs-admin-events span {
        color: #a7f3d0;
        font-size: 1.1rem;
        font-weight: 950;
    }

    .bs-admin-events small {
        grid-column: 1 / -1;
    }

@media (max-width: 1100px) {
    .bs-admin__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bs-admin__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .bs-admin__shell {
        padding: 0.8rem;
    }

    .bs-admin__hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .bs-admin__hero-actions,
    .bs-admin__hero-actions button {
        width: 100%;
    }

    .bs-admin__metrics {
        grid-template-columns: 1fr;
    }

    .bs-admin-lead {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   SPARK IA BRAND THEMES + COMPOSER STABILITY
========================================================== */

.spark-ia,
.spark-live {
    --spark-brand-primary: #22a699;
    --spark-brand-secondary: #37d5e8;
    --spark-brand-accent: #f6bd35;
    --spark-brand-soft: rgba(34, 166, 153, 0.12);
}

    .spark-ia.is-brand-gold,
    .spark-live.is-brand-gold {
        --spark-brand-primary: #f6bd35;
        --spark-brand-secondary: #37d5e8;
        --spark-brand-accent: #22a699;
        --spark-brand-soft: rgba(246, 189, 53, 0.14);
    }

    .spark-ia.is-brand-cyan,
    .spark-live.is-brand-cyan {
        --spark-brand-primary: #37d5e8;
        --spark-brand-secondary: #22a699;
        --spark-brand-accent: #f6bd35;
        --spark-brand-soft: rgba(55, 213, 232, 0.13);
    }

.spark-ia__launcher,
.spark-ia__panel,
.spark-live__shell,
.spark-live__modal {
    border-color: color-mix(in srgb, var(--spark-brand-secondary) 36%, transparent);
    background: radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--spark-brand-secondary) 17%, transparent), transparent 34%), radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--spark-brand-accent) 13%, transparent), transparent 32%), linear-gradient(150deg, rgba(10, 18, 30, 0.98), rgba(20, 29, 45, 0.97) 56%, rgba(8, 15, 26, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 42px color-mix(in srgb, var(--spark-brand-secondary) 16%, transparent);
}

    .spark-ia__orb,
    .spark-ia__avatar,
    .spark-ia__primary,
    .spark-ia__composer button,
    .spark-live__robot,
    .spark-live__composer button,
    .spark-live__modal button {
        color: #06111f;
        background: linear-gradient(135deg, var(--spark-brand-secondary), var(--spark-brand-accent));
        box-shadow: 0 12px 28px color-mix(in srgb, var(--spark-brand-secondary) 28%, transparent);
    }

.spark-ia__message--user span,
.spark-live__message--user span {
    color: #06111f;
    background: linear-gradient(135deg, var(--spark-brand-primary), var(--spark-brand-secondary));
    box-shadow: 0 12px 28px color-mix(in srgb, var(--spark-brand-primary) 20%, transparent);
}

.spark-ia__message--assistant span,
.spark-live__message--assistant span {
    border-color: color-mix(in srgb, var(--spark-brand-secondary) 26%, transparent);
    background: linear-gradient(145deg, color-mix(in srgb, var(--spark-brand-primary) 28%, rgba(17, 24, 39, 0.82)), rgba(30, 41, 59, 0.72));
}

.spark-ia__mode,
.spark-live__status,
.spark-live__lead span {
    border-color: color-mix(in srgb, var(--spark-brand-secondary) 26%, transparent);
    background: var(--spark-brand-soft);
}

.spark-ia__lead input:focus,
.spark-ia__composer input:focus,
.spark-live__composer input:focus,
.spark-live__modal input:focus {
    border-color: color-mix(in srgb, var(--spark-brand-secondary) 58%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--spark-brand-secondary) 14%, transparent);
}

.spark-ia__chips {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.34rem;
    overflow: visible;
    padding: 0.18rem 0.78rem 0.62rem;
    scrollbar-width: none;
}

    .spark-ia__chips::-webkit-scrollbar {
        display: none;
    }

    .spark-ia__chips > strong {
        flex: 0 0 100%;
        margin-bottom: 0.02rem;
        color: rgba(238, 246, 250, 0.62);
        font-size: 0.58rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        line-height: 1;
        text-transform: uppercase;
    }

    .spark-ia__chips button {
        flex: 0 1 auto;
        max-width: calc(50% - 0.18rem);
        min-height: 27px;
        padding: 0.26rem 0.48rem;
        overflow: hidden;
        color: #eaffff;
        border-color: color-mix(in srgb, var(--spark-brand-secondary) 28%, transparent);
        background: color-mix(in srgb, var(--spark-brand-primary) 12%, rgba(255, 255, 255, 0.03));
        font-size: 0.62rem;
        line-height: 1.12;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .spark-ia__chips button:hover {
            border-color: color-mix(in srgb, var(--spark-brand-accent) 48%, transparent);
            background: color-mix(in srgb, var(--spark-brand-accent) 14%, rgba(255, 255, 255, 0.04));
        }

    .spark-ia__chips .spark-ia__join-status {
        color: #f8fbff;
        border-color: color-mix(in srgb, var(--spark-brand-accent) 44%, transparent);
        background: color-mix(in srgb, var(--spark-brand-accent) 15%, rgba(255, 255, 255, 0.04));
    }

.spark-live__shortcuts button {
    border-color: color-mix(in srgb, var(--spark-brand-secondary) 24%, transparent);
    background: color-mix(in srgb, var(--spark-brand-primary) 11%, rgba(255, 255, 255, 0.03));
}

    .spark-live__shortcuts button:hover {
        border-color: color-mix(in srgb, var(--spark-brand-accent) 42%, transparent);
        background: color-mix(in srgb, var(--spark-brand-accent) 12%, rgba(255, 255, 255, 0.04));
    }

@media (max-width: 560px) {
    .spark-ia__chips {
        gap: 0.28rem;
        padding-inline: 0.62rem;
    }

        .spark-ia__chips button {
            max-width: calc(50% - 0.14rem);
            min-height: 26px;
            padding: 0.24rem 0.42rem;
            font-size: 0.58rem;
        }
}

/* ==========================================================
   SPARK IA WORLD-CLASS CONTRAST PASS
========================================================== */

.spark-ia__human-strip {
    position: static;
    color: #eafcff;
    border: 1px solid rgba(55, 213, 232, 0.34);
    background: #102033;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

    .spark-ia__human-strip i {
        color: #f6bd35;
    }

.spark-ia__human-strip--pending {
    color: #eff6ff;
    border-color: rgba(246, 189, 53, 0.4);
    background: #172033;
}

    .spark-ia__human-strip--pending i {
        color: #f6bd35;
    }

.spark-ia__message--source-human span,
.spark-live__message--human span {
    color: #f8fbff;
    border: 1px solid rgba(55, 213, 232, 0.36);
    background: #0f2940;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    font-weight: 760;
}

.spark-ia__message--source-human small,
.spark-live__message--human small {
    color: #8fe8ff;
}

.spark-ia__message--assistant span,
.spark-live__message--assistant span {
    color: #eef7ff;
    border: 1px solid rgba(139, 197, 255, 0.24);
    background: #17263b;
}

.spark-ia__message--user span,
.spark-live__message--user span {
    color: #07111f;
    background: #f6bd35;
    border: 0;
}

.spark-ia__human-modal {
    color: #f8fbff;
    border: 1px solid rgba(246, 189, 53, 0.36);
    background: #111827;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 28px rgba(246, 189, 53, 0.16);
}

    .spark-ia__human-modal > span {
        color: #07111f;
        background: #f6bd35;
    }

    .spark-ia__human-modal strong {
        color: #ffffff;
    }

    .spark-ia__human-modal p {
        color: rgba(238, 246, 250, 0.74);
    }

.spark-ia__engineer-chip {
    color: #07111f !important;
    border-color: rgba(246, 189, 53, 0.72) !important;
    background: #f6bd35 !important;
    font-weight: 920;
}

    .spark-ia__engineer-chip i {
        color: #102033;
    }

/* ==========================================================
   SPARK IA COMPACT CHAT HUD
========================================================== */

.spark-ia__panel {
    position: relative;
}

.spark-ia__notice.spark-ia__notice--floating {
    position: absolute;
    right: 0.78rem;
    bottom: 5.1rem;
    left: 0.78rem;
    z-index: 12;
    max-height: 3.05rem;
    margin: 0;
    padding: 0.48rem 0.62rem;
    overflow: hidden;
    color: #f2fbff;
    border: 1px solid rgba(111, 247, 232, 0.28);
    border-radius: 14px;
    background: rgba(5, 18, 31, 0.93);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    font-size: 0.68rem;
    line-height: 1.25;
    backdrop-filter: blur(12px);
}

.spark-ia__notice.spark-ia__notice--floating {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.7rem;
    align-items: center;
    gap: 0.5rem;
}

    .spark-ia__notice.spark-ia__notice--floating p {
        margin: 0;
        min-width: 0;
    }

    .spark-ia__notice.spark-ia__notice--floating button {
        display: inline-grid;
        width: 1.65rem;
        height: 1.65rem;
        place-items: center;
        color: #e9fbff;
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        cursor: pointer;
    }

        .spark-ia__notice.spark-ia__notice--floating button:hover {
            color: #07111f;
            background: #8fe8ff;
        }

.spark-ia__ai-strip {
    width: max-content;
    max-width: calc(100% - 1rem);
    min-height: 0;
    padding: 0.28rem 0.46rem;
    gap: 0.22rem;
    border-radius: 999px;
    font-size: 0.58rem;
    line-height: 1;
    box-shadow: 0 10px 18px rgba(246, 189, 53, 0.1);
}

    .spark-ia__ai-strip i {
        width: 4px;
        height: 10px;
    }

    .spark-ia__ai-strip span {
        white-space: nowrap;
    }

.spark-ia__message--source-human small {
    width: fit-content;
    padding: 0.18rem 0.48rem;
    color: #07111f;
    border-radius: 999px;
    background: #8fe8ff;
    box-shadow: 0 8px 18px rgba(34, 211, 238, 0.14);
}

.spark-ia__key,
.spark-ia__folio-key {
    display: inline;
    padding: 0.08rem 0.34rem;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 950;
}

.spark-ia__key {
    color: #07111f;
    background: linear-gradient(135deg, #f6bd35, #8fe8ff);
}

.spark-ia__folio-key {
    color: #ecfeff;
    border: 1px solid rgba(34, 211, 238, 0.32);
    background: rgba(34, 211, 238, 0.16);
}

.spark-ia__smart-key {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 0.32rem;
    margin: 0.05rem 0.08rem;
    padding: 0.13rem 0.42rem;
    vertical-align: baseline;
    color: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6bd35, #8fe8ff);
    box-shadow: 0 8px 18px rgba(34, 211, 238, 0.14);
    font-weight: 950;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

    .spark-ia__smart-key i {
        flex: 0 0 auto;
        color: #0f2940;
        font-size: 0.72em;
    }

.spark-ia__smart-key {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 0.32rem;
    margin: 0.05rem 0.08rem;
    padding: 0.13rem 0.42rem;
    vertical-align: baseline;
    color: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6bd35, #8fe8ff);
    box-shadow: 0 8px 18px rgba(34, 211, 238, 0.14);
    font-weight: 950;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

    .spark-ia__smart-key i {
        flex: 0 0 auto;
        color: #0f2940;
        font-size: 0.72em;
    }

.spark-ia__notice {
    color: #f8fbff;
    border-color: rgba(246, 189, 53, 0.34);
    background: #171717;
}

/* ==========================================================
   SPARK IA SOLID THEME SYSTEM
========================================================== */

.spark-ia.is-brand-teal,
.spark-live.is-brand-teal {
    --spark-solid: #22a699;
    --spark-solid-text: #06111f;
    --spark-solid-border: #6ff7e8;
}

.spark-ia.is-brand-gold,
.spark-live.is-brand-gold {
    --spark-solid: #f6bd35;
    --spark-solid-text: #101827;
    --spark-solid-border: #ffe08a;
}

.spark-ia.is-brand-cyan,
.spark-live.is-brand-cyan {
    --spark-solid: #37d5e8;
    --spark-solid-text: #07111f;
    --spark-solid-border: #9af3ff;
}

.spark-ia.is-brand-sky,
.spark-live.is-brand-sky {
    --spark-solid: #2563eb;
    --spark-solid-text: #ffffff;
    --spark-solid-border: #93c5fd;
}

.spark-ia.is-brand-coral,
.spark-live.is-brand-coral {
    --spark-solid: #ff6b4a;
    --spark-solid-text: #ffffff;
    --spark-solid-border: #ffb199;
}

.spark-ia.is-brand-magenta,
.spark-live.is-brand-magenta {
    --spark-solid: #d946ef;
    --spark-solid-text: #ffffff;
    --spark-solid-border: #f0abfc;
}

.spark-ia__primary,
.spark-ia__composer button,
.spark-live__composer button,
.spark-live__modal button {
    color: var(--spark-solid-text);
    border-color: var(--spark-solid-border);
    background: var(--spark-solid);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

    .spark-ia__primary:hover,
    .spark-ia__composer button:hover,
    .spark-live__composer button:hover,
    .spark-live__modal button:hover {
        border-color: #ffffff;
        background: var(--spark-solid);
        filter: brightness(1.08);
    }

.spark-ia__orb,
.spark-ia__avatar,
.spark-live__robot {
    color: var(--spark-solid-text);
    background: var(--spark-solid);
}

.spark-ia__panel,
.spark-live__shell {
    border-color: color-mix(in srgb, var(--spark-solid-border) 42%, transparent);
}

.spark-ia__engineer-chip {
    color: #101827 !important;
    border-color: #ffe08a !important;
    background: #f6bd35 !important;
}

/* ==========================================================
   SPARK IA SMART KEYWORDS - REFINED
========================================================== */

.spark-ia__key {
    color: #eafcff;
    border: 1px solid rgba(111, 247, 232, 0.28);
    background: rgba(14, 116, 144, 0.42);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.spark-ia__smart-key {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 0.32rem;
    margin: 0.05rem 0.08rem;
    padding: 0.13rem 0.42rem;
    vertical-align: baseline;
    color: #f9fbff;
    border: 1px solid rgba(143, 232, 255, 0.26);
    border-radius: 999px;
    background: rgba(15, 41, 64, 0.72);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255,255,255,0.04) inset;
    font-weight: 950;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

    .spark-ia__smart-key i {
        flex: 0 0 auto;
        color: #f6bd35;
        font-size: 0.72em;
    }

/* ==========================================================
   LEANSTUDIO PROMO
========================================================== */

.bs-lean {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    color: #f5fbf7;
    background: linear-gradient(135deg, rgba(6, 30, 24, .94), rgba(6, 20, 34, .96)), radial-gradient(circle at 20% 10%, rgba(134, 239, 172, .18), transparent 32%);
}

    .bs-lean::before {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        opacity: .36;
        background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
        background-size: 44px 44px;
    }

.bs-lean__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 42px;
    align-items: center;
}

.bs-lean__copy h2 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: .98;
    letter-spacing: 0;
}

.bs-lean__copy p {
    max-width: 680px;
    color: rgba(236, 253, 245, .78);
    font-size: 1.02rem;
    line-height: 1.75;
}

.bs-lean__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 24px;
}

    .bs-lean__actions > span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #d9f99d;
        font-size: .82rem;
        font-weight: 900;
    }

.bs-lean__ecosystem {
    border: 1px solid rgba(190, 242, 100, .18);
    border-radius: 22px;
    background: rgba(3, 12, 20, .62);
    box-shadow: 0 30px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
    padding: 18px;
}

.bs-lean__top,
.bs-lean__stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .bs-lean__top strong {
        color: #ecfccb;
        letter-spacing: .14em;
        font-size: .78rem;
    }

    .bs-lean__top span {
        padding: 6px 9px;
        color: #052e16;
        border-radius: 999px;
        background: #bef264;
        font-size: .62rem;
        font-weight: 950;
    }

.bs-lean__photo {
    position: relative;
    height: 250px;
    margin: 16px 0;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #8fe8ff 0%, #a7f3d0 48%, #052e2b 100%);
}

.bs-lean__sun {
    position: absolute;
    top: 30px;
    right: 44px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #facc15;
    box-shadow: 0 0 42px rgba(250, 204, 21, .55);
}

.bs-lean__mountains,
.bs-lean__lake {
    position: absolute;
    inset: auto 0 0;
}

.bs-lean__mountains {
    height: 58%;
    background: linear-gradient(135deg, transparent 0 36%, #14532d 37% 58%, transparent 59%), linear-gradient(45deg, transparent 0 26%, #166534 27% 52%, transparent 53%), linear-gradient(135deg, transparent 0 58%, #064e3b 59% 80%, transparent 81%);
}

.bs-lean__lake {
    height: 34%;
    background: linear-gradient(180deg, rgba(14, 165, 233, .58), rgba(6, 78, 59, .92));
}

.bs-lean__stats {
    align-items: stretch;
}

    .bs-lean__stats span {
        flex: 1;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        background: rgba(255,255,255,.045);
        color: rgba(236, 253, 245, .72);
        font-size: .66rem;
        text-transform: uppercase;
        font-weight: 850;
    }

    .bs-lean__stats strong {
        display: block;
        color: #bef264;
        font-size: 1.25rem;
    }

.bs-lean__ecosystem p {
    margin: 16px 0 0;
    color: rgba(236, 253, 245, .78);
    font-weight: 900;
    line-height: 1.5;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .bs-lean {
        padding: 72px 0;
    }

    .bs-lean__layout {
        grid-template-columns: 1fr;
    }

    .bs-lean__stats {
        flex-direction: column;
    }
}

/* LeanStudio brand ignition */
.bs-lean__brand-header {
    position: relative;
    margin: 18px 0 10px;
}

.bs-lean__hero-title {
    position: relative;
    width: fit-content;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.8rem, 7.8vw, 6.2rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: clamp(5px, 1.4vw, 15px);
    text-shadow: 0 18px 48px rgba(0,0,0,.72);
}

    .bs-lean__hero-title span {
        color: #00e5ff;
        font-weight: 300;
        text-shadow: 0 0 18px rgba(0, 229, 255, .58), 0 0 42px rgba(34, 197, 94, .32);
    }

.bs-lean__slogan {
    display: block;
    max-width: 720px;
    margin: 0 0 18px;
    color: #dff7ea;
    font-size: clamp(1.05rem, 2vw, 1.55rem);
    line-height: 1.35;
}

.bs-lean__gmail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 680px;
    margin-top: 6px;
    padding: 11px 14px;
    color: #ecfeff;
    border: 1px solid rgba(0,229,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
    font-size: .86rem;
    font-weight: 850;
}

    .bs-lean__gmail i {
        color: #facc15;
    }

.bs-lean__title-swarm {
    position: absolute;
    inset: -26px -34px;
    pointer-events: none;
    z-index: -1;
}

.bs-lean__fly {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00e5ff;
    box-shadow: 0 0 14px #00e5ff;
    animation: bsLeanFloatAround 4.2s infinite ease-in-out;
}

    .bs-lean__fly.t1 {
        top: 0;
        left: 18%;
        animation-delay: 0s;
    }

    .bs-lean__fly.t2 {
        bottom: 4%;
        left: 40%;
        animation-delay: .7s;
    }

    .bs-lean__fly.t3 {
        top: 50%;
        left: -2%;
        animation-delay: 1.2s;
    }

    .bs-lean__fly.t4 {
        top: 18%;
        right: 2%;
        animation-delay: .3s;
    }

    .bs-lean__fly.t5 {
        bottom: 0;
        right: 30%;
        animation-delay: .9s;
    }

.bs-lean__butterfly {
    position: absolute;
    width: 18px;
    height: 14px;
    animation: bsLeanButterfly 6s infinite linear;
}

    .bs-lean__butterfly span {
        position: absolute;
        top: 2px;
        width: 9px;
        height: 11px;
        border-radius: 50%;
        background: rgba(0, 229, 255, .62);
        box-shadow: 0 0 12px rgba(0,229,255,.36);
        animation: bsLeanWing .22s infinite alternate;
    }

        .bs-lean__butterfly span:first-child {
            left: 0;
            transform-origin: right center;
        }

        .bs-lean__butterfly span:last-child {
            right: 0;
            transform-origin: left center;
        }

    .bs-lean__butterfly.b1 {
        top: -4px;
        left: 7%;
    }

    .bs-lean__butterfly.b2 {
        bottom: -8px;
        right: 10%;
        animation-delay: 1.1s;
    }

    .bs-lean__butterfly.b3 {
        top: 45%;
        left: -8%;
        animation-delay: 2.1s;
    }

.bs-lean__leaf {
    position: absolute;
    width: 12px;
    height: 7px;
    border-radius: 50% 0 50% 0;
    background: rgba(34, 197, 94, .72);
    box-shadow: 0 0 12px rgba(34,197,94,.32);
    animation: bsLeanLeafFall 6.5s infinite linear;
}

    .bs-lean__leaf.l1 {
        top: -14px;
        left: 52%;
    }

    .bs-lean__leaf.l2 {
        top: 20%;
        right: -22px;
        animation-delay: 1.5s;
    }

    .bs-lean__leaf.l3 {
        top: 82%;
        left: -14px;
        animation-delay: 2.5s;
    }

    .bs-lean__leaf.l4 {
        bottom: -16px;
        right: 40%;
        animation-delay: 3.2s;
    }

.bs-lean__photo {
    height: 315px;
    background: #04110d;
}

    .bs-lean__photo img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: bsLeanKenBurns 18s ease-in-out infinite alternate;
    }

.bs-lean__photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.74)), radial-gradient(circle at 20% 10%, rgba(220,175,255,.20), transparent 38%);
}

.bs-lean__photo-caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(14px);
}

    .bs-lean__photo-caption span,
    .bs-lean__photo-caption strong {
        color: #fff;
    }

    .bs-lean__photo-caption span {
        font-weight: 950;
    }

    .bs-lean__photo-caption strong {
        color: #dff7ea;
        font-size: .72rem;
    }

@keyframes bsLeanFloatAround {
    0%, 100% {
        opacity: .18;
        transform: translate3d(0,0,0) scale(.7);
    }

    50% {
        opacity: 1;
        transform: translate3d(18px,-18px,0) scale(1.25);
    }
}

@keyframes bsLeanButterfly {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    18%, 82% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(52px, -38px, 0) rotate(18deg);
    }
}

@keyframes bsLeanWing {
    from {
        transform: rotateY(0deg) rotate(8deg);
    }

    to {
        transform: rotateY(58deg) rotate(-8deg);
    }
}

@keyframes bsLeanLeafFall {
    0% {
        opacity: 0;
        transform: translateY(-10px) rotate(0deg);
    }

    18%, 78% {
        opacity: .9;
    }

    100% {
        opacity: 0;
        transform: translateY(58px) rotate(180deg);
    }
}

@keyframes bsLeanKenBurns {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.12) translate3d(-2%, -1%, 0);
    }
}
/* ==========================================================
   BITSPARK TI · FOOTER PREMIUM V5
   ========================================================== */

.bs-footer.bs-footer--premium {
    position: relative;
    overflow: hidden;
    padding: 54px 0 22px;
    color: #dce9f7;
    background: radial-gradient(circle at 4% 5%, rgba(34, 211, 238, .14), transparent 25%), radial-gradient(circle at 96% 88%, rgba(246, 189, 53, .08), transparent 28%), linear-gradient(150deg, #020817 0%, #06152d 50%, #030b18 100%);
}

    .bs-footer.bs-footer--premium::before {
        position: absolute;
        inset: 0;
        content: "";
        opacity: .32;
        pointer-events: none;
        background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
        background-size: 52px 52px;
        mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, .65) 68%, transparent);
    }

.bsf-shell {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   GRID PRINCIPAL
   ========================================================== */

.bsf-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.bsf-brand {
    grid-column: span 4;
    min-width: 0;
}

.bsf-navigation {
    grid-column: span 2;
}

.bsf-services {
    grid-column: span 3;
}

.bsf-contact {
    grid-column: span 3;
}

/* ==========================================================
   MARCA
   ========================================================== */

.bs-footer--premium .bsf-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    min-height: 72px;
    padding: 8px 14px 8px 9px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 18px 44px rgba(0, 0, 0, .18);
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition: transform .22s ease, border-color .22s ease;
}

    .bs-footer--premium .bsf-brand__logo:hover {
        border-color: rgba(34, 211, 238, .34);
        transform: translateY(-3px);
    }

    .bs-footer--premium .bsf-brand__logo img {
        width: 60px;
        height: 54px;
        padding: 4px;
        object-fit: contain;
        border-radius: 10px;
        background: #fff;
        filter: none;
    }

.bsf-brand__logo > span {
    display: grid;
}

.bsf-brand__logo strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
}

.bsf-brand__logo small {
    margin-top: 3px;
    color: #7790aa;
    font-size: .62rem;
    font-weight: 750;
}

.bs-footer--premium .bsf-brand__description {
    max-width: 450px;
    margin: 17px 0;
    color: #91a8c0;
    font-size: .84rem;
    line-height: 1.7;
}

/* ==========================================================
   MÉTRICAS
   ========================================================== */

.bsf-brand__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

    .bsf-brand__metrics article {
        display: grid;
        grid-template-columns: 31px minmax(0, 1fr);
        align-items: center;
        gap: 7px;
        min-height: 62px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 12px;
        background: rgba(255, 255, 255, .03);
    }

        .bsf-brand__metrics article > i {
            display: grid;
            place-items: center;
            width: 31px;
            height: 31px;
            border: 1px solid rgba(34, 211, 238, .16);
            border-radius: 9px;
            color: #22d3ee;
            background: rgba(34, 211, 238, .07);
            font-size: .7rem;
        }

        .bsf-brand__metrics article span {
            display: grid;
            min-width: 0;
        }

    .bsf-brand__metrics strong {
        overflow: hidden;
        color: #edf7ff;
        font-size: .62rem;
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bsf-brand__metrics small {
        margin-top: 3px;
        overflow: hidden;
        color: #617b96;
        font-size: .46rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

/* ==========================================================
   ACCIONES
   ========================================================== */

.bsf-brand__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.bsf-action {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 57px;
    padding: 8px 9px;
    border-radius: 13px;
    cursor: pointer;
    text-align: left;
    transition: transform .22s ease, box-shadow .22s ease;
}

    .bsf-action:hover {
        transform: translateY(-3px);
    }

    .bsf-action > span {
        display: grid;
        place-items: center;
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    .bsf-action > strong {
        display: block;
        min-width: 0;
        font-size: .63rem;
        font-weight: 950;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .bsf-action strong small {
        display: block;
        margin-top: 4px;
        opacity: .66;
        font-size: .46rem;
        text-transform: none;
    }

.bsf-action--ceo {
    border: 1px solid rgba(34, 166, 153, .36);
    color: #e0fffb;
    background: rgba(34, 166, 153, .13);
}

    .bsf-action--ceo > span {
        color: #fff;
        background: #22a699;
    }

.bsf-action--primary {
    border: 0;
    color: #04172d;
    background: linear-gradient(135deg, #75f7eb, #22d3ee 62%, #65baff);
    box-shadow: 0 14px 30px rgba(34, 211, 238, .17);
}

    .bsf-action--primary > span {
        color: #fff;
        background: #071a31;
    }

/* ==========================================================
   TARJETAS
   ========================================================== */

.bsf-card {
    position: relative;
    height: 100%;
    min-width: 0;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 17px;
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 20px 46px rgba(0, 0, 0, .13);
    backdrop-filter: blur(12px);
}

.bsf-card__header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
}

    .bsf-card__header > span {
        display: grid;
        place-items: center;
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(34, 211, 238, .17);
        border-radius: 10px;
        color: #22d3ee;
        background: rgba(34, 211, 238, .07);
    }

    .bsf-card__header > div {
        display: grid;
    }

    .bsf-card__header strong {
        color: #f6fbff;
        font-size: .73rem;
        font-weight: 950;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .bsf-card__header small {
        margin-top: 3px;
        color: #607a95;
        font-size: .48rem;
    }

/* ==========================================================
   NAVEGACIÓN
   ========================================================== */

.bsf-navigation__links {
    display: grid;
    gap: 4px;
}

    .bsf-navigation__links a {
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr) 9px;
        align-items: center;
        gap: 7px;
        min-height: 39px;
        padding: 5px 6px;
        border: 1px solid transparent;
        border-radius: 9px;
        color: #8fa5bc;
        font-size: .64rem;
        font-weight: 800;
        text-decoration: none;
        transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

        .bsf-navigation__links a > i:first-child {
            color: #607b97;
            text-align: center;
        }

        .bsf-navigation__links a > i:last-child {
            color: #405d7a;
            font-size: .45rem;
        }

        .bsf-navigation__links a:hover {
            color: #fff;
            border-color: rgba(34, 211, 238, .16);
            background: rgba(34, 211, 238, .065);
            transform: translateX(3px);
        }

            .bsf-navigation__links a:hover i {
                color: #22d3ee;
            }

/* ==========================================================
   SERVICIOS
   ========================================================== */

.bsf-services__list {
    display: grid;
    gap: 6px;
}

    .bsf-services__list article,
    .bsf-services__offer {
        display: grid;
        grid-template-columns: 33px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        min-height: 48px;
        padding: 7px;
        border: 1px solid rgba(255, 255, 255, .052);
        border-radius: 10px;
        background: rgba(255, 255, 255, .022);
    }

        .bsf-services__list article > span,
        .bsf-services__offer > span {
            display: grid;
            place-items: center;
            width: 33px;
            height: 33px;
            border-radius: 9px;
            color: #22d3ee;
            background: rgba(34, 211, 238, .07);
        }

        .bsf-services__list article > div,
        .bsf-services__offer > div {
            display: grid;
        }

        .bsf-services__list strong,
        .bsf-services__offer strong {
            color: #dfeaf5;
            font-size: .61rem;
            font-weight: 900;
        }

        .bsf-services__list small,
        .bsf-services__offer small {
            margin-top: 3px;
            color: #617990;
            font-size: .46rem;
        }

.bsf-services__offer {
    grid-template-columns: 33px minmax(0, 1fr) 11px;
    border-color: rgba(246, 189, 53, .16);
    color: inherit;
    background: rgba(246, 189, 53, .06);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease;
}

    .bsf-services__offer > span,
    .bsf-services__offer > i {
        color: #f6bd35;
    }

    .bsf-services__offer:hover {
        border-color: rgba(246, 189, 53, .34);
        transform: translateY(-2px);
    }

/* ==========================================================
   CONTACTO
   ========================================================== */

.bsf-contact__links {
    display: grid;
    gap: 7px;
}

    .bsf-contact__links > a,
    .bsf-contact__links > button {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr) 12px;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-height: 54px;
        padding: 7px 8px;
        border: 1px solid rgba(255, 255, 255, .065);
        border-radius: 11px;
        color: inherit;
        background: rgba(255, 255, 255, .025);
        cursor: pointer;
        text-align: left;
        text-decoration: none;
        transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

        .bsf-contact__links > a:hover,
        .bsf-contact__links > button:hover {
            border-color: rgba(34, 211, 238, .23);
            background: rgba(34, 211, 238, .06);
            transform: translateY(-2px);
        }

.bsf-contact__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #22d3ee;
    background: rgba(34, 211, 238, .07);
}

.bsf-contact__icon--whatsapp {
    color: #4ade80;
    background: rgba(74, 222, 128, .07);
}

.bsf-contact__links > a > span:nth-child(2),
.bsf-contact__links > button > span:nth-child(2) {
    display: grid;
}

.bsf-contact__links strong {
    color: #ecf6ff;
    font-size: .63rem;
    font-weight: 900;
}

.bsf-contact__links small {
    margin-top: 3px;
    color: #667f98;
    font-size: .47rem;
}

.bsf-contact__links > a > i:last-child,
.bsf-contact__links > button > i:last-child {
    color: #536f8b;
    font-size: .5rem;
}

.bsf-contact__availability {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    margin-top: 11px;
    padding: 9px 10px;
    border: 1px solid rgba(16, 185, 129, .14);
    border-radius: 11px;
    background: rgba(16, 185, 129, .05);
}

.bsf-contact__availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 11px #10b981;
    animation: bsfPulse 1.8s ease-in-out infinite;
}

.bsf-contact__availability > div {
    display: grid;
}

.bsf-contact__availability strong {
    color: #cbf8e4;
    font-size: .58rem;
}

.bsf-contact__availability small {
    margin-top: 3px;
    color: #628678;
    font-size: .45rem;
}

.bsf-contact__coverage {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

    .bsf-contact__coverage span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        min-height: 26px;
        padding: 0 7px;
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 999px;
        color: #7189a1;
        background: rgba(255, 255, 255, .024);
        font-size: .46rem;
        font-weight: 800;
    }

    .bsf-contact__coverage i {
        color: #22d3ee;
    }

/* ==========================================================
   BARRA DE SISTEMA
   ========================================================== */

.bsf-system-bar {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
    align-items: center;
    gap: 20px;
    width: min(860px, 100%);
    min-height: 70px;
    margin: 28px auto 0;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 17px;
    background: rgba(3, 13, 29, .72);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.bsf-system-bar__status {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 8px;
    align-items: center;
    gap: 8px;
}

.bsf-system-bar__status-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #22d3ee;
    background: rgba(34, 211, 238, .07);
}

.bsf-system-bar__status > span:nth-child(2) {
    display: grid;
}

.bsf-system-bar__status strong {
    color: #e9f4ff;
    font-size: .59rem;
}

.bsf-system-bar__status small {
    margin-top: 3px;
    color: #687f97;
    font-size: .45rem;
}

.bsf-system-bar__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 11px #10b981;
    animation: bsfPulse 1.8s ease-in-out infinite;
}

.bsf-system-bar__social {
    display: grid;
    justify-items: center;
    gap: 6px;
}

    .bsf-system-bar__social > small {
        color: #667e97;
        font-size: .44rem;
        font-weight: 900;
        letter-spacing: .11em;
        text-transform: uppercase;
    }

    .bsf-system-bar__social > div {
        display: flex;
        gap: 5px;
    }

.bsf-social {
    display: grid;
    place-items: center;
    width: 33px;
    height: 33px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9px;
    color: #7089a3;
    background: rgba(255, 255, 255, .03);
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, background .2s ease;
}

    .bsf-social:hover {
        color: #fff;
        transform: translateY(-3px);
    }

.bsf-social--facebook:hover {
    background: #1877f2;
}

.bsf-social--linkedin:hover {
    background: #0a66c2;
}

.bsf-social--instagram:hover {
    background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.bsf-social--github:hover {
    background: #161b22;
}

.bsf-system-bar__build {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.bsf-build {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 35px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(0, 0, 0, .3);
    font-family: Consolas, monospace;
}

.bsf-build__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 8px #22d3ee;
    animation: bsfPulse 2s ease-in-out infinite;
}

.bsf-build__label {
    color: #687f97;
    font-size: .47rem;
}

.bsf-build strong {
    color: #fff;
    font-size: .55rem;
}

.bsf-build__channel {
    display: inline-flex;
    align-items: center;
    min-height: 19px;
    padding: 0 6px;
    border: 1px solid rgba(246, 189, 53, .25);
    border-radius: 5px;
    color: #f6bd35;
    background: rgba(246, 189, 53, .09);
    font-family: Manrope, sans-serif;
    font-size: .41rem;
    font-weight: 950;
}

.bsf-system-bar__build > small {
    color: #506a84;
    font-size: .42rem;
}

/* ==========================================================
   LEGAL
   ========================================================== */

.bsf-legal {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .055);
    color: #536d87;
    font-size: .5rem;
    text-align: center;
}

    .bsf-legal span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .bsf-legal strong {
        color: #899fb6;
    }

    .bsf-legal i {
        color: #f6bd35;
    }

/* ==========================================================
   MODAL CEO
   ========================================================== */

.bsf-ceo-modal {
    position: fixed;
    z-index: 1700;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.bsf-ceo-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 8, 23, .86);
    backdrop-filter: blur(10px);
}

.bsf-ceo-modal__panel {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    color: #334155;
    background: #f1f5f9;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .55);
    animation: bsfModalIn .3s cubic-bezier(.22, 1, .36, 1);
}

.bsf-ceo-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    border-bottom: 1px solid #dbe3ec;
    background: #e7edf3;
}

    .bsf-ceo-modal__header h2 {
        margin: 12px 0 0;
        color: #183059;
        font-size: 1.65rem;
        font-weight: 950;
    }

.bsf-ceo-modal__close {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    color: #334155;
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

    .bsf-ceo-modal__close:hover {
        color: #fff;
        border-color: #ef4444;
        background: #ef4444;
        transform: rotate(90deg);
    }

.bsf-ceo-modal__body {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
    padding: 28px;
}

.bsf-ceo-modal__profile {
    text-align: center;
}

.bsf-ceo-modal__photo {
    width: 205px;
    height: 205px;
    margin: 0 auto;
    padding: 8px;
    border: 2px dashed #0ea5e9;
    border-radius: 26px;
}

    .bsf-ceo-modal__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 4px solid #fff;
        border-radius: 19px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .16);
    }

.bsf-ceo-modal__profile h3 {
    margin: 17px 0 7px;
    color: #0f172a;
    font-size: 1.45rem;
    font-weight: 950;
}

.bsf-ceo-modal__profile > p {
    color: #0369a1;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bsf-ceo-modal__university {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 11px;
    border-radius: 13px;
    color: #fff;
    background: #10243c;
    text-align: left;
}

    .bsf-ceo-modal__university > i {
        display: grid;
        place-items: center;
        flex: 0 0 37px;
        width: 37px;
        height: 37px;
        border-radius: 10px;
        color: #67e8f9;
        background: rgba(34, 211, 238, .1);
    }

    .bsf-ceo-modal__university span {
        display: grid;
    }

    .bsf-ceo-modal__university small {
        color: #7894ae;
        font-size: .55rem;
        text-transform: uppercase;
    }

    .bsf-ceo-modal__university strong {
        margin-top: 3px;
        font-size: .68rem;
    }

.bsf-ceo-terminal {
    padding: 17px;
    border-radius: 13px;
    color: #fff;
    background: #0f172a;
    font-family: Consolas, monospace;
}

    .bsf-ceo-terminal header {
        display: flex;
        align-items: center;
        gap: 6px;
        padding-bottom: 9px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

        .bsf-ceo-terminal header span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }

            .bsf-ceo-terminal header span:nth-child(1) {
                background: #ef4444;
            }

            .bsf-ceo-terminal header span:nth-child(2) {
                background: #f59e0b;
            }

            .bsf-ceo-terminal header span:nth-child(3) {
                background: #10b981;
            }

        .bsf-ceo-terminal header small {
            margin-left: 8px;
            color: #94a3b8;
        }

    .bsf-ceo-terminal p {
        margin: 14px 0 0;
        color: #dce8f5;
        line-height: 1.6;
    }

        .bsf-ceo-terminal p strong {
            color: #10b981;
        }

        .bsf-ceo-terminal p i {
            color: #22d3ee;
            animation: bsfCursor 1s steps(1) infinite;
        }

.bsf-ceo-credentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 16px;
}

    .bsf-ceo-credentials article {
        display: grid;
        justify-items: center;
        min-height: 120px;
        padding: 13px 8px;
        border: 1px solid #d4dde7;
        border-radius: 12px;
        background: #fff;
        text-align: center;
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .bsf-ceo-credentials article:hover {
            box-shadow: 0 12px 26px rgba(15, 23, 42, .1);
            transform: translateY(-4px);
        }

    .bsf-ceo-credentials i {
        display: grid;
        place-items: center;
        width: 39px;
        height: 39px;
        border-radius: 50%;
        color: #0d9488;
        background: #ccfbf1;
    }

    .bsf-ceo-credentials small {
        margin-top: 8px;
        color: #64748b;
        font-size: .55rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .bsf-ceo-credentials strong {
        color: #1e293b;
        font-size: .7rem;
    }

.bsf-ceo-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 26px;
    border-top: 1px solid #dbe3ec;
    background: #e7edf3;
}

    .bsf-ceo-modal__footer > span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #183059;
        font-size: .72rem;
        font-weight: 900;
    }

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

@media (max-width: 1120px) {
    .bsf-brand {
        grid-column: span 6;
    }

    .bsf-contact {
        grid-column: span 6;
    }

    .bsf-navigation {
        grid-column: span 5;
    }

    .bsf-services {
        grid-column: span 7;
    }
}

@media (max-width: 820px) {
    .bsf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bsf-brand,
    .bsf-contact {
        grid-column: 1 / -1;
    }

    .bsf-navigation,
    .bsf-services {
        grid-column: auto;
    }

    .bsf-system-bar {
        grid-template-columns: 1fr auto;
    }

    .bsf-system-bar__social {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .bsf-system-bar__status {
        grid-column: 1;
        grid-row: 2;
    }

    .bsf-system-bar__build {
        grid-column: 2;
        grid-row: 2;
    }

    .bsf-ceo-modal__body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bs-footer.bs-footer--premium {
        padding: 38px 0 24px;
    }

    .bsf-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .bsf-brand,
    .bsf-navigation,
    .bsf-services,
    .bsf-contact {
        grid-column: 1;
    }

    .bs-footer--premium .bsf-brand__logo {
        width: 100%;
    }

    .bsf-brand__metrics,
    .bsf-brand__actions {
        grid-template-columns: 1fr;
    }

    .bsf-system-bar {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
        padding: 13px;
    }

    .bsf-system-bar__social,
    .bsf-system-bar__build {
        justify-items: center;
    }

    .bsf-legal {
        align-items: center;
        flex-direction: column;
        gap: 7px;
    }

    .bsf-ceo-modal {
        align-items: flex-start;
        padding: 10px;
    }

    .bsf-ceo-modal__panel {
        max-height: calc(100vh - 20px);
    }

    .bsf-ceo-modal__header {
        padding: 18px;
    }

    .bsf-ceo-modal__body {
        padding: 19px;
    }

    .bsf-ceo-modal__photo {
        width: 168px;
        height: 168px;
    }

    .bsf-ceo-credentials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bsf-ceo-modal__footer {
        align-items: stretch;
        flex-direction: column;
        padding: 17px;
    }

        .bsf-ceo-modal__footer .bs-btn {
            width: 100%;
        }
}

/* ==========================================================
   ANIMACIONES
   ========================================================== */

@keyframes bsfPulse {
    0%, 100% {
        opacity: .48;
        transform: scale(.82);
    }

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

@keyframes bsfModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes bsfCursor {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bsf-contact__availability-dot,
    .bsf-system-bar__online-dot,
    .bsf-build__dot,
    .bsf-ceo-terminal p i {
        animation: none !important;
    }
}

/* ========================================================================
   BITSPARK TI · FOOTER V4 · CORRECCIÓN DEFINITIVA
   Compatible con:
   .bsf-main, .bsf-proof, .bsf-card__head, .bsf-link-list,
   .bsf-service-list, .bsf-contact-list, .bsf-operation-bar y .bsf-bottom
   ======================================================================== */

.bs-footer.bs-footer--v4,
.bs-footer.bs-footer--v4 *,
.bs-footer.bs-footer--v4 *::before,
.bs-footer.bs-footer--v4 *::after {
    box-sizing: border-box;
}

.bs-footer.bs-footer--v4 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 58px 0 24px;
    color: #dce9f7;
    background: radial-gradient(circle at 5% 8%, rgba(34, 211, 238, .13), transparent 25%), radial-gradient(circle at 94% 82%, rgba(246, 189, 53, .075), transparent 26%), linear-gradient(150deg, #020817 0%, #06152d 49%, #030b18 100%);
}

    .bs-footer.bs-footer--v4::before {
        position: absolute;
        inset: 0;
        z-index: 0;
        content: "";
        opacity: .34;
        pointer-events: none;
        background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
        background-size: 52px 52px;
        mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .7) 65%, transparent 100%);
    }

    .bs-footer.bs-footer--v4::after {
        position: absolute;
        right: 12%;
        bottom: -180px;
        z-index: 0;
        width: 420px;
        height: 280px;
        content: "";
        border-radius: 50%;
        pointer-events: none;
        background: radial-gradient(circle, rgba(34, 211, 238, .12), transparent 68%);
        filter: blur(15px);
    }

    .bs-footer.bs-footer--v4 > .bs-spark-field {
        z-index: 1;
    }

    .bs-footer.bs-footer--v4 .bsf-container {
        position: relative;
        z-index: 2;
    }

    /* =========================
   GRID PRINCIPAL
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-main {
        display: grid !important;
        grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
        gap: 22px !important;
        align-items: stretch !important;
        width: 100%;
    }

    .bs-footer.bs-footer--v4 .bsf-brand {
        grid-column: span 4;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-links {
        grid-column: span 2;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-services {
        grid-column: span 3;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-contact {
        grid-column: span 3;
        min-width: 0;
    }

    /* =========================
   LOGOTIPO Y MARCA
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-logo {
        display: inline-flex !important;
        align-items: center;
        gap: 14px;
        width: fit-content;
        max-width: 100%;
        min-height: 76px;
        padding: 9px 15px 9px 10px;
        border: 1px solid rgba(255, 255, 255, .11);
        border-radius: 18px;
        color: #fff;
        background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 18px 46px rgba(0, 0, 0, .2);
        text-decoration: none;
        backdrop-filter: blur(14px);
        transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }

        .bs-footer.bs-footer--v4 .bsf-logo:hover {
            border-color: rgba(34, 211, 238, .32);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 20px 50px rgba(0, 0, 0, .25), 0 0 28px rgba(34, 211, 238, .08);
            transform: translateY(-3px);
        }

        .bs-footer.bs-footer--v4 .bsf-logo img {
            display: block;
            flex: 0 0 auto;
            width: 62px !important;
            max-width: 62px !important;
            height: 56px !important;
            padding: 4px;
            object-fit: contain;
            border-radius: 11px;
            background: rgba(255, 255, 255, .96);
            filter: none !important;
        }

    .bs-footer.bs-footer--v4 .bsf-logo__copy {
        display: grid;
        min-width: 0;
    }

        .bs-footer.bs-footer--v4 .bsf-logo__copy strong {
            color: #fff;
            font-size: 1rem;
            font-weight: 950;
            letter-spacing: -.025em;
        }

        .bs-footer.bs-footer--v4 .bsf-logo__copy small {
            margin-top: 4px;
            color: #7f98b3;
            font-size: .64rem;
            font-weight: 750;
            letter-spacing: .035em;
        }

    .bs-footer.bs-footer--v4 .bsf-brand__description {
        display: block;
        max-width: 445px;
        margin: 18px 0 !important;
        color: #91a8c0 !important;
        font-size: .88rem;
        line-height: 1.72;
    }

    /* =========================
   MÉTRICAS
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-proof {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 17px;
    }

        .bs-footer.bs-footer--v4 .bsf-proof article {
            display: grid;
            grid-template-columns: 32px minmax(0, 1fr);
            align-items: center;
            gap: 8px;
            min-width: 0;
            min-height: 64px;
            padding: 9px;
            border: 1px solid rgba(255, 255, 255, .075);
            border-radius: 13px;
            background: rgba(255, 255, 255, .035);
        }

            .bs-footer.bs-footer--v4 .bsf-proof article > i {
                display: grid;
                place-items: center;
                width: 32px;
                height: 32px;
                border: 1px solid rgba(34, 211, 238, .18);
                border-radius: 10px;
                color: #22d3ee;
                background: rgba(34, 211, 238, .075);
                font-size: .75rem;
            }

            .bs-footer.bs-footer--v4 .bsf-proof article > span {
                display: grid;
                min-width: 0;
            }

        .bs-footer.bs-footer--v4 .bsf-proof strong {
            overflow: hidden;
            color: #eef8ff;
            font-size: .66rem;
            font-weight: 900;
            line-height: 1.2;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .bs-footer.bs-footer--v4 .bsf-proof small {
            margin-top: 4px;
            overflow: hidden;
            color: #647e99;
            font-size: .49rem;
            font-weight: 700;
            line-height: 1.2;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    /* =========================
   BOTONES DE MARCA
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-brand__actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 15px;
    }

    .bs-footer.bs-footer--v4 .bsf-button {
        appearance: none;
        display: flex;
        align-items: center;
        gap: 9px;
        width: 100%;
        min-width: 0;
        min-height: 58px;
        padding: 8px 10px;
        border-radius: 14px;
        cursor: pointer;
        text-align: left;
        transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

        .bs-footer.bs-footer--v4 .bsf-button:hover {
            transform: translateY(-3px);
        }

        .bs-footer.bs-footer--v4 .bsf-button > span {
            display: grid;
            place-items: center;
            flex: 0 0 35px;
            width: 35px;
            height: 35px;
            border-radius: 11px;
        }

        .bs-footer.bs-footer--v4 .bsf-button > strong {
            display: block;
            min-width: 0;
            font-size: .66rem;
            font-weight: 950;
            line-height: 1.15;
            text-transform: uppercase;
        }

            .bs-footer.bs-footer--v4 .bsf-button > strong small {
                display: block;
                margin-top: 4px;
                opacity: .66;
                font-size: .48rem;
                font-weight: 750;
                text-transform: none;
            }

    .bs-footer.bs-footer--v4 .bsf-button--ceo {
        border: 1px solid rgba(34, 166, 153, .34);
        color: #dffffb;
        background: linear-gradient(135deg, rgba(34, 166, 153, .19), rgba(34, 166, 153, .075));
    }

        .bs-footer.bs-footer--v4 .bsf-button--ceo > span {
            color: #fff;
            background: #22a699;
            box-shadow: 0 8px 18px rgba(34, 166, 153, .22);
        }

    .bs-footer.bs-footer--v4 .bsf-button--primary {
        border: 0;
        color: #04172d;
        background: linear-gradient(135deg, #75f7eb, #22d3ee 62%, #65baff);
        box-shadow: 0 15px 32px rgba(34, 211, 238, .18), inset 0 1px 0 rgba(255, 255, 255, .58);
    }

        .bs-footer.bs-footer--v4 .bsf-button--primary > span {
            color: #fff;
            background: #071a31;
        }

    /* =========================
   TARJETAS PRINCIPALES
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-card {
        position: relative;
        display: block;
        height: 100%;
        min-width: 0;
        padding: 17px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 18px;
        background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 20px 48px rgba(0, 0, 0, .14);
        backdrop-filter: blur(12px);
    }

        .bs-footer.bs-footer--v4 .bsf-card::before {
            position: absolute;
            top: -70px;
            right: -70px;
            width: 150px;
            height: 150px;
            content: "";
            border-radius: 50%;
            pointer-events: none;
            background: radial-gradient(circle, rgba(34, 211, 238, .075), transparent 68%);
        }

    .bs-footer.bs-footer--v4 .bsf-card__head {
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

        .bs-footer.bs-footer--v4 .bsf-card__head > span {
            display: grid;
            place-items: center;
            flex: 0 0 37px;
            width: 37px;
            height: 37px;
            border: 1px solid rgba(34, 211, 238, .18);
            border-radius: 11px;
            color: #22d3ee;
            background: rgba(34, 211, 238, .075);
        }

        .bs-footer.bs-footer--v4 .bsf-card__head > div {
            display: grid;
            min-width: 0;
        }

        .bs-footer.bs-footer--v4 .bsf-card__head strong {
            color: #f7fbff;
            font-size: .76rem;
            font-weight: 950;
            letter-spacing: .065em;
            text-transform: uppercase;
        }

        .bs-footer.bs-footer--v4 .bsf-card__head small {
            margin-top: 3px;
            color: #627d99;
            font-size: .51rem;
            font-weight: 700;
        }

    /* =========================
   EXPLORAR
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-link-list {
        display: grid !important;
        gap: 5px;
    }

        .bs-footer.bs-footer--v4 .bsf-link-list a {
            display: grid !important;
            grid-template-columns: 23px minmax(0, 1fr) 10px;
            align-items: center;
            gap: 7px;
            width: 100%;
            min-height: 39px;
            margin: 0;
            padding: 5px 7px;
            border: 1px solid transparent;
            border-radius: 10px;
            color: #91a7be;
            background: transparent;
            font-size: .67rem;
            font-weight: 800;
            text-decoration: none;
            transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
        }

            .bs-footer.bs-footer--v4 .bsf-link-list a > i:first-child {
                display: grid;
                place-items: center;
                width: 23px;
                height: 23px;
                color: #627e9b;
                font-size: .62rem;
            }

            .bs-footer.bs-footer--v4 .bsf-link-list a > i:last-child {
                color: #425f7e;
                font-size: .48rem;
            }

            .bs-footer.bs-footer--v4 .bsf-link-list a:hover {
                color: #fff;
                border-color: rgba(34, 211, 238, .17);
                background: rgba(34, 211, 238, .07);
                transform: translateX(3px);
            }

                .bs-footer.bs-footer--v4 .bsf-link-list a:hover > i {
                    color: #22d3ee;
                }

    /* =========================
   SERVICIOS
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-service-list {
        display: grid !important;
        gap: 7px;
    }

        .bs-footer.bs-footer--v4 .bsf-service-list article,
        .bs-footer.bs-footer--v4 .bsf-service-offer {
            display: grid !important;
            grid-template-columns: 34px minmax(0, 1fr);
            align-items: center;
            gap: 9px;
            width: 100%;
            min-height: 49px;
            padding: 7px;
            border: 1px solid rgba(255, 255, 255, .055);
            border-radius: 11px;
            background: rgba(255, 255, 255, .025);
        }

            .bs-footer.bs-footer--v4 .bsf-service-list article > span,
            .bs-footer.bs-footer--v4 .bsf-service-offer > span {
                display: grid;
                place-items: center;
                width: 34px;
                height: 34px;
                border: 1px solid rgba(34, 211, 238, .14);
                border-radius: 10px;
                color: #22d3ee;
                background: rgba(34, 211, 238, .06);
                font-size: .7rem;
            }

            .bs-footer.bs-footer--v4 .bsf-service-list article > div,
            .bs-footer.bs-footer--v4 .bsf-service-offer > div {
                display: grid;
                min-width: 0;
            }

            .bs-footer.bs-footer--v4 .bsf-service-list strong,
            .bs-footer.bs-footer--v4 .bsf-service-offer strong {
                color: #dfeaf5;
                font-size: .63rem;
                font-weight: 900;
            }

            .bs-footer.bs-footer--v4 .bsf-service-list small,
            .bs-footer.bs-footer--v4 .bsf-service-offer small {
                margin-top: 3px;
                color: #617a94;
                font-size: .48rem;
                line-height: 1.25;
            }

    .bs-footer.bs-footer--v4 .bsf-service-offer {
        grid-template-columns: 34px minmax(0, 1fr) 12px !important;
        color: inherit;
        border-color: rgba(246, 189, 53, .15);
        background: linear-gradient(135deg, rgba(246, 189, 53, .09), rgba(34, 211, 238, .035));
        text-decoration: none;
        transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

        .bs-footer.bs-footer--v4 .bsf-service-offer > span {
            color: #f6bd35;
            border-color: rgba(246, 189, 53, .2);
            background: rgba(246, 189, 53, .08);
        }

        .bs-footer.bs-footer--v4 .bsf-service-offer > i {
            color: #f6bd35;
            font-size: .55rem;
        }

        .bs-footer.bs-footer--v4 .bsf-service-offer:hover {
            border-color: rgba(246, 189, 53, .32);
            box-shadow: 0 12px 26px rgba(246, 189, 53, .08);
            transform: translateY(-2px);
        }

    /* =========================
   CONTACTO
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-contact-list {
        display: grid !important;
        gap: 8px;
    }

        .bs-footer.bs-footer--v4 .bsf-contact-list > a,
        .bs-footer.bs-footer--v4 .bsf-contact-list > button {
            appearance: none;
            display: grid !important;
            grid-template-columns: 39px minmax(0, 1fr) 13px;
            align-items: center;
            gap: 9px;
            width: 100%;
            min-height: 55px;
            margin: 0;
            padding: 7px 9px;
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            color: inherit;
            background: rgba(255, 255, 255, .03);
            cursor: pointer;
            text-align: left;
            text-decoration: none;
            transition: transform .22s ease, border-color .22s ease, background .22s ease;
        }

            .bs-footer.bs-footer--v4 .bsf-contact-list > a:hover,
            .bs-footer.bs-footer--v4 .bsf-contact-list > button:hover {
                border-color: rgba(34, 211, 238, .24);
                background: rgba(34, 211, 238, .065);
                transform: translateY(-2px);
            }

    .bs-footer.bs-footer--v4 .bsf-contact-list__icon {
        display: grid;
        place-items: center;
        width: 39px;
        height: 39px;
        border: 1px solid rgba(34, 211, 238, .16);
        border-radius: 11px;
        color: #22d3ee;
        background: rgba(34, 211, 238, .07);
    }

    .bs-footer.bs-footer--v4 .bsf-contact-list__icon--whatsapp {
        color: #4ade80;
        border-color: rgba(74, 222, 128, .17);
        background: rgba(74, 222, 128, .07);
    }

    .bs-footer.bs-footer--v4 .bsf-contact-list > a > span:nth-child(2),
    .bs-footer.bs-footer--v4 .bsf-contact-list > button > span:nth-child(2) {
        display: grid;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-contact-list strong {
        color: #edf7ff;
        font-size: .65rem;
        font-weight: 900;
    }

    .bs-footer.bs-footer--v4 .bsf-contact-list small {
        margin-top: 4px;
        color: #687f98;
        font-size: .49rem;
    }

    .bs-footer.bs-footer--v4 .bsf-contact-list > a > i:last-child,
    .bs-footer.bs-footer--v4 .bsf-contact-list > button > i:last-child {
        color: #57728d;
        font-size: .54rem;
    }

    .bs-footer.bs-footer--v4 .bsf-availability {
        display: grid !important;
        grid-template-columns: 10px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        margin-top: 12px;
        padding: 10px 11px;
        border: 1px solid rgba(16, 185, 129, .14);
        border-radius: 12px;
        background: rgba(16, 185, 129, .055);
    }

    .bs-footer.bs-footer--v4 .bsf-availability__pulse {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10b981;
        box-shadow: 0 0 12px #10b981;
        animation: bsfV4OnlinePulse 1.8s ease-in-out infinite;
    }

    .bs-footer.bs-footer--v4 .bsf-availability > div {
        display: grid;
    }

    .bs-footer.bs-footer--v4 .bsf-availability strong {
        color: #c7f9e2;
        font-size: .6rem;
        font-weight: 900;
    }

    .bs-footer.bs-footer--v4 .bsf-availability small {
        margin-top: 3px;
        color: #638878;
        font-size: .47rem;
        line-height: 1.3;
    }

    .bs-footer.bs-footer--v4 .bsf-contact__coverage {
        display: flex !important;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 9px;
    }

        .bs-footer.bs-footer--v4 .bsf-contact__coverage span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            min-height: 27px;
            padding: 0 8px;
            border: 1px solid rgba(255, 255, 255, .065);
            border-radius: 999px;
            color: #748ba4;
            background: rgba(255, 255, 255, .027);
            font-size: .48rem;
            font-weight: 800;
        }

        .bs-footer.bs-footer--v4 .bsf-contact__coverage i {
            color: #22d3ee;
        }

    /* =========================
   BARRA OPERATIVA
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-operation-bar {
        position: relative;
        display: grid !important;
        grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
        align-items: center;
        gap: 20px;
        width: min(820px, calc(100% - 40px));
        min-height: 72px;
        margin: 31px auto 0;
        padding: 10px 13px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .085);
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(3, 12, 28, .82), rgba(8, 29, 54, .7));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 22px 55px rgba(0, 0, 0, .2);
        backdrop-filter: blur(15px);
    }

        .bs-footer.bs-footer--v4 .bsf-operation-bar::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: -30%;
            width: 28%;
            content: "";
            pointer-events: none;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .055), transparent);
            transform: skewX(-18deg);
            animation: bsfV4OperationShine 7s ease-in-out infinite;
        }

    .bs-footer.bs-footer--v4 .bsf-operation-status {
        position: relative;
        display: grid !important;
        grid-template-columns: 38px minmax(0, 1fr) 8px;
        align-items: center;
        gap: 9px;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-operation-status__icon {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(34, 211, 238, .18);
        border-radius: 11px;
        color: #22d3ee;
        background: rgba(34, 211, 238, .075);
    }

    .bs-footer.bs-footer--v4 .bsf-operation-status > span:nth-child(2) {
        display: grid;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-operation-status strong {
        color: #e8f4ff;
        font-size: .61rem;
        font-weight: 900;
    }

    .bs-footer.bs-footer--v4 .bsf-operation-status small {
        margin-top: 4px;
        overflow: hidden;
        color: #687f98;
        font-size: .46rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bs-footer.bs-footer--v4 .bsf-online-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10b981;
        box-shadow: 0 0 12px #10b981;
        animation: bsfV4OnlinePulse 1.8s ease-in-out infinite;
    }

    .bs-footer.bs-footer--v4 .bsf-social-area {
        position: relative;
        display: grid !important;
        justify-items: center;
        gap: 7px;
    }

        .bs-footer.bs-footer--v4 .bsf-social-area > small {
            color: #69819a;
            font-size: .46rem;
            font-weight: 900;
            letter-spacing: .11em;
            text-transform: uppercase;
        }

    .bs-footer.bs-footer--v4 .bsf-socials {
        display: flex !important;
        align-items: center;
        gap: 6px;
    }

    .bs-footer.bs-footer--v4 .bsf-social {
        appearance: none;
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .075);
        border-radius: 10px;
        color: #718ba6;
        background: rgba(255, 255, 255, .035);
        cursor: pointer;
        transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

        .bs-footer.bs-footer--v4 .bsf-social:hover {
            color: #fff;
            transform: translateY(-3px);
        }

    .bs-footer.bs-footer--v4 .bsf-social--facebook:hover {
        border-color: #1877f2;
        background: #1877f2;
    }

    .bs-footer.bs-footer--v4 .bsf-social--linkedin:hover {
        border-color: #0a66c2;
        background: #0a66c2;
    }

    .bs-footer.bs-footer--v4 .bsf-social--instagram:hover {
        border-color: #e1306c;
        background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
    }

    .bs-footer.bs-footer--v4 .bsf-social--github:hover {
        border-color: #56657a;
        background: #161b22;
    }

    .bs-footer.bs-footer--v4 .bsf-build-area {
        position: relative;
        display: grid !important;
        justify-items: end;
        gap: 5px;
        min-width: 0;
    }

    .bs-footer.bs-footer--v4 .bsf-build {
        position: relative;
        display: inline-flex !important;
        align-items: center;
        gap: 7px;
        width: fit-content;
        min-height: 36px;
        padding: 5px 8px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .085);
        border-radius: 999px;
        color: #fff;
        background: rgba(0, 0, 0, .32);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 8px 19px rgba(0, 0, 0, .17);
        font-family: Consolas, "Courier New", monospace;
        white-space: nowrap;
    }

        .bs-footer.bs-footer--v4 .bsf-build::after {
            position: absolute;
            top: -45%;
            bottom: -45%;
            left: -38%;
            width: 32%;
            content: "";
            pointer-events: none;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
            filter: blur(1px);
            transform: rotate(13deg);
            animation: bsfV4BuildShine 4.3s ease-in-out infinite;
        }

    .bs-footer.bs-footer--v4 .bsf-build__pulse {
        flex: 0 0 6px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #22d3ee;
        box-shadow: 0 0 9px #22d3ee;
        animation: bsfV4BuildPulse 2s ease-in-out infinite;
    }

    .bs-footer.bs-footer--v4 .bsf-build__label {
        color: #67809a;
        font-size: .49rem;
        font-weight: 750;
        letter-spacing: .045em;
    }

    .bs-footer.bs-footer--v4 .bsf-build strong {
        color: #f3f9ff;
        font-size: .57rem;
        font-weight: 950;
    }

    .bs-footer.bs-footer--v4 .bsf-build__channel {
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: 0 6px;
        border: 1px solid rgba(246, 189, 53, .25);
        border-radius: 6px;
        color: #f6bd35;
        background: rgba(246, 189, 53, .09);
        font-family: Manrope, sans-serif;
        font-size: .43rem;
        font-weight: 950;
        letter-spacing: .075em;
    }

    .bs-footer.bs-footer--v4 .bsf-build-area > small {
        color: #506b86;
        font-size: .43rem;
        font-weight: 750;
    }

    /* =========================
   CIERRE LEGAL
   ========================= */

    .bs-footer.bs-footer--v4 .bsf-bottom {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 17px;
        flex-wrap: wrap;
        margin-top: 18px;
        padding-top: 17px;
        border-top: 1px solid rgba(255, 255, 255, .06);
        color: #536d88;
        font-size: .52rem;
        font-weight: 750;
        text-align: center;
    }

        .bs-footer.bs-footer--v4 .bsf-bottom > span {
            display: inline-flex !important;
            align-items: center;
            gap: 4px;
        }

            .bs-footer.bs-footer--v4 .bsf-bottom > span:not(:last-child)::after {
                margin-left: 12px;
                color: #294765;
                content: "•";
            }

        .bs-footer.bs-footer--v4 .bsf-bottom strong {
            color: #8aa3bc;
        }

    .bs-footer.bs-footer--v4 .bsf-bottom__made i {
        margin-left: 2px;
        color: #f6bd35;
    }

/* =========================
   ANIMACIONES
   ========================= */

@keyframes bsfV4OnlinePulse {
    0%, 100% {
        opacity: .48;
        transform: scale(.82);
    }

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

@keyframes bsfV4BuildPulse {
    0%, 100% {
        opacity: .45;
        box-shadow: 0 0 2px #22d3ee;
        transform: scale(.84);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 9px #22d3ee, 0 0 17px rgba(34, 211, 238, .38);
        transform: scale(1.12);
    }
}

@keyframes bsfV4BuildShine {
    0%, 52% {
        left: -38%;
        opacity: 0;
    }

    62% {
        opacity: .82;
    }

    82%, 100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes bsfV4OperationShine {
    0%, 55% {
        left: -30%;
        opacity: 0;
    }

    66% {
        opacity: 1;
    }

    88%, 100% {
        left: 120%;
        opacity: 0;
    }
}

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

@media (max-width: 1120px) {
    .bs-footer.bs-footer--v4 .bsf-brand {
        grid-column: span 6;
    }

    .bs-footer.bs-footer--v4 .bsf-contact {
        grid-column: span 6;
    }

    .bs-footer.bs-footer--v4 .bsf-links {
        grid-column: span 5;
    }

    .bs-footer.bs-footer--v4 .bsf-services {
        grid-column: span 7;
    }
}

@media (max-width: 820px) {
    .bs-footer.bs-footer--v4 {
        padding-top: 46px;
    }

        .bs-footer.bs-footer--v4 .bsf-main {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }

        .bs-footer.bs-footer--v4 .bsf-brand {
            grid-column: 1 / -1;
        }

        .bs-footer.bs-footer--v4 .bsf-links,
        .bs-footer.bs-footer--v4 .bsf-services {
            grid-column: auto;
        }

        .bs-footer.bs-footer--v4 .bsf-contact {
            grid-column: 1 / -1;
        }

        .bs-footer.bs-footer--v4 .bsf-contact-list {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

            .bs-footer.bs-footer--v4 .bsf-contact-list > a,
            .bs-footer.bs-footer--v4 .bsf-contact-list > button {
                grid-template-columns: 35px minmax(0, 1fr);
            }

                .bs-footer.bs-footer--v4 .bsf-contact-list > a > i:last-child,
                .bs-footer.bs-footer--v4 .bsf-contact-list > button > i:last-child {
                    display: none;
                }

        .bs-footer.bs-footer--v4 .bsf-operation-bar {
            grid-template-columns: 1fr auto !important;
        }

        .bs-footer.bs-footer--v4 .bsf-social-area {
            grid-column: 1 / -1;
            grid-row: 1;
        }

        .bs-footer.bs-footer--v4 .bsf-operation-status {
            grid-column: 1;
            grid-row: 2;
        }

        .bs-footer.bs-footer--v4 .bsf-build-area {
            grid-column: 2;
            grid-row: 2;
        }
}

@media (max-width: 620px) {
    .bs-footer.bs-footer--v4 {
        padding: 38px 0 26px;
    }

        .bs-footer.bs-footer--v4 .bsf-main {
            grid-template-columns: 1fr !important;
            gap: 14px !important;
        }

        .bs-footer.bs-footer--v4 .bsf-brand,
        .bs-footer.bs-footer--v4 .bsf-links,
        .bs-footer.bs-footer--v4 .bsf-services,
        .bs-footer.bs-footer--v4 .bsf-contact {
            grid-column: 1;
        }

        .bs-footer.bs-footer--v4 .bsf-logo {
            width: 100%;
        }

            .bs-footer.bs-footer--v4 .bsf-logo img {
                width: 57px !important;
                max-width: 57px !important;
                height: 52px !important;
            }

        .bs-footer.bs-footer--v4 .bsf-proof,
        .bs-footer.bs-footer--v4 .bsf-brand__actions {
            grid-template-columns: 1fr;
        }

        .bs-footer.bs-footer--v4 .bsf-contact-list {
            grid-template-columns: 1fr;
        }

            .bs-footer.bs-footer--v4 .bsf-contact-list > a,
            .bs-footer.bs-footer--v4 .bsf-contact-list > button {
                grid-template-columns: 39px minmax(0, 1fr) 13px;
            }

                .bs-footer.bs-footer--v4 .bsf-contact-list > a > i:last-child,
                .bs-footer.bs-footer--v4 .bsf-contact-list > button > i:last-child {
                    display: block;
                }

        .bs-footer.bs-footer--v4 .bsf-operation-bar {
            display: flex !important;
            align-items: stretch;
            flex-direction: column;
            gap: 17px;
            width: 100%;
            margin-top: 20px;
            padding: 14px;
        }

        .bs-footer.bs-footer--v4 .bsf-operation-status,
        .bs-footer.bs-footer--v4 .bsf-build-area,
        .bs-footer.bs-footer--v4 .bsf-social-area {
            width: 100%;
        }

        .bs-footer.bs-footer--v4 .bsf-social-area,
        .bs-footer.bs-footer--v4 .bsf-build-area {
            justify-items: center;
        }

        .bs-footer.bs-footer--v4 .bsf-bottom {
            align-items: center;
            flex-direction: column;
            gap: 7px;
            margin-top: 15px;
        }

            .bs-footer.bs-footer--v4 .bsf-bottom > span:not(:last-child)::after {
                display: none;
            }
}

@media (prefers-reduced-motion: reduce) {
    .bs-footer.bs-footer--v4 .bsf-operation-bar::before,
    .bs-footer.bs-footer--v4 .bsf-build::after,
    .bs-footer.bs-footer--v4 .bsf-build__pulse,
    .bs-footer.bs-footer--v4 .bsf-online-dot,
    .bs-footer.bs-footer--v4 .bsf-availability__pulse {
        animation: none !important;
    }
}
/* ==========================================================
   BITSPARK TI · SLIDER HERO V10 · CSS COMPLETO CORREGIDO
   Compatible con el Razor actual y con el CSS legacy.
   Agregar al final del CSS principal.
   ========================================================== */

/* ==========================================================
   BITSPARK TI · HERO SLIDER
   Solo estiliza el componente Hero dinámico de Blazor.
   ========================================================== */

.bs-hero-v10 {
    --bsp-hero-nav-height: 82px;
    position: relative;
    isolation: isolate;
    min-height: clamp(690px, 86vh, 850px);
    overflow: hidden;
    color: #fff;
    background: #020817;
}

    .bs-hero-v10,
    .bs-hero-v10 *,
    .bs-hero-v10 *::before,
    .bs-hero-v10 *::after {
        box-sizing: border-box;
    }

.bs-hero-v10__slides,
.bs-hero-v10__slide {
    min-height: inherit;
}

.bs-hero-v10__slides {
    position: relative;
    overflow: hidden;
}

.bs-hero-v10__slide {
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #020817;
    transition: opacity .75s ease, visibility 0s linear .75s;
}

    .bs-hero-v10__slide.is-active {
        z-index: 2;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

.bs-hero-v10__image {
    position: absolute;
    z-index: -4;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.9) contrast(1.04);
    transform: scale(1.025);
    transition: transform 7.5s ease;
}

.bs-hero-v10__slide.is-active .bs-hero-v10__image {
    transform: scale(1.085);
}

.bs-hero-v10__veil {
    position: absolute;
    z-index: -3;
    inset: 0;
    background: linear-gradient( 90deg, rgba(2, 8, 23, .97) 0%, rgba(3, 14, 34, .92) 39%, rgba(3, 17, 39, .68) 68%, rgba(2, 8, 23, .72) 100% ), linear-gradient( 0deg, rgba(2, 8, 23, .94) 0%, transparent 44%, rgba(2, 8, 23, .42) 100% );
}

    .bs-hero-v10__veil::after {
        position: absolute;
        inset: 0;
        content: "";
        background: radial-gradient( circle at 73% 40%, rgba(var(--hero-accent-rgb), .18), transparent 31% ), radial-gradient( circle at 11% 8%, rgba(var(--hero-accent-rgb), .10), transparent 23% );
    }

.bs-hero-v10__mesh {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .38;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .027) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .027) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}

.bs-hero-v10__progress {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}

    .bs-hero-v10__progress span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, #6cf6e9, var(--hero-accent), #69b7ff);
        box-shadow: 0 0 14px rgba(var(--hero-accent-rgb), .75);
        animation: bsHeroV10Progress var(--bsp-progress-duration, 7000ms) linear forwards;
    }

@keyframes bsHeroV10Progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.bs-hero-v10__container {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: inherit;
    padding-top: calc(var(--bsp-hero-nav-height) + 56px);
    padding-bottom: 142px;
}

.bs-hero-v10__copy {
    width: min(100%, 820px);
    min-width: 0;
}

.bs-hero-v10__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    max-width: 100%;
    min-height: 48px;
    margin-bottom: 24px;
    padding: 6px 8px 6px 7px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 12px 34px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
}

.bs-hero-v10__eyebrow-icon {
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(var(--hero-accent-rgb), .35);
    border-radius: 12px;
    color: var(--hero-accent);
    background: rgba(var(--hero-accent-rgb), .11);
    box-shadow: 0 0 20px rgba(var(--hero-accent-rgb), .08);
}

.bs-hero-v10__eyebrow-copy {
    min-width: 0;
}

    .bs-hero-v10__eyebrow-copy strong,
    .bs-hero-v10__eyebrow-copy small {
        display: block;
    }

    .bs-hero-v10__eyebrow-copy strong {
        overflow: hidden;
        color: #f4f8fc;
        font-size: .67rem;
        font-weight: 900;
        letter-spacing: .075em;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .bs-hero-v10__eyebrow-copy small {
        margin-top: 4px;
        overflow: hidden;
        color: #7f96af;
        font-size: .54rem;
        font-weight: 750;
        letter-spacing: .025em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.bs-hero-v10__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    min-height: 28px;
    margin-left: 5px;
    padding: 0 9px;
    border: 1px solid rgba(var(--hero-accent-rgb), .20);
    border-radius: 999px;
    color: var(--hero-accent);
    background: rgba(var(--hero-accent-rgb), .08);
    font-size: .48rem;
    font-weight: 950;
    letter-spacing: .055em;
    text-transform: uppercase;
}

    .bs-hero-v10__live i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: currentColor;
        box-shadow: 0 0 0 4px rgba(var(--hero-accent-rgb), .08), 0 0 12px currentColor;
        animation: bsHeroV10Pulse 1.8s ease-in-out infinite;
    }

@keyframes bsHeroV10Pulse {
    50% {
        opacity: .45;
        transform: scale(.72);
    }
}

.bs-hero-v10__title {
    max-width: 890px;
    margin: 0 0 25px;
    color: #fff;
    font-family: Manrope, "Segoe UI", sans-serif;
    font-size: clamp(3.55rem, 6.2vw, 6.25rem);
    font-weight: 900;
    line-height: .93;
    letter-spacing: -.068em;
    text-wrap: balance;
    text-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

    .bs-hero-v10__title span {
        display: block;
        margin-top: .11em;
        color: transparent;
        background: linear-gradient( 92deg, #6cf6e9 0%, var(--hero-accent) 40%, #69b7ff 81%, #f6d06f 124% );
        -webkit-background-clip: text;
        background-clip: text;
        filter: drop-shadow(0 14px 30px rgba(var(--hero-accent-rgb), .12));
    }

.bs-hero-v10__lead strong {
    color: #ffffff;
    font-weight: 900;
}

.bs-hero-v10__lead {
    max-width: 720px;
    margin: 0 0 30px;
    color: #b7c9da;
    font-size: clamp(.98rem, 1.3vw, 1.14rem);
    font-weight: 560;
    line-height: 1.75;
    text-wrap: pretty;
}

.bs-hero-v10__actions {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 710px;
    margin-bottom: 22px;
}

.bs-hero-v10__button {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 66px;
    padding: 9px 13px;
    border-radius: 18px;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease, background .20s ease;
}

    .bs-hero-v10__button:hover {
        transform: translateY(-3px);
    }

.bs-hero-v10__button--primary {
    flex: 1 1 310px;
    border: 0;
    color: #04172d;
    background: linear-gradient(135deg, #76f8ec, var(--hero-accent) 54%, #69b7ff);
    box-shadow: 0 18px 42px rgba(var(--hero-accent-rgb), .24), inset 0 1px 0 rgba(255, 255, 255, .68);
}

.bs-hero-v10__button--secondary {
    flex: 1 1 265px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #eff7ff;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055);
    backdrop-filter: blur(10px);
}

    .bs-hero-v10__button--secondary:hover {
        border-color: rgba(var(--hero-accent-rgb), .32);
        background: rgba(var(--hero-accent-rgb), .075);
    }

.bs-hero-v10__button-icon {
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 14px;
}

.bs-hero-v10__button--primary .bs-hero-v10__button-icon {
    color: #fff;
    background: rgba(4, 23, 45, .86);
    box-shadow: 0 9px 22px rgba(4, 23, 45, .19);
}

.bs-hero-v10__button--secondary .bs-hero-v10__button-icon {
    color: var(--hero-accent);
    background: rgba(var(--hero-accent-rgb), .10);
}

.bs-hero-v10__button strong {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    font-size: .73rem;
    font-weight: 950;
    letter-spacing: .025em;
    text-transform: uppercase;
}

    .bs-hero-v10__button strong small {
        display: block;
        margin-top: 5px;
        opacity: .67;
        font-size: .55rem;
        font-weight: 750;
        letter-spacing: 0;
        text-transform: none;
    }

.bs-hero-v10__button > .fa-arrow-right {
    margin-right: 3px;
    font-size: .74rem;
}

.bs-hero-v10__proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #7e94aa;
    font-size: .58rem;
    font-weight: 780;
}

    .bs-hero-v10__proof span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .bs-hero-v10__proof i {
        color: var(--hero-accent);
    }

.bs-hero-v10__slide.is-active .bs-hero-v10__copy {
    animation: bsHeroV10CopyIn .72s cubic-bezier(.2, .8, .2, 1) .08s both;
}

@keyframes bsHeroV10CopyIn {
    from {
        opacity: 0;
        transform: translate3d(-28px, 20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.bs-hero-v10__navigation {
    position: absolute;
    z-index: 12;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    background: linear-gradient(180deg, rgba(3, 12, 28, .38), rgba(2, 8, 23, .89));
    backdrop-filter: blur(16px);
}

.bs-hero-v10__navigation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 93px;
}

.bs-hero-v10__indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    flex: 1 1 auto;
    gap: 5px;
    min-width: 0;
}

    .bs-hero-v10__indicators button {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        height: 50px;
        margin: 0;
        padding: 0 10px;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 13px;
        color: #637b95;
        background: transparent;
        font: inherit;
        text-align: left;
        cursor: pointer;
        transition: color .2s ease, border-color .2s ease, background .2s ease;
    }

        .bs-hero-v10__indicators button::after {
            position: absolute;
            right: 9px;
            bottom: 5px;
            left: 9px;
            height: 2px;
            content: "";
            border-radius: 999px;
            background: rgba(255, 255, 255, .07);
        }

        .bs-hero-v10__indicators button.is-active {
            border-color: rgba(var(--hero-accent-rgb), .17);
            color: #eef7ff;
            background: rgba(255, 255, 255, .045);
        }

            .bs-hero-v10__indicators button.is-active::after {
                background: var(--hero-accent);
                box-shadow: 0 0 12px rgba(var(--hero-accent-rgb), .62);
            }

        .bs-hero-v10__indicators button > span {
            flex: 0 0 auto;
            color: var(--hero-accent);
            font-size: .53rem;
            font-weight: 900;
        }

        .bs-hero-v10__indicators button > strong {
            overflow: hidden;
            font-size: .60rem;
            font-weight: 850;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.bs-hero-v10__arrows {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 9px;
}

.bs-hero-v10__arrow {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    color: #eaf4fd;
    background: rgba(255, 255, 255, .055);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

    .bs-hero-v10__arrow:hover {
        transform: translateY(-2px);
        border-color: rgba(var(--hero-accent-rgb), .27);
        background: rgba(var(--hero-accent-rgb), .08);
    }

.bs-hero-v10__counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    min-width: 52px;
}

    .bs-hero-v10__counter strong {
        color: #fff;
        font-size: .75rem;
        font-weight: 950;
    }

    .bs-hero-v10__counter small {
        color: #5f7790;
        font-size: .51rem;
        font-weight: 800;
    }

@media (max-width: 991.98px) {
    .bs-hero-v10 {
        --bsp-hero-nav-height: 76px;
        min-height: 820px;
    }

    .bs-hero-v10__container {
        align-items: flex-start;
        padding-top: calc(var(--bsp-hero-nav-height) + 58px);
        padding-bottom: 125px;
    }

    .bs-hero-v10__copy {
        max-width: 760px;
    }

    .bs-hero-v10__title {
        font-size: clamp(3.2rem, 8.2vw, 5.25rem);
    }

    .bs-hero-v10__navigation-inner {
        min-height: 86px;
    }

    .bs-hero-v10__indicators button {
        padding-inline: 7px;
    }

        .bs-hero-v10__indicators button > strong {
            font-size: .53rem;
        }
}

@media (max-width: 767.98px) {
    .bs-hero-v10 {
        --bsp-hero-nav-height: 72px;
        min-height: 790px;
    }

    .bs-hero-v10__image {
        object-position: 58% center;
    }

    .bs-hero-v10__veil {
        background: linear-gradient( 90deg, rgba(2, 8, 23, .96) 0%, rgba(3, 15, 34, .89) 62%, rgba(2, 8, 23, .72) 100% ), linear-gradient( 0deg, rgba(2, 8, 23, .98) 0%, rgba(2, 8, 23, .56) 44%, rgba(2, 8, 23, .42) 100% );
    }

    .bs-hero-v10__mesh {
        background-size: 38px 38px;
    }

    .bs-hero-v10__container {
        width: calc(100% - 24px);
        max-width: none;
        padding: calc(var(--bsp-hero-nav-height) + 42px) 0 112px;
    }

    .bs-hero-v10__eyebrow {
        width: fit-content;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .bs-hero-v10__eyebrow-copy small {
        display: none;
    }

    .bs-hero-v10__title {
        max-width: 95%;
        margin-bottom: 20px;
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: .96;
        letter-spacing: -.058em;
    }

        .bs-hero-v10__title span {
            margin-top: .13em;
        }

    .bs-hero-v10__lead {
        max-width: 96%;
        margin-bottom: 24px;
        font-size: clamp(.87rem, 3.8vw, 1rem);
        line-height: 1.62;
    }

    .bs-hero-v10__actions {
        display: grid;
        width: min(100%, 355px);
        margin-bottom: 18px;
    }

    .bs-hero-v10__button {
        width: 100%;
        min-height: 60px;
        border-radius: 16px;
    }

    .bs-hero-v10__proof {
        gap: 8px 14px;
        max-width: 355px;
    }

        .bs-hero-v10__proof span:nth-child(3) {
            display: none;
        }

    .bs-hero-v10__navigation-inner {
        min-height: 82px;
        gap: 9px;
    }

    .bs-hero-v10__indicators {
        display: flex;
        justify-content: center;
        gap: 7px;
    }

        .bs-hero-v10__indicators button {
            width: 8px;
            min-width: 8px;
            height: 8px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, .24);
        }

            .bs-hero-v10__indicators button::after,
            .bs-hero-v10__indicators button > span,
            .bs-hero-v10__indicators button > strong {
                display: none;
            }

            .bs-hero-v10__indicators button.is-active {
                width: 29px;
                min-width: 29px;
                background: var(--hero-accent);
                box-shadow: 0 0 14px rgba(var(--hero-accent-rgb), .45);
            }

    .bs-hero-v10__arrow {
        width: 39px;
        height: 39px;
        border-radius: 13px;
    }

    .bs-hero-v10__counter {
        min-width: 46px;
    }
}

@media (max-width: 419px) {
    .bs-hero-v10 {
        min-height: 820px;
    }

    .bs-hero-v10__container {
        width: calc(100% - 20px);
    }

    .bs-hero-v10__eyebrow {
        gap: 8px;
        padding-right: 7px;
    }

    .bs-hero-v10__eyebrow-icon {
        flex-basis: 33px;
        width: 33px;
        height: 33px;
    }

    .bs-hero-v10__live {
        display: none;
    }

    .bs-hero-v10__title {
        max-width: 100%;
        font-size: clamp(2.35rem, 12.5vw, 3.25rem);
    }

    .bs-hero-v10__lead {
        max-width: 100%;
    }

    .bs-hero-v10__button strong small {
        font-size: .52rem;
    }

    .bs-hero-v10__proof span:nth-child(2) {
        display: none;
    }

    .bs-hero-v10__navigation-inner {
        justify-content: center;
    }

    .bs-hero-v10__indicators {
        flex: 0 1 auto;
    }

    .bs-hero-v10__arrows {
        margin-left: auto;
    }

    .bs-hero-v10__arrow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bs-hero-v10__progress span,
    .bs-hero-v10__live i,
    .bs-hero-v10__copy,
    .bs-hero-v10__image,
    .bs-hero-v10__slide {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}

/* ==========================================================
   COMPATIBILIDAD CON EL CSS LEGACY DE .bs-hero
   Mantener este bloque al final del CSS del slider.
   ========================================================== */

.bs-hero.bs-hero-v10 {
    min-height: clamp(690px, 86vh, 850px);
    overflow: hidden;
    color: #fff;
    background: #020817;
}

    .bs-hero.bs-hero-v10 > .bs-spark-field {
        z-index: 3;
        opacity: .72;
    }

    .bs-hero.bs-hero-v10 .bs-hero-v10__slides {
        position: relative;
        z-index: 1;
        min-height: inherit;
    }

    .bs-hero.bs-hero-v10 .bs-hero-v10__slide {
        min-height: inherit;
    }

    .bs-hero.bs-hero-v10 .bs-hero-v10__container,
    .bs-hero.bs-hero-v10 .bs-hero-v10__navigation {
        z-index: 5;
    }

    .bs-hero.bs-hero-v10 .bs-hero-v10__title {
        display: block;
        max-width: 890px;
        margin: 0 0 25px;
        overflow: visible;
        color: #fff;
        font-family: Manrope, "Segoe UI", sans-serif;
        font-size: clamp(3.55rem, 6.2vw, 6.25rem);
        font-weight: 900;
        line-height: .93;
        letter-spacing: -.068em;
        overflow-wrap: normal;
        text-wrap: balance;
        text-shadow: 0 18px 46px rgba(0, 0, 0, .28);
    }

        .bs-hero.bs-hero-v10 .bs-hero-v10__title span {
            display: block;
        }

    .bs-hero.bs-hero-v10 .bs-hero-v10__lead {
        display: block;
        max-width: 720px;
        margin: 0 0 30px;
        overflow: visible;
        color: #b7c9da;
        font-size: clamp(.98rem, 1.3vw, 1.14rem);
        font-weight: 560;
        line-height: 1.75;
        text-wrap: pretty;
        -webkit-box-orient: initial;
        -webkit-line-clamp: unset;
    }

    .bs-hero.bs-hero-v10 .bs-hero-v10__button {
        width: auto;
    }

@media (max-width: 1023.98px) {
    .bs-hero.bs-hero-v10 .bs-hero-v10__title {
        font-size: clamp(3.2rem, 8.2vw, 5.25rem);
    }
}

@media (max-width: 767.98px) {
    .bs-hero.bs-hero-v10 {
        min-height: 790px;
    }

        .bs-hero.bs-hero-v10 .bs-hero-v10__title {
            max-width: 95%;
            margin-bottom: 20px;
            font-size: clamp(2.55rem, 12vw, 4rem);
            line-height: .96;
            letter-spacing: -.058em;
        }

        .bs-hero.bs-hero-v10 .bs-hero-v10__lead {
            max-width: 100%;
            margin-bottom: 24px;
            font-size: .92rem;
            line-height: 1.58;
        }

        .bs-hero.bs-hero-v10 .bs-hero-v10__button {
            width: 100%;
        }
}

@media (max-width: 419px) {
    .bs-hero.bs-hero-v10 {
        min-height: 820px;
    }

        .bs-hero.bs-hero-v10 .bs-hero-v10__title {
            max-width: 100%;
            font-size: clamp(2.35rem, 12.5vw, 3.25rem);
        }
}
