/* ============================================================
   SERVICES PAGE - FINAL
   YA PÍDELO
============================================================ */


/* ============================================================
   HERO
============================================================ */

.services-hero {
    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        clamp(145px, 14vw, 185px)
        0
        clamp(90px, 8vw, 120px);

    background:
        radial-gradient(
            circle at 80% 16%,
            rgba(99, 102, 241, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 76%,
            rgba(6, 182, 212, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f8faff
        );
}


.services-hero-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(79, 70, 229, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(79, 70, 229, 0.03) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 88%
        );

    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 88%
        );
}


.services-hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}


.services-glow-one {
    width: 540px;
    height: 540px;

    left: -270px;
    top: 100px;

    background:
        rgba(99, 102, 241, 0.13);
}


.services-glow-two {
    width: 620px;
    height: 620px;

    right: -260px;
    top: 10px;

    background:
        rgba(124, 58, 237, 0.12);
}


.services-hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(500px, 1.08fr);

    align-items: center;

    gap:
        clamp(45px, 6vw, 90px);
}


/* ============================================================
   HERO CONTENT
============================================================ */

.services-hero-title {
    max-width: 800px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(3.25rem, 5.7vw, 5.9rem);

    line-height: 0.98;

    letter-spacing: -0.063em;

    margin-bottom: 27px;
}


.services-hero-description {
    max-width: 680px;

    color:
        var(--color-text-soft);

    font-size:
        clamp(1rem, 1.35vw, 1.15rem);

    line-height: 1.8;

    margin-bottom: 28px;
}


#servicesHeroWord {
    display: block;

    transition:
        opacity 0.18s ease,
        transform 0.2s ease;
}


#servicesHeroWord.is-changing {
    opacity: 0;

    transform:
        translateY(8px);
}


.services-hero-tabs {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 28px;
}


.services-hero-tab {
    min-height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        0 14px;

    border-radius: 11px;

    border:
        1px solid
        var(--color-border);

    background:
        rgba(255, 255, 255, 0.82);

    color:
        var(--color-text-soft);

    font-size: 0.70rem;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.services-hero-tab:hover {
    transform:
        translateY(-2px);

    color:
        var(--color-primary);
}


.services-hero-tab.active {
    color: white;

    border-color: transparent;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );

    box-shadow:
        0 12px 28px
        rgba(79, 70, 229, 0.22);
}


.services-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* ============================================================
   HERO VISUAL
============================================================ */

.services-hero-visual {
    position: relative;

    min-height: 560px;

    display: grid;

    place-items: center;

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}


.services-hero-visual.is-changing {
    opacity: 0;

    transform:
        translateY(8px);
}


.service-hero-demo {
    position: relative;

    width: 100%;

    min-height: 520px;

    display: grid;

    place-items: center;
}


/* ============================================================
   DEVELOPMENT VISUAL
============================================================ */

.service-browser {
    width:
        min(100%, 610px);

    overflow: hidden;

    border-radius: 27px;

    border:
        1px solid
        rgba(15, 23, 42, 0.08);

    background: white;

    box-shadow:
        0 35px 85px
        rgba(15, 23, 42, 0.16);
}


.service-browser-header {
    height: 50px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        0 17px;

    background:
        #f7f8fc;

    border-bottom:
        1px solid
        #eceef4;
}


.service-browser-header span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #d7dae2;
}


.service-browser-content {
    display: grid;

    grid-template-columns:
        65px 1fr;

    min-height: 400px;

    background:
        #f8f9fd;
}


.service-browser-sidebar {
    padding:
        18px 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    color:
        rgba(255, 255, 255, 0.48);

    background:
        #10162e;
}


.service-browser-sidebar i {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 10px;
}


.service-browser-sidebar i:first-child {
    color: white;

    background:
        rgba(99, 102, 241, 0.25);
}


.service-browser-main {
    padding: 25px;
}


.service-browser-kpis {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 23px;
}


.service-browser-kpis span {
    height: 90px;

    border-radius: 13px;

    background: white;

    border:
        1px solid
        #eceef4;
}


.service-browser-chart {
    height: 210px;

    display: flex;

    align-items: flex-end;

    gap: 10px;

    padding:
        20px;

    border-radius: 15px;

    background: white;

    border:
        1px solid
        #eceef4;
}


.service-browser-chart i {
    flex: 1;

    height:
        var(--service-bar);

    border-radius:
        7px 7px 2px 2px;

    background:
        linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-secondary-light)
        );
}


.service-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px 14px;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.95);

    color:
        var(--color-text);

    box-shadow:
        0 20px 50px
        rgba(15, 23, 42, 0.17);

    animation:
        services-floating
        5s ease-in-out
        infinite;
}


.service-floating-card > i {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );
}


.service-floating-card small {
    display: block;

    color: #999faf;

    font-size: 0.43rem;

    margin-bottom: 2px;
}


.service-floating-card strong {
    font-size: 0.63rem;
}


.floating-development {
    right: -15px;
    bottom: 55px;
}


@keyframes services-floating {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-9px);
    }

}


/* ============================================================
   NETWORK HERO
============================================================ */

.service-demo-network {
    overflow: hidden;
}


.hero-network-center {
    position: relative;

    z-index: 5;

    width: 140px;
    height: 140px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #0891b2
        );

    box-shadow:
        0 25px 70px
        rgba(6, 182, 212, 0.25);
}


.hero-network-center i {
    font-size: 1.8rem;
}


.hero-network-center span {
    font-size: 0.43rem;

    letter-spacing: 0.09em;
}


.hero-network-wave {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(6, 182, 212, 0.16);
}


.hero-network-wave.wave-one {
    width: 220px;
    height: 220px;
}


.hero-network-wave.wave-two {
    width: 360px;
    height: 360px;
}


.hero-network-wave.wave-three {
    width: 500px;
    height: 500px;
}


.hero-network-device {
    position: absolute;

    z-index: 4;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    color:
        var(--color-primary);

    background: white;

    box-shadow:
        0 17px 42px
        rgba(15, 23, 42, 0.12);
}


.device-a {
    left: 12%;
    top: 20%;
}


.device-b {
    right: 14%;
    top: 18%;
}


.device-c {
    left: 13%;
    bottom: 16%;
}


.device-d {
    right: 12%;
    bottom: 14%;
}


/* ============================================================
   SECURITY HERO
============================================================ */

.hero-security-grid {
    width:
        min(100%, 600px);

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;

    padding: 12px;

    border-radius: 22px;

    background:
        #0b1123;

    box-shadow:
        0 35px 80px
        rgba(15, 23, 42, 0.22);
}


.hero-security-grid > div {
    min-height: 180px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 14px;

    color:
        rgba(255, 255, 255, 0.45);

    background:
        radial-gradient(
            circle,
            rgba(99, 102, 241, 0.10),
            transparent 60%
        ),
        #121a2f;
}


.hero-security-grid i {
    font-size: 1.8rem;
}


.hero-security-grid span {
    font-size: 0.48rem;
}


.hero-security-status {
    position: absolute;

    right: 4%;
    bottom: 35px;

    padding:
        8px 11px;

    border-radius: 999px;

    color: #86efac;

    background:
        rgba(11, 18, 36, 0.92);

    font-size: 0.55rem;
}


.hero-security-status i {
    font-size: 0.35rem;

    margin-right: 4px;
}


/* ============================================================
   SUPPORT HERO
============================================================ */

.service-demo-support {
    align-content: center;
}


.support-main-card {
    width:
        min(80%, 430px);

    min-height: 210px;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 27px;

    border-radius: 23px;

    background: white;

    box-shadow:
        0 30px 70px
        rgba(15, 23, 42, 0.15);
}


.support-main-icon {
    width: 64px;
    height: 64px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );
}


.support-main-card small {
    display: block;

    color: #989eac;

    font-size: 0.45rem;

    margin-bottom: 3px;
}


.support-main-card strong {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.1rem;
}


.support-checklist {
    width:
        min(70%, 350px);

    margin-top: 15px;

    display: grid;

    gap: 7px;
}


.support-checklist > div {
    min-height: 49px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 13px;

    border-radius: 11px;

    color:
        var(--color-text-soft);

    background: white;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.06);

    font-size: 0.62rem;
}


.support-checklist .complete i {
    color: #22c55e;
}


.support-checklist .active {
    border:
        1px solid
        rgba(79, 70, 229, 0.14);
}


/* ============================================================
   VIDEO
============================================================ */

.services-video-section {
    background: white;
}


.services-video-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.58fr);

    gap: 60px;

    align-items: end;

    margin-bottom: 40px;
}


.services-video-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(2.5rem, 4.4vw, 4.6rem);

    line-height: 1.04;

    letter-spacing: -0.052em;
}


.services-video-heading > p {
    color:
        var(--color-text-soft);

    line-height: 1.75;
}


.services-video-card {
    position: relative;

    min-height: 590px;

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(
            135deg,
            #0c1228,
            #151c3d
        );

    box-shadow:
        0 35px 90px
        rgba(15, 23, 42, 0.18);
}


.services-showcase-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.56;
}


.services-video-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 14, 32, 0.96) 0%,
            rgba(9, 14, 32, 0.72) 45%,
            rgba(9, 14, 32, 0.22) 100%
        );
}


.services-video-content {
    position: relative;

    z-index: 3;

    max-width: 670px;

    min-height: 590px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(40px, 7vw, 80px);

    color: white;
}


.services-video-content > span {
    color:
        rgba(255, 255, 255, 0.46);

    font-size: 0.55rem;

    font-weight: 800;

    letter-spacing: 0.11em;

    margin-bottom: 14px;
}


.services-video-content h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(2.5rem, 4.2vw, 4.5rem);

    line-height: 1.03;

    letter-spacing: -0.05em;

    margin-bottom: 18px;
}


.services-video-content h3 strong {
    display: block;

    color: #aeb6ff;
}


.services-video-content p {
    max-width: 580px;

    color:
        rgba(255, 255, 255, 0.63);

    line-height: 1.75;

    margin-bottom: 25px;
}


.services-video-play {
    width: fit-content;

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        0 17px;

    border-radius: 12px;

    color:
        var(--color-text);

    background: white;

    font-size: 0.68rem;

    font-weight: 750;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.services-video-play:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, 0.18);
}


