/* Hoja principal: variables, layout, componentes, animaciones y puntos responsive. */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');
@import "tailwindcss";

:root {
    --ink: #07130f;
    --paper: #f4f5ef;
    --lime: #b8f238;
    --line: rgba(7, 19, 15, .14)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif
}

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

button {
    font: inherit
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto
}

.nav {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 20
}

.logo {
    font: 700 23px "Manrope";
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -1px
}

.logo>span:last-child>span {
    color: #6b9d18
}

.logo-mark {
    width: 35px;
    height: 35px;
    border-radius: 10px 4px;
    background: var(--ink);
    color: var(--lime);
    display: grid;
    place-items: center;
    font-size: 19px;
    transform: rotate(-4deg)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 33px;
    font-size: 14px;
    font-weight: 600
}

.nav-links>a:not(.nav-cta) {
    transition: .2s
}

.nav-links>a:not(.nav-cta):hover {
    color: #688c20
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--ink);
    color: #fff;
    padding: 13px 20px;
    border-radius: 8px
}

.nav-cta svg,
.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.menu {
    display: none;
    background: none;
    border: 0
}

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 64px;
    padding: 28px 0 75px
}

.eyebrow,
.kicker {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 12px;
    font-weight: 700
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #476044
}

.eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #83bc14;
    box-shadow: 0 0 0 5px rgba(131, 188, 20, .13)
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    margin: 0
}

h1 {
    font-size: clamp(52px, 6vw, 84px);
    line-height: .98;
    letter-spacing: -5px;
    margin: 25px 0
}

h1 em {
    font-style: normal;
    color: #719f1d
}

.hero-copy>p {
    font-size: 18px;
    line-height: 1.7;
    color: #52605a;
    max-width: 590px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px
}

.button {
    padding: 17px 23px;
    font-weight: 700;
    border-radius: 9px;
    transition: .25s
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(7, 19, 15, .15)
}

.text-link {
    font-weight: 700;
    font-size: 14px
}

.text-link span {
    margin-left: 9px
}

.hero-proof {
    display: flex;
    gap: 30px;
    margin-top: 48px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: #627069;
    font-size: 12px
}

.hero-proof span {
    display: flex;
    align-items: baseline;
    gap: 7px
}

.hero-proof strong {
    font: 700 20px "Manrope";
    color: var(--ink)
}

.hero-visual {
    height: 520px;
    position: relative;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(184, 242, 56, .22), transparent 61%)
}

.orbit {
    position: absolute;
    border: 1px solid rgba(7, 19, 15, .13);
    border-radius: 50%;
    inset: 35px
}

.orbit-two {
    inset: 90px;
    border-style: dashed;
    animation: spin 30s linear infinite
}

.code-card {
    width: 355px;
    background: #07130f;
    color: #fff;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 38px 70px rgba(7, 19, 15, .24);
    transform: rotate(-2deg)
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 17px;
    border-bottom: 1px solid #24362f;
    color: #8fa098;
    font: 500 10px monospace
}

.card-top div {
    display: flex;
    gap: 5px
}

.card-top b {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #40524b
}

.card-top b:first-child {
    background: var(--lime)
}

.code-lines {
    display: grid;
    gap: 16px;
    padding: 25px 3px;
    font: 500 13px monospace;
    color: #b5c1bc
}

.code-lines span {
    display: flex;
    gap: 11px
}

.code-lines i {
    font-style: normal;
    color: #4f645b
}

.code-lines b {
    color: var(--lime);
    font-weight: 500
}

.build-ok {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #13261e;
    border: 1px solid #284438;
    border-radius: 10px;
    padding: 13px
}

.build-ok>span {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800
}

.build-ok div {
    display: grid
}

.build-ok small {
    color: #8da197
}

.build-ok strong {
    font-size: 13px;
    margin-top: 2px
}

.float-tag {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 15px;
    font: 600 11px "Manrope";
    box-shadow: 0 14px 30px rgba(7, 19, 15, .1);
    z-index: 3
}

.tag-one {
    top: 87px;
    right: 0
}

.tag-two {
    bottom: 85px;
    left: 0
}

