/* =========================================================
   LBS SOFTWARE
   TECHNOLOGIES PAGE
   assets/css/technologies.css
   ========================================================= */

:root {
    --tech-navy: #061a33;
    --tech-navy-2: #102b4d;
    --tech-blue: #087cff;
    --tech-cyan: #18c9e8;
    --tech-purple: #7657ff;
    --tech-pink: #ec4899;
    --tech-orange: #ff9f43;
    --tech-green: #20b86b;
    --tech-text: #18283c;
    --tech-muted: #697b8f;
    --tech-border: #e0e9f2;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-technologies-page {
    width: 100%;
    overflow: hidden;
    color: var(--tech-text);
    background: #fff;
}

.lbs-technologies-page *,
.lbs-technologies-page *::before,
.lbs-technologies-page *::after {
    box-sizing: border-box;
}

.lbs-technologies-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-technologies-page .section {
    padding: 90px 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.tech-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--tech-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.tech-heading {
    max-width: 830px;
    margin: 0 auto 50px;
    text-align: center;
}

.tech-heading h2 {
    margin: 0 0 17px;
    color: var(--tech-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.tech-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--tech-blue),
            var(--tech-purple),
            var(--tech-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--tech-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.tech-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;
}

.tech-btn:hover {
    transform: translateY(-2px);
}

.tech-btn-primary {
    border: 1px solid var(--tech-blue);
    background:
        linear-gradient(
            135deg,
            var(--tech-blue),
            var(--tech-purple)
        );
    color: #fff;
    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}

.tech-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8,124,255,.30);
}

.tech-btn-outline {
    border: 1px solid #cbd8e7;
    background: #fff;
    color: var(--tech-navy);
}

.tech-btn-outline:hover {
    border-color: var(--tech-blue);
    color: var(--tech-blue);
}

.tech-btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--tech-purple);
    box-shadow:
        0 10px 30px rgba(0,0,0,.10);
}

.tech-btn-dark {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.tech-btn-dark:hover {
    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO
   ========================================================= */

.tech-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--tech-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%
        );
}

.tech-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
        );
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tech-orb-one {
    width: 470px;
    height: 470px;
    left: -235px;
    bottom: -235px;
    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.19),
            transparent 70%
        );
}

.tech-orb-two {
    width: 540px;
    height: 540px;
    right: -270px;
    top: -270px;
    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.19),
            transparent 70%
        );
}

.tech-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
   ========================================================= */

.tech-hero-content {
    max-width: 590px;
}

.tech-hero-content h1 {
    margin: 0 0 23px;
    color: var(--tech-navy);
    font-size: clamp(48px,5.5vw,72px);
    line-height: .96;
    letter-spacing: -.065em;
}

.tech-hero-content h1 span,
.tech-hero-content h1 strong {
    display: block;
}

.tech-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--tech-blue),
            var(--tech-cyan)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--tech-purple),
            var(--tech-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-hero-content > p {
    max-width: 570px;
    margin: 0 0 28px;
    color: var(--tech-muted);
    font-size: 15px;
    line-height: 1.8;
}

.tech-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.tech-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #8090a1;
    font-size: 8px;
    font-weight: 700;
}

.tech-trust strong {
    color: var(--tech-navy);
    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   HERO TECHNOLOGY CORE
   ========================================================= */

.tech-hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-visual-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.14),
            rgba(24,201,232,.06) 42%,
            transparent 70%
        );
}

.tech-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px dashed rgba(118,87,255,.20);
    border-radius: 50%;
    transform: translate(-50%,-50%);
}

.tech-ring-one {
    width: 330px;
    height: 330px;
}

.tech-ring-two {
    width: 470px;
    height: 470px;
    border-color: rgba(8,124,255,.12);
}

.tech-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 20;
    width: 142px;
    height: 142px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    border: 5px solid rgba(118,87,255,.12);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--tech-blue),
            var(--tech-purple),
            var(--tech-pink)
        );
    color: #fff;
    box-shadow:
        0 22px 50px rgba(118,87,255,.23);
    animation:
        techCorePulse 3.5s ease-in-out infinite;
}

.tech-core strong {
    font-size: 32px;
    font-weight: 950;
}

.tech-core span {
    margin-top: 4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .12em;
}

@keyframes techCorePulse {

    0%,
    100% {
        box-shadow:
            0 22px 50px rgba(118,87,255,.23);
    }

    50% {
        box-shadow:
            0 27px 60px rgba(8,124,255,.28);
    }
}


/* =========================================================
   TECHNOLOGY NODES
   ========================================================= */

