/* =========================================================
   SADID AFARIN
   MODERN RESPONSIVE HERO SLIDER
   ========================================================= */

.sa-hero {
    --hero-blue: #1976d2;
    --hero-red: #dd3434;
    --hero-blue-dark: #0d47a1;
    --hero-text: #102a43;
    --hero-muted: #627d98;

    position: relative;
    width: 100%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(25, 118, 210, 0.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 55%,
            #f4f9ff 100%
        );
}


/* =========================================================
   SLIDER
   ========================================================= */

.sa-hero-slider {
    position: relative;
    width: 100%;

    min-height: 650px;
    overflow: hidden;
}

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

    display: flex;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.025);

    transition:
        opacity 0.8s ease,
        transform 1.1s cubic-bezier(.2,.8,.2,1),
        visibility 0.8s ease;

    pointer-events: none;
}

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

    transform: scale(1);

    pointer-events: auto;

    z-index: 2;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.sa-hero-container {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);

    align-items: center;

    width: min(1240px, calc(100% - 50px));
    min-height: 650px;

    margin: 0 auto;

    gap: 50px;
}


/* =========================================================
   CONTENT
   ========================================================= */

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

    max-width: 650px;

    padding-bottom: 40px;
}

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

    margin-bottom: 20px;
    padding: 8px 15px;

    border: 1px solid rgba(25, 118, 210, 0.15);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    color: #1976d2;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    direction: ltr;
}

.sa-hero-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-left: 8px;
    margin-right: 8px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 0 5px rgba(25, 118, 210, 0.08);
}


/* =========================================================
   HEADINGS
   ========================================================= */

.sa-hero-content h1,
.sa-hero-content h2 {
    max-width: 650px;

    margin: 0 0 22px;

    color: var(--hero-text);

    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 800;

    line-height: 1.35;
    letter-spacing: -1.2px;
}

.sa-hero-content h1 strong,
.sa-hero-content h2 strong {
    display: block;

    color: var(--hero-blue);

    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.sa-hero-content p {
    max-width: 600px;

    margin: 0 0 32px;

    color: var(--hero-muted);

    font-size: 15px;
    line-height: 2.2;
}


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

.sa-hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.sa-hero-primary,
.sa-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    text-decoration: none;

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.sa-hero-primary {
    gap: 13px;

    padding: 7px 8px 7px 20px;

    border-radius: 13px;

    background: var(--hero-red);
    color: #fff;

    box-shadow:
        0 12px 28px rgba(25, 118, 210, 0.22);
}

.sa-hero-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(25, 118, 210, 0.30);
}

.sa-hero-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.15);
}

.sa-hero-btn-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.sa-hero-secondary {
    padding: 0 21px;

    border: 1px solid rgba(16, 42, 67, 0.12);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.75);

    color: #486581;
}

.sa-hero-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(25, 118, 210, 0.25);

    background: #fff;

    color: var(--hero-blue);
}


/* =========================================================
   VISUAL
   ========================================================= */

.sa-hero-visual {
    position: relative;

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

    min-height: 500px;
}

.sa-hero-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(25, 118, 210, 0.10);

    filter: blur(25px);

    animation: saHeroGlow 5s ease-in-out infinite;
}

@keyframes saHeroGlow {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }

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


/* =========================================================
   ZABBIX VISUAL
   ========================================================= */

.sa-hero-main-icon {
    position: relative;
    z-index: 3;

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

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid rgba(25, 118, 210, 0.12);

    box-shadow:
        0 30px 80px rgba(25, 118, 210, 0.14),
        inset 0 0 50px rgba(25, 118, 210, 0.04);

    backdrop-filter: blur(10px);

    animation: saHeroFloat 5s ease-in-out infinite;
}

.sa-hero-main-icon img {
    width: 130px;
    height: 130px;

    object-fit: contain;
}

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

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


/* =========================================================
   ORBITS
   ========================================================= */

.sa-hero-orbit {
    position: absolute;

    border: 1px dashed rgba(25, 118, 210, 0.18);

    border-radius: 50%;

    animation: saOrbit 18s linear infinite;
}

