/* =========================================================
   LBS SOFTWARE
   ENTERPRISE SOFTWARE SOLUTIONS
   assets/css/enterprise.css
   ========================================================= */

:root {
    --ent-navy: #061a33;
    --ent-navy-2: #102b4d;
    --ent-blue: #087cff;
    --ent-cyan: #18c9e8;
    --ent-purple: #7657ff;
    --ent-pink: #ec4899;
    --ent-orange: #ff9f43;
    --ent-green: #20b86b;
    --ent-text: #18283c;
    --ent-muted: #697b8f;
    --ent-border: #e0e9f2;
    --ent-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-enterprise-page {
    width: 100%;
    overflow: hidden;
    color: var(--ent-text);
    background: #fff;
}

.lbs-enterprise-page *,
.lbs-enterprise-page *::before,
.lbs-enterprise-page *::after {
    box-sizing: border-box;
}

.lbs-enterprise-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-enterprise-page .section {
    padding: 90px 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.ent-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--ent-blue);
    font-size: 10px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ent-heading {
    max-width: 830px;
    margin: 0 auto 50px;
    text-align: center;
}

.ent-heading h2 {
    margin: 0 0 17px;
    color: var(--ent-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.ent-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--ent-blue),
            var(--ent-purple),
            var(--ent-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ent-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.ent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 23px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
}

.ent-btn:hover {
    transform: translateY(-2px);
}

.ent-btn-primary {
    border: 1px solid var(--ent-blue);
    background:
        linear-gradient(
            135deg,
            var(--ent-blue),
            var(--ent-purple)
        );
    color: #fff;
    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}

.ent-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8,124,255,.30);
}

.ent-btn-outline {
    border: 1px solid #cbd8e7;
    background: #fff;
    color: var(--ent-navy);
}

.ent-btn-outline:hover {
    border-color: var(--ent-blue);
    color: var(--ent-blue);
}

.ent-btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--ent-purple);
    box-shadow:
        0 10px 30px rgba(0,0,0,.10);
}

.ent-btn-dark {
    border:
        1px solid rgba(255,255,255,.20);
    background:
        rgba(255,255,255,.06);
    color: #fff;
}

.ent-btn-dark:hover {
    background:
        rgba(255,255,255,.12);
}


/* =========================================================
   HERO
   ========================================================= */

.ent-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--ent-border);
    background:
        radial-gradient(
            circle at 7% 20%,
            rgba(24,201,232,.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 93% 15%,
            rgba(118,87,255,.17),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f2fbff 0%,
            #fff 48%,
            #fbf7ff 100%
        );
}

.ent-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .30;
    background-image:
        linear-gradient(
            rgba(8,124,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.045) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 18%,
            #000 82%,
            transparent
        );
}

.ent-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ent-orb-one {
    width: 470px;
    height: 470px;
    left: -235px;
    bottom: -235px;
    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.19),
            transparent 70%
        );
}

.ent-orb-two {
    width: 540px;
    height: 540px;
    right: -270px;
    top: -270px;
    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.19),
            transparent 70%
        );
}

.ent-hero-inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);
    align-items: center;
    gap: 45px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.ent-hero-content {
    max-width: 590px;
}

.ent-hero-content h1 {
    margin: 0 0 23px;
    color: var(--ent-navy);
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: .96;
    letter-spacing: -.065em;
}

.ent-hero-content h1 span,
.ent-hero-content h1 strong {
    display: block;
}

.ent-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--ent-blue),
            var(--ent-cyan)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--ent-purple),
            var(--ent-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-hero-content > p {
    max-width: 570px;
    margin: 0 0 28px;
    color: var(--ent-muted);
    font-size: 15px;
    line-height: 1.8;
}

.ent-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ent-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.ent-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #8090a1;
    font-size: 8px;
    font-weight: 700;
}

