/* =========================================================
   LBS SOFTWARE
   CUSTOM AI SOLUTIONS
   ========================================================= */

:root {
    --ai-navy: #061a33;
    --ai-navy-2: #0b2b50;

    --ai-blue: #087cff;
    --ai-cyan: #20c7e8;
    --ai-purple: #7657ff;
    --ai-pink: #ec4899;
    --ai-orange: #ff9f43;
    --ai-yellow: #ffd43b;
    --ai-green: #20b86b;

    --ai-text: #18283c;
    --ai-muted: #68798d;
    --ai-border: #e1e9f2;
    --ai-light: #f7faff;
    --ai-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.custom-ai-page {
    width: 100%;
    overflow: hidden;

    color: var(--ai-text);
    background: #ffffff;
}


.custom-ai-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


.custom-ai-page .section {
    padding: 90px 0;
}


.custom-ai-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--ai-blue);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.custom-ai-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.custom-ai-heading h2 {
    margin: 0 0 15px;

    color: var(--ai-navy);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -.045em;
}


.custom-ai-heading h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--ai-blue),
            var(--ai-purple),
            var(--ai-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.custom-ai-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--ai-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.custom-ai-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 12px 22px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.custom-ai-btn:hover {
    transform: translateY(-2px);
}


.custom-ai-btn-primary {
    border: 1px solid var(--ai-blue);

    background:
        linear-gradient(
            135deg,
            #087cff,
            #6958ff
        );

    color: #ffffff;

    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}


.custom-ai-btn-primary:hover {
    box-shadow:
        0 16px 35px rgba(8,124,255,.30);
}


.custom-ai-btn-outline {
    border: 1px solid #cbd8e7;

    background: #ffffff;

    color: var(--ai-navy);
}


.custom-ai-btn-outline:hover {
    border-color: var(--ai-blue);

    color: var(--ai-blue);
}


.custom-ai-btn-white {
    border: 1px solid #ffffff;

    background: #ffffff;

    color: var(--ai-purple);
}


.custom-ai-btn-dark {
    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.08);

    color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.custom-ai-hero {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 30%,
            rgba(32,199,232,.15),
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(123,87,255,.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 85%,
            rgba(236,72,153,.09),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f7fcff 0%,
            #ffffff 52%,
            #f8f6ff 100%
        );

    border-bottom: 1px solid var(--ai-border);
}


.custom-ai-hero-inner {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 65px;
}


.custom-ai-hero-content {
    max-width: 650px;
}


.custom-ai-hero-content h1 {
    margin: 0 0 24px;

    color: var(--ai-navy);

    font-size: clamp(45px, 5.3vw, 70px);

    font-weight: 850;

    line-height: 1;

    letter-spacing: -.06em;
}


.custom-ai-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--ai-blue),
            var(--ai-purple),
            var(--ai-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.custom-ai-hero-content > p {
    max-width: 610px;

    margin: 0 0 30px;

    color: var(--ai-muted);

    font-size: 16px;

    line-height: 1.8;
}


.custom-ai-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 27px;
}


.custom-ai-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}


.custom-ai-trust div {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--ai-navy);

    font-size: 10px;

    font-weight: 750;
}


.custom-ai-trust strong {
    color: var(--ai-green);

    font-size: 16px;
}


/* =========================================================
   HERO BACKGROUND GRID
   ========================================================= */

.custom-ai-grid-bg {
    position: absolute;

    inset: 0;

    opacity: .32;

    background-image:
        linear-gradient(
            rgba(8,124,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.05) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 30%,
            black 70%,
            transparent
        );
}


/* =========================================================
   HERO ORBS
   ========================================================= */

.custom-ai-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.custom-ai-orb-one {
    width: 230px;
    height: 230px;

    top: -100px;
    left: 10%;

    background:
        radial-gradient(
            circle,
            rgba(32,199,232,.16),
            transparent 70%
        );
}


.custom-ai-orb-two {
    width: 300px;
    height: 300px;

    right: 4%;
    top: 5%;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.13),
            transparent 70%
        );
}


.custom-ai-orb-three {
    width: 210px;
    height: 210px;

    right: 27%;
    bottom: -110px;

    background:
        radial-gradient(
            circle,
            rgba(255,159,67,.12),
            transparent 70%
        );
}


/* =========================================================
   AI HERO VISUAL
   ========================================================= */

.custom-ai-hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.ai-network-lines {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    border: 1px dashed rgba(8,124,255,.20);

    animation:
        aiNetworkRotate 25s linear infinite;
}