.sa-orbit-1 {
    width: 370px;
    height: 370px;
}

.sa-orbit-2 {
    width: 500px;
    height: 500px;

    animation-duration: 28s;
    animation-direction: reverse;
}

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


/* =========================================================
   FLOATING CARDS
   ========================================================= */

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

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 15px;

    border: 1px solid rgba(16, 42, 67, 0.07);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.88);

    box-shadow:
        0 15px 35px rgba(16, 42, 67, 0.09);

    backdrop-filter: blur(10px);

    color: #627d98;

    
    font-size: 10px;

    direction: ltr;
}

.sa-floating-card strong {
    color: #102a43;
    font-size: 11px;
}

.sa-status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20bf6b;

    box-shadow:
        0 0 0 4px rgba(32, 191, 107, 0.10);
}

.sa-floating-card-1 {
    top: 23%;
    right: 0;
}

.sa-floating-card-2 {
    bottom: 15%;
    right: 4%;
}

.sa-floating-card-3 {
    top: 38%;
    left: 0;
}

.sa-floating-card-4 {
    top: 4%;
    left: 30%;
}

.sa-floating-card-5 {
    bottom: 5%;
    left: 20%;
}


/* =========================================================
   ELK VISUAL
   ========================================================= */

.sa-eyebrow-elk {
    color: #1976d2;
}

.sa-btn-elk {
    background: #1976d2;

    box-shadow:
        0 12px 28px rgba(0, 169, 143, 0.22);
}

.sa-elk-visual {
    position: relative;

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

    min-height: 500px;
}

.sa-elk-visual .sa-hero-glow {
    background: rgba(0, 169, 143, 0.11);
}

.sa-elk-logo {
    position: relative;
    z-index: 5;

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

    width: 235px;
    height: 235px;

    border-radius: 35px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(0, 169, 143, 0.13);

    box-shadow:
        0 30px 80px rgba(0, 169, 143, 0.13),
        0 10px 30px rgba(16, 42, 67, 0.05);

    backdrop-filter: blur(12px);

    transform: rotate(-2deg);

    animation: saElkFloat 5s ease-in-out infinite;
}

.sa-elk-logo span {
    margin-top: 5px;

    color: #486581;

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

    letter-spacing: 1px;

    direction: ltr;
}

@keyframes saElkFloat {

    0%,
    100% {
        transform:
            rotate(-2deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-2deg)
            translateY(-10px);
    }
}

.sa-elk-logo img {
    width: 145px;
    height: 145px;

    object-fit: contain;
}

/* .sa-data-lines {
    position: absolute;

    display: flex;
    flex-direction: column;

    gap: 14px;

    width: 450px;

    opacity: 0.15;
}

.sa-data-lines span {
    display: block;

    width: 100%;
    height: 2px;

    background: #1976d2;

    transform-origin: right;

    animation: saDataLine 3s ease-in-out infinite;
}

.sa-data-lines span:nth-child(2) {
    animation-delay: .4s;
}

.sa-data-lines span:nth-child(3) {
    animation-delay: .8s;
}

.sa-data-lines span:nth-child(4) {
    animation-delay: 1.2s;
}

.sa-data-lines span:nth-child(5) {
    animation-delay: 1.6s;
}


@keyframes saDataLine {
    0%,
    100% {
        transform: scaleX(.5);
    }

    50% {
        transform: scaleX(1);
    }
} */

.sa-log-card {
    position: absolute;
    z-index: 5;

    padding: 12px 15px;

    border-radius: 10px;

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

    border: 1px solid rgba(0, 169, 143, .12);

    box-shadow:
        0 15px 30px rgba(16, 42, 67, .08);

    
    direction: ltr;
}