.pixel-grid {
    position: absolute;
    right: 12px;
    bottom: 45px;
    width: 75px;
    height: 75px;
    background-image: radial-gradient(#779b35 1.4px, transparent 1.4px);
    background-size: 11px 11px;
    opacity: .7
}

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

.ticker {
    overflow: hidden;
    background: var(--lime);
    border-block: 1px solid var(--ink);
    white-space: nowrap;
    transform: rotate(-1deg);
    width: 102%;
    margin-left: -1%
}

.ticker div {
    padding: 13px 0;
    font: 800 12px "Manrope";
    letter-spacing: 2px;
    word-spacing: 25px;
    animation: marquee 22s linear infinite
}

.ticker i {
    font-style: normal;
    word-spacing: 0
}

@keyframes marquee {
    to {
        transform: translateX(-30%)
    }
}

.section {
    padding-block: 120px
}

.section-head {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px
}

.kicker {
    color: #6d991d;
    display: block;
    margin-bottom: 16px
}

.section-head h2 {
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -3px;
    line-height: 1.05;
    max-width: 690px
}

.section-head>p {
    color: #66726c;
    line-height: 1.7;
    margin: 0
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.service-card {
    padding: 28px;
    min-height: 305px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: .3s
}

.service-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(7, 19, 15, .07)
}

.service-number {
    font: 500 12px monospace;
    color: #829088
}

.service-icon {
    position: absolute;
    right: 25px;
    top: 22px;
    width: 35px;
    height: 35px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.service-card h3 {
    font-size: 21px;
    margin-top: 90px;
    margin-bottom: 15px
}

.service-card p {
    color: #69756f;
    font-size: 14px;
    line-height: 1.65
}

.work {
    background: var(--ink);
    color: #fff;
    padding-block: 120px
}

.section-head.light .kicker {
    color: var(--lime)
}

.section-head.light>p {
    color: #94a69e
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.project-card {
    background: #0c1c16;
    border: 1px solid #24352f;
    padding: 12px;
    border-radius: 16px;
    transition: .3s
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #55724a
}

.project-preview {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 14px
}

.browser-bar {
    height: 25px;
    background: rgba(255, 255, 255, .8);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    color: #1f2a25
}

.browser-bar i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #94a097
}

.browser-bar span {
    font: 500 7px monospace;
    margin-left: 9px;
    opacity: .6
}

.mock-content {
    padding: 44px 32px;
    color: #fff
}

.mock-content small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px
}

.mock-content strong {
    font: 700 32px "Manrope";
    display: block
}

.mock-lines {
    display: grid;
    gap: 7px;
    margin: 17px 0
}

.mock-lines i {
    display: block;
    height: 4px;
    width: 55%;
    background: rgba(255, 255, 255, .55);
    border-radius: 5px
}

.mock-lines i+i {
    width: 37%
}

.mock-content button {
    border: 0;
    background: #fff;
    color: #111;
    padding: 8px 14px;
    font-weight: 700;
    border-radius: 3px;
    font-size: 9px
}

.film {
    background: linear-gradient(135deg, #191919, #573327)
}

.bricha {
    background: linear-gradient(135deg, #0d1d33, #245895)
}

.fish {
    background: linear-gradient(135deg, #0b5361, #30a38a)
}

.publi {
    background: linear-gradient(135deg, #572177, #eb4d8f)
}

.pega {
    background: linear-gradient(135deg, #ef5d1b, #fbb82b)
}

.futbol {
    background: linear-gradient(135deg, #a91616, #f2bf21)
}

.project-index {
    position: absolute;
    right: 18px;
    bottom: 8px;
    font: 800 65px "Manrope";
    opacity: .1
}

.project-info {
    display: flex;
    justify-content: space-between;
    padding: 21px 14px 14px
}

.project-info span {
    color: var(--lime);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.4px
}

.project-info h3 {
    font-size: 20px;
    margin: 5px 0
}

.project-info p {
    margin: 0;
    color: #91a098;
    font-size: 12px
}

.project-info>b {
    font-size: 25px;
    color: var(--lime)
}

.nexus {
    padding-block: 120px
}

.nexus-panel {
    background: #10291f;
    color: #fff;
    border-radius: 26px;
    padding: 70px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    overflow: hidden;
    position: relative
}

.nexus-panel:before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(184, 242, 56, .1);
    filter: blur(60px);
    right: -60px;
    top: -100px
}

.nexus-label {
    display: inline-block;
    border: 1px solid #416050;
    color: #bbcabf;
    border-radius: 100px;
    padding: 7px 12px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.3px
}

.nexus-brand {
    font: 800 20px "Manrope";
    margin: 25px 0 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 7px
}

.nexus-brand i {
    font-style: normal;
    background: var(--lime);
    color: var(--ink);
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 8px
}

.nexus-brand span {
    color: var(--lime);
    font-size: 11px
}

.nexus-copy h2 {
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -2.5px
}

.nexus-copy>p {
    color: #a9bbb2;
    line-height: 1.65
}

.nexus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
    font-size: 12px
}

.nexus-features span {
    display: flex;
    align-items: center;
    gap: 8px
}

.nexus-features svg {
    width: 15px;
    stroke: var(--lime);
    fill: none;
    stroke-width: 2
}

.button.lime {
    background: var(--lime);
    color: var(--ink)
}

.crm-ui {
    height: 400px;
    align-self: center;
    background: #eff2ed;
    border: 6px solid #28443a;
    border-radius: 18px;
    position: relative;
    z-index: 2;
    color: var(--ink);
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
    transform: perspective(900px) rotateY(-4deg)
}

.crm-ui aside {
    width: 55px;
    background: #0a1b15;
    color: #a6b7ad;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.n-mini {
    width: 29px;
    height: 29px;
    background: var(--lime);
    display: grid;
    place-items: center;
    color: var(--ink);
    border-radius: 7px;
    font-weight: 800;
    margin-bottom: 15px
}

.crm-ui aside span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    font-size: 12px
}

.crm-ui aside .active {
    background: #1d392f;
    color: var(--lime)
}

.crm-main {
    flex: 1;
    padding: 25px
}

.crm-head {
    display: flex;
    justify-content: space-between
}

.crm-head div {
    display: grid
}

.crm-head small {
    color: #87918c;
    font-size: 8px
}

.crm-head strong {
    font: 700 17px "Manrope"
}

.crm-head>i {
    font-style: normal;
    font-size: 8px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #d8dfd9
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 25px
}

.metrics>div {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    display: grid
}

.metrics small {
    font-size: 7px;
    color: #7b8580
}

.metrics strong {
    font: 700 16px "Manrope";
    margin: 4px 0
}

.metrics em {
    font-style: normal;
    font-size: 7px;
    color: #659412
}

.crm-bottom {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 9px;
    margin-top: 10px;
    height: 205px
}

.chart,
.tasks {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    font-size: 9px
}

.bars {
    height: 135px;
    display: flex;
    gap: 8px;
    align-items: end;
    padding-top: 15px;
    border-bottom: 1px solid #dfe4e0
}

.bars i {
    flex: 1;
    background: #6f9e1a;
    border-radius: 3px 3px 0 0
}

.bars i:nth-child(even) {
    background: #bce95b
}

.tasks {
    display: flex;
    flex-direction: column;
    gap: 13px
}

.tasks span {
    font-size: 7px;
    color: #57625d;
    padding-bottom: 9px;
    border-bottom: 1px solid #edf0ed
}

.tasks span i {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: var(--lime);
    margin-right: 4px
}

.process {
    padding-bottom: 130px
}

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

.steps article {
    padding-right: 30px
}

.steps article>span {
    font: 600 12px monospace;
    color: #6f941f
}

.steps article>div {
    height: 1px;
    background: var(--line);
    margin: 18px 0 25px;
    position: relative
}

.steps article>div:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #85b626;
    top: -4px
}

.steps h3 {
    font-size: 18px;
    margin-bottom: 12px
}

.steps p {
    color: #6d7772;
    font-size: 13px;
    line-height: 1.65
}

.contact {
    background: var(--lime);
    border-top: 1px solid var(--ink);
    padding-block: 100px
}

.contact-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: center
}

.contact .kicker {
    color: #3e570b
}

.contact h2 {
    font-size: 64px;
    letter-spacing: -4px
}

.contact p {
    line-height: 1.6
}

.contact-actions {
    display: grid
}

.big-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(7, 19, 15, .3);
    font: 700 22px "Manrope";
    letter-spacing: -1px
}

.big-contact:first-child {
    border-top: 1px solid rgba(7, 19, 15, .3)
}

.big-contact small {
    display: block;
    font: 600 9px "DM Sans";
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.big-contact b {
    font-size: 30px;
    transition: .2s
}

.big-contact:hover b {
    transform: translate(3px, -3px)
}

.footer {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #65706a
}

.footer .logo {
    color: var(--ink)
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 55px;
    height: 55px;
    background: #24d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 30;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
    transition: .25s
}

.whatsapp-float:hover {
    transform: scale(1.08)
}

.whatsapp-float svg {
    width: 31px;
    fill: #fff
}

@media(max-width:900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        box-shadow: 0 20px 50px rgba(7, 19, 15, .12)
    }

    .nav-links.open {
        display: flex
    }

    .menu {
        display: grid;
        gap: 6px;
        padding: 10px
    }

    .menu span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--ink)
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px
    }

    .hero-visual {
        height: 420px
    }

    .section-head,
    .nexus-panel,
    .contact-inner {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .nexus-panel {
        padding: 45px
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .contact-inner {
        gap: 35px
    }
}

@media(max-width:600px) {
    .shell {
        width: min(100% - 30px, 1180px)
    }

    .nav {
        height: 75px
    }

    .hero {
        padding-top: 35px;
        padding-bottom: 55px;
        gap: 20px
    }

    h1 {
        font-size: 49px;
        letter-spacing: -3.5px
    }

    .hero-copy>p {
        font-size: 16px
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px
    }

    .hero-proof {
        gap: 15px;
        justify-content: space-between
    }

    .hero-proof span {
        display: grid
    }

    .hero-proof strong {
        font-size: 17px
    }

    .hero-visual {
        height: 380px
    }

    .code-card {
        width: 88%
    }

    .tag-one {
        right: -3px;
        top: 40px
    }

    .tag-two {
        bottom: 35px
    }

    .section,
    .work,
    .nexus {
        padding-block: 80px
    }

    .section-head {
        gap: 22px;
        margin-bottom: 38px
    }

    .section-head h2 {
        font-size: 39px;
        letter-spacing: -2px
    }

    .services-grid,
    .projects-grid,
    .steps {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 255px
    }

    .service-card h3 {
        margin-top: 65px
    }

    .project-preview {
        height: 240px
    }

    .mock-content {
        padding: 30px 18px
    }

    .nexus-panel {
        padding: 30px 20px;
        border-radius: 18px;
        gap: 40px
    }

    .nexus-copy h2 {
        font-size: 37px
    }

    .nexus-features {
        grid-template-columns: 1fr
    }

    .crm-ui {
        height: 330px;
        transform: none
    }

    .crm-main {
        padding: 16px
    }

    .metrics>div:nth-child(3) {
        display: none
    }

    .metrics {
        grid-template-columns: 1fr 1fr
    }

    .crm-bottom {
        grid-template-columns: 1fr
    }

    .tasks {
        display: none
    }

    .contact {
        padding-block: 75px
    }

    .contact h2 {
        font-size: 52px
    }

    .big-contact {
        font-size: 17px;
        word-break: break-word
    }

    .footer {
        height: auto;
        padding-block: 35px;
        display: grid;
        gap: 18px
    }

    .footer>span {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .ticker div,
    .orbit-two {
        animation: none
    }
}

/* Sistemas Blackcat — identidad azul eléctrica */
:root {
    --ink: #050b12;
    --paper: #cedae7;
    --lime: #14bff4;
    --blue: #0878e8;
    --line: rgba(5, 11, 18, .13)
}

body {
    background: var(--paper);
    background-image: linear-gradient(rgba(8, 120, 232, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 120, 232, .035) 1px, transparent 1px);
    background-size: 42px 42px
}

.nav {
    height: 104px
}

.logo {
    display: block;
    line-height: 0
}

.logo img {
    width: 190px;
    height: 52px;
    object-fit: contain;
    mix-blend-mode: multiply
}

.footer .logo img {
    width: 165px
}

.nav-cta,
.button {
    border-radius: 100px;
    background: #06101c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1)
}

.nav-links>a:not(.nav-cta):hover {
    color: var(--blue)
}

.hero {
    min-height: 690px
}

.eyebrow {
    color: #36536d
}

.eyebrow i {
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(20, 191, 244, .13), 0 0 22px rgba(20, 191, 244, .7)
}

h1 em {
    color: var(--blue);
    text-shadow: 0 0 40px rgba(20, 191, 244, .16)
}

.hero-copy>p {
    color: #516578
}

.button.primary {
    background: linear-gradient(100deg, #0878e8, #14bff4);
    color: #03101a;
    box-shadow: 0 12px 30px rgba(8, 120, 232, .26)
}

.hero-visual {
    background: radial-gradient(circle at center, rgba(20, 191, 244, .2), transparent 61%)
}

.orbit {
    border-color: rgba(8, 120, 232, .2)
}

.orbit-two {
    border-color: rgba(20, 191, 244, .35)
}

.brand-card {
    width: 390px;
    min-height: 440px;
    padding: 26px;
    background: rgba(4, 12, 21, .95);
    border: 1px solid rgba(20, 191, 244, .34);
    border-radius: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 36px 80px rgba(5, 25, 45, .3), 0 0 45px rgba(20, 191, 244, .13);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: rotate(-2deg)
}

.brand-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(20, 191, 244, .12), transparent 65%);
    animation: sweep 5s ease-in-out infinite
}

.brand-card img {
    position: relative;
    width: 100%;
    border-radius: 17px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.status {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 21px;
    color: #8ddffc;
    font: 600 9px "DM Sans";
    letter-spacing: 1.8px
}

.status i {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #24e0a4;
    border-radius: 50%;
    margin-right: 7px;
    box-shadow: 0 0 12px #24e0a4
}

.signal {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    right: 23px;
    height: 22px;
    display: flex;
    align-items: end;
    gap: 4px
}

.signal span {
    width: 3px;
    background: var(--lime);
    border-radius: 3px;
    animation: signal 1.3s ease-in-out infinite
}

.signal span:nth-child(1) {
    height: 7px
}

.signal span:nth-child(2) {
    height: 14px;
    animation-delay: .1s
}

.signal span:nth-child(3) {
    height: 21px;
    animation-delay: .2s
}

.signal span:nth-child(4) {
    height: 12px;
    animation-delay: .3s
}

.signal span:nth-child(5) {
    height: 17px;
    animation-delay: .4s
}

@keyframes sweep {

    0%,
    55% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

@keyframes signal {
    50% {
        height: 5px
    }
}

.float-tag {
    border-color: rgba(8, 120, 232, .2);
    box-shadow: 0 14px 35px rgba(6, 28, 48, .13);
    color: #123450
}

.pixel-grid {
    background-image: radial-gradient(#0a9cdf 1.4px, transparent 1.4px)
}

.ticker {
    background: #06101c;
    color: #dff8ff;
    border-color: #14bff4
}

.ticker i {
    color: #14bff4
}

.kicker {
    color: #0878e8
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(8, 120, 232, .1);
    border-color: rgba(8, 120, 232, .24)
}

.service-icon {
    color: #0878e8
}

.work {
    background: #050b12;
    background-image: radial-gradient(circle at 80% 10%, rgba(8, 120, 232, .22), transparent 30%)
}

.section-head.light .kicker,
.project-info span,
.project-info>b {
    color: #28c7f7
}

.project-card {
    background: #09131f;
    border-color: #172a3e
}

.project-card:hover {
    border-color: #1e99d1;
    box-shadow: 0 20px 55px rgba(0, 118, 196, .13)
}

.nexus-panel {
    background: #06101c;
    border: 1px solid rgba(20, 191, 244, .27);
    box-shadow: 0 35px 80px rgba(4, 28, 50, .16)
}

.nexus-panel:before {
    background: rgba(20, 191, 244, .13)
}

.nexus-brand i,
.n-mini,
.button.lime {
    background: linear-gradient(135deg, #0878e8, #18c8f5)
}

.nexus-brand span {
    color: #28c7f7
}

.nexus-features svg {
    stroke: #28c7f7
}

.crm-ui {
    border-color: #143d59
}

.crm-ui aside {
    background: #07131e
}

.crm-ui aside .active {
    background: #0b3450;
    color: #28c7f7
}

.bars i {
    background: #0878e8
}

.bars i:nth-child(even) {
    background: #28c7f7
}

.tasks span i {
    background: #18c8f5
}

.steps article>span {
    color: #0878e8
}

.steps article>div:before {
    background: #14bff4;
    box-shadow: 0 0 14px rgba(20, 191, 244, .7)
}

.contact {
    background: #0794dc;
    color: #03101a;
    border-top-color: #06101c;
    background-image: linear-gradient(115deg, #0878e8, #1bc9ef)
}

.contact .kicker {
    color: #05243b
}

.big-contact {
    border-color: rgba(3, 16, 26, .32)
}

.whatsapp-float {
    border: 3px solid #fff
}

@media(max-width:900px) {
    .nav-links {
        background: rgba(247, 249, 251, .98)
    }

    .brand-card {
        width: 360px;
        min-height: 400px
    }
}

@media(max-width:600px) {
    .nav {
        height: 82px
    }

    .logo img {
        width: 150px;
        height: 44px
    }

    .brand-card {
        width: 86%;
        min-height: 340px;
        padding: 19px;
        border-radius: 22px
    }

    .hero {
        padding-top: 25px
    }

    .hero-visual {
        height: 390px
    }
}

/* Sistemas Blackcat — identidad felina tecnológica */
:root {
    --ink: #020304;
    --paper: #07090c;
    --lime: #ffe900;
    --blue: #12c8f4;
    --line: rgba(105, 208, 235, .18)
}

body {
    background-color: #07090c;
    background-image: radial-gradient(circle at 15% 8%, rgba(8, 140, 190, .16), transparent 25%), linear-gradient(rgba(18, 200, 244, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 200, 244, .025) 1px, transparent 1px);
    color: #eef8fb
}

.nav {
    background: rgba(7, 9, 12, .75);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    width: min(1180px, calc(100% - 48px));
    border-bottom: 1px solid rgba(18, 200, 244, .12)
}

.blackcat-logo {
    display: flex !important;
    align-items: center;
    gap: 12px;
    line-height: 1;
    color: #fff;
    font: 800 18px "Manrope";
    letter-spacing: .5px
}

.blackcat-logo img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: normal !important;
    border: 1px solid rgba(18, 200, 244, .4)
}

.blackcat-logo span {
    display: grid
}

.blackcat-logo b {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--blue)
}

.nav-links>a:not(.nav-cta):hover {
    color: var(--blue)
}

.nav-cta {
    background: linear-gradient(100deg, #0878e8, #16d7f5);
    color: #020508;
    box-shadow: 0 0 30px rgba(18, 200, 244, .18)
}

.hero {
    min-height: 720px
}

.eyebrow {
    color: #91afba
}

.eyebrow i {
    background: var(--lime);
    box-shadow: 0 0 18px var(--lime)
}

h1 {
    color: #fff
}

h1 em {
    color: var(--blue);
    text-shadow: 0 0 38px rgba(18, 200, 244, .35)
}

.hero-copy>p {
    color: #a4b4bb
}

.text-link {
    color: #d9e8ed
}

.hero-proof {
    border-color: var(--line);
    color: #758c95
}

.hero-proof strong {
    color: #fff
}

.button.primary {
    background: linear-gradient(100deg, #0878e8, #19d3ef);
    color: #02070a
}

.hero-visual {
    background: radial-gradient(circle at center, rgba(18, 200, 244, .18), transparent 60%)
}

.orbit {
    border-color: rgba(18, 200, 244, .2)
}

.orbit-two {
    border-color: rgba(255, 233, 0, .24)
}

.brand-card {
    width: 410px;
    min-height: 430px;
    padding: 18px;
    background: #020407;
    border-color: rgba(18, 200, 244, .38);
    box-shadow: 0 38px 90px #000, 0 0 65px rgba(18, 200, 244, .13);
    animation: catFloat 5s ease-in-out infinite
}

.brand-card img {
    aspect-ratio: 1.83;
    object-fit: cover;
    border-radius: 18px
}

.status {
    color: #8de9ff
}

.cat-eyes {
    position: absolute;
    top: 42px;
    right: 55px;
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: eyesAppear 8s ease-in-out infinite
}

.cat-eyes i {
    width: 18px;
    height: 8px;
    background: var(--lime);
    clip-path: polygon(0 50%, 100% 0, 76% 100%, 12% 80%);
    filter: drop-shadow(0 0 8px var(--lime))
}

.float-tag {
    background: #0c1116;
    color: #cfe9f1;
    border-color: rgba(18, 200, 244, .24)
}

@keyframes catFloat {
    50% {
        transform: rotate(1deg) translateY(-13px)
    }
}

@keyframes eyesAppear {

    0%,
    62%,
    100% {
        opacity: 0
    }

    68%,
    88% {
        opacity: 1
    }
}

@keyframes pawWalk {
    0% {
        opacity: 0;
        transform: translate(-20px, 20px) rotate(-25deg) scale(.7)
    }

    35%,
    75% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: translate(160px, -55px) rotate(10deg) scale(1)
    }
}

.ticker {
    background: #05070a;
    border-color: #146b83;
    color: #b6cbd2
}

.ticker i {
    color: var(--lime);
    filter: drop-shadow(0 0 7px rgba(255, 233, 0, .55))
}

.section {
    position: relative
}

.paw-trail {
    position: absolute;
    right: 4%;
    top: 35px;
    width: 210px;
    height: 80px;
    pointer-events: none
}

.paw-trail span {
    position: absolute;
    opacity: 0;
    font-size: 18px;
    filter: grayscale(1) sepia(1) saturate(5) hue-rotate(145deg);
    animation: pawWalk 5s infinite
}

.paw-trail span:nth-child(2) {
    animation-delay: 1s
}

.paw-trail span:nth-child(3) {
    animation-delay: 2s
}

.paw-trail span:nth-child(4) {
    animation-delay: 3s
}

.kicker {
    color: var(--blue)
}

.section-head>p,
.service-card p,
.steps p {
    color: #91a4ab
}

.services-grid {
    border-color: var(--line)
}

.service-card {
    border-color: var(--line)
}

.service-card:hover {
    background: #0b1015;
    border-color: rgba(18, 200, 244, .48);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transform: translateY(-7px)
}

.service-card:hover .service-icon {
    transform: rotate(-18deg) scale(1.1);
    border-color: var(--lime);
    color: var(--lime)
}

.service-icon {
    color: var(--blue);
    transition: .35s
}

.service-number {
    color: #66808a
}

.work {
    background: #020304;
    background-image: radial-gradient(circle at 85% 5%, rgba(18, 200, 244, .14), transparent 28%)
}

.project-card {
    background: #070b10;
    border-color: #162a33
}

.project-card:hover {
    border-color: #1594b5
}

.project-preview {
    filter: saturate(.88)
}

.project-info span,
.project-info>b,
.section-head.light .kicker {
    color: var(--blue)
}

.nexus-panel {
    background: #03070b;
    border-color: rgba(18, 200, 244, .28);
    box-shadow: 0 35px 90px #000
}

.nexus-panel:before {
    background: rgba(18, 200, 244, .15)
}

.nexus-brand i,
.n-mini,
.button.lime {
    background: linear-gradient(135deg, #0b85db, #17d6f0)
}

.nexus-brand span {
    color: var(--blue)
}

.nexus-features svg {
    stroke: var(--lime)
}

.crm-ui {
    border-color: #123949
}

.steps article>span {
    color: var(--blue)
}

.steps article>div:before {
    background: var(--lime);
    box-shadow: 0 0 13px var(--lime)
}

.contact {
    background: #05080b;
    color: #fff;
    border-top: 1px solid rgba(18, 200, 244, .4);
    background-image: radial-gradient(circle at 20% 40%, rgba(18, 200, 244, .22), transparent 28%)
}

.contact .kicker {
    color: var(--blue)
}

.big-contact {
    border-color: rgba(154, 219, 236, .24)
}

.big-contact:hover {
    color: var(--blue)
}

.footer {
    color: #71868e
}

.footer .logo {
    color: #fff
}

.whatsapp-float {
    border-color: #07090c
}

@media(max-width:900px) {
    .nav-links {
        background: rgba(5, 8, 11, .98)
    }

    .menu span {
        background: #fff
    }

    .brand-card {
        width: 365px
    }

    .cat-eyes {
        right: 25px
    }
}

@media(max-width:600px) {
    .nav {
        width: min(100% - 30px, 1180px)
    }

    .blackcat-logo span {
        font-size: 14px
    }

    .blackcat-logo img {
        width: 40px !important;
        height: 40px !important
    }

    .brand-card {
        width: 90%;
        min-height: 300px
    }

    .hero {
        min-height: auto
    }

    .paw-trail {
        display: none
    }
}

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

    .brand-card,
    .cat-eyes,
    .paw-trail span {
        animation: none
    }

    .cat-eyes {
        display: none
    }
}

/* Animación del gato programador */
.cat-workstation {
    isolation: isolate;
    justify-content: flex-end;
    background: radial-gradient(circle at 35% 45%, rgba(18, 200, 244, .18), transparent 38%), linear-gradient(145deg, #020406, #071018);
    overflow: hidden
}

.cat-workstation:after {
    content: "";
    position: absolute;
    inset: 14% 8% 9%;
    z-index: -2;
    background: linear-gradient(rgba(18, 200, 244, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 200, 244, .06) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(transparent, #000 22%, #000 80%, transparent);
    animation: gridDrift 7s linear infinite
}

.cat-workstation .cat-anim {
    position: relative;
    z-index: 2;
    width: 118%;
    max-width: none;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .8));
    transform-origin: 50% 82%;
    animation: catWorking 3.2s ease-in-out infinite
}

.screen-aura {
    position: absolute;
    z-index: 1;
    left: 11%;
    top: 25%;
    width: 37%;
    height: 42%;
    border-radius: 45%;
    background: rgba(18, 200, 244, .28);
    filter: blur(30px);
    animation: screenPulse 2s ease-in-out infinite
}

.typing-indicator {
    position: absolute;
    z-index: 4;
    left: 31%;
    bottom: 20%;
    display: flex;
    gap: 5px;
    padding: 8px 11px;
    border: 1px solid rgba(18, 200, 244, .35);
    border-radius: 99px;
    background: rgba(2, 7, 10, .8);
    backdrop-filter: blur(6px)
}

.typing-indicator i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 7px var(--blue);
    animation: typingPaw .9s ease-in-out infinite
}

.typing-indicator i:nth-child(2) {
    animation-delay: .15s
}

.typing-indicator i:nth-child(3) {
    animation-delay: .3s
}

@keyframes catWorking {

    0%,
    100% {
        transform: translateY(3px) rotate(-.35deg)
    }

    45% {
        transform: translateY(-5px) rotate(.2deg)
    }

    55% {
        transform: translateY(-5px) rotate(.2deg)
    }

    65% {
        transform: translateY(-2px) rotate(-.2deg)
    }
}

@keyframes screenPulse {
    50% {
        opacity: .48;
        transform: scale(.91)
    }
}

@keyframes typingPaw {

    0%,
    100% {
        transform: translateY(0);
        opacity: .35
    }

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

@keyframes gridDrift {
    to {
        background-position: 24px 24px
    }
}

@media(max-width:600px) {
    .cat-workstation .cat-anim {
        width: 125%
    }

    .typing-indicator {
        left: 26%;
        bottom: 18%
    }
}

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

    .cat-workstation .cat-anim,
    .screen-aura,
    .typing-indicator i,
    .cat-workstation:after {
        animation: none
    }
}

/* Gato sin contenedor visible */
.brand-card.cat-workstation {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    min-height: 470px
}

.cat-workstation:before,
.cat-workstation:after {
    display: none !important
}

.cat-workstation .status {
    top: 38px;
    left: 30px;
    background: rgba(3, 9, 13, .62);
    border: 1px solid rgba(18, 200, 244, .2);
    padding: 8px 11px;
    border-radius: 99px;
    backdrop-filter: blur(8px)
}

.cat-workstation .cat-anim {
    width: 128%;
    filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .75)) drop-shadow(0 0 22px rgba(18, 200, 244, .13))
}

.screen-aura {
    left: 4%;
    top: 20%;
    width: 48%;
    height: 50%
}

.hero-visual .tag-one {
    right: -18px
}

.hero-visual .tag-two {
    left: -15px
}

/* Carrusel de clientes */
.clients-slider {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 200, 244, .25);
    border-radius: 22px;
    background: #030609;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .38)
}

.slides-track {
    position: relative;
    aspect-ratio: 1.95/1
}

.client-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .65s ease, transform .9s ease, visibility .65s
}

.client-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.client-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 4, 6, .88) 0%, rgba(1, 4, 6, .28) 48%, transparent 75%), linear-gradient(0deg, rgba(1, 4, 6, .62), transparent 38%)
}

.client-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.slide-caption {
    position: absolute;
    z-index: 2;
    left: 5%;
    bottom: 9%;
    max-width: 390px
}

.slide-caption span {
    color: var(--blue);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800
}

.slide-caption h3 {
    font-size: clamp(28px, 4vw, 52px);
    margin: 8px 0 6px
}

.slide-caption p {
    color: #c1d0d5;
    margin: 0
}

.slider-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(18, 200, 244, .38);
    background: rgba(2, 7, 10, .7);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: .25s
}

.slider-arrow:hover {
    background: var(--blue);
    color: #020507
}

.slider-arrow.prev {
    left: 18px
}

.slider-arrow.next {
    right: 18px
}

.slider-dots {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 9%;
    display: flex;
    gap: 9px
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    padding: 0;
    cursor: pointer;
    transition: .3s
}

.slider-dots button.active {
    width: 30px;
    border-radius: 9px;
    background: var(--lime);
    box-shadow: 0 0 12px rgba(255, 233, 0, .45)
}

/* Arañazos felinos de Nexus CRM */
.nexus {
    position: relative
}

.claw-marks {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 105px;
    height: 190px;
    transform: translateY(-50%) rotate(-9deg);
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(18, 200, 244, .35))
}

.claw-left {
    left: -77px
}

.claw-right {
    right: -77px;
    transform: translateY(-50%) rotate(171deg)
}

.claw-marks i {
    position: absolute;
    top: 4px;
    width: 8px;
    height: 180px;
    border-radius: 90% 10% 90% 10%;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 200, 244, .95) 20%, #e9fbff 48%, rgba(18, 200, 244, .8) 75%, transparent 100%);
    clip-path: polygon(45% 0, 100% 45%, 60% 100%, 0 50%);
    animation: clawGlow 2.6s ease-in-out infinite
}

.claw-marks i:nth-child(1) {
    left: 14px;
    transform: rotate(-8deg)
}

.claw-marks i:nth-child(2) {
    left: 46px;
    top: 0;
    animation-delay: .2s
}

.claw-marks i:nth-child(3) {
    left: 78px;
    transform: rotate(8deg);
    animation-delay: .4s
}

@keyframes clawGlow {
    50% {
        opacity: .52;
        filter: blur(.8px)
    }
}

@media(max-width:900px) {
    .slides-track {
        aspect-ratio: 1.55/1
    }

    .claw-marks {
        opacity: .5
    }

    .claw-left {
        left: -48px
    }

    .claw-right {
        right: -48px
    }
}

@media(max-width:600px) {
    .brand-card.cat-workstation {
        min-height: 350px
    }

    .cat-workstation .status {
        top: 4px;
        left: 10px
    }

    .hero-visual .float-tag {
        display: none
    }

    .slides-track {
        aspect-ratio: .9/1
    }

    .client-slide>img {
        object-position: center
    }

    .client-slide:after {
        background: linear-gradient(0deg, rgba(1, 4, 6, .92), transparent 70%)
    }

    .slide-caption {
        left: 7%;
        right: 7%;
        bottom: 10%
    }

    .slider-arrow {
        width: 40px;
        height: 40px
    }

    .slider-arrow.prev {
        left: 9px
    }

    .slider-arrow.next {
        right: 9px
    }

    .slider-dots {
        left: 7%;
        right: auto;
        bottom: 4%
    }

    .claw-marks {
        display: none
    }
}

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

    .client-slide,
    .claw-marks i {
        transition: none;
        animation: none
    }
}

/* Asistente WhatsApp estilo Bricha */
.blackcat-chat {
    position: fixed;
    right: 24px;
    bottom: 22px;
    z-index: 60;
    font-family: "DM Sans", sans-serif
}

.chat-launcher {
    height: 58px;
    min-width: 58px;
    padding: 0 18px;
    border: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, #13d980, #20bd6c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 42px rgba(17, 211, 116, .3);
    cursor: pointer;
    font-weight: 800;
    transition: .25s
}