.ent-trust strong {
    color: var(--ent-navy);
    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   HERO CONTROL CENTER
   ========================================================= */

.ent-hero-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ent-glow {
    position: absolute;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.14),
            rgba(24,201,232,.06) 42%,
            transparent 70%
        );
}

.ent-control-panel {
    position: relative;
    z-index: 10;
    width: min(560px, 100%);
    padding: 21px;
    border: 1px solid rgba(220,231,241,.95);
    border-radius: 19px;
    background:
        rgba(255,255,255,.96);
    box-shadow:
        0 28px 65px rgba(7,27,53,.13);
    backdrop-filter: blur(15px);
    transform: rotate(-1.3deg);
}


/* Panel Header */

.ent-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px;
}

.ent-panel-header small {
    display: block;
    margin-bottom: 4px;
    color: #8292a4;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ent-panel-header strong {
    color: var(--ent-navy);
    font-size: 14px;
}

.ent-panel-header > span {
    padding: 6px 9px;
    border-radius: 20px;
    background: #e9faf1;
    color: var(--ent-green);
    font-size: 6px;
    font-weight: 900;
    white-space: nowrap;
}


/* KPI */

.ent-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 7px;
    margin-bottom: 15px;
}

.ent-kpi {
    padding: 11px;
    border: 1px solid #e4ebf3;
    border-radius: 9px;
    background: #fbfdff;
}

.ent-kpi small {
    display: block;
    margin-bottom: 5px;
    color: #8998a8;
    font-size: 5px;
    font-weight: 900;
}

.ent-kpi strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ent-navy);
    font-size: 11px;
}

.ent-kpi span {
    font-size: 6px;
    font-weight: 800;
}

.ent-kpi.blue {
    border-top: 2px solid var(--ent-blue);
}

.ent-kpi.blue span {
    color: var(--ent-blue);
}

.ent-kpi.purple {
    border-top: 2px solid var(--ent-purple);
}

.ent-kpi.purple span {
    color: var(--ent-purple);
}

.ent-kpi.orange {
    border-top: 2px solid var(--ent-orange);
}

.ent-kpi.orange span {
    color: #dc872b;
}

.ent-kpi.green {
    border-top: 2px solid var(--ent-green);
}

.ent-kpi.green span {
    color: var(--ent-green);
}


/* =========================================================
   ARCHITECTURE PANEL
   ========================================================= */

.ent-architecture {
    padding: 15px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #faf8ff
        );
}

.ent-architecture-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.ent-architecture-title small {
    display: block;
    margin-bottom: 4px;
    color: #8a99a8;
    font-size: 5px;
    font-weight: 900;
    letter-spacing: .10em;
}

.ent-architecture-title strong {
    color: var(--ent-navy);
    font-size: 11px;
}

.ent-architecture-map {
    position: relative;
    height: 215px;
    overflow: hidden;
    border-radius: 9px;
    background:
        radial-gradient(
            circle at center,
            rgba(118,87,255,.09),
            transparent 38%
        ),
        #fff;
}

.ent-architecture-map::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image:
        linear-gradient(
            rgba(8,124,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.04) 1px,
            transparent 1px
        );
    background-size: 24px 24px;
}

.ent-arch-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 8;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--ent-blue),
            var(--ent-purple),
            var(--ent-pink)
        );
    color: #fff;
    box-shadow:
        0 13px 30px rgba(118,87,255,.23);
}

.ent-arch-center strong {
    font-size: 17px;
    font-weight: 950;
}

.ent-arch-center span {
    margin-top: 2px;
    font-size: 5px;
    font-weight: 900;
    letter-spacing: .08em;
}


/* Architecture Nodes */

.ent-arch-node {
    position: absolute;
    z-index: 10;
    min-width: 62px;
    padding: 7px 9px;
    border: 1px solid #dfe8f1;
    border-radius: 7px;
    background: #fff;
    color: var(--ent-navy);
    text-align: center;
    font-size: 5px;
    font-weight: 900;
    box-shadow:
        0 8px 17px rgba(7,27,53,.07);
}