.sa-log-card small {
    display: block;

    margin-bottom: 3px;

    color: #1976d2;

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

.sa-log-card strong {
    color: #486581;
    font-size: 10px;
}

.sa-log-card-1 {
    top: 52%;
    right: 0;
}

.sa-log-card-2 {
    top: 23%;
    left: 0;
}

.sa-log-card-3 {
    bottom: 5%;
    right: 15%;
}

.sa-log-card-4 {
    top: 0%;
    left: 32%;
}

.sa-log-card-5 {
    bottom: 3%;
    left: 30%;
}

/* =========================================================
   KIBANA / LOGSTASH COMPONENTS
   ========================================================= */

.sa-elk-component {
    position: absolute;
    z-index: 7;

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

    width: 125px;
    height: 125px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(16, 42, 67, 0.07);

    box-shadow:
        0 20px 45px rgba(16, 42, 67, 0.10);

    backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.sa-elk-component:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(16, 42, 67, 0.14);
}

.sa-elk-component-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    margin-bottom: 8px;
}

.sa-elk-component-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.sa-elk-component span {
    color: #486581;

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

    direction: ltr;
}


/* =========================================================
   POSITIONS
   ========================================================= */

.sa-elk-logstash {
    left: 2%;
    bottom: 17%;

    animation: saComponentFloat 5s 0.5s ease-in-out infinite;
}

.sa-elk-kibana {
    right: 2%;
    top: 17%;

    animation: saComponentFloat 5s 1s ease-in-out infinite;
}

@keyframes saComponentFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}


/* =========================================================
   CONNECTION LINES
   ========================================================= */

.sa-elk-connection {
    position: absolute;
    z-index: 2;

    height: 2px;

    width: 145px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 169, 143, 0),
            rgba(0, 169, 143, 0.30),
            rgba(0, 169, 143, 0)
        );

    transform-origin: center;
}

.sa-elk-connection-left {
    left: 19%;
    bottom: 36%;

    transform: rotate(-28deg);
}

.sa-elk-connection-right {
    right: 19%;
    top: 36%;

    transform: rotate(-28deg);
}


/* =========================================================
   ELK DATA LINES
   ========================================================= */

.sa-elk-visual .sa-data-lines {
    position: absolute;
    z-index: 1;

    display: flex;
    flex-direction: column;

    gap: 14px;

    width: 470px;

    opacity: 0.12;
}

.sa-elk-visual .sa-data-lines span {
    display: block;

    width: 100%;
    height: 2px;

    background: #00a98f;

    transform-origin: right;

    animation: saDataLine 3s ease-in-out infinite;
}

.sa-elk-visual .sa-data-lines span:nth-child(2) {
    animation-delay: .4s;
}

.sa-elk-visual .sa-data-lines span:nth-child(3) {
    animation-delay: .8s;
}

.sa-elk-visual .sa-data-lines span:nth-child(4) {
    animation-delay: 1.2s;
}

.sa-elk-visual .sa-data-lines span:nth-child(5) {
    animation-delay: 1.6s;
}

/* =========================================================
   AI VISUAL
   ========================================================= */

.sa-eyebrow-ai {
    color: #375f79;
}

.sa-btn-ai {
    background: #0568a9;

    box-shadow:
        0 12px 28px rgba(124, 77, 255, 0.22);
}

.sa-ai-visual {
    position: relative;

    width: 560px;
    height: 520px;

    margin: 0 auto;
}

/* =========================================================
   CENTRAL AI GLOW
   ========================================================= */

.sa-ai-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 300px;
    height: 300px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 77, 255, 0.18) 0%,
            rgba(124, 77, 255, 0.08) 35%,
            transparent 70%
        );

    filter: blur(15px);

    animation: saAiGlow 4s ease-in-out infinite;
}

@keyframes saAiGlow {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.15);
    }
}

/* =========================================================
   AI CORE
   ========================================================= */

.sa-ai-core {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 10;

    width: 170px;
    height: 170px;

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

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

    border-radius: 45px;

    background:
        radial-gradient(
            circle at 35% 30%,
            #1b1230 0%,
            #080808 55%,
            #000000 100%
        );

    border: 1px solid rgba(167, 139, 250, 0.30);

    box-shadow:
        0 0 40px rgba(124, 77, 255, 0.16),
        0 0 100px rgba(124, 77, 255, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.7);

    animation: saAiCoreFloat 5s ease-in-out infinite;
}