.ai-network-lines::before,
.ai-network-lines::after {
    content: "";

    position: absolute;

    inset: 45px;

    border-radius: 50%;

    border: 1px solid rgba(118,87,255,.13);
}


.ai-network-lines::after {
    inset: 90px;

    border-color: rgba(236,72,153,.13);
}


@keyframes aiNetworkRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   AI CORE
   ========================================================= */

.ai-core {
    position: relative;

    z-index: 5;

    width: 190px;
    height: 190px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #eef5ff 45%,
            #e6ddff 100%
        );

    box-shadow:
        0 30px 70px rgba(8,124,255,.16);
}


.ai-core-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid;
}


.ring-one {
    width: 220px;
    height: 220px;

    border-color: rgba(8,124,255,.35);

    animation:
        aiRingPulse 3s ease-in-out infinite;
}


.ring-two {
    width: 270px;
    height: 270px;

    border-color: rgba(118,87,255,.18);

    animation:
        aiRingPulse 3s ease-in-out infinite;

    animation-delay: .7s;
}


.ring-three {
    width: 325px;
    height: 325px;

    border-color: rgba(236,72,153,.10);

    animation:
        aiRingPulse 3s ease-in-out infinite;

    animation-delay: 1.4s;
}


@keyframes aiRingPulse {

    0%,
    100% {
        opacity: .35;

        transform: scale(.96);
    }

    50% {
        opacity: .8;

        transform: scale(1.02);
    }

}


.ai-core-center {
    width: 105px;
    height: 105px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #087cff,
            #7557ff,
            #ec4899
        );

    color: #ffffff;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: .05em;

    box-shadow:
        0 15px 35px rgba(118,87,255,.28);
}


/* =========================================================
   AI NODES
   ========================================================= */

.ai-node {
    position: absolute;

    z-index: 8;

    width: 125px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.85);

    border-radius: 13px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 14px 32px rgba(7,27,51,.10);

    backdrop-filter: blur(10px);

    text-align: center;

    animation:
        aiNodeFloat 5s ease-in-out infinite;
}


.ai-node-icon {
    width: 38px;
    height: 38px;

    margin: 0 auto 8px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0eaff
        );

    color: var(--ai-blue);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .04em;
}


.ai-node strong {
    display: block;

    margin-bottom: 3px;

    color: var(--ai-navy);

    font-size: 9px;
}


.ai-node small {
    color: #8190a1;

    font-size: 7px;
}


.ai-node-one {
    left: 0;

    top: 90px;
}


.ai-node-two {
    right: 0;

    top: 70px;

    animation-delay: .7s;
}


.ai-node-three {
    left: 5px;

    bottom: 90px;

    animation-delay: 1.4s;
}


.ai-node-four {
    right: 3px;

    bottom: 75px;

    animation-delay: 2s;
}


@keyframes aiNodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   AI STATUS
   ========================================================= */

.ai-status-card {
    position: absolute;

    z-index: 9;

    bottom: 15px;
    left: 50%;

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 220px;

    padding: 11px 15px;

    transform: translateX(-50%);

    border: 1px solid rgba(255,255,255,.85);

    border-radius: 12px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 12px 30px rgba(7,27,51,.10);
}


.ai-status-dot {
    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    border-radius: 50%;

    background: var(--ai-green);

    box-shadow:
        0 0 0 5px rgba(32,184,107,.10);

    animation:
        aiStatusPulse 2s ease-in-out infinite;
}


@keyframes aiStatusPulse {

    0%,
    100% {
        opacity: .7;
    }

    50% {
        opacity: 1;
    }

}


.ai-status-card small {
    display: block;

    margin-bottom: 3px;

    color: #8998a9;

    font-size: 7px;

    font-weight: 850;

    letter-spacing: .1em;
}


.ai-status-card strong {
    color: var(--ai-navy);

    font-size: 9px;
}


/* =========================================================
   INTRO HIGHLIGHTS
   ========================================================= */

.custom-ai-intro {
    background: #ffffff;
}


.custom-ai-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.custom-ai-highlight-grid article {
    padding: 27px;

    border: 1px solid var(--ai-border);

    border-radius: 16px;

    background: #ffffff;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.custom-ai-highlight-grid article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(7,27,51,.08);
}


.highlight-icon {
    width: 57px;
    height: 57px;

    margin: 0 auto 18px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    font-size: 12px;

    font-weight: 900;
}