.services-video-play i {
    width: 29px;
    height: 29px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        var(--color-primary);
}


.services-video-badge {
    position: absolute;

    z-index: 4;

    right: 25px;
    top: 25px;

    padding:
        7px 10px;

    border-radius: 999px;

    color: #86efac;

    background:
        rgba(10, 16, 35, 0.72);

    backdrop-filter:
        blur(12px);

    font-size: 0.52rem;

    font-weight: 700;
}


.services-video-badge i {
    font-size: 0.34rem;

    margin-right: 5px;
}


/* ============================================================
   SERVICES SLIDER
============================================================ */

.services-slider-section {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8faff
        );
}


.services-slider-controls {
    display: flex;

    justify-content: flex-end;

    gap: 8px;

    margin-bottom: 16px;
}


.services-slider-controls button {
    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: white;

    border:
        1px solid
        var(--color-border);

    color:
        var(--color-text);

    box-shadow:
        0 8px 20px
        rgba(15, 23, 42, 0.04);

    transition:
        transform var(--transition),
        background var(--transition);
}


.services-slider-controls button:hover {
    transform:
        translateY(-2px);

    background:
        #f5f6ff;
}


.services-slider {
    display: flex;

    gap: 16px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type:
        x mandatory;

    scrollbar-width: none;

    padding:
        8px 4px 22px;
}


.services-slider::-webkit-scrollbar {
    display: none;
}


.service-slider-card {
    position: relative;

    flex:
        0 0
        min(380px, 88vw);

    min-height: 475px;

    scroll-snap-align: start;

    overflow: hidden;

    padding: 26px;

    border-radius: 24px;

    background: white;

    border:
        1px solid
        var(--color-border);

    box-shadow:
        0 10px 32px
        rgba(15, 23, 42, 0.05);

    transform-style:
        preserve-3d;

    transition:
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.service-slider-card:hover {
    transform:
        translateY(-10px)
        rotateX(1deg)
        rotateY(-1deg);

    border-color:
        rgba(79, 70, 229, 0.17);

    box-shadow:
        0 28px 65px
        rgba(15, 23, 42, 0.11);
}


.service-slider-icon {
    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 15px;

    color:
        var(--color-primary);

    background:
        rgba(79, 70, 229, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


.service-slider-card:hover
.service-slider-icon {
    transform:
        rotate(-7deg)
        scale(1.08);

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );
}


.service-slider-card > span {
    display: block;

    color:
        var(--color-primary);

    font-size: 0.48rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    margin-bottom: 8px;
}


.service-slider-card h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.45rem;

    line-height: 1.18;

    margin-bottom: 11px;
}


.service-slider-card > p {
    color:
        var(--color-text-soft);

    font-size: 0.78rem;

    line-height: 1.7;

    margin-bottom: 17px;
}


.service-slider-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 22px;
}


.service-slider-tags span {
    padding:
        5px 8px;

    border-radius: 999px;

    color:
        var(--color-primary-dark);

    background:
        rgba(79, 70, 229, 0.07);

    font-size: 0.55rem;

    font-weight: 700;
}


/* ============================================================
   CARD VISUALS
============================================================ */

.web-service-visual {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 24px;

    height: 135px;

    padding: 12px;

    display: grid;

    grid-template-columns:
        0.7fr 1fr 1fr;

    gap: 8px;

    border-radius: 14px;

    background:
        #f5f6fb;
}


.web-service-visual div {
    grid-row:
        span 3;

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            #dddfff,
            #f2f3ff
        );
}


.web-service-visual span {
    border-radius: 7px;

    background: white;
}


.service-network-visual {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 25px;

    height: 150px;
}


.network-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #0891b2
        );
}


.network-point {
    position: absolute;

    width: 26px;
    height: 26px;

    border-radius: 8px;

    background:
        rgba(79, 70, 229, 0.09);
}


.point-one {
    left: 18%;
    top: 15%;
}


.point-two {
    right: 18%;
    top: 15%;
}


.point-three {
    left: 18%;
    bottom: 10%;
}


.point-four {
    right: 18%;
    bottom: 10%;
}


.service-security-visual {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 7px;

    padding: 8px;

    border-radius: 14px;

    background:
        #10172b;
}


.service-security-visual > div {
    min-height: 60px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    color:
        rgba(255, 255, 255, 0.45);

    background:
        #182036;
}


.service-rack-visual {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 27px;

    padding: 13px;

    display: grid;

    gap: 7px;

    border-radius: 14px;

    background:
        #11172c;
}


.service-rack-visual span {
    height: 25px;

    border-radius: 6px;

    background:
        linear-gradient(
            90deg,
            rgba(99, 102, 241, 0.32),
            rgba(255, 255, 255, 0.06)
        );
}


.service-support-visual {
    position: absolute;

    left: 50%;
    bottom: 32px;

    transform:
        translateX(-50%);

    width: 135px;
    height: 135px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--color-primary);

    background:
        radial-gradient(
            circle,
            #eceeff,
            #f8f9ff
        );

    font-size: 2rem;
}


.service-support-visual span {
    position: absolute;

    inset: -14px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(79, 70, 229, 0.18);
}


.service-launch-visual {
    position: absolute;

    left: 50%;
    bottom: 34px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;
}


.service-launch-visual > div {
    width: 95px;
    height: 95px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );

    box-shadow:
        0 22px 50px
        rgba(79, 70, 229, 0.24);

    font-size: 1.5rem;
}


.service-launch-visual > span {
    color:
        var(--color-primary);

    font-size: 0.48rem;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.services-slider-hint {
    width: fit-content;

    margin:
        18px auto 0;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--color-text-light);

    font-size: 0.66rem;
}


/* ============================================================
   PROBLEM SECTION
============================================================ */

.services-problem-section {
    background: white;
}


.services-problem-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.58fr);

    gap: 65px;

    align-items: end;

    margin-bottom: 50px;
}


.services-problem-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(2.5rem, 4.4vw, 4.6rem);

    line-height: 1.04;

    letter-spacing: -0.052em;
}


.services-problem-heading > p {
    color:
        var(--color-text-soft);

    line-height: 1.75;
}


.services-problem-layout {
    display: grid;

    grid-template-columns:
        minmax(330px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 40px;
}


/* ============================================================
   PROBLEM OPTIONS
============================================================ */

.services-problem-options {
    display: grid;

    gap: 9px;
}


.service-problem-option {
    min-height: 74px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 12px;

    padding:
        12px 14px;

    text-align: left;

    border-radius: 14px;

    border:
        1px solid
        var(--color-border);

    background: white;

    box-shadow:
        0 6px 20px
        rgba(15, 23, 42, 0.03);

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.service-problem-option > i:first-child {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color:
        var(--color-primary);

    background:
        rgba(79, 70, 229, 0.08);
}


.service-problem-option strong {
    display: block;

    color:
        var(--color-text);

    font-size: 0.73rem;

    margin-bottom: 3px;
}


.service-problem-option small {
    color:
        var(--color-text-soft);

    font-size: 0.59rem;
}


.service-problem-option > i:last-child {
    color: #aab0bc;

    font-size: 0.61rem;
}


.service-problem-option:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(79, 70, 229, 0.16);
}


.service-problem-option.active {
    background:
        linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.08),
            rgba(124, 58, 237, 0.035)
        );

    border-color:
        rgba(79, 70, 229, 0.22);
}


.service-problem-option.active
> i:first-child {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );
}


/* ============================================================
   PROBLEM RESULT
============================================================ */

.services-problem-result {
    min-height: 600px;

    display: grid;

    grid-template-rows:
        auto 1fr;

    padding:
        clamp(30px, 4vw, 45px);

    border-radius: 30px;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 84% 10%,
            rgba(99, 102, 241, 0.27),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0c1228,
            #151c3d
        );

    box-shadow:
        0 30px 80px
        rgba(15, 23, 42, 0.15);
}


.services-problem-copy > span {
    display: block;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 0.52rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    margin-bottom: 13px;
}


.services-problem-copy h3 {
    max-width: 730px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(2rem, 3.4vw, 3.5rem);

    line-height: 1.06;

    letter-spacing: -0.045em;

    margin-bottom: 16px;
}


.services-problem-copy > p {
    max-width: 730px;

    color:
        rgba(255, 255, 255, 0.63);

    line-height: 1.76;

    margin-bottom: 20px;
}


.services-problem-highlight {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 22px;
}


.services-problem-highlight > i {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #c3c8ff;

    background:
        rgba(255, 255, 255, 0.07);
}


.services-problem-highlight small {
    display: block;

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 0.44rem;

    margin-bottom: 2px;
}


.services-problem-highlight strong {
    font-size: 0.65rem;
}


/* ============================================================
   PROBLEM VISUAL
============================================================ */

.services-problem-visual {
    position: relative;

    min-height: 270px;

    margin-top: 30px;

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}


.services-problem-visual.is-changing {
    opacity: 0;

    transform:
        translateY(8px);
}


/* ============================================================
   PROBLEM NETWORK
============================================================ */

.problem-network-demo {
    position: relative;

    min-height: 270px;

    display: grid;

    place-items: center;
}


.problem-router {
    position: relative;

    z-index: 5;

    width: 95px;
    height: 95px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #0891b2
        );

    font-size: 1.35rem;
}


.problem-wave {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(103, 232, 249, 0.14);
}


.wave-a {
    width: 160px;
    height: 160px;
}


.wave-b {
    width: 250px;
    height: 250px;
}


.wave-c {
    width: 340px;
    height: 340px;
}


.problem-device {
    position: absolute;

    z-index: 4;

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #a5f3fc;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.problem-device.device-one {
    left: 15%;
    top: 20%;
}


.problem-device.device-two {
    right: 17%;
    top: 18%;
}


.problem-device.device-three {
    right: 25%;
    bottom: 8%;
}


/* ============================================================
   PROBLEM SECURITY
============================================================ */

.problem-security-demo {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 8px;

    min-height: 270px;
}


.problem-security-demo > div {
    display: grid;

    place-items: center;

    border-radius: 14px;

    color:
        rgba(255, 255, 255, 0.45);

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    font-size: 1.35rem;
}