.arch-crm {
    left: 20px;
    top: 32px;
    border-left: 2px solid var(--ent-blue);
}

.arch-erp {
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    border-left: 2px solid var(--ent-purple);
}

.arch-api {
    right: 20px;
    top: 32px;
    border-left: 2px solid var(--ent-orange);
}

.arch-data {
    left: 20px;
    bottom: 32px;
    border-left: 2px solid var(--ent-green);
}

.arch-hr {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    border-left: 2px solid var(--ent-pink);
}

.arch-cloud {
    right: 20px;
    bottom: 32px;
    border-left: 2px solid var(--ent-cyan);
}


/* Architecture Lines */

.ent-arch-line {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 112px;
    height: 1px;
    transform-origin: left center;
    background:
        linear-gradient(
            90deg,
            rgba(8,124,255,.05),
            rgba(118,87,255,.30),
            transparent
        );
}

.arch-line-1 {
    transform: rotate(-150deg);
}

.arch-line-2 {
    transform: rotate(-90deg);
}

.arch-line-3 {
    transform: rotate(-30deg);
}

.arch-line-4 {
    transform: rotate(30deg);
}

.arch-line-5 {
    transform: rotate(90deg);
}

.arch-line-6 {
    transform: rotate(150deg);
}


/* Panel Footer */

.ent-panel-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
}

.ent-panel-footer div {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #78899a;
    font-size: 5px;
    font-weight: 900;
}

.ent-panel-footer div:first-child span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ent-green);
    box-shadow:
        0 0 0 3px rgba(32,184,107,.09);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.ent-floating-card {
    position: absolute;
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 165px;
    padding: 10px 12px;
    border: 1px solid rgba(220,231,241,.95);
    border-radius: 11px;
    background:
        rgba(255,255,255,.97);
    box-shadow:
        0 15px 35px rgba(7,27,53,.10);
    animation:
        entFloat 4.5s ease-in-out infinite;
}

.ent-floating-card small {
    display: block;
    margin-bottom: 3px;
    color: #8b9aaa;
    font-size: 6px;
    font-weight: 800;
}

.ent-floating-card strong {
    color: var(--ent-navy);
    font-size: 9px;
    font-weight: 900;
}

.ent-floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    font-size: 6px;
    font-weight: 900;
}

.ent-floating-icon.blue {
    background: #eaf5ff;
    color: var(--ent-blue);
}

.ent-floating-icon.purple {
    background: #f0ebff;
    color: var(--ent-purple);
}

.ent-floating-icon.green {
    background: #e9faf1;
    color: var(--ent-green);
}

.ent-security-card {
    left: -8px;
    top: 72px;
}

.ent-cloud-card {
    right: -9px;
    top: 235px;
    animation-delay: .8s;
}

.ent-api-card {
    left: 5px;
    bottom: 43px;
    animation-delay: 1.5s;
}

@keyframes entFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   INTRO HIGHLIGHTS
   ========================================================= */

.ent-intro {
    background: #fff;
}

.ent-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.ent-highlight-grid article {
    min-height: 245px;
    padding: 25px;
    border: 1px solid var(--ent-border);
    border-radius: 15px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.ent-highlight-grid article:hover {
    transform: translateY(-7px);
    border-color: #d1dfed;
    box-shadow:
        0 20px 40px rgba(7,27,53,.08);
}

.ent-highlight-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    font-size: 6px;
    font-weight: 900;
}

.ent-highlight-icon.blue {
    background: #eaf5ff;
    color: var(--ent-blue);
}

.ent-highlight-icon.purple {
    background: #f0ebff;
    color: var(--ent-purple);
}

.ent-highlight-icon.orange {
    background: #fff1df;
    color: #df8a2a;
}