.chat-launcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(17, 211, 116, .4)
}

.chat-launcher svg {
    width: 29px;
    fill: #fff
}

.launcher-label {
    font-size: 13px
}

.chat-notification {
    position: absolute;
    right: 0;
    top: -5px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lime);
    color: #020507;
    border: 3px solid #07090c;
    font-size: 10px;
    font-weight: 900;
    animation: noticePulse 2s infinite
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 350px;
    overflow: hidden;
    border-radius: 20px;
    background: #f8fbfc;
    color: #071018;
    border: 1px solid rgba(18, 200, 244, .3);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.96);
    transform-origin: bottom right;
    transition: .28s ease
}

.chat-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1)
}

.chat-header {
    padding: 17px 18px;
    background: linear-gradient(125deg, #061018, #092b39);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px
}

.chat-avatar {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(18, 200, 244, .55);
    background: #fff
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.chat-header>div:nth-child(2) {
    display: grid;
    gap: 4px
}

.chat-header strong {
    font: 800 14px "Manrope"
}

.chat-header span {
    font-size: 10px;
    color: #9cbbc5
}

.chat-header span i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #24d987;
    margin-right: 5px;
    box-shadow: 0 0 8px #24d987
}

.chat-close {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    opacity: .7
}

.chat-body {
    padding: 18px;
    background: linear-gradient(135deg, #f8fbfc, #eef7fa)
}

.bot-message {
    background: #fff;
    border: 1px solid #dce9ed;
    border-radius: 5px 16px 16px 16px;
    padding: 13px 14px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 7px 18px rgba(5, 25, 35, .07)
}

.chat-options {
    display: grid;
    gap: 8px;
    margin-top: 14px
}

.chat-options button {
    border: 1px solid #cbdde3;
    background: #fff;
    color: #0b2632;
    border-radius: 11px;
    padding: 7px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px
}

.chat-options button img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex: 0 0 38px;
    filter: drop-shadow(0 3px 5px rgba(2, 25, 34, .16));
    transition: .2s
}

.chat-options button:hover {
    border-color: #12bce9;
    background: #eafaff;
    transform: translateX(3px)
}

.chat-options button:hover img {
    transform: scale(1.08) rotate(-3deg)
}

.custom-chat-form {
    display: grid;
    gap: 8px;
    margin-top: 12px
}

.custom-chat-form label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: #44636f
}

.custom-chat-form textarea {
    resize: none;
    border: 1px solid #bfd4dc;
    border-radius: 10px;
    padding: 11px;
    font: 12px "DM Sans";
    outline: none
}

.custom-chat-form textarea:focus {
    border-color: #12bce9;
    box-shadow: 0 0 0 3px rgba(18, 188, 233, .12)
}

.custom-chat-form button {
    border: 0;
    border-radius: 10px;
    background: #0bc879;
    color: #03120b;
    padding: 11px;
    font-weight: 800;
    cursor: pointer
}

.chat-footer {
    text-align: center;
    padding: 10px;
    background: #edf5f7;
    color: #66808a;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

@keyframes noticePulse {
    50% {
        transform: scale(1.12);
        box-shadow: 0 0 14px rgba(255, 233, 0, .55)
    }
}

@media(max-width:600px) {
    .blackcat-chat {
        right: 14px;
        bottom: 14px
    }

    .chat-panel {
        width: min(350px, calc(100vw - 28px));
        right: 0
    }

    .launcher-label {
        display: none
    }

    .chat-launcher {
        padding: 0;
        width: 56px;
        height: 56px
    }

    .chat-body {
        max-height: 62vh;
        overflow: auto
    }
}

@media(prefers-reduced-motion:reduce) {
    .chat-notification {
        animation: none
    }

    .chat-panel,
    .chat-launcher {
        transition: none
    }
}

/* Portada limpia: solo el gato frente al computador */
.clean-cat-visual {
    background: none !important;
    overflow: visible;
    isolation: isolate
}

.clean-cat-visual:before,
.clean-cat-visual:after {
    display: none !important
}

.clean-cat-visual .cat-anim {
    position: relative;
    z-index: 2;
    width: 118%;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 32px 28px rgba(0, 0, 0, .72)) drop-shadow(0 0 18px rgba(18, 200, 244, .15));
    transform-origin: center 75%;
    animation: cleanCatFloat 3.5s ease-in-out infinite
}

@keyframes cleanCatFloat {

    0%,
    100% {
        transform: translateY(4px)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* Gato caminando entre Servicios y Nuestros clientes */
.walking-cat-scene {
    height: 155px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, #03080b 55%, transparent);
    border-top: 1px solid rgba(18, 200, 244, .07);
    pointer-events: none
}

.walking-cat-scene:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 200, 244, .3), transparent)
}

.walking-cat-scene>img {
    position: absolute;
    z-index: 3;
    bottom: 15px;
    left: 0;
    width: 235px;
    height: auto;
    filter: drop-shadow(0 14px 14px rgba(0, 0, 0, .7));
    animation: walkAcross 13s linear infinite, walkBounce .48s ease-in-out infinite alternate
}

.walking-paws {
    position: absolute;
    inset: 0;
    opacity: .28
}

.walking-paws i {
    position: absolute;
    bottom: 16px;
    color: var(--blue);
    font-style: normal;
    font-size: 16px;
    transform: rotate(90deg);
    animation: pawReveal 13s linear infinite
}

.walking-paws i:nth-child(1) {
    left: 18%;
    animation-delay: -1s
}

.walking-paws i:nth-child(2) {
    left: 36%;
    animation-delay: -3.2s
}

.walking-paws i:nth-child(3) {
    left: 54%;
    animation-delay: -5.4s
}

.walking-paws i:nth-child(4) {
    left: 72%;
    animation-delay: -7.6s
}

.walking-paws i:nth-child(5) {
    left: 90%;
    animation-delay: -9.8s
}

@keyframes walkAcross {
    from {
        transform: translateX(-280px)
    }

    to {
        transform: translateX(calc(100vw + 280px))
    }
}

@keyframes walkBounce {
    to {
        margin-bottom: 4px;
        rotate: .7deg
    }
}

@keyframes pawReveal {

    0%,
    55%,
    100% {
        opacity: 0
    }

    62%,
    82% {
        opacity: 1
    }
}

@media(max-width:600px) {
    .clean-cat-visual .cat-anim {
        width: 125%
    }

    .walking-cat-scene {
        height: 115px
    }

    .walking-cat-scene>img {
        width: 170px;
        animation-duration: 9s
    }

    .walking-paws i {
        font-size: 13px
    }
}

@media(prefers-reduced-motion:reduce) {
    .clean-cat-visual .cat-anim {
        animation: none
    }

    .walking-cat-scene>img {
        animation: walkAcross 20s linear infinite
    }

    .walking-paws {
        display: none
    }
}

/* Capturas reales de Nexus CRM */
.crm-gallery {
    position: relative;
    z-index: 2;
    align-self: center
}

.crm-gallery-frame {
    position: relative;
    aspect-ratio: 1.62/1;
    border: 6px solid #143d59;
    border-radius: 18px;
    overflow: hidden;
    background: #05080b;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
    transform: perspective(1000px) rotateY(-3deg)
}

.crm-gallery-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .45s ease, transform .7s ease
}

.crm-gallery-frame img.active {
    opacity: 1;
    transform: scale(1)
}

.crm-gallery-tabs {
    display: flex;
    gap: 8px;
    margin-top: 13px
}

.crm-gallery-tabs button {
    flex: 1;
    border: 1px solid rgba(18, 200, 244, .24);
    border-radius: 9px;
    background: #08131b;
    color: #8faab4;
    padding: 9px 5px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s
}

.crm-gallery-tabs button.active {
    background: var(--blue);
    color: #02070a;
    border-color: var(--blue)
}

.crm-real-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 4;
    background: rgba(2, 7, 10, .78);
    border: 1px solid rgba(18, 200, 244, .3);
    border-radius: 99px;
    padding: 7px 10px;
    color: #c4e8f1;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(8px)
}

.crm-real-badge i {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2be5a2;
    margin-right: 5px;
    box-shadow: 0 0 8px #2be5a2
}

/* Formulario de contacto */
.contact {
    padding-block: 105px
}

.contact-inner {
    grid-template-columns: .72fr 1.28fr;
    align-items: start
}

.contact-copy {
    position: sticky;
    top: 135px
}

.contact-copy h2 {
    line-height: 1.03
}

.contact-copy>p {
    color: #a7c0c8;
    max-width: 440px
}

.contact-details {
    display: grid;
    margin-top: 38px
}

.contact-details a {
    padding: 15px 0;
    border-top: 1px solid rgba(154, 219, 236, .2);
    font: 700 16px "Manrope"
}

.contact-details small {
    display: block;
    color: var(--blue);
    font: 800 8px "DM Sans";
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.contact-form {
    background: #071018;
    border: 1px solid rgba(18, 200, 244, .24);
    border-radius: 22px;
    padding: 32px;
    display: grid;
    gap: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #aac0c8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #1b3946;
    background: #03080c;
    color: #fff;
    border-radius: 10px;
    padding: 13px 14px;
    font: 13px "DM Sans";
    outline: none;
    text-transform: none;
    letter-spacing: 0
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(18, 200, 244, .1)
}

.contact-form textarea {
    resize: vertical;
    min-height: 125px
}

.contact-form select option {
    background: #071018
}

.form-consent {
    display: flex !important;
    align-items: center;
    grid-template-columns: auto 1fr !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important
}

.form-consent input {
    width: 17px;
    height: 17px;
    accent-color: var(--blue)
}

.form-submit {
    border: 0;
    border-radius: 100px;
    background: linear-gradient(100deg, #0878e8, #19d3ef);
    color: #02070a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    cursor: pointer
}

.form-submit:disabled {
    opacity: .6;
    cursor: wait
}

.form-status {
    margin: 0;
    color: #9fbdc6;
    font-size: 11px
}

.form-status.error {
    color: #ff6c7a
}

/* Mensaje de agradecimiento */
.modal-open {
    overflow: hidden
}

.thanks-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    padding: 20px;
    background: rgba(0, 3, 5, .82);
    backdrop-filter: blur(12px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.thanks-modal.open {
    opacity: 1;
    visibility: visible
}

.thanks-card {
    position: relative;
    width: min(820px, 100%);
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(18, 200, 244, .38);
    border-radius: 28px;
    background: linear-gradient(135deg, #030609, #071822);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    padding: 35px;
    color: #fff;
    box-shadow: 0 40px 100px #000;
    transform: translateY(20px) scale(.97);
    transition: .35s
}

.thanks-modal.open .thanks-card {
    transform: none
}

.thanks-card>img {
    position: relative;
    z-index: 2;
    width: 110%;
    margin-left: -14%;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .55));
    animation: thankCat 2.8s ease-in-out infinite
}

.thanks-card>div:last-child {
    position: relative;
    z-index: 2
}

.thanks-card h2 {
    font-size: clamp(34px, 5vw, 55px);
    letter-spacing: -2.8px;
    line-height: 1;
    margin: 12px 0 18px
}

.thanks-card p {
    color: #a7c1ca;
    line-height: 1.65
}

.thanks-close {
    position: absolute;
    z-index: 5;
    right: 18px;
    top: 15px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    cursor: pointer
}

.thanks-button {
    margin-top: 14px;
    border: 0;
    border-radius: 99px;
    background: var(--blue);
    color: #02070a;
    padding: 13px 20px;
    font-weight: 900;
    cursor: pointer
}

.thanks-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    left: -80px;
    bottom: -80px;
    background: rgba(18, 200, 244, .18);
    filter: blur(50px)
}

@keyframes thankCat {
    50% {
        transform: translateY(-7px) rotate(1deg)
    }
}

@media(max-width:900px) {
    .crm-gallery-frame {
        transform: none
    }

    .contact-copy {
        position: static
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .thanks-card {
        grid-template-columns: .8fr 1.2fr
    }
}

@media(max-width:600px) {
    .nexus-panel {
        padding: 30px 20px
    }

    .crm-gallery-frame {
        aspect-ratio: 1.25/1
    }

    .crm-gallery-frame img {
        object-fit: cover
    }

    .crm-real-badge {
        display: none
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form {
        padding: 22px 17px
    }

    .thanks-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px 20px
    }

    .thanks-card>img {
        width: 190px;
        margin: -15px auto -18px
    }

    .thanks-card h2 {
        font-size: 36px
    }

    .thanks-card p {
        font-size: 13px
    }
}

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

    .crm-gallery-frame img,
    .thanks-modal,
    .thanks-card {
        transition: none
    }

    .thanks-card>img {
        animation: none
    }
}

/* Barra de servicios continua de borde a borde */
.ticker {
    width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
    overflow: hidden
}

.ticker .ticker-track {
    display: flex;
    width: max-content;
    padding: 0 !important;
    word-spacing: 0 !important;
    animation: tickerContinuous 24s linear infinite !important
}

.ticker .ticker-group {
    flex: none;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 28px;
    font: 800 12px "Manrope";
    letter-spacing: 2px;
    word-spacing: 0;
    white-space: nowrap;
    animation: none !important
}

.ticker .ticker-group i {
    margin: 0 5px
}

@keyframes tickerContinuous {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* Huellas más grandes y visibles */
.paw-trail {
    right: 2% !important;
    top: 24px !important;
    width: 390px !important;
    height: 145px !important
}

.paw-trail span {
    font-size: 34px !important;
    filter: grayscale(1) sepia(1) saturate(8) hue-rotate(145deg) drop-shadow(0 0 9px rgba(18, 200, 244, .9)) !important;
    animation: pawWalkLarge 5.5s infinite !important
}

.paw-trail span:nth-child(2) {
    animation-delay: 1s !important
}

.paw-trail span:nth-child(3) {
    animation-delay: 2s !important
}

.paw-trail span:nth-child(4) {
    animation-delay: 3s !important
}

@keyframes pawWalkLarge {
    0% {
        opacity: 0;
        transform: translate(-25px, 55px) rotate(-25deg) scale(.75)
    }

    25%,
    78% {
        opacity: .88
    }

    100% {
        opacity: 0;
        transform: translate(300px, -45px) rotate(9deg) scale(1.08)
    }
}

@media(max-width:600px) {
    .ticker .ticker-group {
        gap: 20px;
        padding-inline: 20px;
        font-size: 10px
    }

    .paw-trail {
        display: none !important
    }
}

@media(prefers-reduced-motion:reduce) {
    .ticker .ticker-track {
        animation: none !important
    }

    .ticker .ticker-group[aria-hidden="true"] {
        display: none
    }

    .paw-trail span {
        animation: none !important;
        opacity: .65
    }
}

/* Navbar de ancho completo y contenido centrado */
.nav.shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-inline: max(24px, calc((100vw - 1180px)/2));
    height: 92px;
    background: rgba(3, 6, 9, .94);
    border-bottom: 1px solid rgba(18, 200, 244, .2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px)
}

.nav .blackcat-logo {
    flex-shrink: 0
}

.nav-links {
    margin-left: auto
}

.nav-cta {
    padding-inline: 24px
}

@media(max-width:900px) {
    .nav.shell {
        padding-inline: 24px
    }

    .nav-links {
        left: 24px !important;
        right: 24px !important;
        top: 78px
    }
}

@media(max-width:600px) {
    .nav.shell {
        padding-inline: 15px
    }

    .nav-links {
        left: 15px !important;
        right: 15px !important;
        top: 72px
    }

    .nav .blackcat-logo span {
        display: grid
    }
}

/* Tres gatos diferentes en recorrido continuo */
.walking-cat-scene>.walking-cat {
    position: absolute;
    z-index: 3;
    bottom: 15px;
    left: 0;
    width: 235px;
    height: auto;
    filter: drop-shadow(0 14px 14px rgba(0, 0, 0, .72));
    transform: translateX(-280px);
    animation: threeCatsAcross 21s linear infinite, walkBounce .48s ease-in-out infinite alternate
}

.walking-cat-scene>.cat-one {
    animation-delay: 0s, 0s
}

.walking-cat-scene>.cat-two {
    width: 225px;
    animation-delay: -7s, -.18s
}

.walking-cat-scene>.cat-three {
    width: 245px;
    animation-delay: -14s, -.34s
}

@keyframes threeCatsAcross {
    from {
        transform: translateX(-280px)
    }

    to {
        transform: translateX(calc(100vw + 280px))
    }
}

.walking-cat-scene>img:not(.walking-cat) {
    display: none
}

/* Gatos observando el carrusel de clientes */
.work {
    position: relative;
    overflow: hidden
}

.client-watch-cat {
    position: absolute;
    z-index: 2;
    top: 43%;
    width: 260px;
    opacity: .72;
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(18, 200, 244, .18));
    animation: watchScreen 4s ease-in-out infinite
}

.client-watch-cat img {
    display: block;
    width: 100%;
    height: auto
}

.watch-left {
    left: -155px;
    transform: rotate(4deg)
}

.watch-right {
    right: -155px;
    transform: scaleX(-1) rotate(4deg);
    animation-delay: -2s
}

@keyframes watchScreen {

    0%,
    100% {
        margin-top: 0;
        opacity: .58
    }

    50% {
        margin-top: -10px;
        opacity: .86
    }
}

.work>.shell {
    position: relative;
    z-index: 3
}

@media(max-width:1200px) {
    .client-watch-cat {
        width: 210px
    }

    .watch-left {
        left: -145px
    }

    .watch-right {
        right: -145px
    }
}

@media(max-width:900px) {
    .client-watch-cat {
        display: none
    }

    .walking-cat-scene>.walking-cat {
        width: 205px
    }

    .walking-cat-scene>.cat-two {
        width: 195px
    }

    .walking-cat-scene>.cat-three {
        width: 215px
    }
}

@media(max-width:600px) {
    .walking-cat-scene>.walking-cat {
        width: 165px;
        animation-duration: 15s
    }

    .walking-cat-scene>.cat-two {
        width: 155px;
        animation-delay: -5s, -.18s
    }

    .walking-cat-scene>.cat-three {
        width: 170px;
        animation-delay: -10s, -.34s
    }
}

@media(prefers-reduced-motion:reduce) {
    .walking-cat-scene>.walking-cat {
        animation: threeCatsAcross 30s linear infinite
    }

    .client-watch-cat {
        animation: none;
        opacity: .7
    }
}

/* Corrección de gatos decorativos en Clientes */
.client-watch-cat {
    top: 49% !important;
    width: 190px !important;
    opacity: .9 !important;
    padding: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 200, 244, .12), transparent 67%);
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .75)) !important
}