.tech-node {
    position: absolute;
    z-index: 30;
    min-width: 112px;
    padding: 12px 14px;
    border: 1px solid #dfe8f1;
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    color: var(--tech-navy);
    text-align: center;
    font-size: 7px;
    font-weight: 900;
    box-shadow:
        0 12px 28px rgba(7,27,53,.08);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.tech-node:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 18px 36px rgba(7,27,53,.12);
}

.tech-node-php {
    left: 20px;
    top: 78px;
    border-left: 3px solid var(--tech-blue);
}

.tech-node-js {
    left: 50%;
    top: 17px;
    transform: translateX(-50%);
    border-left: 3px solid var(--tech-purple);
}

.tech-node-db {
    right: 20px;
    top: 78px;
    border-left: 3px solid var(--tech-orange);
}

.tech-node-api {
    left: 20px;
    bottom: 78px;
    border-left: 3px solid var(--tech-green);
}

.tech-node-cloud {
    left: 50%;
    bottom: 17px;
    transform: translateX(-50%);
    border-left: 3px solid var(--tech-pink);
}

.tech-node-ai {
    right: 20px;
    bottom: 78px;
    border-left: 3px solid var(--tech-cyan);
}


/* =========================================================
   CONNECTIONS
   ========================================================= */

.tech-connection {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: 215px;
    height: 1px;
    transform-origin: left center;
    background:
        linear-gradient(
            90deg,
            rgba(8,124,255,.04),
            rgba(118,87,255,.30),
            transparent
        );
}

.tech-connection-one {
    transform: rotate(-151deg);
}

.tech-connection-two {
    transform: rotate(-90deg);
}

.tech-connection-three {
    transform: rotate(-29deg);
}

.tech-connection-four {
    transform: rotate(29deg);
}

.tech-connection-five {
    transform: rotate(90deg);
}

.tech-connection-six {
    transform: rotate(151deg);
}


/* =========================================================
   TECHNOLOGY STACK
   ========================================================= */

.tech-stack {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #fff
        );
    border-top: 1px solid #edf2f7;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
}

.tech-stack-card {
    position: relative;
    min-height: 300px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--tech-border);
    border-top-width: 3px;
    border-radius: 17px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.tech-stack-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    opacity: .6;
}

.tech-stack-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 23px 46px rgba(7,27,53,.09);
}

.tech-stack-card.blue-card {
    border-top-color: var(--tech-blue);
}

.tech-stack-card.blue-card::after {
    background: rgba(8,124,255,.07);
}

.tech-stack-card.purple-card {
    border-top-color: var(--tech-purple);
}

.tech-stack-card.purple-card::after {
    background: rgba(118,87,255,.07);
}

.tech-stack-card.orange-card {
    border-top-color: var(--tech-orange);
}

.tech-stack-card.orange-card::after {
    background: rgba(255,159,67,.08);
}

.tech-stack-card.green-card {
    border-top-color: var(--tech-green);
}

.tech-stack-card.green-card::after {
    background: rgba(32,184,107,.07);
}

.tech-stack-card.cyan-card {
    border-top-color: var(--tech-cyan);
}

.tech-stack-card.cyan-card::after {
    background: rgba(24,201,232,.07);
}

.tech-stack-card.pink-card {
    border-top-color: var(--tech-pink);
}

.tech-stack-card.pink-card::after {
    background: rgba(236,72,153,.07);
}

.tech-stack-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(--tech-purple);
    font-size: 7px;
    font-weight: 900;
}

.tech-stack-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--tech-navy);
    font-size: 18px;
}

.tech-stack-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: var(--tech-muted);
    font-size: 10px;
    line-height: 1.75;
}

.tech-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-tags span {
    padding: 6px 8px;
    border: 1px solid #e0e8f0;
    border-radius: 20px;
    background: #f8fbff;
    color: #617487;
    font-size: 6px;
    font-weight: 800;
}


/* =========================================================
   DEVELOPMENT LAYERS
   ========================================================= */

.tech-layers {
    background: #fff;
}

.tech-layer-system {
    max-width: 720px;
    margin: 0 auto;
}

.tech-layer {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr auto;
    align-items: center;
    gap: 15px;
    min-height: 82px;
    padding: 16px 21px;
    border: 1px solid var(--tech-border);
    border-radius: 13px;
    background: #fff;
    box-shadow:
        0 10px 25px rgba(7,27,53,.05);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.tech-layer:hover {
    transform: translateX(7px);
    border-color: #cbdced;
    box-shadow:
        0 15px 32px rgba(7,27,53,.08);
}

.tech-layer > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );
    color: var(--tech-purple);
    font-size: 7px;
    font-weight: 900;
}