/* ============================================================
   PROBLEM WEB
============================================================ */

.problem-web-demo {
    display: grid;

    place-items: center;

    min-height: 270px;
}


.problem-web-window {
    width:
        min(90%, 520px);

    overflow: hidden;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.22);
}


.problem-web-header {
    height: 36px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding:
        0 12px;

    background:
        #f3f4f8;
}


.problem-web-header span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #d8dbe3;
}


.problem-web-hero {
    min-height: 180px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #f1f1ff,
            #ffffff
        );
}


.problem-web-hero > span {
    display: block;

    width: 60px;
    height: 8px;

    margin-bottom: 15px;

    border-radius: 999px;

    background:
        var(--color-primary);
}


.problem-web-hero h4 {
    color:
        var(--color-text);

    font-size: 1.3rem;

    margin-bottom: 8px;
}


.problem-web-hero p {
    width: 65%;
    height: 9px;

    border-radius: 999px;

    background:
        #dfe2eb;

    margin-bottom: 18px;
}


.problem-web-hero button {
    width: 95px;
    height: 31px;

    border-radius: 8px;

    background:
        var(--color-primary);
}


/* ============================================================
   PROBLEM AREAS
============================================================ */

.problem-areas-demo {
    position: relative;

    min-height: 270px;
}


.problem-area {
    position: absolute;

    min-width: 90px;

    padding:
        10px 12px;

    text-align: center;

    border-radius: 11px;

    color:
        rgba(255, 255, 255, 0.75);

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    font-size: 0.54rem;
}


.area-one {
    left: 8%;
    top: 15%;
}


.area-two {
    right: 8%;
    top: 15%;
}


.area-three {
    left: 8%;
    bottom: 10%;
}


.area-four {
    right: 8%;
    bottom: 10%;
}


.problem-area-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 85px;
    height: 85px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );

    font-size: 1.25rem;
}


/* ============================================================
   PROBLEM SUPPORT
============================================================ */

.problem-support-demo {
    min-height: 270px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 8px;

    width:
        min(100%, 480px);

    margin-inline: auto;
}


.problem-support-icon {
    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    margin:
        0 auto 15px;

    border-radius: 20px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-secondary)
        );

    font-size: 1.4rem;
}


.problem-support-line {
    min-height: 48px;

    display: flex;

    align-items: center;

    padding:
        0 14px;

    border-radius: 11px;

    color:
        rgba(255, 255, 255, 0.45);

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    font-size: 0.59rem;
}


.problem-support-line.complete {
    color: #86efac;
}


.problem-support-line.active {
    color: white;

    border-color:
        rgba(139, 143, 255, 0.20);
}


/* ============================================================
   PROBLEM RENEW
============================================================ */

.problem-renew-demo {
    min-height: 270px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;
}


.renew-old,
.renew-new {
    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 20px;
}


.renew-old {
    color:
        rgba(255, 255, 255, 0.52);

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}


.renew-new {
    color: white;

    background:
        linear-gradient(
            135deg,
            rgba(99, 102, 241, 0.28),
            rgba(124, 58, 237, 0.18)
        );

    border:
        1px solid
        rgba(139, 143, 255, 0.17);
}


.renew-old i,
.renew-new i {
    font-size: 1.5rem;
}


.renew-old span,
.renew-new span {
    font-size: 0.54rem;
}


/* ============================================================
   PROCESS
============================================================ */

.services-process-section {
    position: relative;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(99, 102, 241, 0.23),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0b1127,
            #151c3d
        );
}


.services-process-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.58fr);

    gap: 70px;

    align-items: end;

    margin-bottom: 45px;
}


.services-process-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(2.5rem, 4.4vw, 4.6rem);

    line-height: 1.04;

    letter-spacing: -0.052em;
}


.services-process-heading h2 span {
    display: block;

    color: #aeb6ff;
}


.services-process-heading > p {
    color:
        rgba(255, 255, 255, 0.60);

    line-height: 1.75;
}


.services-process-slider {
    display: flex;

    gap: 11px;

    overflow-x: auto;

    scroll-snap-type:
        x mandatory;

    scrollbar-width: none;

    padding-bottom: 12px;
}


.services-process-slider::-webkit-scrollbar {
    display: none;
}


.services-process-card {
    flex:
        0 0
        250px;

    min-height: 250px;

    scroll-snap-align: start;

    padding: 22px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        transform var(--transition),
        background var(--transition);
}


.services-process-card:hover {
    transform:
        translateY(-6px);

    background:
        rgba(255, 255, 255, 0.08);
}


.services-process-card > span {
    display: block;

    color:
        rgba(255, 255, 255, 0.28);

    font-size: 0.55rem;

    font-weight: 800;

    margin-bottom: 24px;
}


.services-process-card > i {
    width: 47px;
    height: 47px;

    display: grid;

    place-items: center;

    margin-bottom: 18px;

    border-radius: 13px;

    color: #c3c8ff;

    background:
        rgba(99, 102, 241, 0.14);
}


.services-process-card h3 {
    font-size: 1rem;

    margin-bottom: 8px;
}


.services-process-card p {
    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.69rem;

    line-height: 1.6;
}


/* ============================================================
   BRIDGE
============================================================ */

.services-projects-bridge {
    background: white;
}


.services-projects-bridge-card {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 26px;

    padding:
        clamp(30px, 4vw, 44px);

    border-radius: 24px;

    border:
        1px solid
        rgba(79, 70, 229, 0.10);

    background:
        linear-gradient(
            145deg,
            #f8f9ff,
            #ffffff
        );

    box-shadow:
        0 20px 60px
        rgba(15, 23, 42, 0.06);
}


.services-projects-bridge-icon {
    width: 67px;
    height: 67px;

    display: grid;

    place-items: center;

    border-radius: 19px;

    color:
        var(--color-primary);

    background:
        rgba(79, 70, 229, 0.08);

    font-size: 1.2rem;
}


.services-projects-bridge-card
> div:nth-child(2)
> span {
    display: block;

    color:
        var(--color-primary);

    font-size: 0.46rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    margin-bottom: 7px;
}


.services-projects-bridge-card h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(1.7rem, 2.8vw, 2.8rem);

    line-height: 1.08;

    letter-spacing: -0.04em;

    margin-bottom: 9px;
}


.services-projects-bridge-card p {
    max-width: 760px;

    color:
        var(--color-text-soft);

    font-size: 0.76rem;

    line-height: 1.7;
}


/* ============================================================
   SECTION SPACING
============================================================ */