.watch-left {
    left: 52px !important;
    transform: rotate(2deg) !important
}

.watch-right {
    right: 52px !important;
    transform: scaleX(-1) rotate(2deg) !important
}

.client-watch-cat img {
    width: 100% !important;
    filter: drop-shadow(0 0 12px rgba(18, 200, 244, .18))
}

@media(max-width:1600px) {
    .client-watch-cat {
        width: 145px !important
    }

    .watch-left {
        left: 12px !important
    }

    .watch-right {
        right: 12px !important
    }
}

@media(max-width:1350px) {
    .client-watch-cat {
        display: none !important
    }
}

/* Ojos amarillos de gato detrás del formulario */
.contact-form {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(7, 16, 24, .96), rgba(3, 8, 12, .93))
}

.contact-form>*:not(.form-cat-eyes) {
    position: relative;
    z-index: 2
}

.form-cat-eyes {
    position: absolute;
    z-index: 1;
    right: 36px;
    top: 26px;
    display: flex;
    gap: 20px;
    opacity: .54;
    filter: drop-shadow(0 0 12px rgba(255, 224, 0, .72));
    animation: eyesWatch 7s ease-in-out infinite
}

.form-cat-eyes i {
    display: block;
    width: 58px;
    height: 25px;
    background: radial-gradient(ellipse at 58% 50%, #080a05 0 9%, #fff370 10% 16%, #ffd800 18% 47%, #7d6300 69%, transparent 71%);
    clip-path: polygon(0 46%, 20% 12%, 57% 4%, 100% 33%, 76% 84%, 34% 96%, 8% 72%);
    position: relative
}

.form-cat-eyes i:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 2px;
    width: 5px;
    height: 22px;
    border-radius: 50%;
    background: #020300;
    transform: translateX(-50%)
}

.form-cat-eyes i+i {
    transform: scaleX(-1)
}

@keyframes eyesWatch {

    0%,
    42%,
    48%,
    100% {
        transform: scaleY(1);
        opacity: .54
    }

    45% {
        transform: scaleY(.08);
        opacity: .18
    }

    72% {
        filter: drop-shadow(0 0 20px rgba(255, 224, 0, .95));
        opacity: .72
    }
}

@media(max-width:600px) {
    .form-cat-eyes {
        right: 18px;
        top: 16px;
        gap: 12px;
        opacity: .4
    }

    .form-cat-eyes i {
        width: 42px;
        height: 19px
    }
}

@media(prefers-reduced-motion:reduce) {
    .form-cat-eyes {
        animation: none
    }
}

/* Planes comerciales Blackcat */
.plans-section {
    position: relative;
    padding: 120px 0;
    background: #030609;
    border-block: 1px solid rgba(18, 200, 244, .22);
    background-image: radial-gradient(circle at 14% 18%, rgba(18, 200, 244, .13), transparent 27%), linear-gradient(rgba(18, 200, 244, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 200, 244, .025) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px
}

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

.plan-card {
    position: relative;
    padding: 34px 30px 30px;
    border: 1px solid rgba(126, 201, 220, .2);
    border-radius: 22px;
    background: rgba(7, 12, 17, .94);
    display: flex;
    flex-direction: column;
    min-height: 620px;
    transition: .3s
}

.plan-card:hover {
    transform: translateY(-7px);
    border-color: rgba(18, 200, 244, .65);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55)
}

.plan-card.featured {
    border-color: #12c8f4;
    background: linear-gradient(180deg, rgba(9, 39, 52, .95), rgba(5, 10, 15, .98));
    box-shadow: 0 0 45px rgba(18, 200, 244, .13)
}

.popular-badge {
    position: absolute;
    right: 24px;
    top: -13px;
    border-radius: 100px;
    background: #ffe900;
    color: #050707;
    padding: 7px 13px;
    font: 800 9px Manrope, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

.plan-type {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #12c8f4
}

.plan-card h3 {
    font-size: 25px;
    margin: 8px 0 0
}

.plan-card>p {
    color: #90a3ab;
    line-height: 1.6;
    min-height: 78px
}

.plan-price {
    display: grid;
    padding: 23px 0;
    border-block: 1px solid rgba(105, 208, 235, .18);
    margin: 4px 0 23px
}

.plan-price small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #79909a
}

.plan-price strong {
    font: 800 38px Manrope, sans-serif;
    letter-spacing: -2px;
    color: #fff
}

.plan-price span {
    font-size: 10px;
    color: #718993
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 13px;
    color: #b9c9cf;
    font-size: 13px
}

.plan-card li::first-letter {
    color: #12c8f4
}

.plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 16px 20px;
    background: linear-gradient(100deg, #0878e8, #19d3ef);
    color: #02070a;
    font-weight: 800;
    margin-top: auto;
    transition: .25s
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(18, 200, 244, .2)
}

.custom-plan {
    margin-top: 20px;
    border: 1px solid rgba(255, 233, 0, .35);
    border-radius: 22px;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    background: linear-gradient(110deg, rgba(255, 233, 0, .06), rgba(18, 200, 244, .07))
}

.custom-plan>div {
    display: flex;
    align-items: center;
    gap: 21px
}

.custom-plan>div>span {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: #ffe900;
    color: #030504;
    display: grid;
    place-items: center;
    font-size: 27px;
    box-shadow: 0 0 25px rgba(255, 233, 0, .18)
}

.custom-plan small {
    color: #ffe900;
    text-transform: uppercase;
    letter-spacing: 1.8px
}

.custom-plan h3 {
    font-size: 24px;
    margin: 4px 0
}

.custom-plan p {
    color: #8fa2aa;
    margin: 0;
    max-width: 680px;
    font-size: 13px
}

.custom-plan .plan-button {
    white-space: nowrap;
    margin: 0
}

.care-section {
    margin-top: 55px;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 40px;
    align-items: end
}

.care-section>div:first-child h3 {
    font-size: 27px;
    max-width: 380px
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(105, 208, 235, .18);
    border-radius: 16px;
    overflow: hidden
}

.care-grid article {
    padding: 22px;
    border-right: 1px solid rgba(105, 208, 235, .18);
    display: grid;
    gap: 8px
}

.care-grid article:last-child {
    border: 0
}

.care-grid small {
    color: #12c8f4;
    font-weight: 700
}

.care-grid strong {
    font: 700 20px Manrope, sans-serif
}

.care-grid em {
    font: 400 10px DM Sans, sans-serif;
    color: #7b9098
}

.care-grid p {
    color: #81969e;
    font-size: 14px;
    line-height: 1.5;
    margin: 0
}

.plans-note {
    text-align: center;
    color: #607780;
    font-size: 10px;
    margin: 30px 0 0
}

.nexus-plans {
    padding-bottom: 120px
}

.nexus-plans-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px
}

.nexus-plans-head h2 {
    font-size: 44px;
    letter-spacing: -2.5px
}

.nexus-plans-head p {
    color: #8da1a9
}

.nexus-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(105, 208, 235, .18);
    border-radius: 20px;
    overflow: hidden
}

.nexus-plans-grid article {
    position: relative;
    padding: 27px;
    display: grid;
    gap: 12px;
    border-right: 1px solid rgba(105, 208, 235, .18);
    background: #080d12
}

.nexus-plans-grid article:last-child {
    border: 0
}

.nexus-plans-grid article.recommended {
    background: linear-gradient(160deg, #092433, #070d12)
}

.nexus-plans-grid article>small {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #ffe900;
    color: #030506;
    padding: 5px 8px;
    border-radius: 99px;
    font-size: 7px;
    text-transform: uppercase
}

.nexus-plans-grid article>span {
    color: #12c8f4;
    font-weight: 700
}

.nexus-plans-grid article>strong {
    font: 800 29px Manrope, sans-serif
}

.nexus-plans-grid article>strong em {
    font: 400 10px DM Sans, sans-serif;
    color: #7d939b
}

.nexus-plans-grid article>b {
    font-size: 11px
}

.nexus-plans-grid article>p {
    color: #8ca0a8;
    font-size: 12px;
    line-height: 1.55;
    min-height: 38px;
    margin: 0 42px 0 0
}

.nexus-plans-grid article>a {
    position: absolute;
    right: 24px;
    bottom: 27px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(18, 200, 244, .35);
    display: grid;
    place-items: center;
    color: #12c8f4
}

.nexus-setup {
    text-align: center;
    color: #799098;
    font-size: 12px;
    margin-top: 22px
}

.nexus-setup strong {
    color: #fff
}

@media(max-width:900px) {
    .plans-grid {
        grid-template-columns: 1fr
    }

    .plan-card {
        min-height: 0
    }

    .plan-card>p {
        min-height: 0
    }

    .custom-plan {
        align-items: flex-start;
        flex-direction: column
    }

    .custom-plan .plan-button {
        margin-top: 0
    }

    .care-section {
        grid-template-columns: 1fr
    }

    .nexus-plans-grid {
        grid-template-columns: 1fr
    }

    .nexus-plans-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(105, 208, 235, .18)
    }
}

@media(max-width:600px) {
    .plans-section {
        padding: 80px 0
    }

    .plan-card {
        padding: 29px 23px
    }

    .plan-price strong {
        font-size: 34px
    }

    .custom-plan {
        padding: 24px
    }

    .custom-plan>div>span {
        display: none
    }

    .care-grid {
        grid-template-columns: 1fr
    }

    .care-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(105, 208, 235, .18)
    }

    .nexus-plans-head h2 {
        font-size: 36px
    }

    .nexus-plans {
        padding-bottom: 80px
    }
}

/* Carrusel 3D inspirado visualmente en Hero 7 */
.hero7-carousel {
    --hero7-rotate-x: 0deg;
    --hero7-rotate-y: 0deg;
    --hero7-light-x: 50%;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    perspective: 1500px;
    isolation: isolate;
    padding: 38px 76px 74px
}

.hero7-carousel:before {
    content: "";
    position: absolute;
    inset: 8% 12% 4%;
    background: radial-gradient(ellipse at var(--hero7-light-x) 82%, rgba(255, 34, 160, .25), transparent 55%), radial-gradient(circle at 50% 45%, rgba(18, 200, 244, .11), transparent 58%);
    filter: blur(28px);
    z-index: -2;
    pointer-events: none
}

.hero7-carousel .slides-track {
    aspect-ratio: 1.92/1;
    transform-style: preserve-3d;
    transform: rotateX(var(--hero7-rotate-x)) rotateY(var(--hero7-rotate-y));
    transition: transform .35s cubic-bezier(.2, .8, .2, 1)
}

.hero7-carousel .client-slide {
    inset: 0 9%;
    display: block;
    opacity: 1;
    visibility: visible;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    background: #071019;
    box-shadow: 0 35px 85px rgba(0, 0, 0, .7);
    transition: transform .85s cubic-bezier(.2, .75, .15, 1), opacity .65s ease, filter .65s ease;
    transform-origin: center;
    pointer-events: none;
    filter: saturate(.55) brightness(.42)
}

.hero7-carousel .client-slide.active {
    z-index: 4;
    transform: translate3d(0, 0, 90px) rotateY(0) scale(1);
    filter: saturate(.95) brightness(1);
    pointer-events: auto;
    box-shadow: 0 45px 110px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 47, 166, .22), 0 0 55px rgba(255, 47, 166, .13)
}

.hero7-carousel .client-slide.slide-prev {
    z-index: 2;
    transform: translate3d(-43%, 0, -120px) rotateY(34deg) scale(.78);
    opacity: .48
}

.hero7-carousel .client-slide.slide-next {
    z-index: 2;
    transform: translate3d(43%, 0, -120px) rotateY(-34deg) scale(.78);
    opacity: .48
}

.hero7-carousel .client-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .12) 45%, transparent 60%);
    transform: translateX(-120%);
    transition: transform .9s ease;
    pointer-events: none
}

.hero7-carousel:hover .client-slide.active:before {
    transform: translateX(120%)
}

.hero7-carousel .client-slide>img {
    border-radius: inherit
}

.hero7-carousel .slider-arrow {
    top: 48%;
    width: 54px;
    height: 54px;
    background: rgba(8, 10, 16, .8);
    border-color: rgba(255, 47, 166, .55);
    box-shadow: 0 0 22px rgba(255, 47, 166, .15)
}

.hero7-carousel .slider-arrow:hover {
    background: #ff2fa6;
    color: #fff;
    box-shadow: 0 0 32px rgba(255, 47, 166, .45)
}

.hero7-carousel .slider-arrow.prev {
    left: 7px
}

.hero7-carousel .slider-arrow.next {
    right: 7px
}

.hero7-carousel .slider-dots {
    left: 50%;
    right: auto;
    bottom: 23px;
    transform: translateX(-50%)
}

.hero7-carousel .slider-dots button.active {
    background: #ff2fa6;
    box-shadow: 0 0 18px rgba(255, 47, 166, .8)
}

.hero7-glow-bar {
    position: absolute;
    z-index: 7;
    left: 20%;
    right: 20%;
    bottom: 49px;
    height: 3px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .08);
    overflow: visible
}

.hero7-glow-bar:before {
    content: "";
    position: absolute;
    inset: -16px 8%;
    background: rgba(255, 47, 166, .35);
    filter: blur(18px);
    border-radius: 50%
}

.hero7-glow-bar span {
    position: absolute;
    left: 0;
    top: 0;
    width: 34%;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, #ff2fa6, #ff88ce, transparent);
    box-shadow: 0 0 16px #ff2fa6;
    animation: hero7Bar 3.2s ease-in-out infinite
}

.hero7-particles {
    position: absolute;
    inset: -4% 2% 3%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1
}

.hero7-particles i {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff5bb9;
    box-shadow: 0 0 10px #ff2fa6;
    opacity: 0;
    animation: hero7Particle 5.5s linear infinite
}

.hero7-particles i:nth-child(1) {
    left: 6%;
    bottom: 10%;
    animation-delay: .1s
}

.hero7-particles i:nth-child(2) {
    left: 13%;
    bottom: 2%;
    animation-delay: 2.4s
}

.hero7-particles i:nth-child(3) {
    left: 20%;
    bottom: 18%;
    animation-delay: 1.1s
}

.hero7-particles i:nth-child(4) {
    left: 28%;
    bottom: 6%;
    animation-delay: 3.6s
}

.hero7-particles i:nth-child(5) {
    left: 36%;
    bottom: 12%;
    animation-delay: .8s
}

.hero7-particles i:nth-child(6) {
    left: 43%;
    bottom: 1%;
    animation-delay: 4.2s
}

.hero7-particles i:nth-child(7) {
    left: 49%;
    bottom: 16%;
    animation-delay: 2s
}

.hero7-particles i:nth-child(8) {
    left: 56%;
    bottom: 5%;
    animation-delay: 3s
}

.hero7-particles i:nth-child(9) {
    left: 63%;
    bottom: 13%;
    animation-delay: .4s
}

.hero7-particles i:nth-child(10) {
    left: 69%;
    bottom: 2%;
    animation-delay: 4.7s
}

.hero7-particles i:nth-child(11) {
    left: 76%;
    bottom: 18%;
    animation-delay: 1.7s
}

.hero7-particles i:nth-child(12) {
    left: 82%;
    bottom: 7%;
    animation-delay: 3.9s
}

.hero7-particles i:nth-child(13) {
    left: 89%;
    bottom: 13%;
    animation-delay: 2.7s
}

.hero7-particles i:nth-child(14) {
    left: 94%;
    bottom: 3%;
    animation-delay: 1.3s
}

.hero7-particles i:nth-child(15) {
    left: 31%;
    bottom: 22%;
    animation-delay: 5s
}

.hero7-particles i:nth-child(16) {
    left: 72%;
    bottom: 25%;
    animation-delay: 2.2s
}

@keyframes hero7Bar {

    0%,
    100% {
        transform: translateX(-4%);
        opacity: .5
    }

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

@keyframes hero7Particle {
    0% {
        transform: translate3d(0, 30px, 0) scale(.5);
        opacity: 0
    }

    18% {
        opacity: .85
    }

    75% {
        opacity: .35
    }

    100% {
        transform: translate3d(22px, -330px, 0) scale(1.4);
        opacity: 0
    }
}

@media(max-width:900px) {
    .hero7-carousel {
        padding: 30px 55px 68px
    }

    .hero7-carousel .client-slide {
        inset: 0 5%
    }

    .hero7-carousel .client-slide.slide-prev {
        transform: translate3d(-34%, 0, -100px) rotateY(28deg) scale(.76)
    }

    .hero7-carousel .client-slide.slide-next {
        transform: translate3d(34%, 0, -100px) rotateY(-28deg) scale(.76)
    }
}

@media(max-width:600px) {
    .hero7-carousel {
        padding: 18px 8px 65px;
        overflow: hidden !important
    }

    .hero7-carousel .slides-track {
        aspect-ratio: .88/1;
        transform: none
    }

    .hero7-carousel .client-slide {
        inset: 0 4%;
        border-radius: 17px
    }

    .hero7-carousel .client-slide.active {
        transform: none
    }

    .hero7-carousel .client-slide.slide-prev {
        transform: translateX(-105%) scale(.85);
        opacity: 0
    }

    .hero7-carousel .client-slide.slide-next {
        transform: translateX(105%) scale(.85);
        opacity: 0
    }

    .hero7-carousel .slider-arrow {
        top: 45%;
        width: 42px;
        height: 42px
    }

    .hero7-carousel .slider-arrow.prev {
        left: 12px
    }

    .hero7-carousel .slider-arrow.next {
        right: 12px
    }

    .hero7-glow-bar {
        left: 18%;
        right: 18%;
        bottom: 42px
    }

    .hero7-carousel .slider-dots {
        bottom: 15px
    }
}

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

    .hero7-glow-bar span,
    .hero7-particles i {
        animation: none
    }

    .hero7-carousel .slides-track {
        transform: none
    }
}

/* Social proof bento + footer minimal Blackcat */
.social-proof {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(145deg, #020407 0%, #07131d 48%, #100610 100%);
    border-block: 1px solid rgba(18, 200, 244, .16)
}

.social-proof:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent)
}

.social-proof-orb {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .22;
    pointer-events: none
}

.orb-pink {
    right: -110px;
    top: -120px;
    background: #ff2fa6
}

.orb-blue {
    left: -140px;
    bottom: -170px;
    background: #12c8f4
}

.proof-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px
}

.proof-heading h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -3px
}

.proof-heading p {
    color: #91a8b1;
    max-width: 620px;
    margin: 18px auto 0;
    line-height: 1.7
}

.proof-bento {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px
}