.ent-highlight-icon.green {
    background: #e9faf1;
    color: var(--ent-green);
}

.ent-highlight-grid h3 {
    margin: 0 0 9px;
    color: var(--ent-navy);
    font-size: 15px;
}

.ent-highlight-grid p {
    margin: 0;
    color: var(--ent-muted);
    font-size: 10px;
    line-height: 1.75;
}


/* =========================================================
   ENTERPRISE SOLUTIONS
   ========================================================= */

.ent-solutions {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #fff
        );
    border-top: 1px solid #edf2f7;
}

.ent-solution-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
}

.ent-solution-card {
    position: relative;
    min-height: 345px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--ent-border);
    border-top-width: 3px;
    border-radius: 17px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.ent-solution-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    opacity: .55;
}

.ent-solution-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 23px 46px rgba(7,27,53,.09);
}

.ent-solution-card.blue-card {
    border-top-color: var(--ent-blue);
}

.ent-solution-card.blue-card::after {
    background: rgba(8,124,255,.07);
}

.ent-solution-card.purple-card {
    border-top-color: var(--ent-purple);
}

.ent-solution-card.purple-card::after {
    background: rgba(118,87,255,.07);
}

.ent-solution-card.orange-card {
    border-top-color: var(--ent-orange);
}

.ent-solution-card.orange-card::after {
    background: rgba(255,159,67,.08);
}

.ent-solution-card.green-card {
    border-top-color: var(--ent-green);
}

.ent-solution-card.green-card::after {
    background: rgba(32,184,107,.07);
}

.ent-solution-card.pink-card {
    border-top-color: var(--ent-pink);
}

.ent-solution-card.pink-card::after {
    background: rgba(236,72,153,.07);
}

.ent-solution-card.cyan-card {
    border-top-color: var(--ent-cyan);
}

.ent-solution-card.cyan-card::after {
    background: rgba(24,201,232,.07);
}

.ent-solution-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: #b7c3cf;
    font-size: 8px;
    font-weight: 900;
}

.ent-solution-icon {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );
    color: var(--ent-purple);
    font-size: 6px;
    font-weight: 900;
}

.ent-solution-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--ent-navy);
    font-size: 18px;
}

.ent-solution-card > p {
    position: relative;
    z-index: 2;
    margin: 0 0 17px;
    color: var(--ent-muted);
    font-size: 10px;
    line-height: 1.75;
}

.ent-solution-card ul {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ent-solution-card li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 7px;
    color: #64778b;
    font-size: 8px;
    font-weight: 700;
}

.ent-solution-card li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--ent-green);
    font-weight: 900;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.ent-workflow {
    background: #fff;
}

.ent-workflow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.ent-workflow-item {
    width: 155px;
    min-height: 160px;
    padding: 18px;
    border: 1px solid var(--ent-border);
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 10px 25px rgba(7,27,53,.05);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.ent-workflow-item:hover {
    transform: translateY(-6px);
    border-color: #cadced;
    box-shadow:
        0 17px 34px rgba(7,27,53,.08);
}

.ent-workflow-item > div {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ent-blue),
            var(--ent-purple)
        );
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.ent-workflow-item h3 {
    margin: 0 0 5px;
    color: var(--ent-navy);
    font-size: 13px;
}

.ent-workflow-item p {
    margin: 0;
    color: var(--ent-muted);
    font-size: 8px;
    line-height: 1.65;
}

.ent-workflow-track > i {
    color: var(--ent-blue);
    font-size: 20px;
    font-style: normal;
}


/* =========================================================
   ARCHITECTURE SECTION
   ========================================================= */

.ent-architecture-section {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fbf9ff
        );
}