.sa-ai-core span {
    color: #ffffff;

    

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

    letter-spacing: -3px;

    text-shadow:
        0 0 15px rgba(167, 139, 250, 0.9),
        0 0 40px rgba(124, 77, 255, 0.5);
}

@keyframes saAiCoreFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}


.sa-ai-ring {
    position: absolute;

    border: 1px dashed rgba(124, 77, 255, .2);

    border-radius: 50%;

    animation: saOrbit 20s linear infinite;
}

.sa-ai-ring-1 {
    width: 310px;
    height: 310px;
}

.sa-ai-ring-2 {
    width: 450px;
    height: 450px;

    animation-duration: 30s;
    animation-direction: reverse;
}

/* =========================================================
   AI LOGO NODES
   ========================================================= */

.sa-ai-node {
    position: absolute;

    z-index: 8;

    width: 82px;
    height: 82px;

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

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgb(255, 255, 255)
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(15px);

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

.sa-ai-node img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}


/* Hover */

.sa-ai-node:hover {
    border-color: rgba(167, 139, 250, 0.45);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(124, 77, 255, 0.12);

    transform: translateY(-6px) scale(1.05);
}

/* =========================================================
   NODE POSITIONS
   ========================================================= */

/* Zabbix — top */
.sa-ai-node-zabbix {
    top: 15px;
    left: 50%;

    transform: translateX(-50%);

    animation: saNodeFloat 5s ease-in-out infinite;
}


/* ELK — upper right */
.sa-ai-node-elk {
    top: 105px;
    right: 25px;

    animation: saNodeFloat 5s .6s ease-in-out infinite;
}


/* NetBox — lower right */
.sa-ai-node-netbox {
    bottom: 70px;
    right: 35px;

    animation: saNodeFloat 5s 1.2s ease-in-out infinite;
}


/* Jira — bottom */
.sa-ai-node-jira {
    bottom: 5px;
    left: 50%;

    transform: translateX(-50%);

    animation: saNodeFloat 5s 1.8s ease-in-out infinite;
}


/* ClickHouse — lower left */
.sa-ai-node-clickhouse {
    bottom: 70px;
    left: 35px;

    animation: saNodeFloat 5s 2.4s ease-in-out infinite;
}


/* Wiki — upper left */
.sa-ai-node-wiki {
    top: 105px;
    left: 25px;

    animation: saNodeFloat 5s 3s ease-in-out infinite;
}


@keyframes saNodeFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -7px;
    }
}

/* =========================================================
   CONNECTION LINES
   ========================================================= */

.sa-ai-line {
    position: absolute;

    z-index: 3;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(254, 254, 255, 0.702),
            transparent
        );

    transform-origin: left center;

    opacity: 0.7;
}


/* Zabbix → AI */

.sa-ai-line-zabbix {
    width: 115px;

    top: 105px;
    left: 60%;

    transform:
        translateX(-50%)
        rotate(90deg);
}


/* ELK → AI */

.sa-ai-line-elk {
    width: 160px;

    top: 30%;
    left: 78%;

    transform: rotate(155deg);
}


/* NetBox → AI */

.sa-ai-line-netbox {
    width: 145px;

    bottom: 28%;
    left: 78%;

    transform: rotate(-155deg);
}


/* Jira → AI */

.sa-ai-line-jira {
    width: 110px;

    bottom: 40%;
    left: 60%;

    transform:
        translateX(-50%)
        rotate(90deg);
}


/* ClickHouse → AI */

.sa-ai-line-clickhouse {
    width: 145px;

    bottom: 28%;
    left: 20%;

    transform: rotate(-25deg);
}


/* Wiki → AI */

.sa-ai-line-wiki {
    width: 160px;

    top: 30%;
    left: 20%;

    transform: rotate(25deg);
}

.sa-ai-node-elk img,
.sa-ai-node-netbox img,
.sa-ai-node-jira img,
.sa-ai-node-zabbix img {
    filter: drop-shadow(
        0 3px 10px rgba(255, 255, 255, 0.08)
    );
}