.proof-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 25px 70px rgba(0, 0, 0, .25);
    transition: .35s
}

.proof-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 0, rgba(18, 200, 244, .12), transparent 42%);
    pointer-events: none
}

.proof-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 47, 166, .35);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .4), 0 0 35px rgba(255, 47, 166, .07)
}

.proof-card>p {
    position: relative;
    color: #d1dde1;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px
}

.proof-card footer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px
}

.proof-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff2fa6, #7b1de2);
    font-weight: 900;
    font-size: 11px
}

.bricha-avatar {
    background: linear-gradient(135deg, #caa574, #612b18)
}

.mole-avatar {
    background: linear-gradient(135deg, #12c8f4, #075a94)
}

.proof-card footer div {
    display: grid
}

.proof-card footer strong {
    font-size: 13px
}

.proof-card footer small {
    color: #718a94;
    font-size: 10px
}

.proof-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
    background: linear-gradient(145deg, rgba(255, 47, 166, .12), rgba(18, 200, 244, .06))
}

.proof-featured>p {
    font: 600 clamp(20px, 2.2vw, 29px)/1.48 Manrope, sans-serif;
    letter-spacing: -.8px
}

.proof-mark {
    font: 900 75px/1 Georgia;
    color: #ff4eae;
    text-shadow: 0 0 28px rgba(255, 47, 166, .45);
    height: 65px
}

.proof-tag {
    position: relative;
    display: inline-flex;
    width: max-content;
    margin-bottom: 19px;
    color: #79dff8;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-weight: 800
}

.proof-stat {
    background: linear-gradient(145deg, rgba(18, 200, 244, .13), rgba(255, 255, 255, .035))
}

.proof-stat>span {
    display: block;
    font: 800 52px Manrope, sans-serif;
    letter-spacing: -3px;
    color: #fff
}

.proof-stat>strong {
    font-size: 13px;
    color: #75dcf5
}

.proof-stat>p {
    font-size: 12px;
    margin: 12px 0 0;
    color: #8198a1
}

.proof-wide {
    grid-column: span 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(120deg, rgba(18, 200, 244, .1), rgba(255, 47, 166, .09))
}

.proof-wide h3 {
    font-size: 28px;
    margin: 0 0 8px
}

.proof-wide p {
    color: #8da3ac;
    margin: 0;
    max-width: 530px;
    font-size: 13px
}

.proof-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a8bdc4;
    font-size: 10px;
    white-space: nowrap
}

.proof-pulse i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffe900;
    box-shadow: 0 0 15px #ffe900;
    animation: proofPulse 1.8s ease-in-out infinite
}

@keyframes proofPulse {
    50% {
        opacity: .35;
        transform: scale(.7)
    }
}

.blackcat-footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 24px;
    background: #020304;
    border-top: 1px solid rgba(18, 200, 244, .2)
}

.blackcat-footer:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -220px;
    width: 760px;
    height: 360px;
    transform: translateX(-50%);
    background: rgba(18, 200, 244, .1);
    filter: blur(100px);
    border-radius: 50%
}

.footer-top {
    position: relative;
    text-align: center;
    display: grid;
    justify-items: center
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 800 13px Manrope, sans-serif;
    letter-spacing: 2px
}

.footer-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(18, 200, 244, .35)
}

.footer-top>p {
    max-width: 510px;
    color: #78909a;
    line-height: 1.65;
    font-size: 13px;
    margin: 20px auto
}

.footer-socials {
    display: flex;
    gap: 10px
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .035);
    transition: .25s
}

.footer-socials a:hover {
    transform: translateY(-3px);
    border-color: #12c8f4;
    background: rgba(18, 200, 244, .1)
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #dff8ff;
    stroke-width: 1.6
}

.footer-socials a:first-child svg {
    fill: #dff8ff;
    stroke: none
}

.footer-links {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    max-width: 680px;
    margin: 65px auto 55px;
    padding-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-links>div {
    display: grid;
    justify-items: center;
    gap: 11px
}

.footer-links strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d8e9ee;
    margin-bottom: 3px
}

.footer-links a {
    font-size: 12px;
    color: #718892;
    transition: .2s
}

.footer-links a:hover {
    color: #12c8f4
}

.footer-word {
    position: relative;
    text-align: center;
    font: 900 clamp(72px, 15vw, 190px)/.76 Manrope, sans-serif;
    letter-spacing: -.085em;
    color: #f3fbfd;
    text-shadow: 0 0 55px rgba(18, 200, 244, .09);
    user-select: none
}

.footer-word:after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: -12px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2fa6, #12c8f4, transparent);
    box-shadow: 0 0 20px rgba(18, 200, 244, .6)
}

.footer-bottom {
    position: relative;
    margin-top: 45px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    color: #526a74;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.1px
}

@media(max-width:900px) {
    .proof-bento {
        grid-template-columns: 1fr 1fr
    }

    .proof-featured {
        grid-row: span 2
    }

    .proof-wide {
        grid-column: span 2
    }

    .footer-links {
        gap: 30px
    }
}

@media(max-width:600px) {
    .social-proof {
        padding: 80px 0
    }

    .proof-bento {
        grid-template-columns: 1fr
    }

    .proof-featured {
        grid-row: auto;
        min-height: 340px
    }

    .proof-wide {
        grid-column: auto;
        align-items: flex-start;
        flex-direction: column
    }

    .proof-card {
        border-radius: 19px;
        padding: 24px
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px auto 45px
    }

    .footer-word {
        font-size: clamp(58px, 18vw, 100px)
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

@media(prefers-reduced-motion:reduce) {
    .proof-pulse i {
        animation: none
    }
}

.proof-stat {
    min-height: 270px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column
}

.proof-stat .approval-cat {
    display: block;
    width: 145px;
    max-height: 130px;
    object-fit: contain;
    object-position: center bottom;
    align-self: center;
    margin: auto auto 0;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .5)) drop-shadow(0 0 14px rgba(18, 200, 244, .18));
    transform-origin: center bottom;
    transition: transform .35s ease
}

.proof-stat:hover .approval-cat {
    transform: translateY(-4px) rotate(-2deg) scale(1.04)
}

@media(max-width:600px) {
    .proof-stat {
        min-height: 300px
    }

    .proof-stat .approval-cat {
        width: 165px;
        max-height: 150px
    }
}

.proof-stat {
    min-height: 0;
    padding-bottom: 28px;
    display: block
}

.approval-cat-stage {
    position: relative;
    grid-column: 3;
    grid-row: 2 / span 2;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    pointer-events: none
}

.approval-cat-stage:before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 1%;
    height: 38%;
    background: radial-gradient(ellipse at center, rgba(255, 47, 166, .2), rgba(18, 200, 244, .1) 38%, transparent 72%);
    filter: blur(30px)
}

.approval-cat-stage img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(118%, 430px);
    max-height: 460px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 32px rgba(0, 0, 0, .65)) drop-shadow(0 0 22px rgba(18, 200, 244, .2));
    transform-origin: center bottom;
    animation: approvalCatFloat 4s ease-in-out infinite
}

@keyframes approvalCatFloat {
    50% {
        transform: translateY(-8px) rotate(-1deg)
    }
}

@media(max-width:900px) {
    .approval-cat-stage {
        grid-column: 2;
        grid-row: auto;
        min-height: 360px
    }

    .approval-cat-stage img {
        width: min(100%, 360px);
        max-height: 390px
    }
}

@media(max-width:600px) {
    .approval-cat-stage {
        grid-column: 1;
        grid-row: auto;
        min-height: 390px
    }

    .approval-cat-stage img {
        width: min(112%, 390px);
        max-height: 410px
    }
}

@media(prefers-reduced-motion:reduce) {
    .approval-cat-stage img {
        animation: none
    }
}

/* Composición vertical de experiencias */
.social-proof>.shell {
    width: min(1040px, calc(100% - 48px))
}

.proof-bento {
    grid-template-columns: 1.08fr .82fr .82fr;
    grid-template-rows: 260px 260px 210px;
    align-items: stretch
}

.proof-featured {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 0
}

.proof-stat {
    grid-column: 3;
    grid-row: 1
}

.proof-bento>.proof-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1
}

.proof-bento>.proof-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2
}

.proof-wide {
    grid-column: 1 / span 2;
    grid-row: 3
}

.approval-cat-stage {
    grid-column: 3;
    grid-row: 2 / span 2;
    min-height: 0;
    align-self: stretch
}

.approval-cat-stage img {
    width: min(100%, 350px);
    max-height: 490px
}

.blackcat-footer>.shell {
    width: min(1040px, calc(100% - 48px))
}

.footer-word {
    font-size: clamp(72px, 13vw, 165px)
}

@media(max-width:900px) {

    .social-proof>.shell,
    .blackcat-footer>.shell {
        width: min(100% - 40px, 720px)
    }

    .proof-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .proof-featured,
    .proof-stat,
    .proof-bento>.proof-card:nth-child(2),
    .proof-bento>.proof-card:nth-child(4),
    .proof-wide,
    .approval-cat-stage {
        grid-column: auto;
        grid-row: auto
    }

    .proof-featured {
        min-height: 480px
    }

    .approval-cat-stage {
        min-height: 430px
    }

    .approval-cat-stage img {
        max-height: 450px
    }
}

@media(max-width:600px) {

    .social-proof>.shell,
    .blackcat-footer>.shell {
        width: min(100% - 30px, 520px)
    }

    .proof-bento {
        grid-template-columns: 1fr
    }

    .proof-featured {
        min-height: 460px
    }

    .approval-cat-stage {
        min-height: 460px
    }

    .approval-cat-stage img {
        width: min(92%, 350px);
        max-height: 470px
    }
}

/* Footer compacto */
.blackcat-footer {
    padding: 42px 0 18px
}

.blackcat-footer:before {
    bottom: -270px;
    height: 300px
}

.blackcat-footer>.shell {
    width: min(920px, calc(100% - 48px))
}

.footer-brand img {
    width: 38px;
    height: 38px
}

.footer-brand {
    font-size: 12px
}

.footer-top>p {
    max-width: 470px;
    margin: 10px auto 13px;
    font-size: 12px;
    line-height: 1.5
}

.footer-socials a {
    width: 36px;
    height: 36px
}

.footer-socials svg {
    width: 16px;
    height: 16px
}

.footer-links {
    max-width: 620px;
    gap: 48px;
    margin: 28px auto 22px;
    padding-top: 24px
}

.footer-links>div {
    gap: 8px
}

.footer-links strong {
    font-size: 10px
}

.footer-links a {
    font-size: 11px
}

.stroke-footer-word {
    width: min(100%, 590px);
    margin: 0 auto
}

.footer-word:after {
    left: 5%;
    right: 5%;
    bottom: -5px
}

.footer-bottom {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 9px
}

@media(max-width:600px) {
    .blackcat-footer {
        padding: 34px 0 16px
    }

    .blackcat-footer>.shell {
        width: min(100% - 30px, 520px)
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 22px 28px;
        margin: 25px auto 20px;
        padding-top: 22px
    }

    .footer-links>div {
        justify-items: start
    }

    .footer-links>div:last-child {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, auto);
        align-items: center;
        justify-content: start;
        column-gap: 18px
    }

    .footer-links>div:last-child strong {
        grid-column: 1 / -1
    }

    .stroke-footer-word {
        width: min(100%, 440px)
    }

    .footer-bottom {
        margin-top: 20px
    }
}

/* Identidad definitiva Sistemas Blackcat */
.blackcat-logo img {
    object-fit: contain !important;
    border: 0 !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 0 10px rgba(18, 200, 244, .28))
}

.footer-brand img {
    object-fit: contain;
    border: 0;
    border-radius: 0;
    filter: drop-shadow(0 0 8px rgba(18, 200, 244, .22))
}

.chat-avatar {
    background: #071018;
    border-color: rgba(18, 200, 244, .38)
}

.chat-avatar img {
    object-fit: contain;
    padding: 2px
}

/* BLACKCAT dibujado: adaptación del efecto StrokeText */
.stroke-footer-word {
    height: auto;
    line-height: 0;
    cursor: pointer;
    outline: none
}

.footer-stroke-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible
}

.footer-stroke-layer,
.footer-fill-layer {
    font-family: Manrope, sans-serif;
    font-size: 184px;
    font-weight: 900;
    letter-spacing: -15px;
    user-select: none
}

.footer-stroke-layer {
    fill: transparent;
    stroke: #12c8f4;
    stroke-width: 2.2;
    paint-order: stroke;
    filter: drop-shadow(0 0 9px rgba(18, 200, 244, .34))
}

.footer-fill-layer {
    fill: #f7fbff;
    stroke: none;
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(18, 200, 244, .10));
}

.footer-stroke-layer {
    stroke-dasharray: 3200;
    stroke-dashoffset: 3200;
}

.stroke-footer-word.is-visible .footer-stroke-layer {
    animation: blackcatStroke 1.55s cubic-bezier(.22, .75, .2, 1) forwards;
}

.stroke-footer-word.is-visible .footer-wipe {
    animation: blackcatFill 1.05s ease-in-out 1.45s forwards
}

.stroke-footer-word:focus-visible {
    filter: drop-shadow(0 0 14px rgba(18, 200, 244, .55))
}

/* Alineación del dibujo y relleno BLACKCAT: ambas capas usan exactamente la misma caja tipográfica. */
.footer-stroke-layer,
.footer-fill-layer {
    dominant-baseline: auto;
    text-rendering: geometricPrecision;
    font-kerning: normal;
}

@keyframes blackcatStroke {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes blackcatFill {
    to {
        width: 1000px
    }
}

@media(prefers-reduced-motion:reduce) {
    .footer-stroke-layer {
        stroke-dashoffset: 0 !important
    }

    .footer-wipe {
        width: 1000px !important
    }

    .stroke-footer-word.is-visible .footer-stroke-layer,
    .stroke-footer-word.is-visible .footer-wipe {
        animation: none !important
    }
}
/* Raven CRM · identidad del producto dentro de Sistemas Blackcat */
.nexus-panel {
    border-color: rgba(139, 92, 246, .34);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .86), 0 0 45px rgba(124, 58, 237, .07)
}

.nexus-panel:before {
    background: rgba(139, 92, 246, .15)
}

.nexus-label {
    border-color: rgba(167, 139, 250, .38);
    color: #c4b5fd
}

.nexus-brand i {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    box-shadow: 0 0 24px rgba(139, 92, 246, .24)
}

.nexus-brand span {
    color: #a78bfa
}

.nexus .button.lime {
    background: linear-gradient(110deg, #7c3aed, #a855f7);
    color: #fff;
    box-shadow: 0 12px 32px rgba(124, 58, 237, .22)
}

.nexus .button.lime:hover {
    filter: brightness(1.08)
}

.crm-gallery-tabs button {
    border-color: rgba(139, 92, 246, .28)
}

.crm-gallery-tabs button.active {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-color: #8b5cf6;
    color: #fff
}

.crm-real-badge {
    border-color: rgba(167, 139, 250, .35)
}

.nexus-plans-grid {
    border-color: rgba(139, 92, 246, .22)
}

.nexus-plans-grid article {
    border-right-color: rgba(139, 92, 246, .2)
}

.nexus-plans-grid article.recommended {
    background: linear-gradient(160deg, rgba(76, 29, 149, .3), #070d12)
}

.nexus-plans-grid article>span,
.nexus-plans-grid article>a {
    color: #a78bfa
}

.nexus-plans-grid article>a {
    border-color: rgba(167, 139, 250, .4)
}

.nexus-plans-grid article>small {
    background: #8b5cf6;
    color: #fff
}

.raven-feature-update {
    margin: -8px 0 24px;
    padding: 14px 15px;
    border: 1px solid rgba(167, 139, 250, .25);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(7, 13, 18, .45))
}

.raven-feature-update strong {
    display: block;
    margin-bottom: 10px;
    color: #c4b5fd;
    font-size: 9px;
    letter-spacing: 1.5px
}

.raven-feature-update div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.raven-feature-update span {
    padding: 6px 8px;
    border: 1px solid rgba(167, 139, 250, .16);
    border-radius: 999px;
    background: rgba(139, 92, 246, .07);
    color: #cbd5e1;
    font-size: 9px
}


/* ==========================================================================\n   Raven CRM · Modal Cards carousel\n   Interacción adaptada al sitio estático de Sistemas Blackcat siguiendo el\n   patrón Modal Cards: tarjetas animadas + expansión a modal de pantalla completa.\n   ========================================================================== */
.raven-modal-cards {
    position: relative;
    z-index: 4;
    align-self: center;
    min-width: 0;
    padding: 18px 18px 14px;
    border: 1px solid rgba(167, 139, 250, .22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% -10%, rgba(139, 92, 246, .18), transparent 46%),
        rgba(4, 7, 12, .76);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
    backdrop-filter: blur(18px)
}

.raven-carousel-head {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px
}

.raven-modal-cards .crm-real-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    width: max-content
}

.raven-shot-counter {
    color: #8390a3;
    font: 700 10px "Manrope", sans-serif;
    letter-spacing: .12em
}

.raven-shot-counter b {
    color: #c4b5fd;
    font-size: 14px
}

.raven-card-stage {
    position: relative;
    height: clamp(300px, 28vw, 440px);
    overflow: hidden;
    border-radius: 18px;
    perspective: 1300px;
    outline: none
}

.raven-card-stage:focus-visible {
    box-shadow: 0 0 0 2px rgba(167, 139, 250, .7)
}

.raven-shot-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    aspect-ratio: 2 / 1;
    padding: 0;
    border: 1px solid rgba(167, 139, 250, .24);
    border-radius: 17px;
    overflow: hidden;
    background: #080b11;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .48);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.72);
    transition:
        transform .72s cubic-bezier(.22, 1, .36, 1),
        left .72s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        filter .5s ease;
    will-change: transform, left, opacity
}

.raven-shot-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    image-rendering: auto;
    transform: scale(1.002);
    transition: transform .75s cubic-bezier(.22, 1, .36, 1)
}

.raven-shot-card.active {
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    filter: saturate(1.04) brightness(1.02)
}

.raven-shot-card.is-prev {
    z-index: 3;
    left: 18%;
    opacity: .52;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(.78) rotateY(9deg);
    filter: brightness(.58) saturate(.72)
}

.raven-shot-card.is-next {
    z-index: 3;
    left: 82%;
    opacity: .52;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(.78) rotateY(-9deg);
    filter: brightness(.58) saturate(.72)
}

.raven-shot-card.active:hover img {
    transform: scale(1.025)
}

.raven-shot-card.active:hover {
    border-color: rgba(196, 181, 253, .55);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .56), 0 0 0 1px rgba(139, 92, 246, .12)
}