.ent-architecture-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.ent-architecture-content h2 {
    margin: 0 0 18px;
    color: var(--ent-navy);
    font-size: clamp(35px,4vw,51px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.ent-architecture-content h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--ent-blue),
            var(--ent-purple),
            var(--ent-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-architecture-content > p {
    max-width: 520px;
    margin: 0 0 25px;
    color: var(--ent-muted);
    font-size: 13px;
    line-height: 1.8;
}

.ent-check-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 27px;
}

.ent-check-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #607488;
    font-size: 9px;
}

.ent-check-list span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e9faf1;
    color: var(--ent-green);
    font-size: 8px;
    font-weight: 900;
}


/* =========================================================
   SYSTEM VISUAL
   ========================================================= */

.ent-system-visual {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid #e1eaf3;
    border-radius: 23px;
    background:
        radial-gradient(
            circle at center,
            rgba(118,87,255,.08),
            transparent 38%
        ),
        #fff;
    box-shadow:
        0 25px 60px rgba(7,27,53,.07);
}

.ent-system-grid {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image:
        linear-gradient(
            rgba(8,124,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.04) 1px,
            transparent 1px
        );
    background-size: 34px 34px;
}

.ent-system-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 350px;
    height: 350px;
    transform: translate(-50%,-50%);
    border: 1px dashed rgba(118,87,255,.17);
    border-radius: 50%;
}

.ent-system-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    border: 4px solid rgba(118,87,255,.12);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--ent-blue),
            var(--ent-purple),
            var(--ent-pink)
        );
    color: #fff;
    box-shadow:
        0 20px 45px rgba(118,87,255,.22);
    animation:
        entCenterPulse 3.5s ease-in-out infinite;
}

.ent-system-center strong {
    font-size: 31px;
    font-weight: 950;
}

.ent-system-center span {
    margin-top: 4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .12em;
}

@keyframes entCenterPulse {

    0%,
    100% {
        box-shadow:
            0 20px 45px rgba(118,87,255,.22);
    }

    50% {
        box-shadow:
            0 25px 58px rgba(8,124,255,.28);
    }
}


/* System Lines */

.ent-system-line {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 205px;
    height: 1px;
    transform-origin: left center;
    background:
        linear-gradient(
            90deg,
            rgba(8,124,255,.05),
            rgba(118,87,255,.32),
            transparent
        );
}

.sys-line-1 {
    transform: rotate(-150deg);
}

.sys-line-2 {
    transform: rotate(-90deg);
}

.sys-line-3 {
    transform: rotate(-30deg);
}

.sys-line-4 {
    transform: rotate(30deg);
}

.sys-line-5 {
    transform: rotate(90deg);
}

.sys-line-6 {
    transform: rotate(150deg);
}


/* System Nodes */

.ent-system-node {
    position: absolute;
    z-index: 15;
    min-width: 108px;
    padding: 12px 15px;
    border: 1px solid #dfe8f1;
    border-radius: 10px;
    background: #fff;
    color: var(--ent-navy);
    text-align: center;
    font-size: 7px;
    font-weight: 900;
    box-shadow:
        0 12px 28px rgba(7,27,53,.07);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.ent-system-node:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 18px 34px rgba(7,27,53,.11);
}

.node-users {
    left: 42px;
    top: 70px;
    border-left: 3px solid var(--ent-blue);
}

.node-apps {
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    border-left: 3px solid var(--ent-purple);
}

.node-data {
    right: 42px;
    top: 70px;
    border-left: 3px solid var(--ent-orange);
}

.node-api {
    left: 42px;
    bottom: 70px;
    border-left: 3px solid var(--ent-green);
}

.node-cloud {
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    border-left: 3px solid var(--ent-pink);
}

.node-ai {
    right: 42px;
    bottom: 70px;
    border-left: 3px solid var(--ent-cyan);
}


/* =========================================================
   SECURITY
   ========================================================= */

.ent-security {
    padding: 95px 0;
    background:
        linear-gradient(
            135deg,
            #071b35,
            #182952,
            #352060
        );
}

.ent-security-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: center;
    gap: 65px;
}