.sa-ai-node-wiki img,
.sa-ai-node-clickhouse img {
    filter:
        brightness(1.15)
        drop-shadow(
            0 3px 12px rgba(167, 139, 250, 0.15)
        );
}


/* Mobile Version */
@media (max-width: 700px) {

    .sa-ai-visual {
        width: 360px;
        height: 390px;

        transform: scale(.82);
        transform-origin: center top;
    }

    .sa-ai-core {
        width: 135px;
        height: 135px;

        border-radius: 35px;
    }

    .sa-ai-core span {
        font-size: 42px;
    }

    .sa-ai-node {
        width: 65px;
        height: 65px;

        border-radius: 17px;
    }

    .sa-ai-node img {
        width: 38px;
        height: 38px;
    }

    .sa-ai-node-zabbix {
        top: 5px;
    }

    .sa-ai-node-elk {
        top: 75px;
        right: 0;
    }

    .sa-ai-node-netbox {
        bottom: 50px;
        right: 10px;
    }

    .sa-ai-node-jira {
        bottom: 0;
    }

    .sa-ai-node-clickhouse {
        bottom: 50px;
        left: 10px;
    }

    .sa-ai-node-wiki {
        top: 75px;
        left: 0;
    }

}


/* =========================================================
   NETBOX VISUAL
   ========================================================= */

.sa-eyebrow-netbox {
    color: #00a98f;
}

.sa-btn-netbox {
    background: #00a98f;
}

.sa-network {
    position: relative;

    width: 430px;
    height: 430px;
    animation: saHeroFloat 4s ease-in-out infinite;
    z-index: 5;
}

.sa-network-center {
    position: absolute;

    top: 50%;
    left: 50%;

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

    width: 150px;
    height: 120px;

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

    border-radius: 28px;

    background: #fff;

    border: 1px solid rgba(25, 118, 210, .15);

    color: #00a98f;

    
    font-size: 26px;
    font-weight: 900;

    box-shadow:
        0 30px 70px rgba(25, 118, 210, .13);

    z-index: 5;
}

.sa-network-node {
    position: absolute;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: #fff;

    border: 1px solid rgba(25, 118, 210, .15);

    box-shadow:
        0 10px 25px rgba(16, 42, 67, .08);

    animation: saNetboxCenterFloat 4s ease-in-out infinite;
}

@keyframes saNetboxCenterFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}


.node-1 {
    top: 12%;
    left: 50%;
}

.node-2 {
    right: 10%;
    top: 50%;
    animation-delay: .5s;
}

.node-3 {
    bottom: 12%;
    left: 50%;
    animation-delay: 1s;
}

.node-4 {
    left: 10%;
    top: 50%;
    animation-delay: 1.5s;
}

.network-line {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 170px;
    height: 1px;

    background: rgba(25, 118, 210, .2);

    transform-origin: left center;
}

.line-1 {
    transform: rotate(-90deg);
}

.line-2 {
    transform: rotate(0deg);
}

.line-3 {
    transform: rotate(90deg);
}

.line-4 {
    transform: rotate(180deg);
}


/* =========================================================
   JIRA VISUAL
   ========================================================= */

.sa-eyebrow-jira {
    color: #2684ff;
}

.sa-btn-jira {
    background: #2684ff;

    box-shadow:
        0 12px 28px rgba(38, 132, 255, .22);
}

.sa-jira-board {
    position: relative;

    display: grid;
    grid-template-columns: 90px repeat(3, 1fr);

    align-items: start;

    width: 450px;
    min-height: 290px;

    padding: 25px;

    gap: 12px;

    border-radius: 22px;

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

    border: 1px solid rgba(38, 132, 255, .12);

    box-shadow:
        0 30px 80px rgba(38, 132, 255, .13);

    transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
}

.sa-jira-logo {
    position: relative;
    z-index: 5;

    width: 95px;
    height: 95px;

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

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(38, 132, 255, 0.15);

    box-shadow:
        0 20px 50px rgba(38, 132, 255, 0.15);

    backdrop-filter: blur(10px);

    animation: saJiraLogoFloat 5s ease-in-out infinite;
}