.raven-shot-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 5, 10, .92) 100%)
}

.raven-shot-caption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 14px;
    text-align: left
}

.raven-shot-caption small {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: #a78bfa;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em
}

.raven-shot-caption strong {
    color: #fff;
    font: 800 clamp(15px, 1.35vw, 21px) "Manrope", sans-serif
}

.raven-shot-caption em {
    color: #c4b5fd;
    font-size: 9px;
    font-style: normal;
    white-space: nowrap
}

.raven-carousel-controls {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 12px;
    align-items: center;
    margin-top: 10px
}

.raven-carousel-arrow,
.raven-modal-nav button,
.raven-modal-close {
    border: 1px solid rgba(167, 139, 250, .25);
    background: #0c1119;
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease
}

.raven-carousel-arrow {
    height: 38px;
    border-radius: 11px;
    font-size: 18px
}

.raven-carousel-arrow:hover,
.raven-modal-nav button:hover,
.raven-modal-close:hover {
    transform: translateY(-1px);
    border-color: rgba(196, 181, 253, .65);
    background: rgba(139, 92, 246, .16)
}

.raven-carousel-progress {
    height: 3px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(148, 163, 184, .16)
}

.raven-carousel-progress span {
    display: block;
    height: 100%;
    width: 9.0909%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7c3aed, #c4b5fd);
    transform-origin: left center;
    transition: width .55s cubic-bezier(.22, 1, .36, 1)
}

.raven-carousel-hint {
    margin: 10px 0 0;
    color: #718096;
    font-size: 9px;
    text-align: center
}

/* Modal fullscreen: close on backdrop, Escape y botón. */
.raven-shot-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease
}

.raven-shot-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.raven-modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background:
        radial-gradient(circle at 50% 10%, rgba(124, 58, 237, .28), transparent 40%),
        rgba(1, 3, 8, .90);
    backdrop-filter: blur(18px)
}

.raven-modal-shell {
    position: relative;
    z-index: 2;
    width: min(1480px, 96vw);
    max-height: 94vh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, .3);
    border-radius: 24px;
    background: #080b11;
    box-shadow: 0 40px 140px rgba(0, 0, 0, .68);
    transform: scale(.86) translateY(18px);
    opacity: 0;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .28s ease
}

.raven-shot-modal.open .raven-modal-shell {
    transform: scale(1) translateY(0);
    opacity: 1
}

.raven-modal-image-wrap {
    min-height: 0;
    background: #04070b;
    overflow: auto;
    display: grid;
    place-items: center
}

.raven-modal-image {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    object-position: center;
    image-rendering: auto
}

.raven-modal-close {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 24px;
    backdrop-filter: blur(10px)
}

.raven-modal-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 20px 18px;
    border-top: 1px solid rgba(148, 163, 184, .14);
    background: rgba(10, 13, 20, .98)
}

.raven-modal-copy>div:first-child {
    min-width: 0
}

.raven-modal-kicker {
    color: #a78bfa;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em
}

.raven-modal-copy h3 {
    margin: 3px 0 4px;
    color: #fff;
    font: 800 24px "Manrope", sans-serif
}

.raven-modal-copy p {
    max-width: 850px;
    margin: 0;
    color: #8f9bad;
    font-size: 11px;
    line-height: 1.55
}

.raven-modal-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto
}

.raven-modal-count {
    margin-right: 5px;
    color: #8c98aa;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em
}

.raven-modal-nav button {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 17px
}

body.raven-modal-open {
    overflow: hidden
}

@media(max-width:1100px) {
    .raven-card-stage {
        height: clamp(300px, 52vw, 440px)
    }
}

@media(max-width:700px) {
    .raven-modal-cards {
        padding: 12px;
        border-radius: 18px
    }

    .raven-card-stage {
        height: min(62vw, 390px);
        min-height: 245px
    }

    .raven-shot-card {
        width: 94%
    }

    .raven-shot-card.is-prev,
    .raven-shot-card.is-next {
        opacity: .12;
        pointer-events: none
    }

    .raven-shot-card.is-prev { left: 5% }
    .raven-shot-card.is-next { left: 95% }

    .raven-shot-caption {
        left: 12px;
        right: 12px;
        bottom: 10px
    }

    .raven-shot-caption em {
        display: none
    }

    .raven-shot-modal {
        padding: 10px
    }

    .raven-modal-shell {
        width: 100%;
        max-height: 96vh;
        border-radius: 17px
    }

    .raven-modal-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 14px
    }

    .raven-modal-copy h3 {
        font-size: 20px
    }

    .raven-modal-nav {
        width: 100%;
        justify-content: flex-end
    }
}

@media(prefers-reduced-motion:reduce) {
    .raven-shot-card,
    .raven-modal-shell,
    .raven-shot-modal,
    .raven-carousel-progress span,
    .raven-shot-card img {
        transition: none !important
    }
}

/* ==========================================================
   BLACKCAT 2026-09-03 · Responsive + FAQ + compartir + volver arriba
   Bloque final de overrides para mantener compatibilidad con estilos previos.
   ========================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

main,
section,
nav,
footer,
.shell,
.nexus-panel,
.raven-modal-cards,
.contact-inner,
.blackcat-footer > .shell {
    min-width: 0;
}

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

/* FAQ */
.faq-section {
    padding: 110px 0 105px;
}

.faq-head {
    align-items: end;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.faq-item {
    position: relative;
    border: 1px solid rgba(105, 208, 235, .18);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(14, 22, 30, .88), rgba(7, 11, 16, .96));
    overflow: hidden;
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(18, 200, 244, .42);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18), 0 0 24px rgba(18, 200, 244, .05);
}

.faq-item[open] {
    transform: translateY(-1px);
}

.faq-item summary {
    min-height: 84px;
    padding: 23px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    color: #f3f8fb;
    font: 700 16px/1.35 "Manrope", sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary b {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(18, 200, 244, .22);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 21px;
    font-weight: 400;
    transition: transform .25s ease, background .25s ease;
}

.faq-item[open] summary b {
    transform: rotate(45deg);
    background: rgba(18, 200, 244, .08);
}

.faq-item p {
    margin: -5px 24px 24px;
    max-width: 760px;
    color: #8ea3ae;
    font-size: 14px;
    line-height: 1.72;
}

.form-consent a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a:hover {
    color: var(--blue);
}

.footer-legal i {
    font-style: normal;
    opacity: .45;
}

/* Instagram usa trazo para coincidir con el icono de correo. */
.footer-socials a[aria-label*="Instagram"] svg {
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.7;
}

/* Acciones flotantes: compartir + volver arriba. Se ubican lejos del chat. */
.site-tools {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 58;
    display: flex;
    align-items: center;
    gap: 9px;
}

.site-tools button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(105, 208, 235, .23);
    border-radius: 14px;
    background: rgba(7, 11, 16, .88);
    backdrop-filter: blur(16px);
    color: #dff7ff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

.site-tools button:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 200, 244, .62);
    background: rgba(12, 24, 32, .96);
}

.site-tools svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.share-feedback {
    position: absolute;
    left: 0;
    bottom: calc(100% + 9px);
    width: max-content;
    max-width: min(260px, calc(100vw - 30px));
    padding: 8px 11px;
    border: 1px solid rgba(105, 208, 235, .18);
    border-radius: 9px;
    background: #0c1218;
    color: #cfe6ee;
    font-size: 11px;
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: .2s;
}

.share-feedback.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Refuerzo responsive general */
@media (max-width: 1180px) {
    .nav-links {
        gap: 18px;
        font-size: 13px;
    }

    .nav-cta {
        padding-inline: 16px;
    }
}

@media (max-width: 1024px) {
    .shell,
    .nav {
        width: min(100% - 34px, 1180px);
    }

    .nav {
        height: 82px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 82px;
        left: 17px;
        right: 17px;
        width: auto;
        max-height: calc(100dvh - 100px);
        overflow-y: auto;
        padding: 18px;
        border: 1px solid rgba(105, 208, 235, .2);
        border-radius: 16px;
        background: rgba(6, 10, 14, .97);
        backdrop-filter: blur(22px);
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > a:not(.nav-cta) {
        padding: 12px 13px;
        border-radius: 9px;
    }

    .nav-links > a:not(.nav-cta):hover {
        background: rgba(18, 200, 244, .06);
    }

    .nav-cta {
        margin-top: 8px;
        min-height: 48px;
    }

    .menu {
        display: grid;
        place-items: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        padding: 9px;
        border: 1px solid rgba(105, 208, 235, .18);
        border-radius: 12px;
        background: rgba(255,255,255,.02);
    }

    .menu span {
        width: 23px;
        height: 2px;
        background: #eaf8fd;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
        gap: 32px;
        padding: 68px 0 70px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-visual {
        height: min(58vw, 500px);
        min-height: 360px;
    }

    .section-head,
    .contact-inner,
    .nexus-panel {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .section-head {
        align-items: start;
    }

    .nexus-panel {
        gap: 35px;
    }

    .nexus-copy,
    .nexus-demo,
    .raven-modal-cards {
        width: 100%;
        min-width: 0;
    }

    .contact-details {
        flex-wrap: wrap;
    }

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

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .footer-top > p {
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .shell,
    .nav {
        width: min(100% - 24px, 1180px);
    }

    .nav {
        height: 72px;
    }

    .nav-links {
        top: 72px;
        left: 12px;
        right: 12px;
    }

    .blackcat-logo {
        gap: 8px;
        font-size: 15px;
    }

    .blackcat-logo img {
        width: 39px !important;
        height: 39px !important;
    }

    .blackcat-logo b {
        font-size: 7px;
        letter-spacing: 2.2px;
    }

    .hero {
        padding-top: 42px;
        padding-bottom: 55px;
    }

    h1 {
        font-size: clamp(43px, 13vw, 64px);
        line-height: 1.01;
        letter-spacing: -3px;
        margin: 18px 0;
    }

    .hero-copy > p {
        font-size: 16px;
        line-height: 1.62;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-actions .text-link {
        padding: 10px 0;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 9px;
        margin-top: 31px;
        padding-top: 18px;
    }

    .hero-proof span {
        min-width: 0;
        gap: 3px;
        font-size: 10px;
    }

    .hero-proof strong {
        font-size: 17px;
    }

    .hero-visual {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / .78;
    }

    .hero-visual img {
        max-height: 100%;
        object-fit: contain;
    }

    .ticker {
        overflow: hidden;
    }

    .section,
    .work,
    .nexus,
    .faq-section {
        padding-block: 72px;
    }

    .section-head {
        gap: 14px;
        margin-bottom: 30px;
    }

    .section-head h2,
    .nexus-copy h2,
    .nexus-plans-head h2,
    .faq-head h2 {
        font-size: clamp(32px, 9.4vw, 43px) !important;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .section-head p,
    .nexus-copy > p,
    .nexus-plans-head p {
        font-size: 14px;
        line-height: 1.65;
    }

    .services-grid,
    .projects-grid,
    .plans-grid,
    .nexus-plans-grid,
    .care-grid,
    .steps,
    .proof-bento {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .service-card,
    .plan-card,
    .proof-card {
        min-width: 0;
    }

    .nexus-panel {
        padding: 22px 14px !important;
        border-radius: 20px;
    }

    .nexus-features {
        grid-template-columns: 1fr !important;
    }

    .raven-feature-update {
        grid-template-columns: 1fr !important;
        gap: 9px;
    }

    .raven-carousel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .raven-card-stage {
        height: clamp(220px, 62vw, 350px) !important;
    }

    .raven-shot-card {
        width: 98% !important;
        border-radius: 14px;
    }

    .raven-shot-caption {
        padding: 11px;
    }

    .raven-shot-caption strong {
        font-size: 16px;
    }

    .raven-carousel-controls {
        gap: 8px;
    }

    .raven-carousel-progress {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .raven-modal-image-wrap {
        min-height: 0;
    }

    .raven-modal-image {
        max-height: 68vh;
        object-fit: contain;
    }

    .contact {
        padding-block: 72px;
    }

    .contact h2 {
        font-size: clamp(42px, 12vw, 58px) !important;
    }

    .contact-details {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .contact-details a {
        width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .contact-form {
        padding: 22px 16px !important;
        border-radius: 18px;
    }

    .faq-item summary {
        min-height: 72px;
        padding: 19px 18px;
        font-size: 14px;
    }

    .faq-item p {
        margin: -2px 18px 20px;
        font-size: 13px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 18px !important;
        margin-block: 38px 32px !important;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-word,
    .stroke-footer-word {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 9px !important;
        text-align: left !important;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .site-tools {
        left: 12px;
        bottom: 12px;
        gap: 7px;
    }

    .site-tools button {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .blackcat-chat {
        right: 12px !important;
        bottom: 12px !important;
    }

    .chat-panel {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 72px !important;
        width: auto !important;
        max-width: none !important;
        max-height: min(680px, calc(100dvh - 95px));
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .shell,
    .nav {
        width: min(100% - 20px, 1180px);
    }

    .blackcat-logo span {
        font-size: 13px;
    }

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

    .hero-proof span {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(105, 208, 235, .08);
        padding: 7px 0;
    }

    .plan-card,
    .custom-plan,
    .proof-card {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .plan-price strong {
        font-size: 31px !important;
    }

    .raven-card-stage {
        height: 235px !important;
    }

    .raven-shot-caption small,
    .raven-carousel-hint {
        display: none;
    }

    .raven-shot-caption strong {
        font-size: 14px;
    }

    .footer-links {
        grid-template-columns: 1fr !important;
    }

    .footer-links > div:last-child {
        grid-column: auto;
    }

    .launcher-label {
        display: none !important;
    }

    .chat-launcher {
        width: 52px !important;
        height: 52px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }
}


@media (prefers-reduced-motion: reduce) {
    .site-tools button,
    .faq-item,
    .faq-item summary b,
    .share-feedback {
        transition: none !important;
    }
}

/* Página de privacidad */
.privacy-page {
    min-height: 100vh;
}

.privacy-nav {
    border-bottom: 1px solid rgba(105, 208, 235, .14);
}

.privacy-main {
    width: min(880px, calc(100% - 36px));
    margin: 0 auto;
    padding: 76px 0 100px;
}

.privacy-main .kicker {
    color: var(--blue);
}

.privacy-main h1 {
    margin: 13px 0 18px;
    font-size: clamp(42px, 7vw, 72px);
    letter-spacing: -4px;
}

.privacy-lead {
    max-width: 720px;
    margin-bottom: 45px;
    color: #91a5b0;
    font-size: 17px;
    line-height: 1.7;
}

.privacy-card {
    margin-top: 14px;
    padding: 25px 27px;
    border: 1px solid rgba(105, 208, 235, .17);
    border-radius: 18px;
    background: rgba(10, 15, 21, .72);
}

.privacy-card h2 {
    margin-bottom: 10px;
    color: #f4fbff;
    font-size: 22px;
    letter-spacing: -.6px;
}

.privacy-card p,
.privacy-card li {
    color: #91a5b0;
    font-size: 14px;
    line-height: 1.75;
}

.privacy-card ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.privacy-card a {
    color: var(--blue);
}

.privacy-updated {
    display: inline-flex;
    margin-top: 18px;
    padding: 7px 10px;
    border: 1px solid rgba(18, 200, 244, .18);
    border-radius: 999px;
    color: #8fb0bc;
    font-size: 11px;
}

@media (max-width: 600px) {
    .privacy-main {
        width: min(100% - 24px, 880px);
        padding-top: 50px;
    }

    .privacy-main h1 {
        letter-spacing: -2.5px;
    }

    .privacy-card {
        padding: 20px 18px;
    }
}


/* === Ajustes Blackcat 2026-09-03: proceso + FAQ con mascota === */
.process {
    padding-top: 96px;
    scroll-margin-top: 96px;
}

.faq-showcase {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.faq-cat-card {
    position: relative;
    min-width: 0;
    margin: 0;
    border: 1px solid rgba(18, 200, 244, .22);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(10, 21, 29, .96), rgba(7, 11, 16, .98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    isolation: isolate;
}

.faq-cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(4, 8, 12, .08) 60%, rgba(4, 8, 12, .96) 84%);
    z-index: 2;
}

.faq-cat-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -75px;
    top: -70px;
    border-radius: 50%;
    background: rgba(130, 79, 255, .2);
    filter: blur(45px);
    z-index: 0;
}

.faq-cat-card img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    transition: transform .45s ease, filter .45s ease;
}

.faq-cat-card:hover img {
    transform: scale(1.025);
    filter: saturate(1.06) contrast(1.03);
}

.faq-cat-card figcaption {
    position: absolute;
    z-index: 3;
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.faq-cat-card figcaption .kicker {
    margin-bottom: 8px;
    color: #22d3ee;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.faq-cat-card figcaption strong {
    display: block;
    color: #f4f8fb;
    font: 750 19px/1.25 "Manrope", sans-serif;
}

.faq-cat-card figcaption p {
    margin: 8px 0 14px;
    color: #93a8b3;
    font-size: 13px;
    line-height: 1.55;
}

.faq-cat-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(18, 200, 244, .3);
    border-radius: 11px;
    color: #eafbff;
    background: rgba(18, 200, 244, .06);
    font-size: 12px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.faq-cat-link:hover {
    transform: translateY(-1px);
    background: rgba(18, 200, 244, .12);
    border-color: rgba(18, 200, 244, .55);
}

.faq-showcase .faq-grid {
    align-content: start;
}

@media (max-width: 980px) {
    .process {
        padding-top: 78px;
    }

    .faq-showcase {
        grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
        gap: 18px;
    }

    .faq-showcase .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-cat-card img {
        min-height: 500px;
    }
}

@media (max-width: 760px) {
    .process {
        padding-top: 72px;
        padding-bottom: 84px;
    }

    .faq-showcase {
        grid-template-columns: 1fr;
    }

    .faq-cat-card {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .faq-cat-card img {
        min-height: 0;
        height: auto;
        aspect-ratio: 416 / 484;
        object-fit: cover;
    }

    .faq-cat-card figcaption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 480px) {
    .process {
        padding-top: 62px;
    }

    .faq-cat-card {
        border-radius: 20px;
    }

    .faq-cat-card figcaption strong {
        font-size: 17px;
    }

    .faq-cat-card figcaption p {
        font-size: 12px;
    }
}

/* ============================================================
   Blackcat 2026-09-03 — Diseño final Proceso + FAQ
   Implementación basada en el mockup aprobado por el cliente.
   ============================================================ */
.process-redesign,
.faq-redesign {
    --bc-cyan: #12c8f4;
    --bc-blue: #0878e8;
    --bc-violet: #9b63ff;
    --bc-teal: #00d6c7;
    --bc-yellow: #ffd91f;
    position: relative;
    isolation: isolate;
}

.process-redesign::before,
.faq-redesign::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: #02070c;
    background-image:
        linear-gradient(rgba(18, 200, 244, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 200, 244, .055) 1px, transparent 1px),
        radial-gradient(circle at 8% 2%, rgba(18, 200, 244, .13), transparent 22%),
        radial-gradient(circle at 82% 72%, rgba(116, 70, 255, .08), transparent 28%);
    background-size: 50px 50px, 50px 50px, auto, auto;
}

.process-redesign {
    padding-top: 132px !important;
    padding-bottom: 86px !important;
}

.process-redesign::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 160px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(7, 27, 38, .58), rgba(2, 7, 12, 0));
    pointer-events: none;
}

.process-top {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: clamp(52px, 8vw, 124px);
    align-items: center;
    max-width: 1160px;
    margin: 0 auto 58px;
}

.process-title-block .kicker,
.faq-copy > .kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--bc-cyan);
    font: 800 12px/1.2 "Manrope", sans-serif;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.process-title-block h2 {
    margin: 0;
    color: #f8fbfd;
    font: 800 clamp(54px, 5vw, 76px)/.92 "Manrope", sans-serif;
    letter-spacing: -.055em;
}

.title-dot {
    color: var(--bc-cyan);
}

.process-intro {
    min-height: 92px;
    padding-left: 44px;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(236, 248, 255, .42);
}

.process-intro p {
    margin: 0;
    color: #afc0ca;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.45;
}

.process-intro strong {
    color: var(--bc-cyan);
    font-weight: 700;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 42px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: linear-gradient(90deg, rgba(18, 200, 244, .18), var(--bc-cyan) 8%, var(--bc-cyan) 92%, rgba(18, 200, 244, .18));
    box-shadow: 0 0 12px rgba(18, 200, 244, .55);
}

.process-step {
    position: relative;
    min-width: 0;
}

.process-step .step-number {
    position: absolute;
    top: 0;
    left: 4px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 200, 244, .9);
    border-radius: 50%;
    background: #02090e;
    color: var(--bc-cyan);
    font: 800 12px/1 "Manrope", sans-serif;
    box-shadow: 0 0 18px rgba(18, 200, 244, .12);
}

.process-step .step-dot {
    position: absolute;
    z-index: 3;
    top: 65px;
    left: 17px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--bc-yellow);
    box-shadow: 0 0 13px rgba(255, 217, 31, .95);
}

.step-card {
    position: relative;
    min-height: 146px;
    margin-top: 56px;
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    border: 1px solid rgba(18, 200, 244, .38);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(8, 18, 27, .95), rgba(3, 9, 14, .98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 14px 34px rgba(0, 0, 0, .18);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 200, 244, .72);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .25), 0 0 24px rgba(18, 200, 244, .08);
}

.step-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 200, 244, .55);
    border-radius: 12px;
    color: var(--bc-cyan);
    background: rgba(18, 200, 244, .07);
    font: 800 27px/1 "Manrope", sans-serif;
    text-shadow: 0 0 14px currentColor;
}

.step-icon.code-icon {
    font-size: 17px;
    letter-spacing: -.08em;
}

.step-card h3 {
    margin: 8px 0 10px;
    color: #f3f7fa;
    font-size: 16px;
}

.step-card p {
    margin: 0;
    color: #9eafb9;
    font-size: 13px;
    line-height: 1.55;
}

.step-strategy .step-card { border-color: rgba(155, 99, 255, .54); box-shadow: inset -26px -16px 40px rgba(87, 52, 217, .08); }
.step-strategy .step-icon { color: #b178ff; border-color: rgba(155, 99, 255, .66); background: rgba(155, 99, 255, .1); }
.step-development .step-card { border-color: rgba(0, 214, 199, .62); }
.step-development .step-icon { color: #00e7d3; border-color: rgba(0, 214, 199, .58); background: rgba(0, 214, 199, .08); }
.step-launch .step-card { border-color: rgba(18, 200, 244, .62); box-shadow: inset 22px 0 38px rgba(255, 217, 31, .025); }
.step-launch .step-icon { color: var(--bc-yellow); border-color: rgba(255, 217, 31, .55); background: rgba(255, 217, 31, .07); }

.process-curve {
    position: relative;
    height: 72px;
    margin-top: 24px;
}

.process-curve::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 25px;
    width: 100vw;
    height: 70px;
    transform: translateX(-50%);
    border-bottom: 3px solid var(--bc-cyan);
    border-radius: 0 0 50% 50% / 0 0 40px 40px;
    box-shadow: 0 9px 22px rgba(18, 200, 244, .18);
}

.process-curve span {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 3px;
    width: 58px;
    height: 58px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    border: 2px solid var(--bc-cyan);
    border-radius: 50%;
    color: var(--bc-cyan);
    background: #02070c;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 0 24px rgba(18, 200, 244, .18);
}

.faq-redesign {
    padding-top: 64px !important;
    padding-bottom: 110px !important;
}

.faq-redesign::before {
    top: -65px;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(270px, .95fr) minmax(400px, 1.18fr) minmax(270px, .78fr);
    gap: clamp(34px, 4.2vw, 70px);
    align-items: end;
    max-width: 1370px;
    margin: 0 auto;
}

.faq-copy {
    align-self: start;
    padding-top: 2px;
}

.faq-copy h2 {
    margin: 0 0 22px;
    max-width: 520px;
    color: #f7fafc;
    font: 800 clamp(46px, 4.4vw, 68px)/.96 "Manrope", sans-serif;
    letter-spacing: -.052em;
}

.faq-copy > p {
    margin: 0;
    max-width: 430px;
    color: #9cb0bb;
    font-size: 15px;
    line-height: 1.65;
}

.faq-contact-card {
    margin-top: 42px;
    min-height: 150px;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    grid-template-areas:
        "art copy"
        "art cta";
    column-gap: 20px;
    row-gap: 14px;
    align-items: center;
    border: 1px solid rgba(155, 99, 255, .5);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(10, 18, 29, .94), rgba(4, 9, 15, .98));
    box-shadow: inset 0 0 35px rgba(155, 99, 255, .035);
    overflow: hidden;
}

.faq-contact-art {
    grid-area: art;
    margin: 0;
    width: 94px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    align-self: center;
}

.faq-contact-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.1) contrast(1.05) drop-shadow(0 14px 18px rgba(0, 0, 0, .34));
    mix-blend-mode: screen;
}

.faq-contact-card > div {
    grid-area: copy;
    min-width: 0;
    align-self: end;
}

.faq-contact-card strong,
.faq-contact-card small {
    display: block;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
}

.faq-contact-card strong {
    color: #f4f8fb;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.faq-contact-card small {
    margin-top: 5px;
    color: #8fa4af;
    font-size: 13px;
    line-height: 1.5;
}

.faq-contact-card a {
    grid-area: cta;
    justify-self: start;
    align-self: start;
    width: max-content;
    max-width: 100%;
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--bc-cyan);
    border-radius: 999px;
    color: #f7fbfd;
    background: rgba(1, 8, 13, .84);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.faq-contact-card a:hover {
    background: rgba(18, 200, 244, .08);
    box-shadow: 0 0 18px rgba(18, 200, 244, .12);
}


.faq-list {
    display: grid;
    gap: 9px;
    align-self: center;
}

.faq-redesign .faq-item {
    border-radius: 14px;
    border-color: rgba(18, 200, 244, .24);
    background: linear-gradient(150deg, rgba(8, 17, 25, .96), rgba(3, 9, 14, .97));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
}

.faq-redesign .faq-item:hover,
.faq-redesign .faq-item[open] {
    border-color: rgba(18, 200, 244, .52);
    transform: translateY(-1px);
}

.faq-redesign .faq-item summary {
    min-height: 54px;
    padding: 10px 12px 10px 14px;
    justify-content: flex-start;
    gap: 13px;
    font-size: 12.5px;
}

.faq-question {
    min-width: 0;
    flex: 1 1 auto;
}

.faq-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--bc-cyan);
    font: 700 19px/1 "Manrope", sans-serif;
    text-shadow: 0 0 10px rgba(18, 200, 244, .22);
}

.faq-icon.violet { color: #b37cff; }
.faq-icon.green { color: #00e5bd; }

.faq-redesign .faq-item summary b {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    margin-left: auto;
    border-radius: 50%;
    font-size: 18px;
}

.faq-redesign .faq-item p {
    margin: -1px 47px 16px 61px;
    color: #8ea5b1;
    font-size: 12px;
    line-height: 1.65;
}

.faq-mascot {
    position: relative;
    align-self: end;
    margin: 0;
    min-width: 0;
    display: flex;
    align-items: end;
    justify-content: center;
}

.faq-mascot::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 90%;
    aspect-ratio: 1;
    bottom: 3%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 63, 255, .22), rgba(18, 200, 244, .06) 44%, transparent 70%);
    filter: blur(24px);
}

.faq-mascot img {
    display: block;
    width: min(100%, 430px);
    height: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    mix-blend-mode: screen;
    filter: saturate(1.1) contrast(1.06) drop-shadow(0 26px 34px rgba(0, 0, 0, .42));
    -webkit-mask-image: none;
    mask-image: none;
}

@media (max-width: 1180px) {
    .process-timeline { gap: 16px; }
    .step-card { grid-template-columns: 46px 1fr; padding: 18px 15px; }
    .step-icon { width: 46px; height: 46px; }
    .faq-layout { grid-template-columns: .9fr 1.25fr .68fr; gap: 28px; }
    .faq-contact-card { grid-template-columns: 86px minmax(0, 1fr); padding: 18px; column-gap: 16px; }
    .faq-contact-art { width: 86px; height: 108px; }
}

@media (max-width: 980px) {
    .process-redesign { padding-top: 105px !important; }
    .process-top { grid-template-columns: 1fr; gap: 30px; margin-bottom: 44px; }
    .process-intro { min-height: 0; padding-left: 22px; }
    .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 22px; padding-top: 20px; }
    .process-timeline::before { display: none; }
    .process-step .step-number { position: relative; left: 0; top: 0; margin-bottom: 13px; }
    .process-step .step-dot { display: none; }
    .step-card { margin-top: 0; min-height: 142px; }
    .process-curve { margin-top: 10px; }

    .faq-layout {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        align-items: start;
    }
    .faq-mascot {
        grid-column: 1 / -1;
        max-width: 420px;
        justify-self: center;
        margin-top: 8px;
    }
    .faq-mascot img { width: 360px; }
    .faq-contact-card { margin-top: 32px; }
    .faq-contact-art { width: 82px; height: 104px; }
}