.tech-layer strong {
    color: var(--tech-navy);
    font-size: 11px;
}

.tech-layer small {
    color: var(--tech-muted);
    font-size: 8px;
}

.tech-layer-arrow {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-blue);
    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   ENGINEERING PRINCIPLES
   ========================================================= */

.tech-principles {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fbf9ff
        );
}

.tech-principle-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.tech-principle-grid article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--tech-border);
    border-radius: 15px;
    background: #fff;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.tech-principle-grid article:hover {
    transform: translateY(-7px);
    border-color: #cbdced;
    box-shadow:
        0 19px 38px rgba(7,27,53,.07);
}

.tech-principle-grid article > div {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );
    color: var(--tech-purple);
    font-size: 7px;
    font-weight: 900;
}

.tech-principle-grid h3 {
    margin: 0 0 10px;
    color: var(--tech-navy);
    font-size: 14px;
}

.tech-principle-grid p {
    margin: 0;
    color: var(--tech-muted);
    font-size: 9px;
    line-height: 1.75;
}


/* =========================================================
   PROCESS
   ========================================================= */

.tech-process {
    background: #fff;
}

.tech-process-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.tech-process-content h2 {
    margin: 0 0 18px;
    color: var(--tech-navy);
    font-size: clamp(35px,4vw,51px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.tech-process-content h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--tech-blue),
            var(--tech-purple),
            var(--tech-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-process-content > p {
    max-width: 520px;
    margin: 0 0 27px;
    color: var(--tech-muted);
    font-size: 13px;
    line-height: 1.8;
}

.tech-process-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tech-process-points > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border: 1px solid var(--tech-border);
    border-radius: 9px;
    background: #fff;
}

.tech-process-points span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    background: #edf5ff;
    color: var(--tech-blue);
    font-size: 6px;
    font-weight: 900;
}

.tech-process-points strong {
    color: var(--tech-navy);
    font-size: 9px;
}


/* =========================================================
   PROCESS VISUAL
   ========================================================= */

.tech-process-visual {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid #e0e9f2;
    border-radius: 23px;
    background:
        radial-gradient(
            circle at center,
            rgba(118,87,255,.09),
            transparent 40%
        ),
        #fff;
    box-shadow:
        0 25px 60px rgba(7,27,53,.07);
}

.tech-process-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .55;
    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;
}

.tech-process-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 335px;
    height: 335px;
    transform: translate(-50%,-50%);
    border: 1px dashed rgba(118,87,255,.17);
    border-radius: 50%;
}

.tech-process-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 20;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--tech-blue),
            var(--tech-purple),
            var(--tech-pink)
        );
    color: #fff;
    box-shadow:
        0 20px 45px rgba(118,87,255,.22);
}

.tech-process-center strong {
    font-size: 24px;
    font-weight: 950;
}

.tech-process-center span {
    margin-top: 3px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .13em;
}

.tech-process-item {
    position: absolute;
    z-index: 25;
    min-width: 78px;
    padding: 10px 13px;
    border: 1px solid #dfe8f1;
    border-radius: 9px;
    background: #fff;
    color: var(--tech-navy);
    text-align: center;
    font-size: 6px;
    font-weight: 900;
    box-shadow:
        0 10px 24px rgba(7,27,53,.07);
}

.item-one {
    left: 45px;
    top: 65px;
    border-left: 3px solid var(--tech-blue);
}

.item-two {
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    border-left: 3px solid var(--tech-purple);
}

.item-three {
    right: 45px;
    top: 65px;
    border-left: 3px solid var(--tech-orange);
}

.item-four {
    left: 45px;
    bottom: 65px;
    border-left: 3px solid var(--tech-green);
}

.item-five {
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    border-left: 3px solid var(--tech-pink);
}

.item-six {
    right: 45px;
    bottom: 65px;
    border-left: 3px solid var(--tech-cyan);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.tech-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;
}

.tech-final-glow {
    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%
        );
}

.tech-final-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: auto;
}

.tech-final-content > span {
    color: #65dcff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
}

.tech-final-content h2 {
    margin: 15px 0 18px;
    color: #fff;
    font-size: clamp(40px,5vw,62px);
    line-height: 1;
    letter-spacing: -.05em;
}

.tech-final-content h2 strong {
    display: block;
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-final-content > p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: #c2d0e0;
    font-size: 14px;
    line-height: 1.8;
}