.highlight-icon.blue {
    background: var(--ai-blue-light, #eaf5ff);

    color: var(--ai-blue);
}


.highlight-icon.purple {
    background: #f0ebff;

    color: var(--ai-purple);
}


.highlight-icon.orange {
    background: #fff2e3;

    color: var(--ai-orange);
}


.highlight-icon.green {
    background: #eafaf2;

    color: var(--ai-green);
}


.custom-ai-highlight-grid h3 {
    margin: 0 0 9px;

    color: var(--ai-navy);

    font-size: 18px;
}


.custom-ai-highlight-grid p {
    margin: 0;

    color: var(--ai-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.custom-ai-solutions {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );

    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}


.custom-ai-solution-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.ai-solution-card {
    position: relative;

    min-height: 335px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--ai-border);

    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.ai-solution-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -60px;
    bottom: -65px;

    border-radius: 50%;

    opacity: .6;
}


.ai-solution-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 42px rgba(7,27,51,.09);
}


.solution-number {
    position: absolute;

    top: 20px;
    right: 23px;

    color: #b3bfcc;

    font-size: 9px;

    font-weight: 850;
}


.solution-icon {
    width: 56px;
    height: 56px;

    margin-bottom: 22px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    font-size: 8px;

    font-weight: 900;
}


.ai-solution-card h3 {
    margin: 0 0 11px;

    color: var(--ai-navy);

    font-size: 20px;
}


.ai-solution-card > p {
    margin: 0 0 18px;

    color: var(--ai-muted);

    font-size: 11px;

    line-height: 1.75;
}


.ai-solution-card ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.ai-solution-card li {
    position: relative;

    margin-bottom: 8px;

    padding-left: 16px;

    color: #536579;

    font-size: 10px;

    font-weight: 700;
}


.ai-solution-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;
}


/* Solution Colors */

.blue-card {
    border-top: 3px solid var(--ai-blue);
}


.blue-card .solution-icon {
    background: #eaf5ff;

    color: var(--ai-blue);
}


.blue-card li {
    color: var(--ai-blue);
}


.blue-card::after {
    background: rgba(8,124,255,.07);
}


.purple-card {
    border-top: 3px solid var(--ai-purple);
}


.purple-card .solution-icon {
    background: #f0ebff;

    color: var(--ai-purple);
}


.purple-card li {
    color: var(--ai-purple);
}


.purple-card::after {
    background: rgba(118,87,255,.07);
}


.orange-card {
    border-top: 3px solid var(--ai-orange);
}


.orange-card .solution-icon {
    background: #fff2e3;

    color: var(--ai-orange);
}


.orange-card li {
    color: #e78c27;
}


.orange-card::after {
    background: rgba(255,159,67,.08);
}


.green-card {
    border-top: 3px solid var(--ai-green);
}


.green-card .solution-icon {
    background: #eafaf2;

    color: var(--ai-green);
}


.green-card li {
    color: var(--ai-green);
}


.green-card::after {
    background: rgba(32,184,107,.07);
}


.pink-card {
    border-top: 3px solid var(--ai-pink);
}


.pink-card .solution-icon {
    background: #fff0f7;

    color: var(--ai-pink);
}


.pink-card li {
    color: var(--ai-pink);
}


.pink-card::after {
    background: rgba(236,72,153,.07);
}


.cyan-card {
    border-top: 3px solid var(--ai-cyan);
}


.cyan-card .solution-icon {
    background: #e9fbff;

    color: var(--ai-cyan);
}


.cyan-card li {
    color: #079ebc;
}


.cyan-card::after {
    background: rgba(32,199,232,.07);
}


/* =========================================================
   USE CASES
   ========================================================= */

.custom-ai-usecases {
    background: #ffffff;
}


.custom-ai-usecase-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 80px;

    align-items: center;
}


.usecase-content h2 {
    margin: 0 0 20px;

    color: var(--ai-navy);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -.045em;
}


.usecase-content h2 span {
    display: block;

    color: var(--ai-purple);
}


.usecase-content > p {
    max-width: 510px;

    margin: 0 0 27px;

    color: var(--ai-muted);

    font-size: 13px;

    line-height: 1.8;
}


.usecase-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.usecase-item {
    display: grid;

    grid-template-columns: 42px 1fr;

    align-items: center;

    gap: 13px;

    padding: 17px;

    border: 1px solid var(--ai-border);

    border-radius: 12px;

    background: #ffffff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.usecase-item:hover {
    transform: translateX(5px);

    box-shadow:
        0 10px 25px rgba(7,27,51,.06);
}