@media (max-width: 760px) {
    .process-redesign { padding-top: 88px !important; padding-bottom: 62px !important; }
    .process-title-block h2 { font-size: clamp(45px, 13vw, 62px); }
    .process-timeline { grid-template-columns: 1fr; gap: 20px; }
    .step-card { min-height: 0; }
    .process-curve::before { height: 48px; bottom: 22px; }
    .process-curve span { width: 50px; height: 50px; }

    .faq-redesign { padding-top: 52px !important; }
    .faq-layout { grid-template-columns: 1fr; gap: 28px; }
    .faq-copy h2 { max-width: 650px; font-size: clamp(43px, 12vw, 58px); }
    .faq-copy > p { max-width: 620px; }
    .faq-contact-card {
        margin-top: 28px;
        grid-template-columns: 88px minmax(0, 1fr);
        grid-template-areas: "art copy" "art cta";
        padding: 18px 20px;
    }
    .faq-contact-art { width: 88px; height: 110px; }
    .faq-list { order: 2; }
    .faq-mascot { order: 3; margin-top: 0; }
}

@media (max-width: 540px) {
    .process-redesign { padding-top: 76px !important; }
    .process-top { gap: 24px; }
    .process-title-block .kicker,
    .faq-copy > .kicker { letter-spacing: .2em; }
    .process-intro { padding-left: 16px; }
    .step-card { grid-template-columns: 44px 1fr; gap: 13px; }
    .step-icon { width: 44px; height: 44px; }

    .faq-contact-card {
        grid-template-columns: 76px minmax(0, 1fr);
        grid-template-areas: "art copy" "art cta";
        min-height: 136px;
        padding: 16px;
        column-gap: 14px;
        row-gap: 10px;
    }
    .faq-contact-art { width: 76px; height: 98px; }
    .faq-redesign .faq-item summary { padding: 10px 10px; gap: 8px; font-size: 12px; }
    .faq-icon { flex-basis: 28px; width: 28px; }
    .faq-redesign .faq-item p { margin-left: 46px; margin-right: 18px; }
    .faq-contact-card strong { font-size: 14px; }
    .faq-contact-card small { font-size: 12px; }
    .faq-contact-card a { min-height: 40px; padding: 0 16px; font-size: 12px; }
    .faq-mascot img { width: min(100%, 330px); }
}

@media (max-width: 420px) {
    .faq-contact-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "art"
            "copy"
            "cta";
        text-align: center;
        justify-items: center;
        padding: 18px 16px 20px;
    }

    .faq-contact-art {
        width: 92px;
        height: 112px;
        justify-self: center;
    }

    .faq-contact-card > div {
        align-self: auto;
    }

    .faq-contact-card a {
        justify-self: center;
        align-self: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .step-card,
    .faq-redesign .faq-item { transition: none; }
}


/* =========================================================
   Clientes Blackcat · carrusel de 3 logos + preview en hover
   ========================================================= */
.clients-carousel {
    --client-gap: 18px;
    position: relative;
    z-index: 12;
    margin-top: 38px;
    padding: 0 58px 34px;
}

.clients-carousel-viewport {
    position: relative;
    overflow: hidden;
    padding: 8px 0 16px;
}

.clients-showcase.clients-carousel-track {
    display: flex;
    gap: var(--client-gap);
    margin: 0;
    width: max-content;
    transform: translate3d(0,0,0);
    transition: transform .62s cubic-bezier(.22,.72,.17,1);
    will-change: transform;
}

.client-logo-card {
    position: relative;
    flex: 0 0 var(--client-card-width, 360px);
    min-width: 0;
    max-width: none;
    min-height: 150px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(18, 200, 244, .18);
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(8, 17, 25, .96), rgba(3, 8, 13, .985));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 20px 50px rgba(0, 0, 0, .16);
    outline: none;
    cursor: default;
    transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.client-logo-card--live { cursor: pointer; }

.client-logo-card:hover,
.client-logo-card:focus-visible,
.client-logo-card.is-open {
    z-index: 30;
    border-color: rgba(18, 200, 244, .58);
    transform: translateY(-5px);
    background: linear-gradient(150deg, rgba(9, 22, 31, .985), rgba(3, 9, 15, .99));
    box-shadow: 0 28px 70px rgba(0, 0, 0, .4), 0 0 30px rgba(18, 200, 244, .09);
}

.client-logo-row {
    min-height: 148px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 10px 18px;
    align-items: center;
}

.client-logo-shell {
    grid-row: 1 / span 2;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.client-logo-shell--light,
.client-logo-shell--transparent {
    background: transparent;
}

.client-logo-shell img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,.28));
}

.client-logo-row small {
    display: block;
    margin-bottom: 5px;
    color: #748f9e;
    font: 750 10px/1.2 "Manrope", sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.client-logo-row h3 {
    margin: 0;
    color: #f5f9fb;
    font: 800 20px/1.15 "Manrope", sans-serif;
    letter-spacing: -.025em;
}

.client-card-hint {
    grid-column: 2;
    align-self: end;
    color: #12c8f4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .03em;
    opacity: .68;
    transition: opacity .2s ease, transform .2s ease;
}

.client-logo-card:hover .client-card-hint,
.client-logo-card.is-open .client-card-hint {
    opacity: 1;
    transform: translateX(2px);
}


/* Las previews dentro de cada logo quedan como fuente de datos para el cover flow. */
.client-project-preview {
    display: none !important;
}

/* =========================================================
   Clientes · preview Bento/Cover Flow inspirado en Bento 37
   ========================================================= */
.clients-coverflow {
    position: absolute;
    z-index: 90;
    left: 50%;
    top: 51%;
    width: min(980px, calc(100% - 150px));
    height: 470px;
    transform: translate(-50%, -46%) scale(.965);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    perspective: 1500px;
    transition: opacity .22s ease, transform .34s cubic-bezier(.2,.78,.2,1), visibility .22s ease;
}

.clients-coverflow.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -46%) scale(1);
}

.clients-coverflow::before {
    content: "";
    position: absolute;
    inset: 5% 7% 2%;
    z-index: -1;
    border-radius: 42px;
    background:
      radial-gradient(circle at 50% 55%, rgba(18,200,244,.12), transparent 47%),
      radial-gradient(circle at 50% 48%, rgba(208,42,139,.09), transparent 62%);
    filter: blur(28px);
}

.clients-coverflow-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    isolation: isolate;
}

.clients-cover-card {
    --cf-x: 0px;
    --cf-z: 0px;
    --cf-rot: 0deg;
    --cf-scale: 1;
    --cf-opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(690px, 72vw);
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    background: #070c11;
    box-shadow: 0 36px 95px rgba(0,0,0,.64), 0 0 42px rgba(18,200,244,.075);
    opacity: var(--cf-opacity);
    transform:
      translate(-50%, -50%)
      translate3d(var(--cf-x), 0, var(--cf-z))
      rotateY(var(--cf-rot))
      scale(var(--cf-scale));
    transform-origin: center center;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: transform .72s cubic-bezier(.2,.75,.18,1), opacity .42s ease, filter .42s ease, border-color .42s ease;
    cursor: default;
}

.clients-cover-card.is-live { cursor: pointer; }

.clients-cover-card.is-focus {
    border-color: rgba(18,200,244,.6);
    filter: saturate(1.04) brightness(1.02);
    box-shadow: 0 42px 110px rgba(0,0,0,.7), 0 0 46px rgba(18,200,244,.12);
}

.clients-cover-card:not(.is-focus) {
    filter: saturate(.78) brightness(.58);
}

.clients-cover-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: #06090d;
}

.clients-cover-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(1,5,9,.22) 64%, rgba(1,5,9,.9) 100%);
    pointer-events: none;
}

.clients-cover-card-copy {
    position: absolute;
    z-index: 3;
    left: 22px;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    pointer-events: none;
}

.clients-cover-card-copy > div { min-width: 0; }

.clients-cover-card-copy span,
.clients-cover-card-copy strong,
.clients-cover-card-copy small { display: block; }