.services-video-section,
.services-slider-section,
.services-problem-section,
.services-process-section,
.services-projects-bridge {
    padding-top:
        clamp(65px, 7vw, 100px);

    padding-bottom:
        clamp(65px, 7vw, 100px);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1050px) {

    .services-hero {
        min-height: auto;
    }


    .services-hero-container {
        grid-template-columns:
            1fr;

        gap: 60px;
    }


    .services-hero-content {
        max-width: 820px;
    }


    .services-hero-visual {
        width:
            min(100%, 720px);

        margin-inline: auto;
    }


    .services-video-heading,
    .services-problem-heading,
    .services-process-heading {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .services-problem-layout {
        grid-template-columns:
            1fr;
    }


    .services-problem-options {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .services-projects-bridge-card {
        grid-template-columns:
            auto 1fr;
    }


    .services-projects-bridge-card > a {
        grid-column:
            1 / -1;

        margin-left: 93px;
    }

}


@media (max-width: 767px) {

    .services-hero {
        padding:
            130px 0 80px;
    }


    .services-hero-title {
        font-size:
            clamp(2.7rem, 12vw, 4.1rem);
    }


    .services-hero-tabs {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .services-hero-tab {
        width: 100%;
    }


    .services-hero-actions {
        flex-direction: column;
    }


    .services-hero-actions .button {
        width: 100%;
    }


    .services-hero-visual {
        min-height: 480px;
    }


    .service-hero-demo {
        min-height: 450px;
    }


    .services-problem-options {
        grid-template-columns:
            1fr;
    }


    .services-video-card,
    .services-video-content {
        min-height: 510px;
    }

}


@media (max-width: 575px) {

    .services-hero {
        padding:
            110px 0 70px;
    }


    .services-hero-tabs {
        grid-template-columns:
            1fr 1fr;
    }


    .services-hero-visual {
        min-height: 400px;
    }


    .service-hero-demo {
        min-height: 390px;
    }


    .service-browser-content {
        grid-template-columns:
            46px 1fr;

        min-height: 330px;
    }


    .service-browser-sidebar {
        padding:
            13px 6px;
    }


    .service-browser-main {
        padding: 15px;
    }


    .service-browser-kpis {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .service-browser-kpis span:nth-child(3) {
        display: none;
    }


    .service-browser-chart {
        height: 150px;
    }


    .service-floating-card {
        display: none;
    }


    .hero-network-wave.wave-three {
        width: 340px;
        height: 340px;
    }


    .hero-network-device {
        width: 45px;
        height: 45px;
    }


    .hero-security-grid > div {
        min-height: 125px;
    }


    .services-video-card,
    .services-video-content {
        min-height: 460px;
    }


    .services-video-content {
        padding:
            32px 22px;
    }


    .service-slider-card {
        flex-basis: 88vw;

        min-height: 445px;
    }


    .services-problem-result {
        min-height: auto;

        padding:
            28px 20px;

        border-radius: 23px;
    }


    .services-problem-visual {
        min-height: 240px;
    }


    .problem-wave.wave-c {
        width: 280px;
        height: 280px;
    }


    .problem-renew-demo {
        gap: 10px;
    }


    .renew-old,
    .renew-new {
        width: 110px;
        height: 110px;
    }


    .services-projects-bridge-card {
        grid-template-columns:
            1fr;

        gap: 18px;

        padding:
            28px 20px;
    }


    .services-projects-bridge-card > a {
        grid-column: auto;

        margin-left: 0;

        width: 100%;
    }


    .services-video-section,
    .services-slider-section,
    .services-problem-section,
    .services-process-section,
    .services-projects-bridge {
        padding-top: 50px;

        padding-bottom: 55px;
    }

}


@media (max-width: 390px) {

    .services-hero-tabs {
        grid-template-columns:
            1fr;
    }


    .hero-network-device {
        width: 40px;
        height: 40px;
    }


    .hero-security-grid {
        gap: 5px;
    }


    .hero-security-grid > div {
        min-height: 100px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

/* @media (prefers-reduced-motion: reduce) {

    .service-floating-card {
        animation: none !important;
    }


    .service-slider-card,
    .service-slider-icon,
    .services-hero-visual,
    #servicesHeroWord,
    .services-problem-visual {
        transition: none !important;
    }

} */

/* ============================================================
   SERVICES PROBLEM UX V2
   Selector más dinámico + resultado móvil
============================================================ */

.services-problem-result {
    position: relative;
    isolation: isolate;
}

.services-problem-result::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: -120px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(99, 102, 241, 0.26),
            transparent 68%
        );
    animation:
        services-problem-glow
        6s ease-in-out
        infinite alternate;
}

@keyframes services-problem-glow {
    from {
        transform:
            translate3d(0, 0, 0)
            scale(0.94);
        opacity: 0.55;
    }

    to {
        transform:
            translate3d(-16px, -12px, 0)
            scale(1.08);
        opacity: 1;
    }
}


/* ============================================================
   OPCIONES
============================================================ */

.service-problem-option {
    position: relative;
    overflow: hidden;
}

.service-problem-option::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            105deg,
            transparent 25%,
            rgba(99, 102, 241, 0.08) 50%,
            transparent 75%
        );
    transform:
        translateX(-115%);
    transition:
        transform 0.55s ease;
}

.service-problem-option:hover::before {
    transform:
        translateX(115%);
}

.service-problem-option > i:first-child {
    transition:
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1),
        color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.service-problem-option.active
> i:first-child {
    transform:
        rotate(-7deg)
        scale(1.08);

    box-shadow:
        0 9px 22px
        rgba(79, 70, 229, 0.25);
}

.service-problem-option.active
> i:last-child {
    color:
        var(--color-primary);

    animation:
        services-problem-arrow
        1.2s ease-in-out
        infinite;
}

@keyframes services-problem-arrow {

    0%,
    100% {
        transform:
            translateX(0);
    }

    50% {
        transform:
            translateX(4px);
    }

}


/* ============================================================
   ANIMACIÓN DEL COPY
============================================================ */

.services-problem-copy.is-entering
> span {
    animation:
        services-problem-copy-in
        0.38s ease both;
}

.services-problem-copy.is-entering
> h3 {
    animation:
        services-problem-copy-in
        0.48s 0.04s ease both;
}

.services-problem-copy.is-entering
> p {
    animation:
        services-problem-copy-in
        0.52s 0.08s ease both;
}

.services-problem-copy.is-entering
.services-problem-highlight {
    animation:
        services-problem-copy-in
        0.55s 0.12s ease both;
}

.services-problem-copy.is-entering
> .button {
    animation:
        services-problem-copy-in
        0.58s 0.16s ease both;
}

@keyframes services-problem-copy-in {

    from {
        opacity: 0;
        transform:
            translateY(14px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* ============================================================
   ANIMACIÓN DE VISUALES
============================================================ */

.services-problem-visual.is-entering {
    animation:
        services-problem-visual-in
        0.55s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

@keyframes services-problem-visual-in {

    from {
        opacity: 0;
        transform:
            translateY(18px)
            scale(0.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* RED */

.problem-router {
    animation:
        services-router-pulse
        2.8s ease-in-out
        infinite;
}

@keyframes services-router-pulse {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.05);
    }

}

.problem-wave {
    animation:
        services-wave-pulse
        2.4s ease-in-out
        infinite;
}

.problem-wave.wave-b {
    animation-delay:
        0.25s;
}

.problem-wave.wave-c {
    animation-delay:
        0.5s;
}

@keyframes services-wave-pulse {

    0%,
    100% {
        opacity: 0.24;
        transform:
            translate(-50%, -50%)
            scale(0.94);
    }

    50% {
        opacity: 0.68;
        transform:
            translate(-50%, -50%)
            scale(1.04);
    }

}


/* CÁMARAS */

.problem-security-demo
i {
    animation:
        services-security-float
        3s ease-in-out
        infinite;
}

@keyframes services-security-float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-6px);
    }

}


/* WEB */

.problem-web-window {
    animation:
        services-web-window
        4s ease-in-out
        infinite;
}

@keyframes services-web-window {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}


/* ÁREAS */

.problem-area {
    animation:
        services-area-pulse
        2.8s ease-in-out
        infinite;
}

.problem-area:nth-child(2) {
    animation-delay:
        0.25s;
}

.problem-area:nth-child(4) {
    animation-delay:
        0.5s;
}

.problem-area:nth-child(5) {
    animation-delay:
        0.75s;
}

@keyframes services-area-pulse {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.06);
    }

}


/* SOPORTE */

.problem-support-icon {
    animation:
        services-support-spin
        5s ease-in-out
        infinite;
}

@keyframes services-support-spin {

    0%,
    100% {
        transform:
            rotate(0deg);
    }

    50% {
        transform:
            rotate(10deg)
            scale(1.05);
    }

}


/* RENOVACIÓN */

.renew-new {
    animation:
        services-renew-float
        3s ease-in-out
        infinite;
}

@keyframes services-renew-float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}


/* ============================================================
   CONTROLES MÓVILES
============================================================ */

.services-problem-mobile-close,
.services-problem-mobile-overlay {
    display: none;
}


@media (max-width: 767px) {

    body.services-problem-modal-open {
        overflow: hidden;
    }


    .services-problem-layout {
        display: block;
    }


    .services-problem-options {
        gap: 10px;
    }


    .service-problem-option {
        min-height: 72px;
        padding:
            12px 13px;

        border-radius:
            15px;

        box-shadow:
            0 8px 24px
            rgba(15, 23, 42, 0.045);
    }


    .service-problem-option:active {
        transform:
            scale(0.985);
    }


    /*
        En móvil el resultado deja de ocupar
        espacio debajo de las opciones.
    */

    .services-problem-result {
        position: fixed;

        z-index: 10040;

        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;
        max-height:
            min(82dvh, 760px);

        min-height: 0;

        display: block;

        padding:
            30px 21px
            24px;

        overflow-x: hidden;
        overflow-y: auto;

        border-radius:
            25px;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(
                calc(100% + 30px)
            )
            scale(0.98);

        transition:
            transform 0.42s
            cubic-bezier(
                0.22,
                1,
                0.36,
                1
            ),
            opacity 0.28s ease,
            visibility 0.28s ease;

        box-shadow:
            0 35px 90px
            rgba(2, 6, 23, 0.42);
    }


    .services-problem-result.is-mobile-open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }


    .services-problem-mobile-close {
        position: sticky;

        z-index: 20;

        top: 0;

        margin-left: auto;
        margin-bottom: 5px;

        width: 38px;
        height: 38px;

        display: grid;

        place-items: center;

        border: 1px solid
            rgba(255, 255, 255, 0.13);

        border-radius: 50%;

        color: white;

        background:
            rgba(255, 255, 255, 0.08);

        -webkit-backdrop-filter:
            blur(10px);

        backdrop-filter:
            blur(10px);
    }


    .services-problem-mobile-overlay {
        position: fixed;

        z-index: 10030;

        inset: 0;

        display: block;

        background:
            rgba(2, 6, 23, 0.58);

        -webkit-backdrop-filter:
            blur(4px);

        backdrop-filter:
            blur(4px);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition:
            opacity 0.28s ease,
            visibility 0.28s ease;
    }


    .services-problem-mobile-overlay.is-open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }


    .services-problem-copy h3 {
        padding-right: 15px;

        font-size:
            clamp(
                1.75rem,
                8vw,
                2.45rem
            );

        line-height: 1.08;
    }


    .services-problem-copy > p {
        font-size: 0.88rem;

        line-height: 1.72;
    }


    .services-problem-highlight {
        align-items:
            flex-start;

        padding:
            12px;

        border-radius:
            14px;

        background:
            rgba(
                255,
                255,
                255,
                0.045
            );
    }


    .services-problem-highlight strong {
        font-size: 0.72rem;

        line-height: 1.5;
    }


    .services-problem-copy
    > .button {
        width: 100%;

        justify-content:
            center;
    }


    .services-problem-visual {
        min-height: 220px;

        margin-top: 25px;
    }

}


@media (min-width: 768px) {

    .services-problem-mobile-close,
    .services-problem-mobile-overlay {
        display: none
        !important;
    }


    .services-problem-result {
        opacity: 1
        !important;

        visibility:
            visible
        !important;

        pointer-events:
            auto
        !important;
    }

}

/* ============================================================
   SERVICES RICH MOCKUPS V3
   Mockups HTML/CSS con identidad propia por servicio
============================================================ */