.sa-jira-logo img {
    width: 62px;
    height: 62px;

    object-fit: contain;
}

@keyframes saJiraLogoFloat {

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

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

.sa-jira-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 40px;
}


.sa-jira-column span {
    display: flex;
    align-items: center;
    
    min-height: 38px;

    padding: 7px 7px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(38, 132, 255, 0.08);

    color: #344563;

    font-size: 10px;
    font-weight: 600;
    

    box-shadow:
        0 7px 18px rgba(9, 30, 66, 0.07);

    /* direction: rtl; */
    direction: ltr;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   ARROWS
   ========================================================= */

.sa-hero-arrow {
    position: absolute;
    z-index: 10;

    top: 50%;

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

    width: 46px;
    height: 46px;

    transform: translateY(-50%);

    border: 1px solid rgba(16, 42, 67, .08);
    border-radius: 50%;

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

    color: #486581;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(16, 42, 67, .06);

    backdrop-filter: blur(8px);

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.sa-hero-arrow:hover {
    transform: translateY(-50%) scale(1.08);

    background: #1976d2;
    color: #fff;
}

.sa-hero-arrow svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.sa-hero-prev {
    left: 25px;
}

.sa-hero-next {
    right: 25px;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.sa-hero-pagination {
    position: absolute;

    z-index: 10;

    bottom: 27px;
    left: 50%;

    display: flex;
    align-items: center;

    gap: 8px;

    transform: translateX(-50%);
}

.sa-hero-pagination button {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #cbd5e1;

    cursor: pointer;

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

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

    border-radius: 10px;

    background: #1976d2;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.sa-hero-progress {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: rgba(25, 118, 210, .08);

    z-index: 10;
}

.sa-hero-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: #1976d2;
}

.sa-hero-progress.is-running span {
    animation: saProgress 6s linear;
}

@keyframes saProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* =========================================================
   SLIDE ANIMATION
   ========================================================= */

.sa-hero-slide.is-active .sa-hero-content {
    animation: saContentIn .8s .15s both;
}

.sa-hero-slide.is-active .sa-hero-visual {
    animation: saVisualIn 1s .1s both;
}

@keyframes saContentIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

@keyframes saVisualIn {
    from {
        opacity: 0;
        transform: scale(.94) translateX(-20px);
    }

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


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

@media (max-width: 1000px) {

    .sa-hero-slider,
    .sa-hero-container {
        min-height: 620px;
    }

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

        gap: 20px;
    }

    .sa-hero-content h1,
    .sa-hero-content h2 {
        font-size: clamp(32px, 5vw, 48px);
    }

    .sa-hero-visual {
        transform: scale(.82);
    }

    .sa-hero-arrow {
        width: 40px;
        height: 40px;
    }

    .sa-hero-prev {
        left: 12px;
    }

    .sa-hero-next {
        right: 12px;
    }
}


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

@media (max-width: 700px) {

    .sa-hero-slider,
    .sa-hero-container {
        min-height: 680px;
    }

    .sa-hero-container {
        display: flex;
        flex-direction: column;

        justify-content: center;

        width: min(100% - 30px, 560px);

        gap: 0;

        padding: 50px 0 80px;
    }

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

        max-width: none;

        padding: 0;

        text-align: center;
    }

    .sa-hero-eyebrow {
        margin-bottom: 15px;

        font-size: 9px;
    }

    .sa-hero-content h1,
    .sa-hero-content h2 {
        margin-bottom: 15px;

        font-size: clamp(29px, 8vw, 40px);

        line-height: 1.45;
        letter-spacing: -.5px;
    }

    .sa-hero-content p {
        margin: 0 auto 23px;

        max-width: 480px;

        font-size: 12.5px;
        line-height: 2;
    }

    .sa-hero-actions {
        justify-content: center;
    }

    .sa-hero-primary,
    .sa-hero-secondary {
        min-height: 47px;

        font-size: 11px;
    }

    .sa-hero-primary {
        padding-left: 14px;
    }

    .sa-hero-btn-icon {
        width: 33px;
        height: 33px;
    }

    .sa-hero-visual {
        width: 100%;
        min-height: 290px;

        transform: scale(.62);
        transform-origin: center top;

        margin-top: -25px;
    }

    .sa-hero-glow {
        width: 350px;
        height: 350px;
    }

    .sa-hero-main-icon {
        width: 210px;
        height: 210px;
    }

    .sa-hero-orbit.sa-orbit-2 {
        width: 430px;
        height: 430px;
    }


    .sa-hero-arrow {
        top: auto;
        bottom: 22px;

        width: 36px;
        height: 36px;

        transform: none;
    }

    .sa-hero-arrow:hover {
        transform: scale(1.08);
    }

    .sa-hero-prev {
        left: 20px;
    }

    .sa-hero-next {
        right: 20px;
    }

    .sa-hero-pagination {
        bottom: 36px;
    }

    .sa-hero-progress {
        height: 2px;
    }
}


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

@media (max-width: 420px) {

    .sa-hero-slider,
    .sa-hero-container {
        min-height: 640px;
    }

    .sa-hero-container {
        padding-top: 35px;
        position: relative;
        z-index: 2;
    }

    .sa-hero-content h1,
    .sa-hero-content h2 {
        font-size: 28px;
    }

    .sa-hero-content p {
        font-size: 12px;
    }

    .sa-hero-secondary {
        display: none;
    }

    .sa-hero-visual {
        transform: scale(.55);
        margin-top: -55px;
    }
}

/* =========================================================
   SLIDE BACKGROUNDS
   ========================================================= */

/* .sa-slide-zabbix {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(212, 0, 0, 0.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #07182e 0%,
            #0b2948 55%,
            #06111f 100%
        );
}


.sa-slide-elk {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(25, 118, 210, 0.30),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061a32 0%,
            #0b3761 50%,
            #04101e 100%
        );
} */

.sa-slide-ai {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(17, 10, 34, 0.3),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #10072b 0%,
            #0d0621 50%,
            #09051c 100%
        );
}