.ent-security-content .ent-eyebrow {
    color: #65dcff;
}

.ent-security-content h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(35px,4vw,52px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.ent-security-content h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-security-content p {
    max-width: 460px;
    margin: 0;
    color: #bdccdc;
    font-size: 13px;
    line-height: 1.8;
}

.ent-security-cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
}

.ent-security-cards article {
    min-height: 160px;
    padding: 20px;
    border:
        1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background:
        rgba(255,255,255,.055);
    backdrop-filter: blur(12px);
    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.ent-security-cards article:hover {
    transform: translateY(-6px);
    background:
        rgba(255,255,255,.08);
    border-color:
        rgba(255,255,255,.20);
}

.ent-security-cards article > div {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 10px;
    background:
        rgba(101,220,255,.10);
    color: #65dcff;
    font-size: 6px;
    font-weight: 900;
}

.ent-security-cards strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 12px;
}

.ent-security-cards p {
    margin: 0;
    color: #aebfd0;
    font-size: 8px;
    line-height: 1.7;
}


/* =========================================================
   INTELLIGENCE
   ========================================================= */

.ent-intelligence {
    background: #fff;
}

.ent-intelligence-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 65px;
}

.ent-intelligence-content h2 {
    margin: 0 0 18px;
    color: var(--ent-navy);
    font-size: clamp(35px,4vw,51px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.ent-intelligence-content h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--ent-blue),
            var(--ent-purple),
            var(--ent-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-intelligence-content p {
    max-width: 480px;
    margin: 0;
    color: var(--ent-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* Dashboard */

.ent-intelligence-dashboard {
    padding: 23px;
    border:
        1px solid #e0e9f2;
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #fbf9ff
        );
    box-shadow:
        0 20px 50px rgba(7,27,53,.07);
}

.ent-intelligence-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 17px;
}

.ent-intelligence-header small {
    display: block;
    margin-bottom: 4px;
    color: #8a99a8;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .10em;
}

.ent-intelligence-header strong {
    color: var(--ent-navy);
    font-size: 14px;
}

.ent-intelligence-header > span {
    padding: 6px 9px;
    border-radius: 20px;
    background: #e9faf1;
    color: var(--ent-green);
    font-size: 6px;
    font-weight: 900;
}

.ent-intelligence-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 7px;
    margin-bottom: 15px;
}

.ent-intelligence-stats > div {
    padding: 11px;
    border:
        1px solid #e2eaf2;
    border-radius: 9px;
    background: #fff;
}

.ent-intelligence-stats small {
    display: block;
    margin-bottom: 5px;
    color: #8b9aaa;
    font-size: 5px;
    font-weight: 900;
}

.ent-intelligence-stats strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ent-navy);
    font-size: 11px;
}

.ent-intelligence-stats span {
    color: var(--ent-green);
    font-size: 6px;
    font-weight: 800;
}

.ent-performance-chart {
    height: 155px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    padding: 15px;
    border-radius: 11px;
    border-bottom: 1px solid #d9e4ee;
    background:
        linear-gradient(
            #edf2f7 1px,
            transparent 1px
        );
    background-size: 100% 25%;
}

.ent-performance-chart span {
    flex: 1;
    min-height: 8px;
    border-radius: 4px 4px 1px 1px;
    background:
        linear-gradient(
            180deg,
            var(--ent-blue),
            var(--ent-purple)
        );
    transform-origin: bottom;
    animation:
        entChartGrow .9s ease both;
}

@keyframes entChartGrow {

    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}


/* =========================================================
   WHY LBS
   ========================================================= */

.ent-why {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #faf8ff
        );
}