.tech-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .tech-stack-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .tech-principle-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-technologies-page .container {
        width: min(
            calc(100% - 30px),
            620px
        );
    }

    .lbs-technologies-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .tech-hero {
        min-height: auto;
        padding: 65px 0;
    }

    .tech-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-hero-content {
        max-width: 620px;
        margin: auto;
        text-align: center;
    }

    .tech-hero-content h1 {
        font-size: clamp(42px,9vw,60px);
    }

    .tech-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-hero-actions {
        justify-content: center;
    }

    .tech-trust {
        justify-content: center;
    }


    /* Technology Core */

    .tech-hero-visual {
        min-height: 535px;
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .tech-ring-one {
        width: 280px;
        height: 280px;
    }

    .tech-ring-two {
        width: 400px;
        height: 400px;
    }


    /* Process */

    .tech-process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tech-process-content {
        text-align: center;
    }

    .tech-process-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-process-points {
        text-align: left;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-technologies-page .container {
        width: calc(100% - 28px);
    }

    .lbs-technologies-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .tech-hero {
        padding: 50px 0;
    }

    .tech-hero-content h1 {
        font-size: 39px;
    }

    .tech-hero-actions,
    .tech-final-actions {
        flex-direction: column;
    }

    .tech-btn {
        width: 100%;
    }

    .tech-trust {
        gap: 13px;
    }


    /* Core */

    .tech-hero-visual {
        min-height: 475px;
    }

    .tech-visual-glow {
        width: 380px;
        height: 380px;
    }

    .tech-ring-one {
        width: 220px;
        height: 220px;
    }

    .tech-ring-two {
        width: 330px;
        height: 330px;
    }

    .tech-core {
        width: 100px;
        height: 100px;
    }

    .tech-core strong {
        font-size: 24px;
    }

    .tech-core span {
        font-size: 5px;
    }

    .tech-node {
        min-width: 82px;
        padding: 9px 7px;
        font-size: 5px;
    }

    .tech-node-php {
        left: 0;
        top: 55px;
    }

    .tech-node-js {
        top: 5px;
    }

    .tech-node-db {
        right: 0;
        top: 55px;
    }

    .tech-node-api {
        left: 0;
        bottom: 55px;
    }

    .tech-node-cloud {
        bottom: 5px;
    }

    .tech-node-ai {
        right: 0;
        bottom: 55px;
    }

    .tech-connection {
        width: 140px;
    }


    /* Stack */

    .tech-stack-grid,
    .tech-principle-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack-card {
        min-height: auto;
        padding: 23px;
    }


    /* Layers */

    .tech-layer {
        grid-template-columns: 36px 1fr;
        gap: 10px;
    }

    .tech-layer small {
        display: block;
        grid-column: 2;
        margin-top: -4px;
    }

    .tech-layer-arrow {
        height: 28px;
    }


    /* Process Visual */

    .tech-process-visual {
        min-height: 440px;
        border-radius: 18px;
    }

    .tech-process-center {
        width: 105px;
        height: 105px;
    }

    .tech-process-center strong {
        font-size: 21px;
    }

    .tech-process-item {
        min-width: 68px;
        padding: 8px;
        font-size: 5px;
    }

    .item-one {
        left: 8px;
        top: 55px;
    }

    .item-two {
        top: 15px;
    }

    .item-three {
        right: 8px;
        top: 55px;
    }

    .item-four {
        left: 8px;
        bottom: 55px;
    }

    .item-five {
        bottom: 15px;
    }

    .item-six {
        right: 8px;
        bottom: 55px;
    }


    /* Final */

    .tech-final {
        padding: 75px 0;
    }

    .tech-final-content h2 {
        font-size: 36px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-technologies-page a:focus-visible,
.lbs-technologies-page button:focus-visible {
    outline:
        3px solid rgba(8,124,255,.25);
    outline-offset: 3px;
}


/* =========================================================
   JAVASCRIPT STATES
   ========================================================= */

.tech-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s ease;
    transition-delay:
        var(--tech-delay, 0ms);
}

.tech-visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-node-selected {
    transform:
        translateY(-6px) scale(1.04) !important;
    border-color:
        var(--tech-blue) !important;
    box-shadow:
        0 18px 36px rgba(8,124,255,.13) !important;
}

.tech-stack-active {
    transform:
        translateY(-8px) !important;
    border-color:
        var(--tech-blue) !important;
    box-shadow:
        0 23px 46px rgba(8,124,255,.12) !important;
}

.tech-layer-active {
    transform:
        translateX(7px) !important;
    border-color:
        var(--tech-blue) !important;
    box-shadow:
        0 15px 32px rgba(8,124,255,.10) !important;
}

.tech-button-clicked {
    transform: scale(.97) !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tech-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .tech-core {
        animation: none !important;
    }

    .tech-node-selected,
    .tech-stack-active,
    .tech-layer-active {
        transform: none !important;
    }

}