.usecase-item > span {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--ai-blue);

    font-size: 9px;

    font-weight: 900;
}


.usecase-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--ai-navy);

    font-size: 13px;
}


.usecase-item p {
    margin: 0;

    color: var(--ai-muted);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.custom-ai-process {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );

    border-top: 1px solid #edf2f7;
}


.custom-ai-process-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;
}


.custom-ai-process-grid::before {
    content: "";

    position: absolute;

    top: 29px;

    left: 9%;
    right: 9%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--ai-blue),
            var(--ai-purple),
            var(--ai-orange),
            var(--ai-green),
            var(--ai-pink)
        );

    opacity: .20;
}


.custom-ai-process-grid article {
    position: relative;

    z-index: 2;

    text-align: center;

    padding: 5px 12px;
}


.process-number {
    width: 48px;
    height: 48px;

    margin: 0 auto 18px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    box-shadow:
        0 8px 18px rgba(7,27,51,.12);
}


.custom-ai-process-grid h3 {
    margin: 0 0 8px;

    color: var(--ai-navy);

    font-size: 17px;
}


.custom-ai-process-grid p {
    max-width: 180px;

    margin: 0 auto;

    color: var(--ai-muted);

    font-size: 10px;

    line-height: 1.7;
}


.blue-bg {
    background: var(--ai-blue);
}


.purple-bg {
    background: var(--ai-purple);
}


.orange-bg {
    background: var(--ai-orange);
}


.green-bg {
    background: var(--ai-green);
}


.pink-bg {
    background: var(--ai-pink);
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.custom-ai-tech {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #071b33,
            #132e54 50%,
            #241d50
        );

    color: #ffffff;
}


.custom-ai-tech-inner {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;
}


.custom-ai-tech .custom-ai-eyebrow {
    color: #65dcff;
}


.custom-ai-tech h2 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -.045em;
}


.custom-ai-tech h2 span {
    display: block;

    color: #70dfff;
}


.custom-ai-tech p {
    max-width: 550px;

    margin: 0;

    color: #bfd0e3;

    font-size: 13px;

    line-height: 1.8;
}


.tech-pills {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}


.tech-pills span {
    min-width: 75px;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 10px;

    background: rgba(255,255,255,.06);

    color: #eaf3ff;

    font-size: 10px;

    font-weight: 800;

    text-align: center;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.tech-pills span:hover {
    transform: translateY(-4px);

    border-color: rgba(101,220,255,.55);

    background: rgba(101,220,255,.10);
}


/* =========================================================
   WHY LBS
   ========================================================= */

.custom-ai-why {
    background: #ffffff;
}


.custom-ai-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.custom-ai-why-grid article {
    padding: 27px;

    border: 1px solid var(--ai-border);

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.custom-ai-why-grid article:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 35px rgba(7,27,51,.08);
}


.custom-ai-why-grid article > div {
    width: 43px;
    height: 43px;

    margin-bottom: 18px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--ai-blue);

    font-size: 9px;

    font-weight: 900;
}


.custom-ai-why-grid h3 {
    margin: 0 0 9px;

    color: var(--ai-navy);

    font-size: 17px;
}


.custom-ai-why-grid p {
    margin: 0;

    color: var(--ai-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.custom-ai-final {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(32,199,232,.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(236,72,153,.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071b33,
            #1a275b,
            #352064
        );

    color: #ffffff;

    text-align: center;
}


.custom-ai-final-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.15),
            transparent 68%
        );

    pointer-events: none;
}


.custom-ai-final-content {
    position: relative;

    z-index: 3;

    max-width: 820px;

    margin: auto;
}


.custom-ai-final-content > span {
    color: #65dcff;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .16em;
}


.custom-ai-final-content h2 {
    margin: 14px 0 18px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -.05em;
}


.custom-ai-final-content h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a897ff,
            #ff94c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.custom-ai-final-content > p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #c3d2e4;

    font-size: 14px;

    line-height: 1.8;
}