.ent-why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.ent-why-grid h2 {
    margin: 0 0 18px;
    color: var(--ent-navy);
    font-size: clamp(35px,4vw,52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.ent-why-grid h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--ent-blue),
            var(--ent-purple)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-why-grid > div:first-child > p {
    max-width: 520px;
    margin: 0;
    color: var(--ent-muted);
    font-size: 13px;
    line-height: 1.8;
}

.ent-why-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ent-why-points > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    background: #fff;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.ent-why-points > div:hover {
    transform: translateX(6px);
    border-color: #cbdced;
    box-shadow:
        0 10px 25px rgba(7,27,53,.06);
}

.ent-why-points span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );
    color: var(--ent-purple);
    font-size: 7px;
    font-weight: 900;
}

.ent-why-points strong {
    color: var(--ent-navy);
    font-size: 11px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.ent-final {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(24,201,232,.15),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(236,72,153,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071b35,
            #1c2857,
            #352060
        );
    text-align: center;
}

.ent-final-orb {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.15),
            transparent 68%
        );
}

.ent-final-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: auto;
}

.ent-final-content > span {
    color: #65dcff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
}

.ent-final-content h2 {
    margin: 15px 0 18px;
    color: #fff;
    font-size: clamp(40px,5vw,62px);
    line-height: 1;
    letter-spacing: -.05em;
}

.ent-final-content h2 strong {
    display: block;
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ent-final-content > p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: #c2d0e0;
    font-size: 14px;
    line-height: 1.8;
}