.service-rich-demo {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.rich-browser {
    width: min(100%, 640px);
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
}

.rich-browser-bar {
    min-height: 46px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 0 16px;
    background: #f5f7fb;
    border-bottom: 1px solid #e9edf4;
}

.rich-browser-dots {
    display: flex;
    gap: 5px;
}

.rich-browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.rich-browser-dots span:first-child { background: #fda4af; }
.rich-browser-dots span:nth-child(2) { background: #fde68a; }
.rich-browser-dots span:nth-child(3) { background: #86efac; }

.rich-browser-address {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #64748b;
    font-size: .62rem;
    font-weight: 700;
}

.rich-browser-address i {
    color: #16a34a;
    font-size: .52rem;
}

/* ------------------------------------------------------------
   HERO · WEB
------------------------------------------------------------ */

.web-studio {
    padding: 18px;
    background:
        radial-gradient(circle at 90% 10%, rgba(99,102,241,.11), transparent 28%),
        linear-gradient(180deg, #fff, #fafbff);
}

.web-studio-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 5px 2px 18px;
}

.web-studio-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.web-studio-brand > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    font-size: .56rem;
    font-weight: 900;
}

.web-studio-brand strong {
    color: #111827;
    font-size: .64rem;
}

.web-studio-links {
    display: flex;
    justify-content: center;
    gap: 17px;
    color: #64748b;
    font-size: .50rem;
    font-weight: 700;
}

.web-studio-nav > button {
    min-height: 30px;
    padding: 0 11px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: #111827;
    font-size: .48rem;
    font-weight: 800;
}

.web-studio-hero {
    min-height: 258px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(185px, .85fr);
    gap: 20px;
    align-items: center;
    padding: 26px;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 15%, rgba(124,58,237,.55), transparent 35%),
        linear-gradient(135deg, #0f172a, #1f2554);
}

.web-studio-copy small {
    display: block;
    margin-bottom: 9px;
    color: #a5b4fc;
    font-size: .45rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.web-studio-copy h3 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.web-studio-copy h3 span {
    display: block;
    color: #a5b4fc;
}

.web-studio-copy p {
    max-width: 310px;
    margin: 0 0 16px;
    color: rgba(255,255,255,.58);
    font-size: .64rem;
    line-height: 1.6;
}

.web-studio-copy > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.web-studio-copy button {
    min-height: 31px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    color: #111827;
    background: #fff;
    font-size: .48rem;
    font-weight: 800;
}

.web-studio-copy > div > span {
    color: rgba(255,255,255,.66);
    font-size: .48rem;
}

.web-studio-copy > div > span i {
    color: #86efac;
    margin-right: 4px;
}

.web-studio-preview {
    position: relative;
    min-height: 190px;
    display: grid;
    place-items: center;
}

.web-preview-orb {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle, rgba(255,255,255,.18), rgba(99,102,241,.11));
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.12),
        0 20px 40px rgba(0,0,0,.18);
    animation: service-web-orb 4s ease-in-out infinite;
}

.web-preview-orb i {
    font-size: 2.8rem;
}

.web-preview-card {
    position: absolute;
    z-index: 2;
    min-width: 105px;
    padding: 10px;
    border-radius: 12px;
    color: #111827;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
    animation: service-card-float 3.4s ease-in-out infinite;
}

.web-preview-card i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    margin-bottom: 6px;
    border-radius: 8px;
    color: var(--color-primary);
    background: #eef2ff;
}

.web-preview-card span,
.web-preview-card small {
    display: block;
}

.web-preview-card span {
    font-size: .7rem;
    font-weight: 900;
}

.web-preview-card small {
    color: #94a3b8;
    font-size: .43rem;
}

.web-preview-card-a {
    left: 0;
    top: 12px;
}

.web-preview-card-b {
    right: -3px;
    bottom: 8px;
    animation-delay: .7s;
}

.web-studio-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
    margin-top: 12px;
}

.web-studio-metrics > div {
    padding: 10px;
    border-radius: 11px;
    background: #f7f8fc;
    border: 1px solid #eceef5;
}

.web-studio-metrics strong,
.web-studio-metrics span {
    display: block;
}

.web-studio-metrics strong {
    margin-bottom: 2px;
    color: #111827;
    font-size: .54rem;
}

.web-studio-metrics span {
    color: #94a3b8;
    font-size: .42rem;
}

.rich-device-preview {
    position: absolute;
    z-index: 5;
    right: -18px;
    bottom: 15px;
    width: 108px;
    height: 205px;
    padding: 10px 8px;
    border: 5px solid #111827;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 25px 55px rgba(15,23,42,.24);
    transform: rotate(4deg);
    animation: service-phone-float 4s ease-in-out infinite;
}

.rich-phone-top {
    width: 32px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #111827;
}

.rich-phone-screen {
    display: grid;
    gap: 6px;
    padding: 8px;
    border-radius: 14px;
    background: linear-gradient(145deg, #eef2ff, #fff);
}

.rich-phone-brand {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: #fff;
    background: var(--color-primary);
    font-size: .42rem;
    font-weight: 900;
}

.rich-phone-screen strong {
    color: #111827;
    font-size: .58rem;
}

.rich-phone-screen small {
    color: #94a3b8;
    font-size: .39rem;
}

.rich-phone-button {
    width: 60%;
    height: 13px;
    border-radius: 5px;
    background: var(--color-primary);
}

.rich-phone-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.rich-phone-cards i {
    height: 38px;
    border-radius: 7px;
    background: #e5e7eb;
}

.rich-floating-card {
    right: 5px;
    bottom: 37px;
}

.rich-live-dot {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34,197,94,.12);
    animation: rich-live-pulse 1.5s ease-in-out infinite;
}

/* ------------------------------------------------------------
   HERO · NETWORK
------------------------------------------------------------ */

.network-command {
    width: min(100%, 650px);
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 15%, rgba(59,130,246,.28), transparent 30%),
        linear-gradient(145deg, #0c1329, #151c3d);
    box-shadow: 0 35px 80px rgba(15,23,42,.28);
}

.network-command-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 17px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.network-command-head small,
.network-command-head strong {
    display: block;
}

.network-command-head small {
    color: #818cf8;
    font-size: .42rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.network-command-head strong {
    margin-top: 3px;
    font-size: .72rem;
}

.network-command-head > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34,197,94,.09);
    font-size: .46rem;
    font-weight: 800;
}

.network-command-head > span i {
    font-size: .38rem;
}

.network-command-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 145px;
    min-height: 405px;
}

.network-command-map {
    position: relative;
    min-height: 405px;
    overflow: hidden;
    background:
        linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
    background-size: 34px 34px;
}

.network-links-svg,
.area-network-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.network-links-svg path,
.area-network-map svg path {
    fill: none;
    stroke: rgba(96,165,250,.45);
    stroke-width: 2;
    stroke-dasharray: 8 10;
    animation: network-dash 7s linear infinite;
}

.network-core-router {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 145px;
    min-height: 110px;
    padding: 16px;
    transform: translate(-50%,-50%);
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(145deg, #1e293b, #111827);
    border: 1px solid rgba(129,140,248,.28);
    box-shadow: 0 0 45px rgba(59,130,246,.22);
}

.router-signal {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    animation: router-breathe 2.8s ease-in-out infinite;
}

.network-core-router strong,
.network-core-router small {
    display: block;
}

.network-core-router strong {
    font-size: .58rem;
}

.network-core-router small {
    margin-top: 3px;
    color: #93c5fd;
    font-size: .45rem;
}

.router-leds {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 9px;
}

.router-leds i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #22c55e;
    animation: led-blink 1.2s linear infinite;
}

.router-leds i:nth-child(2) { animation-delay: .2s; }
.router-leds i:nth-child(3) { animation-delay: .4s; }
.router-leds i:nth-child(4) { animation-delay: .6s; }

.network-node {
    position: absolute;
    min-width: 94px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px;
    align-items: center;
    padding: 9px;
    border-radius: 12px;
    color: #fff;
    background: rgba(15,23,42,.78);
    border: 1px solid rgba(148,163,184,.14);
    box-shadow: 0 10px 25px rgba(0,0,0,.16);
    backdrop-filter: blur(8px);
}

.network-node i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    grid-row: 1 / 3;
    border-radius: 8px;
    color: #93c5fd;
    background: rgba(59,130,246,.12);
}

.network-node span,
.network-node small {
    display: block;
}

.network-node span {
    font-size: .48rem;
    font-weight: 800;
}

.network-node small {
    color: #86efac;
    font-size: .38rem;
}

.node-admin { left: 14px; top: 23px; }
.node-sales { right: 14px; top: 23px; }
.node-warehouse { right: 14px; bottom: 25px; }
.node-mobile { left: 14px; bottom: 25px; }

.network-command-stats {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,.035);
    border-left: 1px solid rgba(255,255,255,.07);
}

.network-command-stats > div {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.07);
}

.network-command-stats small,
.network-command-stats strong,
.network-command-stats span {
    display: block;
}

.network-command-stats small {
    color: rgba(255,255,255,.4);
    font-size: .38rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.network-command-stats strong {
    margin: 5px 0;
    font-size: .9rem;
}

.network-command-stats > div > span:not(.network-meter) {
    color: #93c5fd;
    font-size: .38rem;
}

.network-meter {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.network-meter i {
    display: block;
    width: var(--network-meter);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
}

.network-good {
    color: #86efac !important;
}

.rich-network-alert {
    right: 9px;
    bottom: 24px;
}

/* ------------------------------------------------------------
   HERO · SECURITY
------------------------------------------------------------ */

.security-center {
    width: min(100%, 650px);
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background: #0b1224;
    box-shadow: 0 35px 80px rgba(15,23,42,.3);
}

.security-center-head,
.problem-rich-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
}

.security-center-head {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.security-center-head small,
.security-center-head strong,
.problem-rich-head small,
.problem-rich-head strong {
    display: block;
}

.security-center-head small,
.problem-rich-head small {
    color: #818cf8;
    font-size: .4rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.security-center-head strong,
.problem-rich-head strong {
    margin-top: 3px;
    font-size: .68rem;
}

.security-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fecaca;
    background: rgba(239,68,68,.11);
    font-size: .43rem;
    font-weight: 900;
}

.security-live > i,
.security-live > span,
.security-live i:first-child {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: rec-pulse 1.25s ease-in-out infinite;
}

.security-monitor-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    padding: 12px;
}

.security-feed {
    position: relative;
    min-height: 155px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    color: #94a3b8;
    background:
        linear-gradient(rgba(148,163,184,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148,163,184,.025) 1px, transparent 1px),
        #111a31;
    background-size: 22px 22px;
}

.security-feed > i {
    font-size: 2.2rem;
    opacity: .75;
}

.feed-label {
    position: absolute;
    left: 9px;
    top: 8px;
    z-index: 2;
    color: rgba(255,255,255,.62);
    font-size: .38rem;
    font-weight: 800;
}

.feed-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    top: 10%;
    background: linear-gradient(90deg, transparent, rgba(34,197,94,.7), transparent);
    box-shadow: 0 0 12px rgba(34,197,94,.35);
    animation: camera-scan 3s linear infinite;
}

.security-center-foot {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    padding: 0 12px 12px;
}

.security-center-foot > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border-radius: 11px;
    background: rgba(255,255,255,.045);
}

.security-center-foot > div > i {
    color: #86efac;
}

.security-center-foot strong,
.security-center-foot small {
    display: block;
}

.security-center-foot strong {
    font-size: .48rem;
}

.security-center-foot small {
    margin-top: 2px;
    color: rgba(255,255,255,.38);
    font-size: .36rem;
}

.security-detection-card {
    right: 8px;
    bottom: 25px;
}