.custom-ai-final-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .custom-ai-highlight-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .custom-ai-solution-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .custom-ai-why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .custom-ai-process-grid {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 40px;
    }


    .custom-ai-process-grid::before {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .custom-ai-page .container {
        width: min(100% - 30px, 620px);
    }


    .custom-ai-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .custom-ai-hero {
        min-height: auto;

        padding: 65px 0;
    }


    .custom-ai-hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .custom-ai-hero-content {
        margin: auto;

        text-align: center;
    }


    .custom-ai-hero-content h1 {
        font-size: clamp(42px, 11vw, 58px);
    }


    .custom-ai-hero-content > p {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    .custom-ai-hero-actions {
        justify-content: center;
    }


    .custom-ai-trust {
        justify-content: center;
    }


    /* Hero Visual */

    .custom-ai-hero-visual {
        min-height: 450px;

        max-width: 550px;

        margin: auto;
    }


    .ai-network-lines {
        width: 350px;
        height: 350px;
    }


    .ai-core {
        width: 155px;
        height: 155px;
    }


    .ai-core-center {
        width: 85px;
        height: 85px;

        font-size: 25px;
    }


    .ring-one {
        width: 180px;
        height: 180px;
    }


    .ring-two {
        width: 225px;
        height: 225px;
    }


    .ring-three {
        width: 275px;
        height: 275px;
    }


    .ai-node {
        width: 105px;

        padding: 9px;
    }


    .ai-node-one {
        left: 0;
        top: 45px;
    }


    .ai-node-two {
        right: 0;
        top: 35px;
    }


    .ai-node-three {
        left: 0;
        bottom: 75px;
    }


    .ai-node-four {
        right: 0;
        bottom: 65px;
    }


    .ai-status-card {
        bottom: 0;
    }


    /* Use Cases */

    .custom-ai-usecase-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .usecase-content {
        text-align: center;
    }


    .usecase-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Technology */

    .custom-ai-tech-inner {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }


    .custom-ai-tech p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Process */

    .custom-ai-process-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .custom-ai-page .container {
        width: calc(100% - 28px);
    }


    .custom-ai-page .section {
        padding: 55px 0;
    }


    .custom-ai-hero {
        padding: 50px 0;
    }


    .custom-ai-hero-content h1 {
        font-size: 40px;
    }


    .custom-ai-hero-actions {
        flex-direction: column;
    }


    .custom-ai-btn {
        width: 100%;

        box-sizing: border-box;
    }


    .custom-ai-trust {
        flex-direction: column;

        align-items: center;

        gap: 9px;
    }


    /* Hero visual */

    .custom-ai-hero-visual {
        min-height: 390px;
    }


    .ai-network-lines {
        width: 285px;
        height: 285px;
    }


    .ai-core {
        width: 125px;
        height: 125px;
    }


    .ai-core-center {
        width: 70px;
        height: 70px;

        font-size: 20px;
    }


    .ring-one {
        width: 145px;
        height: 145px;
    }


    .ring-two {
        width: 185px;
        height: 185px;
    }


    .ring-three {
        width: 230px;
        height: 230px;
    }


    .ai-node {
        width: 86px;

        padding: 7px;

        border-radius: 10px;
    }


    .ai-node-icon {
        width: 29px;
        height: 29px;

        margin-bottom: 5px;

        font-size: 6px;
    }


    .ai-node strong {
        font-size: 7px;
    }


    .ai-node small {
        font-size: 6px;
    }


    .ai-node-one {
        left: -2px;

        top: 25px;
    }


    .ai-node-two {
        right: -2px;

        top: 20px;
    }


    .ai-node-three {
        left: -2px;

        bottom: 55px;
    }


    .ai-node-four {
        right: -2px;

        bottom: 48px;
    }


    .ai-status-card {
        min-width: 185px;

        padding: 8px 11px;
    }


    .ai-status-card strong {
        font-size: 8px;
    }


    /* Highlight */

    .custom-ai-highlight-grid {
        grid-template-columns: 1fr;
    }


    /* Solutions */

    .custom-ai-solution-grid {
        grid-template-columns: 1fr;
    }


    .ai-solution-card {
        min-height: auto;
    }


    /* Process */

    .custom-ai-process-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* Why */

    .custom-ai-why-grid {
        grid-template-columns: 1fr;
    }


    /* Technology */

    .tech-pills span {
        min-width: 62px;

        padding: 11px 10px;
    }


    /* Final CTA */

    .custom-ai-final {
        padding: 75px 0;
    }


    .custom-ai-final-content h2 {
        font-size: 36px;
    }


    .custom-ai-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.custom-ai-page a:focus-visible,
.custom-ai-page button:focus-visible {
    outline: 3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ai-network-lines,
    .ai-core-ring,
    .ai-node,
    .ai-status-dot,
    .custom-ai-btn,
    .custom-ai-highlight-grid article,
    .ai-solution-card,
    .usecase-item,
    .custom-ai-why-grid article,
    .tech-pills span {
        animation: none !important;

        transition: none !important;
    }

}