.ent-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .ent-highlight-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ent-solution-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ent-kpi-grid,
    .ent-intelligence-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .ent-workflow-item {
        width: 170px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-enterprise-page .container {
        width: min(
            calc(100% - 30px),
            620px
        );
    }

    .lbs-enterprise-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .ent-hero {
        min-height: auto;
        padding: 65px 0;
    }

    .ent-hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ent-hero-content {
        max-width: 620px;
        margin: auto;
        text-align: center;
    }

    .ent-hero-content h1 {
        font-size: clamp(42px,9vw,60px);
    }

    .ent-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ent-hero-actions {
        justify-content: center;
    }

    .ent-trust {
        justify-content: center;
    }


    /* Control Panel */

    .ent-hero-visual {
        min-height: 580px;
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .ent-control-panel {
        width: min(560px,100%);
    }


    /* Floating */

    .ent-security-card {
        left: 0;
    }

    .ent-cloud-card {
        right: 0;
    }


    /* Main Sections */

    .ent-architecture-grid,
    .ent-security-grid,
    .ent-intelligence-grid,
    .ent-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ent-architecture-content,
    .ent-intelligence-content,
    .ent-why-grid > div:first-child {
        text-align: center;
    }

    .ent-architecture-content > p,
    .ent-intelligence-content p,
    .ent-why-grid > div:first-child > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ent-check-list {
        align-items: center;
    }

    .ent-security-content {
        text-align: center;
    }

    .ent-security-content p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-enterprise-page .container {
        width: calc(100% - 28px);
    }

    .lbs-enterprise-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .ent-hero {
        padding: 50px 0;
    }

    .ent-hero-content h1 {
        font-size: 39px;
    }

    .ent-hero-actions,
    .ent-final-actions {
        flex-direction: column;
    }

    .ent-btn {
        width: 100%;
    }

    .ent-trust {
        gap: 13px;
    }


    /* Control Panel */

    .ent-hero-visual {
        min-height: 535px;
    }

    .ent-control-panel {
        padding: 13px;
    }

    .ent-panel-header strong {
        font-size: 11px;
    }

    .ent-panel-header > span {
        font-size: 5px;
    }

    .ent-kpi {
        padding: 8px;
    }

    .ent-kpi strong {
        font-size: 9px;
    }

    .ent-architecture {
        padding: 10px;
    }

    .ent-architecture-map {
        height: 185px;
    }

    .ent-arch-center {
        width: 63px;
        height: 63px;
    }

    .ent-arch-center strong {
        font-size: 14px;
    }

    .ent-arch-node {
        min-width: 53px;
        padding: 6px;
        font-size: 4px;
    }

    .ent-arch-line {
        width: 87px;
    }

    .ent-panel-footer {
        flex-direction: column;
    }


    /* Floating Cards */

    .ent-floating-card {
        min-width: 120px;
        padding: 7px;
        gap: 6px;
    }

    .ent-floating-icon {
        width: 27px;
        height: 27px;
    }

    .ent-floating-card small {
        font-size: 5px;
    }

    .ent-floating-card strong {
        font-size: 7px;
    }

    .ent-security-card {
        left: 0;
        top: 35px;
    }

    .ent-cloud-card {
        right: 0;
        top: 185px;
    }

    .ent-api-card {
        left: 0;
        bottom: 8px;
    }


    /* Cards */

    .ent-highlight-grid,
    .ent-solution-grid {
        grid-template-columns: 1fr;
    }

    .ent-solution-card {
        min-height: auto;
        padding: 23px;
    }


    /* Workflow */

    .ent-workflow-track {
        flex-direction: column;
    }

    .ent-workflow-item {
        width: min(100%,300px);
    }

    .ent-workflow-track > i {
        transform: rotate(90deg);
    }


    /* System Visual */

    .ent-system-visual {
        min-height: 500px;
        border-radius: 18px;
    }

    .ent-system-center {
        width: 110px;
        height: 110px;
    }

    .ent-system-center strong {
        font-size: 24px;
    }

    .ent-system-center span {
        font-size: 6px;
    }

    .ent-system-node {
        min-width: 82px;
        padding: 9px;
        font-size: 6px;
    }

    .node-users {
        left: 8px;
        top: 55px;
    }

    .node-apps {
        top: 15px;
    }

    .node-data {
        right: 8px;
        top: 55px;
    }

    .node-api {
        left: 8px;
        bottom: 55px;
    }

    .node-cloud {
        bottom: 15px;
    }

    .node-ai {
        right: 8px;
        bottom: 55px;
    }


    /* Security */

    .ent-security {
        padding: 70px 0;
    }

    .ent-security-cards {
        grid-template-columns: 1fr;
    }


    /* Intelligence */

    .ent-intelligence-dashboard {
        padding: 15px;
    }

    .ent-intelligence-stats {
        gap: 5px;
    }

    .ent-intelligence-stats > div {
        padding: 8px;
    }

    .ent-intelligence-stats strong {
        font-size: 9px;
    }

    .ent-performance-chart {
        height: 115px;
        gap: 4px;
    }


    /* Final */

    .ent-final {
        padding: 75px 0;
    }

    .ent-final-content h2 {
        font-size: 36px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-enterprise-page a:focus-visible,
.lbs-enterprise-page button:focus-visible {
    outline:
        3px solid rgba(8,124,255,.25);
    outline-offset: 3px;
}


/* =========================================================
   JAVASCRIPT STATES
   ========================================================= */

.ent-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s ease;
    transition-delay:
        var(--ent-delay, 0ms);
}

.ent-visible {
    opacity: 1;
    transform: translateY(0);
}

.ent-solution-active {
    transform:
        translateY(-9px) !important;
    box-shadow:
        0 25px 48px rgba(8,124,255,.12) !important;
}

.ent-workflow-active {
    transform:
        translateY(-7px) !important;
    border-color:
        var(--ent-blue) !important;
    box-shadow:
        0 17px 35px rgba(8,124,255,.13) !important;
}

.ent-system-selected {
    transform:
        translateY(-6px) scale(1.04) !important;
    border-color:
        var(--ent-blue) !important;
    box-shadow:
        0 18px 34px rgba(8,124,255,.13) !important;
}

.ent-button-clicked {
    transform: scale(.97) !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ent-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ent-floating-card,
    .ent-system-center,
    .ent-performance-chart span {
        animation: none !important;
    }

    .ent-solution-active,
    .ent-workflow-active,
    .ent-system-selected {
        transform: none !important;
    }
}