.clients-cover-card-copy span {
    margin-bottom: 5px;
    color: #15d4ff;
    font: 850 9px/1.2 "Manrope", sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.clients-cover-card-copy strong {
    font: 850 clamp(20px, 2.1vw, 30px)/1.05 "Manrope", sans-serif;
    letter-spacing: -.035em;
}

.clients-cover-card-copy small {
    margin-top: 6px;
    max-width: 520px;
    color: #a6b8c1;
    font-size: 11px;
    line-height: 1.45;
}

.clients-cover-link-hint {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex !important;
    align-items: center;
    border: 1px solid rgba(18,200,244,.46);
    border-radius: 999px;
    color: #e9faff !important;
    background: rgba(2,9,14,.78);
    font-size: 10px !important;
    font-weight: 800;
    white-space: nowrap;
}

.clients-coverflow-label {
    position: absolute;
    z-index: 120;
    left: 50%;
    bottom: -6px;
    min-height: 32px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    color: #9cb0bb;
    background: rgba(3,8,13,.88);
    backdrop-filter: blur(12px);
    font-size: 10px;
    transform: translateX(-50%);
}

.clients-coverflow-label b { color: #f5fbfd; font-weight: 800; }
.clients-coverflow-label i { width: 4px; height: 4px; border-radius: 50%; background: #12c8f4; box-shadow: 0 0 8px #12c8f4; }

.clients-carousel-arrow {
    position: absolute;
    z-index: 25;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18,200,244,.34);
    border-radius: 50%;
    background: rgba(3,10,15,.92);
    color: #eafaff;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(-68%);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.clients-carousel-arrow:hover {
    border-color: rgba(18,200,244,.75);
    background: rgba(18,200,244,.09);
    transform: translateY(-68%) scale(1.06);
}

.clients-carousel-prev { left: 0; }
.clients-carousel-next { right: 0; }

.clients-carousel-status {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.clients-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(126,151,163,.32);
    transition: width .25s ease, background .25s ease, box-shadow .25s ease;
}

.clients-carousel-dot.is-active {
    width: 26px;
    background: #12c8f4;
    box-shadow: 0 0 16px rgba(18,200,244,.32);
}

@media (max-width: 1180px) {
    .clients-carousel {
        --client-gap: 14px;
        padding-inline: 50px;
    }
    .client-logo-row {
        min-height: 132px;
        padding: 18px;
        grid-template-columns: 68px minmax(0,1fr);
        gap: 8px 14px;
    }
    .client-logo-shell { width: 68px; height: 68px; }
    .client-logo-row h3 { font-size: 17px; }
    .client-logo-row small { font-size: 8px; }
}

@media (max-width: 760px) {
    .clients-carousel {
        --client-gap: 9px;
        padding: 0 34px 30px;
    }
    .client-logo-card {
        min-height: 112px;
        border-radius: 16px;
    }
    .client-logo-row {
        min-height: 112px;
        padding: 10px 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        text-align: center;
    }
    .client-logo-shell {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
    }
    .client-logo-row small { display: none; }
    .client-logo-row h3 {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.16;
        white-space: normal;
    }
    .client-card-hint {
        display: none;
    }
    .clients-carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .clients-carousel-prev { left: 0; }
    .clients-carousel-next { right: 0; }
    .clients-coverflow {
        position: fixed;
        z-index: 15000;
        top: 50%;
        width: min(96vw, 760px);
        height: min(72vh, 510px);
        transform: translate(-50%, -50%) scale(.97);
    }
    .clients-coverflow.is-visible { transform: translate(-50%, -50%) scale(1); }
    .clients-cover-card { width: min(84vw, 610px); border-radius: 18px; }
    .clients-cover-card-copy { left: 14px; right: 14px; bottom: 12px; gap: 10px; }
    .clients-cover-card-copy small { display: none; }
    .clients-cover-link-hint { min-height: 30px; padding-inline: 10px; font-size: 8px !important; }
    .clients-coverflow-label { bottom: 3px; }
}

@media (prefers-reduced-motion: reduce) {
    .clients-showcase.clients-carousel-track,
    .client-logo-card,
    .clients-coverflow,
    .clients-cover-card,
    .clients-carousel-dot { transition: none; }
}



/* =========================================================
   CLIENTES 2.1 · Cover Flow sobre logos visibles
   - La preview se despliega en una banda superior.
   - Los 3 logos permanecen visibles debajo.
   - El logo seleccionado gana escala y presencia.
   - Sin gatos laterales para ampliar el escenario.
   ========================================================= */
.client-watch-cat {
    display: none !important;
}

.work#clientes {
    overflow: visible;
}

@media (min-width: 761px) {
    .clients-carousel {
        /* Reserva una zona para el cover-flow sin tapar los logos. */
        padding-top: 345px;
        padding-left: 34px;
        padding-right: 34px;
        transition: padding-top .36s cubic-bezier(.22,.72,.17,1);
    }

    .clients-carousel-viewport {
        position: relative;
        z-index: 35;
        overflow: hidden;
        padding: 20px 10px 24px;
    }

    .clients-coverflow {
        z-index: 60;
        top: 0;
        width: min(1060px, calc(100% - 70px));
        height: 330px;
        transform: translate(-50%, 0) scale(.972);
    }

    .clients-coverflow.is-visible {
        transform: translate(-50%, 0) scale(1);
    }

    .clients-cover-card {
        width: min(660px, 62vw);
        aspect-ratio: 16 / 8.4;
        border-radius: 22px;
    }

    .clients-cover-card-copy {
        left: 20px;
        right: 20px;
        bottom: 16px;
    }

    .clients-coverflow-label {
        bottom: -1px;
    }

    .clients-showcase.clients-carousel-track {
        position: relative;
        z-index: 45;
        align-items: center;
        overflow: visible;
        padding: 8px 0;
    }

    .client-logo-card {
        transform-origin: center center;
        opacity: 1;
        transition:
            border-color .34s ease,
            transform .42s cubic-bezier(.2,.78,.2,1),
            box-shadow .34s ease,
            background .34s ease,
            opacity .34s ease,
            filter .34s ease;
    }

    /* Cuando una preview está abierta, los logos laterales retroceden. */
    .clients-carousel.is-preview-open .client-logo-card {
        opacity: .58;
        filter: saturate(.74) brightness(.78);
        transform: scale(.92);
    }

    /* El proyecto señalado conserva protagonismo debajo de la preview. */
    .clients-carousel.is-preview-open .client-logo-card.is-open,
    .clients-carousel.is-preview-open .client-logo-card:hover,
    .clients-carousel.is-preview-open .client-logo-card:focus-visible {
        z-index: 80;
        opacity: 1;
        filter: none;
        transform: translateY(-9px) scale(1.105);
        border-color: rgba(18, 200, 244, .72);
        box-shadow:
            0 30px 75px rgba(0, 0, 0, .48),
            0 0 36px rgba(18, 200, 244, .14);
    }

    .clients-carousel.is-preview-open .client-logo-card.is-open .client-logo-shell {
        transform: scale(1.08);
    }

    .client-logo-shell {
        transition: transform .4s cubic-bezier(.2,.78,.2,1);
    }

    .clients-carousel-arrow {
        z-index: 95;
        top: auto;
        bottom: 92px;
        transform: none;
    }

    .clients-carousel-arrow:hover {
        transform: scale(1.06);
    }

    .clients-carousel-status {
        bottom: 2px;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .clients-carousel {
        padding-top: 315px;
        padding-inline: 32px;
    }
    .clients-coverflow {
        width: min(920px, calc(100% - 50px));
        height: 300px;
    }
    .clients-cover-card {
        width: min(590px, 64vw);
    }
    .clients-carousel-arrow {
        bottom: 80px;
    }
}

/* =========================================================
   CLIENTES 2.2 · corrección de geometría y superposición
   - Sin espacio negro reservado cuando la preview está cerrada.
   - El cover-flow flota sobre el encabezado y no mueve el layout.
   - Solo se muestran previews de los 3 logos actualmente visibles.
   - Flechas más laterales y totalmente visibles.
   ========================================================= */
.work#clientes {
    overflow: visible !important;
    padding-top: 92px;
    padding-bottom: 96px;
}

.work#clientes > .shell {
    overflow: visible;
}

.work#clientes .section-head {
    position: relative;
    z-index: 8;
    margin-bottom: 24px;
}

@media (min-width: 761px) {
    .clients-carousel {
        margin-top: 0;
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 34px;
        overflow: visible;
    }

    .clients-carousel-viewport {
        z-index: 35;
        overflow: hidden;
        padding: 10px 0 18px;
    }

    .clients-coverflow {
        z-index: 110;
        top: -312px !important;
        left: 50%;
        width: min(1080px, calc(100% - 120px));
        height: 318px !important;
        transform: translate(-50%, 0) scale(.972) !important;
    }

    .clients-coverflow.is-visible {
        transform: translate(-50%, 0) scale(1) !important;
    }

    .clients-coverflow-stage {
        overflow: visible;
    }

    .clients-cover-card {
        width: min(650px, 60vw);
        aspect-ratio: 16 / 8.55;
        border-radius: 22px;
    }

    .clients-cover-card.is-outside-window {
        pointer-events: none;
        visibility: hidden;
    }

    .clients-coverflow-label {
        bottom: -3px;
    }

    .clients-carousel-arrow {
        z-index: 125;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-56%) !important;
    }

    .clients-carousel-arrow:hover {
        transform: translateY(-56%) scale(1.06) !important;
    }

    .clients-carousel-prev {
        left: -58px !important;
    }

    .clients-carousel-next {
        right: -58px !important;
    }

    .clients-carousel-status {
        bottom: 0 !important;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .work#clientes {
        padding-top: 78px;
        padding-bottom: 84px;
    }

    .work#clientes .section-head {
        margin-bottom: 20px;
    }

    .clients-coverflow {
        top: -286px !important;
        width: min(910px, calc(100% - 70px));
        height: 286px !important;
    }

    .clients-cover-card {
        width: min(570px, 62vw);
    }

    .clients-carousel-prev {
        left: -34px !important;
    }

    .clients-carousel-next {
        right: -34px !important;
    }
}

@media (max-width: 760px) {
    .work#clientes {
        padding-top: 68px;
        padding-bottom: 74px;
        overflow: hidden !important;
    }

    .work#clientes .section-head {
        margin-bottom: 20px;
    }

    .clients-carousel {
        margin-top: 0;
        padding-left: 42px;
        padding-right: 42px;
    }

    .clients-carousel-prev {
        left: 4px !important;
    }

    .clients-carousel-next {
        right: 4px !important;
    }
}


/* =========================================================
   CLIENTES 2.3 · scrub continuo + tarjetas 100% opacas
   - Área de seguridad dentro del viewport para que el logo activo no se corte.
   - Capturas laterales opacas: el título nunca se transparenta por debajo.
   - Hover sobre la captura lateral desplaza también los 3 logos visibles.
   ========================================================= */
@media (min-width: 761px) {
    .clients-carousel-viewport {
        --client-safe-edge: 54px;
        box-sizing: border-box;
        overflow: hidden !important;
        padding: 26px var(--client-safe-edge) 28px !important;
    }

    .clients-showcase.clients-carousel-track {
        padding-block: 4px;
    }

    .clients-carousel.is-preview-open .client-logo-card.is-open,
    .clients-carousel.is-preview-open .client-logo-card:hover,
    .clients-carousel.is-preview-open .client-logo-card:focus-visible {
        transform: translateY(-7px) scale(1.09) !important;
    }

    .clients-coverflow {
        width: min(1120px, calc(100% - 72px)) !important;
        overflow: visible !important;
    }

    .clients-coverflow-stage {
        overflow: visible !important;
    }

    .clients-cover-card {
        background: #05090d !important;
        opacity: var(--cf-opacity, 1) !important;
    }

    .clients-cover-card:not(.is-focus) {
        /* Profundidad sin transparencia: oscurecer mantiene el fondo totalmente tapado. */
        filter: saturate(.78) brightness(.62) !important;
    }

    .clients-cover-card:not(.is-focus)::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: rgba(1, 6, 10, .16);
        pointer-events: none;
    }

    .clients-cover-card.is-outside-window {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .clients-carousel-prev {
        left: -70px !important;
    }

    .clients-carousel-next {
        right: -70px !important;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .clients-carousel-viewport {
        --client-safe-edge: 40px;
        padding-inline: var(--client-safe-edge) !important;
    }

    .clients-carousel-prev { left: -44px !important; }
    .clients-carousel-next { right: -44px !important; }
}

@media (max-width: 760px) {
    .clients-carousel-viewport {
        box-sizing: border-box;
        padding-inline: 18px !important;
    }
}

/* =========================================================
   CLIENTES 2.4 · loop infinito + separador luminoso
   - El carrusel da la vuelta sin rebobinar visualmente.
   - Se recortan los restos de logos fuera de la ventana útil.
   - El antiguo separador oscuro se reemplaza por una banda animada.
   ========================================================= */

/* Elimina por completo cualquier fragmento de tarjetas que quede dentro del
   colchón lateral reservado para agrandar el logo activo. */
@media (min-width: 761px) {
    .clients-carousel-viewport {
        overflow: hidden !important;
        clip-path: inset(0 var(--client-safe-edge, 54px) 0 var(--client-safe-edge, 54px));
    }

    .clients-showcase.clients-carousel-track {
        backface-visibility: hidden;
        transform-style: preserve-3d;
    }

    .client-logo-card.is-carousel-clone {
        pointer-events: auto;
    }
}

/* El bloque que antes llevaba gatos caminando ahora actúa como transición
   visual entre secciones. Tapa costuras/barras negras con una cinta de datos. */
.walking-cat-scene {
    height: 86px !important;
    position: relative !important;
    overflow: hidden !important;
    border: 0 !important;
    background:
        radial-gradient(circle at 18% 50%, rgba(18, 200, 244, .12), transparent 31%),
        radial-gradient(circle at 78% 45%, rgba(143, 87, 255, .11), transparent 33%),
        linear-gradient(180deg, #020406 0%, #031017 46%, #020406 100%) !important;
    isolation: isolate;
}

.walking-cat-scene > * {
    display: none !important;
}

.walking-cat-scene::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent 0 74px,
            rgba(18, 200, 244, .055) 75px,
            rgba(18, 200, 244, .055) 76px,
            transparent 77px 150px),
        linear-gradient(90deg,
            transparent 0%,
            rgba(18, 200, 244, .10) 24%,
            rgba(124, 92, 255, .11) 50%,
            rgba(18, 200, 244, .10) 76%,
            transparent 100%);
    background-size: 150px 100%, 100% 100%;
    animation: blackcatDataBand 8s linear infinite;
    opacity: .92;
}

.walking-cat-scene::after {
    content: "" !important;
    position: absolute !important;
    z-index: 2 !important;
    left: -24% !important;
    right: auto !important;
    bottom: 50% !important;
    width: 24% !important;
    height: 2px !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(18, 200, 244, .25),
        #12c8f4 55%,
        rgba(185, 101, 255, .75) 78%,
        transparent) !important;
    box-shadow:
        0 0 12px rgba(18, 200, 244, .55),
        0 0 30px rgba(115, 91, 255, .25);
    animation: blackcatScanner 4.8s cubic-bezier(.45,0,.55,1) infinite;
}

@keyframes blackcatDataBand {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 150px 0, 0 0; }
}

@keyframes blackcatScanner {
    0%   { transform: translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { transform: translateX(520%); opacity: 0; }
}

/* Una leve aurora en la cabecera de clientes termina de ocultar cualquier
   línea de unión entre fondos y le da continuidad con la cinta animada. */
.work#clientes::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(18, 200, 244, .035), transparent 72%),
        radial-gradient(ellipse at 50% 0%, rgba(18, 200, 244, .07), transparent 60%);
}

.work#clientes > .shell {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .walking-cat-scene {
        height: 58px !important;
    }

    .clients-carousel-viewport {
        clip-path: inset(0 18px 0 18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .walking-cat-scene::before,
    .walking-cat-scene::after {
        animation: none !important;
    }
}


/* CLIENTES 2.5 · hover más pausado para recorrer previews con calma */
@media (min-width: 761px) {
  .clients-cover-card {
    transition: transform .72s cubic-bezier(.2,.75,.18,1), opacity .42s ease, filter .42s ease, border-color .42s ease !important;
  }
}


/* CLIENTES 2.6 · recorrido deliberadamente más lento para poder inspeccionar cada sitio */
@media (min-width: 761px) {
  .clients-cover-card {
    transition: transform 1.05s cubic-bezier(.2,.75,.18,1), opacity .72s ease, filter .72s ease, border-color .72s ease !important;
  }

  .clients-showcase.clients-carousel-track {
    transition: transform .95s cubic-bezier(.22,.72,.17,1) !important;
  }
}


/* =========================================================
   CLIENTES 2.7 · apertura solo desde el centro + logos a 2 s
   - Las tarjetas laterales seleccionan; nunca navegan.
   - La web solo se abre cuando el proyecto ya está enfocado al centro.
   - El desplazamiento horizontal de los logos dura exactamente 2 segundos.
   ========================================================= */
@media (min-width: 761px) {
  .clients-showcase.clients-carousel-track {
    transition: transform 2s cubic-bezier(.22,.72,.17,1) !important;
  }

  .clients-cover-card.is-live:not(.is-focus) {
    cursor: pointer;
  }

  .clients-cover-card.is-live.is-focus {
    cursor: pointer;
  }
}


/* =========================================================
   CLIENTES 2.9 · ventana estricta de 3 logos
   - Nunca se asoma un cuarto logo en los bordes.
   - El cálculo del carrusel usa el ancho sin transformaciones.
   - El espacio lateral interno queda reservado para que el logo activo pueda
     crecer sin ser recortado.
   ========================================================= */
@media (min-width: 761px) {
  .clients-carousel-viewport {
    overflow: hidden !important;
    clip-path: none !important;
    box-sizing: border-box;
  }

  .clients-showcase.clients-carousel-track {
    width: max-content;
    max-width: none;
  }
}


/* =========================================================
   CLIENTES 3.0 · carrusel automático sin flechas
   - Avanza solo hacia la derecha cada 6 segundos.
   - El desplazamiento conserva los 2 s configurados.
   - Hover abre las previews sin pausar ni recentrar el carrusel.
   ========================================================= */
.clients-carousel {
  padding-inline: 0 !important;
}

.clients-carousel-arrow {
  display: none !important;
}

.clients-carousel-viewport {
  width: 100%;
}

@media (min-width: 761px) {
  .clients-carousel {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