/* ------------------------------------------------------------
   HERO · SUPPORT
------------------------------------------------------------ */

.support-console {
    width: min(100%, 650px);
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #e8ebf2;
    box-shadow: 0 35px 80px rgba(15,23,42,.16);
}

.support-console-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 17px 20px;
    background: #f8f9fd;
    border-bottom: 1px solid #e9edf4;
}

.support-console-head small,
.support-console-head strong {
    display: block;
}

.support-console-head small {
    color: var(--color-primary);
    font-size: .4rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.support-console-head strong {
    margin-top: 3px;
    color: #111827;
    font-size: .72rem;
}

.support-status {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    color: #7c3aed;
    background: #f3e8ff;
    font-size: .43rem;
    font-weight: 900;
}

.support-ticket-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 18px 20px;
}

.support-user-badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--color-primary);
    background: #eef2ff;
}

.support-ticket-summary small,
.support-ticket-summary strong,
.support-ticket-summary span {
    display: block;
}

.support-ticket-summary small {
    color: #94a3b8;
    font-size: .38rem;
    font-weight: 900;
}

.support-ticket-summary strong {
    margin: 4px 0;
    color: #111827;
    font-size: .64rem;
}

.support-ticket-summary span {
    color: #64748b;
    font-size: .42rem;
}

.support-priority {
    padding: 9px 11px;
    text-align: right;
    border-radius: 10px;
    background: #fff7ed;
}

.support-priority strong {
    color: #ea580c;
}

.support-progress {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
    padding: 5px 20px 20px;
}

.support-progress > div {
    position: relative;
    min-height: 105px;
    padding: 12px;
    border-radius: 13px;
    background: #f8fafc;
    border: 1px solid #e8edf4;
}

.support-progress > div::after {
    content: "";
    position: absolute;
    top: 29px;
    left: calc(100% - 2px);
    width: 12px;
    height: 2px;
    background: #e2e8f0;
}

.support-progress > div:last-child::after {
    display: none;
}

.support-progress > div > i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 9px;
    color: #94a3b8;
    background: #e2e8f0;
}

.support-progress .done > i {
    color: #16a34a;
    background: #dcfce7;
}

.support-progress .active > i {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    animation: support-active-pulse 1.8s ease-in-out infinite;
}

.support-progress strong,
.support-progress small {
    display: block;
}

.support-progress strong {
    color: #111827;
    font-size: .48rem;
}

.support-progress small {
    margin-top: 3px;
    color: #94a3b8;
    font-size: .37rem;
}

.support-console-foot {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 14px 20px;
    background: #f8f9fd;
    border-top: 1px solid #e9edf4;
}

.support-tech {
    display: flex;
    align-items: center;
    gap: 9px;
}

.support-tech > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    font-size: .44rem;
    font-weight: 900;
}

.support-tech strong,
.support-tech small,
.support-time small,
.support-time strong {
    display: block;
}

.support-tech strong,
.support-time strong {
    color: #111827;
    font-size: .48rem;
}

.support-tech small,
.support-time small {
    margin-top: 2px;
    color: #94a3b8;
    font-size: .36rem;
}

.support-time {
    text-align: right;
}

.support-online-card {
    right: 7px;
    bottom: 25px;
}

/* ------------------------------------------------------------
   SLIDER · RICH VISUALS
------------------------------------------------------------ */

.service-slider-card {
    display: flex;
    flex-direction: column;
}

.service-slider-visual,
.rich-slider-network,
.rich-slider-security,
.rich-slider-rack,
.rich-slider-support,
.rich-slider-launch {
    margin-top: auto;
}

.rich-slider-web,
.rich-slider-network,
.rich-slider-security,
.rich-slider-rack,
.rich-slider-support,
.rich-slider-launch {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: 17px;
    border: 1px solid rgba(79,70,229,.09);
    background: #f8f9fd;
}

.rich-slider-web {
    padding: 12px 45px 12px 12px;
}

.slider-web-browser {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 25px rgba(15,23,42,.08);
}

.slider-web-bar {
    min-height: 25px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    background: #f4f5f9;
}

.slider-web-bar i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.slider-web-bar span {
    margin-left: auto;
    margin-right: auto;
    color: #94a3b8;
    font-size: .34rem;
}

.slider-web-page {
    padding: 9px;
}

.slider-web-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.slider-web-nav strong {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: var(--color-primary);
    font-size: .34rem;
}

.slider-web-nav span {
    width: 30px;
    height: 4px;
    border-radius: 999px;
    background: #e5e7eb;
}

.slider-web-hero {
    padding: 13px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #312e81);
}

.slider-web-hero small {
    display: block;
    margin-bottom: 5px;
    color: #a5b4fc;
    font-size: .28rem;
}

.slider-web-hero strong {
    display: block;
    max-width: 120px;
    font-size: .68rem;
    line-height: 1.1;
}

.slider-web-hero > span {
    display: block;
    width: 65%;
    height: 4px;
    margin: 7px 0;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.slider-web-hero button {
    width: 42px;
    height: 12px;
    border: 0;
    border-radius: 4px;
    background: #fff;
}

.slider-web-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
    margin-top: 7px;
}

.slider-web-cards i {
    height: 22px;
    border-radius: 5px;
    background: #eef2ff;
}

.slider-web-phone {
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 44px;
    height: 87px;
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 8px 5px;
    border: 3px solid #111827;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15,23,42,.18);
    transform: rotate(4deg);
}

.slider-web-phone > span:first-child {
    width: 14px;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: #111827;
}

.slider-web-phone strong {
    color: var(--color-primary);
    font-size: .32rem;
}

.slider-web-phone i {
    height: 18px;
    border-radius: 5px;
    background: #eef2ff;
}

.rich-slider-network {
    color: #fff;
    background:
        linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px),
        #10172d;
    background-size: 24px 24px;
}

.slider-network-status {
    position: absolute;
    z-index: 5;
    left: 10px;
    right: 10px;
    top: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-network-status span {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: #86efac;
    font-size: .36rem;
    font-weight: 800;
}

.slider-network-status span i {
    font-size: .28rem;
}

.slider-network-status strong {
    font-size: .48rem;
}

.rich-slider-network svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.rich-slider-network svg path {
    fill: none;
    stroke: rgba(96,165,250,.43);
    stroke-width: 2;
    stroke-dasharray: 6 8;
    animation: network-dash 6s linear infinite;
}

.slider-router {
    position: absolute;
    left: 50%;
    top: 54%;
    width: 75px;
    height: 58px;
    display: grid;
    place-items: center;
    transform: translate(-50%,-50%);
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, #312e81, #1d4ed8);
    box-shadow: 0 0 30px rgba(59,130,246,.28);
}

.slider-router i {
    font-size: 1.1rem;
}

.slider-router span {
    font-size: .32rem;
}

.slider-network-node {
    position: absolute;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #93c5fd;
    background: #17203a;
    border: 1px solid rgba(148,163,184,.12);
}

.slider-network-node.node-1 { left: 14px; top: 48px; }
.slider-network-node.node-2 { right: 14px; top: 48px; }
.slider-network-node.node-3 { left: 14px; bottom: 17px; }
.slider-network-node.node-4 { right: 14px; bottom: 17px; }

.rich-slider-security {
    padding: 10px;
    color: #fff;
    background: #0f172a;
}

.slider-security-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.slider-security-head span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fecaca;
    font-size: .34rem;
    font-weight: 900;
}

.slider-security-head span i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    animation: rec-pulse 1.2s ease-in-out infinite;
}

.slider-security-head small {
    color: #94a3b8;
    font-size: .32rem;
}

.slider-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.slider-security-grid > div {
    position: relative;
    min-height: 65px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    color: #94a3b8;
    background: #18223b;
}

.slider-security-grid > div small {
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: .28rem;
}

.slider-security-grid > div > span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(34,197,94,.5);
    animation: camera-scan 2.5s linear infinite;
}

.rich-slider-rack {
    padding: 12px;
    background: linear-gradient(145deg, #111827, #1f2937);
}

.slider-rack-cabinet {
    display: grid;
    gap: 7px;
    padding: 10px;
    border-radius: 11px;
    background: #060b16;
    border: 1px solid rgba(148,163,184,.12);
}

.rack-unit {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 6px;
    background: #172033;
}

.rack-unit span {
    margin-right: auto;
    color: #64748b;
    font-size: .28rem;
    font-weight: 900;
}

.rack-switch i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #22c55e;
    animation: led-blink 1.4s linear infinite;
}

.rack-patch b {
    width: 10px;
    height: 7px;
    border-radius: 2px;
    background: #334155;
}

.rack-server i {
    width: 13px;
    height: 4px;
    border-radius: 999px;
    background: #6366f1;
}

.slider-rack-status {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-top: 8px;
}

.slider-rack-status span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #cbd5e1;
    font-size: .32rem;
}

.slider-rack-status span:first-child i {
    color: #22c55e;
}

.rich-slider-support {
    padding: 12px;
    background: #fff;
}

.slider-ticket-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-ticket-head span {
    color: #64748b;
    font-size: .36rem;
    font-weight: 900;
}

.slider-ticket-head b {
    padding: 5px 7px;
    border-radius: 999px;
    color: #7c3aed;
    background: #f3e8ff;
    font-size: .3rem;
}

.slider-ticket-title {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    padding: 9px;
    border-radius: 9px;
    background: #f8fafc;
}

.slider-ticket-title > i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--color-primary);
    background: #eef2ff;
}

.slider-ticket-title strong,
.slider-ticket-title small {
    display: block;
}

.slider-ticket-title strong {
    color: #111827;
    font-size: .43rem;
}

.slider-ticket-title small {
    margin-top: 2px;
    color: #94a3b8;
    font-size: .32rem;
}

.slider-ticket-progress {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
    margin-top: 9px;
}

.slider-ticket-progress > div {
    min-height: 63px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    text-align: center;
    border-radius: 8px;
    color: #94a3b8;
    background: #f8fafc;
}

.slider-ticket-progress > div i {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #e2e8f0;
    font-size: .35rem;
}

.slider-ticket-progress > div span {
    font-size: .3rem;
}

.slider-ticket-progress .done i {
    color: #16a34a;
    background: #dcfce7;
}