/* .sa-slide-netbox {
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(0, 169, 143, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071c1b 0%,
            #092d2b 50%,
            #031312 100%
        );
} */

.sa-slide-jira {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(38, 132, 255, 0.30),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061a38 0%,
            #0b4a91 50%,
            #031124 100%
        );
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    .sa-hero-slide,
    .sa-hero-slide.is-active .sa-hero-content,
    .sa-hero-slide.is-active .sa-hero-visual,
    .sa-hero-glow,
    .sa-hero-main-icon,
    .sa-hero-orbit,
    .sa-ai-core span,
    .sa-ai-ring,
    .sa-network-node,
    .sa-data-lines span {
        animation: none !important;
        transition: none !important;
    }
}

/* .sa-slide-zabbix .sa-hero-content h1,
.sa-slide-zabbix .sa-hero-content h2,
.sa-slide-elk .sa-hero-content h1,
.sa-slide-elk .sa-hero-content h2, */
.sa-slide-ai .sa-hero-content h1,
.sa-slide-ai .sa-hero-content h2,
/* .sa-slide-netbox .sa-hero-content h1,
.sa-slide-netbox .sa-hero-content h2, */
.sa-slide-jira .sa-hero-content h1,
.sa-slide-jira .sa-hero-content h2 {
    color: #fff;
}

/* .sa-slide-zabbix .sa-hero-content p,
.sa-slide-elk .sa-hero-content p, */
.sa-slide-ai .sa-hero-content p,
/* .sa-slide-netbox .sa-hero-content p, */
.sa-slide-jira .sa-hero-content p {
    color: rgba(255, 255, 255, 0.72);
}

.sa-slide-zabbix .sa-hero-content h1 strong {
    color: #c71c1c;
}

.sa-slide-elk .sa-hero-content h2 strong {
    color: #1080dc;
}

.sa-slide-ai .sa-hero-content h2 strong {
    color: #67b5e8;
}

.sa-slide-netbox .sa-hero-content h2 strong {
    color: #149680;
}

.sa-slide-jira .sa-hero-content h2 strong {
    color: #5aa7ff;
}