.slider-ticket-progress .active i {
    color: #fff;
    background: var(--color-primary);
    animation: support-active-pulse 1.5s ease-in-out infinite;
}

.rich-slider-launch {
    padding: 14px;
    background:
        radial-gradient(circle at 85% 10%, rgba(99,102,241,.15), transparent 35%),
        #fafaff;
}

.slider-launch-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-launch-head span {
    color: var(--color-primary);
    font-size: .34rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.slider-launch-head strong {
    color: #111827;
    font-size: .6rem;
}

.slider-launch-bar {
    height: 7px;
    margin: 10px 0 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eaf7;
}

.slider-launch-bar i {
    display: block;
    width: 75%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    animation: launch-progress 3s ease-in-out infinite alternate;
}

.slider-launch-steps {
    display: grid;
    gap: 7px;
}

.slider-launch-steps span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px;
    align-items: center;
    min-height: 28px;
    padding: 5px 7px;
    border-radius: 7px;
    color: #64748b;
    background: #fff;
    font-size: .34rem;
}

.slider-launch-steps span i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #e2e8f0;
}

.slider-launch-steps .done i {
    color: #16a34a;
    background: #dcfce7;
}

.slider-launch-steps .active i {
    color: #fff;
    background: var(--color-primary);
    animation: support-active-pulse 1.5s ease-in-out infinite;
}

/* ------------------------------------------------------------
   PROBLEM RESULT · COMMON
------------------------------------------------------------ */

.problem-rich {
    width: min(100%, 570px);
    margin-inline: auto;
    overflow: hidden;
    border-radius: 21px;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.problem-rich-head {
    color: #fff;
    background: rgba(255,255,255,.045);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.problem-status-ok {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34,197,94,.08);
    font-size: .38rem;
    font-weight: 800;
}

/* Network diagnosis */

.problem-rich-network {
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(59,130,246,.21), transparent 30%),
        #11182f;
}

.problem-network-dashboard {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
}

.problem-router-pro {
    position: relative;
    min-height: 145px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 18px;
    background: linear-gradient(145deg, #17243b, #0b1120);
    border: 1px solid rgba(96,165,250,.18);
}

.router-antennas {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 8px;
    display: flex;
    justify-content: space-between;
}

.router-antennas i {
    width: 4px;
    height: 45px;
    border-radius: 99px;
    background: #334155;
    transform-origin: bottom;
}

.router-antennas i:first-child { transform: rotate(-13deg); }
.router-antennas i:last-child { transform: rotate(13deg); }

.router-wifi-pro {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #0284c7);
    box-shadow: 0 0 30px rgba(59,130,246,.3);
    animation: router-breathe 2.7s ease-in-out infinite;
}

.router-pro-leds {
    display: flex;
    gap: 6px;
    margin-top: 14px;
}

.router-pro-leds i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: led-blink 1.3s linear infinite;
}

.problem-network-kpis {
    display: grid;
    gap: 8px;
}

.problem-network-kpis > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 10px;
    align-items: end;
    padding: 10px 12px;
    border-radius: 11px;
    background: rgba(255,255,255,.055);
}

.problem-network-kpis small {
    grid-column: 1 / -1;
    color: rgba(255,255,255,.38);
    font-size: .34rem;
    font-weight: 900;
}

.problem-network-kpis strong {
    font-size: .9rem;
}

.problem-network-kpis span {
    color: #93c5fd;
    font-size: .38rem;
}

.mini-quality {
    color: #86efac !important;
}

.problem-device-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 7px;
    padding: 0 16px 16px;
}

.problem-device-row span {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 5px;
    align-items: center;
    padding: 8px;
    border-radius: 9px;
    color: rgba(255,255,255,.66);
    background: rgba(255,255,255,.04);
    font-size: .34rem;
}

.problem-device-row span i {
    color: #93c5fd;
}

.problem-device-row b {
    color: #86efac;
    font-size: .31rem;
}

/* Security monitor */

.problem-rich-security {
    color: #fff;
    background: #0c1325;
}

.problem-camera-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 7px;
    padding: 11px;
}

.problem-camera-feed {
    position: relative;
    min-height: 120px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    color: #94a3b8;
    background:
        linear-gradient(rgba(148,163,184,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148,163,184,.025) 1px, transparent 1px),
        #172038;
    background-size: 19px 19px;
}

.problem-camera-feed small {
    position: absolute;
    left: 7px;
    top: 7px;
    font-size: .3rem;
    color: rgba(255,255,255,.55);
}

.problem-camera-feed > i {
    font-size: 1.65rem;
}

.camera-rec {
    position: absolute;
    right: 7px;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    animation: rec-pulse 1.2s ease-in-out infinite;
}

.problem-security-footer {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 0 11px 11px;
}

.problem-security-footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 9px;
    border-radius: 9px;
    color: #cbd5e1;
    background: rgba(255,255,255,.045);
    font-size: .34rem;
}

.problem-security-footer span i {
    color: #86efac;
}

/* Website */

.problem-rich-web {
    position: relative;
    min-height: 330px;
    padding: 14px 70px 14px 14px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.problem-web-pro-browser {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.problem-web-pro-bar {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 9px;
    background: #f4f6fa;
}

.problem-web-pro-bar > span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
}

.problem-web-pro-bar > div {
    margin-left: auto;
    margin-right: auto;
    color: #94a3b8;
    font-size: .35rem;
}

.problem-web-pro-page {
    padding: 11px;
}

.problem-web-pro-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.problem-web-pro-nav strong {
    color: #111827;
    font-size: .45rem;
}

.problem-web-pro-nav span {
    color: #94a3b8;
    font-size: .3rem;
}

.problem-web-pro-hero {
    min-height: 160px;
    padding: 20px;
    border-radius: 13px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(99,102,241,.45), transparent 34%),
        linear-gradient(135deg, #0f172a, #312e81);
}

.problem-web-pro-hero small {
    display: block;
    margin-bottom: 7px;
    color: #a5b4fc;
    font-size: .3rem;
    font-weight: 900;
}

.problem-web-pro-hero h4 {
    max-width: 230px;
    margin: 0 0 7px;
    font-size: 1.1rem;
    line-height: 1.02;
}

.problem-web-pro-hero h4 em {
    display: block;
    color: #a5b4fc;
    font-style: normal;
}

.problem-web-pro-hero p {
    max-width: 210px;
    color: rgba(255,255,255,.58);
    font-size: .4rem;
    line-height: 1.55;
}

.problem-web-pro-hero button {
    width: 54px;
    height: 18px;
    margin-top: 8px;
    border: 0;
    border-radius: 5px;
    background: #fff;
}

.problem-web-pro-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
    margin-top: 8px;
}

.problem-web-pro-cards span {
    height: 42px;
    border-radius: 8px;
    background: #eef2ff;
}

.problem-web-phone {
    position: absolute;
    right: 5px;
    bottom: 12px;
    width: 76px;
    height: 155px;
    padding: 9px 7px;
    border: 5px solid #111827;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
    transform: rotate(5deg);
    animation: service-phone-float 4s ease-in-out infinite;
}

.problem-web-phone > div {
    width: 24px;
    height: 4px;
    margin: 0 auto 12px;
    border-radius: 99px;
    background: #111827;
}

.problem-web-phone strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: .38rem;
}

.problem-web-phone span {
    display: block;
    height: 38px;
    margin-bottom: 6px;
    border-radius: 7px;
    background: #eef2ff;
}

/* Areas map */

.problem-rich-areas {
    color: #fff;
    background:
        radial-gradient(circle at 50% 50%, rgba(99,102,241,.16), transparent 42%),
        #11182d;
}

.area-network-map {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    background:
        linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.area-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 105px;
    height: 85px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    transform: translate(-50%,-50%);
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    box-shadow: 0 0 40px rgba(59,130,246,.25);
    animation: router-breathe 2.8s ease-in-out infinite;
}

.area-hub i {
    font-size: 1.35rem;
}

.area-hub span {
    font-size: .38rem;
    font-weight: 800;
}

.area-card {
    position: absolute;
    min-width: 105px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px;
    align-items: center;
    padding: 9px;
    border-radius: 11px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(148,163,184,.12);
    box-shadow: 0 10px 25px rgba(0,0,0,.14);
}

.area-card > i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    grid-row: 1 / 3;
    border-radius: 8px;
    color: #a5b4fc;
    background: rgba(99,102,241,.13);
}

.area-card strong,
.area-card small {
    display: block;
}

.area-card strong {
    font-size: .4rem;
}

.area-card small {
    color: #86efac;
    font-size: .3rem;
}

.area-card-admin { left: 17px; top: 22px; }
.area-card-sales { right: 17px; top: 22px; }
.area-card-warehouse { left: 17px; bottom: 22px; }
.area-card-production { right: 17px; bottom: 22px; }

/* Support problem */

.problem-rich-support {
    color: #111827;
    background: #fff;
    border-color: #e5e7eb;
}

.problem-rich-support .problem-rich-head {
    color: #111827;
    background: #f8fafc;
    border-bottom-color: #e5e7eb;
}

.problem-ticket {
    padding: 14px;
}

.problem-ticket-user {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    padding: 11px;
    border-radius: 11px;
    background: #f8fafc;
}

.problem-ticket-user > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--color-primary);
    background: #eef2ff;
}

.problem-ticket-user small,
.problem-ticket-user strong,
.problem-ticket-user p {
    display: block;
}

.problem-ticket-user small {
    color: #94a3b8;
    font-size: .32rem;
    font-weight: 900;
}

.problem-ticket-user strong {
    margin: 3px 0;
    font-size: .5rem;
}

.problem-ticket-user p {
    margin: 0;
    color: #64748b;
    font-size: .36rem;
}

.problem-ticket-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
    margin-top: 9px;
}

.problem-ticket-steps > div {
    min-height: 82px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    text-align: center;
    border-radius: 10px;
    background: #f8fafc;
}

.problem-ticket-steps > div > i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #94a3b8;
    background: #e2e8f0;
}

.problem-ticket-steps .done > i {
    color: #16a34a;
    background: #dcfce7;
}

.problem-ticket-steps .active > i {
    color: #fff;
    background: var(--color-primary);
    animation: support-active-pulse 1.5s ease-in-out infinite;
}

.problem-ticket-steps strong,
.problem-ticket-steps small {
    display: block;
}

.problem-ticket-steps strong {
    font-size: .38rem;
}

.problem-ticket-steps small {
    margin-top: 2px;
    color: #94a3b8;
    font-size: .3rem;
}

.problem-support-sla {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    margin: 0 14px 14px;
    padding: 9px 11px;
    border-radius: 10px;
    background: #eef2ff;
}

.problem-support-sla > i {
    color: var(--color-primary);
}

.problem-support-sla small,
.problem-support-sla strong {
    display: block;
}

.problem-support-sla small {
    color: #94a3b8;
    font-size: .28rem;
}

.problem-support-sla strong {
    font-size: .44rem;
}

.problem-support-sla b {
    color: #16a34a;
    font-size: .34rem;
}

/* Renewal */

.problem-rich-renew {
    padding: 14px;
    color: #111827;
    background: #f8fafc;
    border-color: #e5e7eb;
}

.renew-compare {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    gap: 10px;
    align-items: center;
}

.renew-compare-card {
    position: relative;
    min-height: 235px;
    padding: 13px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.renew-compare-card > small {
    color: #94a3b8;
    font-size: .31rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.renew-device-old,
.renew-device-new {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 13px auto;
    border-radius: 18px;
    font-size: 1.6rem;
}

.renew-device-old {
    color: #64748b;
    background: #e2e8f0;
}

.renew-device-new {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 15px 30px rgba(79,70,229,.2);
    animation: service-card-float 3.3s ease-in-out infinite;
}

.renew-compare-card > strong {
    display: block;
    text-align: center;
    font-size: .5rem;
}

.renew-compare-card ul {
    display: grid;
    gap: 5px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.renew-compare-card li {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #64748b;
    font-size: .34rem;
}

.renew-compare-card.old li i {
    color: #ef4444;
}

.renew-compare-card.new li i {
    color: #22c55e;
}

.renew-score {
    position: absolute;
    right: 9px;
    top: 9px;
    font-size: .42rem;
    font-weight: 900;
}

.renew-compare-card.old .renew-score {
    color: #ef4444;
}

.renew-compare-card.new .renew-score {
    color: #16a34a;
}

.renew-upgrade-path {
    display: grid;
    place-items: center;
    gap: 7px;
    text-align: center;
}

.renew-upgrade-path > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    animation: renew-arrow-pulse 1.8s ease-in-out infinite;
}

.renew-upgrade-path small {
    color: #64748b;
    font-size: .28rem;
    font-weight: 900;
}

.renew-benefit-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.renew-benefit-bar span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    border-radius: 999px;
    color: #475569;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-size: .31rem;
}

.renew-benefit-bar span i {
    color: var(--color-primary);
}

/* ------------------------------------------------------------
   ANIMATIONS
------------------------------------------------------------ */

@keyframes service-web-orb {
    0%,100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes service-card-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes service-phone-float {
    0%,100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-8px); }
}

@keyframes rich-live-pulse {
    0%,100% { opacity: .55; transform: scale(.85); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes network-dash {
    to { stroke-dashoffset: -72; }
}

@keyframes router-breathe {
    0%,100% { transform: scale(1); box-shadow: 0 0 25px rgba(59,130,246,.18); }
    50% { transform: scale(1.05); box-shadow: 0 0 42px rgba(59,130,246,.36); }
}

@keyframes led-blink {
    0%,35%,100% { opacity: .35; }
    50%,80% { opacity: 1; }
}

@keyframes rec-pulse {
    0%,100% { opacity: .45; transform: scale(.85); }
    50% { opacity: 1; transform: scale(1.12); }
}

@keyframes camera-scan {
    0% { top: 7%; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { top: 93%; opacity: 0; }
}

@keyframes support-active-pulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 0 rgba(79,70,229,0); }
    50% { transform: scale(1.07); box-shadow: 0 0 0 6px rgba(79,70,229,.08); }
}

@keyframes launch-progress {
    from { width: 62%; }
    to { width: 82%; }
}

@keyframes renew-arrow-pulse {
    0%,100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 1050px) {
    .rich-browser,
    .network-command,
    .security-center,
    .support-console {
        width: min(100%, 700px);
        margin-inline: auto;
    }
}

@media (max-width: 767px) {

    .service-rich-demo {
        min-height: 420px;
    }

    .rich-browser-bar {
        min-height: 38px;
        padding: 0 11px;
    }

    .web-studio {
        padding: 11px;
    }

    .web-studio-links {
        display: none;
    }

    .web-studio-nav {
        grid-template-columns: 1fr auto;
    }

    .web-studio-hero {
        grid-template-columns: minmax(0,1fr) 110px;
        min-height: 205px;
        gap: 9px;
        padding: 17px;
    }

    .web-studio-copy h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }

    .web-studio-copy p {
        font-size: .52rem;
    }

    .web-preview-orb {
        width: 90px;
        height: 90px;
    }

    .web-preview-orb i {
        font-size: 2rem;
    }

    .web-preview-card {
        min-width: 78px;
        padding: 7px;
    }

    .web-preview-card-a {
        left: -4px;
    }

    .web-preview-card-b {
        right: -5px;
    }

    .rich-device-preview {
        width: 78px;
        height: 150px;
        right: -4px;
        bottom: 8px;
    }

    .web-studio-metrics > div {
        padding: 7px;
    }

    .network-command-grid {
        grid-template-columns: 1fr;
        min-height: 350px;
    }

    .network-command-map {
        min-height: 315px;
    }

    .network-command-stats {
        grid-template-columns: repeat(3,1fr);
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.07);
    }

    .network-command-stats > div {
        padding: 8px;
    }

    .security-monitor-grid {
        gap: 5px;
        padding: 8px;
    }

    .security-feed {
        min-height: 105px;
    }

    .security-center-foot {
        gap: 5px;
        padding: 0 8px 8px;
    }

    .security-center-foot > div {
        padding: 7px;
    }

    .support-ticket-summary {
        grid-template-columns: auto 1fr;
        padding: 13px;
    }

    .support-priority {
        display: none;
    }

    .support-progress {
        gap: 5px;
        padding: 5px 13px 13px;
    }

    .support-progress > div {
        min-height: 85px;
        padding: 8px;
    }

    .support-console-foot {
        padding: 10px 13px;
    }

    .service-slider-card {
        min-height: 510px;
    }

    .rich-slider-web,
    .rich-slider-network,
    .rich-slider-security,
    .rich-slider-rack,
    .rich-slider-support,
    .rich-slider-launch {
        min-height: 190px;
    }

    .problem-rich {
        width: 100%;
    }

    .problem-network-dashboard {
        grid-template-columns: 130px 1fr;
        padding: 10px;
    }

    .problem-router-pro {
        min-height: 130px;
    }

    .problem-device-row {
        gap: 4px;
        padding: 0 10px 10px;
    }

    .problem-device-row span {
        grid-template-columns: auto 1fr;
    }

    .problem-device-row b {
        grid-column: 2;
    }

    .problem-camera-feed {
        min-height: 95px;
    }

    .problem-rich-web {
        min-height: 290px;
        padding: 10px 55px 10px 10px;
    }

    .problem-web-phone {
        width: 63px;
        height: 130px;
        right: 0;
        bottom: 5px;
    }

    .area-network-map {
        min-height: 285px;
    }

    .area-card {
        min-width: 88px;
        padding: 7px;
    }

    .area-card > i {
        width: 24px;
        height: 24px;
    }

    .area-card-admin { left: 7px; top: 15px; }
    .area-card-sales { right: 7px; top: 15px; }
    .area-card-warehouse { left: 7px; bottom: 15px; }
    .area-card-production { right: 7px; bottom: 15px; }

    .renew-compare {
        grid-template-columns: 1fr 45px 1fr;
        gap: 6px;
    }

    .renew-compare-card {
        min-height: 210px;
        padding: 9px;
    }

    .renew-device-old,
    .renew-device-new {
        width: 58px;
        height: 58px;
        font-size: 1.25rem;
    }

    .renew-upgrade-path > span {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 430px) {

    .service-rich-demo {
        min-height: 385px;
    }

    .web-studio-hero {
        grid-template-columns: 1fr;
    }

    .web-studio-preview {
        display: none;
    }

    .rich-device-preview {
        right: 6px;
        bottom: 4px;
    }

    .web-studio-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .web-studio-metrics > div:last-child {
        display: none;
    }

    .network-command-head,
    .security-center-head,
    .support-console-head,
    .problem-rich-head {
        padding: 12px;
    }

    .network-node {
        min-width: 76px;
        padding: 7px;
    }

    .network-node i {
        width: 23px;
        height: 23px;
    }

    .network-node span {
        font-size: .4rem;
    }

    .network-command-stats {
        gap: 4px;
        padding: 8px;
    }

    .security-center-foot > div:nth-child(3) {
        display: none;
    }

    .security-center-foot {
        grid-template-columns: 1fr 1fr;
    }

    .support-progress {
        grid-template-columns: 1fr 1fr;
    }

    .support-progress > div::after {
        display: none;
    }

    .support-console-foot {
        align-items: flex-end;
    }

    .problem-network-dashboard {
        grid-template-columns: 1fr;
    }

    .problem-router-pro {
        min-height: 105px;
    }

    .router-antennas {
        display: none;
    }

    .problem-device-row {
        grid-template-columns: 1fr;
    }

    .problem-camera-grid {
        grid-template-columns: 1fr 1fr;
    }

    .problem-security-footer {
        flex-direction: column;
    }

    .problem-web-pro-nav span {
        display: none;
    }

    .area-card {
        min-width: 76px;
    }

    .area-card strong {
        font-size: .34rem;
    }

    .area-card small {
        display: none;
    }

    .problem-ticket-steps {
        gap: 4px;
    }

    .renew-compare {
        grid-template-columns: 1fr;
    }

    .renew-upgrade-path {
        grid-template-columns: auto 1fr;
        justify-content: center;
    }

    .renew-upgrade-path > span {
        transform: rotate(90deg);
    }

    .renew-compare-card {
        min-height: 185px;
    }

    .renew-benefit-bar {
        justify-content: flex-start;
    }
}
