﻿:root {
    --brand: #2563eb;
    --brand-dark: #1d4ed8;
    --ink: #000000;
    --muted: #444444;
    --bg: #ffffff;
    --surface: #f8fafc;
    --ring: #cbd5e1;
    --success: #16a34a;
    --max: 1400px;
    --gutter: 24px;
    --radius: 16px;
    --section-pad: 30px;
    --header-height: 60px;
    --footer-height: 50px;
    --header-h: 0px;
    --logo-max-h: clamp(52px, 7vw, 84px);
    --logo-tile-h: clamp(96px, 12vw, 132px);
    --mobile-breakpoint: 768px;
}

* {
    box-sizing: border-box
}

html {
    height: 100%;
    font-size: clamp(15px, 0.9vw + 10px, 18px);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.25;
}

main {
    flex: 1 0 auto;
}

.container {
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter)
}

section {
    padding-block: clamp(8px, 2vw, 10px);
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

/* Header/Nav */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--ring);
    z-index: 10
}

.brand {
    font-weight: 700;
    text-decoration: none;
    color: var(--ink)
}

/* Brand text - full name on desktop, ESIG on mobile */
.brand-full {
    display: inline;
}

.brand-short {
    display: none;
}

@media (max-width: 768px) {
    .brand-full {
        display: none;
    }

    .brand-short {
        display: inline;
    }
}

/* Hamburger menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 20;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        margin: 5px 0;
        transition: 0.3s;
    }

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 250px;
        height: calc(100vh - var(--header-height));
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

        .nav.active {
            right: 0;
        }

        .nav a {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            margin: 4px 0;
        }

    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center
}

    .nav a {
        color: var(--ink);
        text-decoration: none;
        padding: 8px 6px;
        border-radius: 10px
    }

        .nav a:hover {
            background: var(--surface)
        }

/* Buttons - single shared system */
.btn,
.btn-index,
.btn-solutions,
.btn-demo {
    display: inline-block;
    font-size: clamp(10px, 1vw, 14px);
    padding: clamp(6px, 0.6vw, 10px) clamp(12px, 1.1vw, 20px);
    border-radius: 10px;
    border: 1px solid var(--ring);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary,
.btn-primary-index,
.btn-primary-solutions,
.btn-primary-demo {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

    .btn-primary:hover,
    .btn-primary-index:hover,
    .btn-primary-solutions:hover,
    .btn-primary-demo:hover {
        background: var(--brand-dark)
    }

.btn-outline,
.btn-outline-index,
.btn-outline-solutions,
.btn-outline-demo {
    background: rgba(255,255,255,0.6);
    color: var(--ink)
}

    .btn-outline:hover,
    .btn-outline-index:hover,
    .btn-outline-solutions:hover,
    .btn-outline-demo:hover {
        background: rgba(255,255,255,0.8)
    }

/* Layout grids & cards */
.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(12px, 2vw, 20px);
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr
    }
}

.card {
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    padding: 10px;
}

.features .cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

@media (max-width: 800px) {
    .features .cards {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width: 560px) {
    .features .cards {
        grid-template-columns: 1fr
    }
}

.muted {
    color: var(--muted)
}

/* CTA */
.cta-inner {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

    .cta-inner p {
        opacity: 0.8;
        margin: 0
    }

/* Footer */
.site-footer {
    border-top: 1px solid var(--ring);
    padding: 0 0
}

    .site-footer .container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

/* Hero */
.hero {
    padding-top: 20px;
    padding-bottom: 12px;
    background: linear-gradient(180deg,#eef2ff,transparent)
}

    .hero .container {
        display: grid;
        gap: 12px;
        max-width: 1400px;
    }

.hero-media {
    text-align: center;
}

    .hero-media img {
        width: min(100%, clamp(340px, 54vw, 720px));
        max-width: 720px;
        height: auto;
        display: inline-block;
    }

.hero-copy {
    text-align: center;
    margin-left: 0;
}

.hero .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 960px) {
    .hero .container {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
    }

    .hero-copy {
        text-align: left;
        margin-left: 12px;
    }

    .hero .actions {
        justify-content: flex-start;
    }
}

/* Utilities */
.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.checklist {
    padding-left: 18px
}

    .checklist li {
        margin: 8px 0
    }

/* Typography */
h1 {
    font-size: clamp(22px, 4.0vw, 36px);
    line-height: 1.15;
    margin: 0 0 8px;
    text-wrap: balance;
}

h2 {
    font-size: clamp(20px, 2.0vw, 30px);
    line-height: 1.0;
    margin: 0 0 6px;
    text-wrap: balance;
}

h3 {
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.20;
    margin: 0 0 4px;
    text-wrap: balance;
}

p, li {
    font-size: clamp(15px, 1.1vw, 18px);
}

:where(h1, h2, h3) + p {
    margin-top: 6px;
}

.hero h1 {
    font-size: clamp(14px, 2.0vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.cta h2 {
    font-size: clamp(14px, 2.0vw, 20px);
    line-height: 1.0;
    margin: 0;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .hero {
        background: linear-gradient(180deg,#f3f4f6, transparent);
    }
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: var(--ink);
    padding: 8px 12px;
    border: 1px solid var(--ring);
    border-radius: 8px;
    z-index: 1000;
}

    .skip-link:focus {
        left: 12px;
        top: 12px;
    }

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* Client logos */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    gap: 24px;
    align-items: stretch;
}

.logo-tile {
    height: var(--logo-tile-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

    .logo-tile img {
        max-height: var(--logo-max-h);
        max-width: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
        image-rendering: auto;
    }

.clients .logo-tile {
    height: calc(var(--logo-tile-h) * 1.1);
}

    .clients .logo-tile img {
        max-height: calc(var(--logo-max-h) * 1.8);
        opacity: 0;
        transform: translateY(6px);
        transition: opacity .8s ease, transform .8s ease;
    }

        .clients .logo-tile img.is-visible {
            opacity: 1;
            transform: none;
        }

@media (prefers-reduced-motion: reduce) {
    .clients .logo-tile img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ========================================
   SHARED PARALLAX & HERO STYLES
   ======================================== */

/* Shared parallax backgrounds */
.plx-bg-index,
.plx-bg-solutions,
.plx-bg-demo {
    position: fixed;
    inset: 0;
    will-change: background-position;
    pointer-events: none;
    transform: translate3d(0,0,0) scale(1.08);
}

.plx-bg-index {
    inset: -12vh 0 -12vh 0;
    background: url('/img/warehouse_info_1.jpg') center/cover no-repeat;
    opacity: 0.45;
}

.plx-bg-solutions {
    background: url("/img/futuristic-data-interface.jpg") center/cover no-repeat;
    opacity: 0.25;
}

.plx-bg-demo {
    background: url('/img/shop_floor_3.png') center/cover no-repeat;
    opacity: 0.35;
}

/* Mobile: disable parallax, enable scrolling */
@media (max-width: 768px) {
    .plx-bg-index,
    .plx-bg-solutions,
    .plx-bg-demo {
        position: fixed;
        transform: none;
        will-change: auto;
        opacity: 0.30;
    }
}

/* Shared hero-parallax base for Index & Solutions (grid layout) */
.hero-parallax-index,
.hero-parallax-solutions {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    width: 100%;
    display: grid;
    grid-template-areas:
        'logo .'
        'copy copy'
        'features features'
        'cta cta';
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    align-items: stretch;
    justify-items: center;
    text-align: center;
    padding: clamp(12px, 2vw, 20px);
    padding-top: calc(var(--header-h, 24px) + 8px);
    padding-bottom: clamp(44px, 9vh, 120px);
    z-index: 1;
    backdrop-filter: blur(0px);
}

.hero-parallax-index {
    background: linear-gradient(180deg,#eef2ff,transparent);
}

/* Solutions-specific override */
.hero-parallax-solutions {
    grid-template-rows: auto auto auto auto auto;
}


/* Mobile: natural scrolling, no 100vh constraint */
@media (max-width: 768px) {
    .hero-parallax-index,
    .hero-parallax-solutions {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 20px 16px;
    }
}

/* Demo uses flexbox instead of grid */
.hero-parallax-demo {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vh, 32px);
    text-align: center;
    padding: clamp(20px, 3vw, 40px);
    z-index: 1;
    backdrop-filter: blur(0px);
    overflow-y: auto;
}

/* Mobile: natural scrolling for Demo */
@media (max-width: 768px) {
    .hero-parallax-demo {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 20px 16px;
        justify-content: flex-start;
    }
}

.hero-content-demo {
    max-width: 800px;
    width: 100%;
    background: rgba(255,255,255,0.2);
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    padding: clamp(16px, 2vw, 24px);
    backdrop-filter: blur(4px);
}

/* Shared logo styles */
.logo-index,
.logo-solutions,
.logo-demo {
    grid-area: logo;
    text-align: left;
    justify-self: start;
    align-self: start;
}

.logo-index {
    margin-left: 8rem;
}

.logo-solutions {
    margin-left: 15rem;
    text-align: center;
}

.logo-demo {
    margin-left: 8rem;
}

    .logo-index img,
    .logo-solutions img,
    .logo-demo img {
        width: min(50vw, 480px);
        height: auto;
    }

/* Shared copy styles */
.copy-index,
.copy-solutions,
.copy-demo {
    grid-area: copy;
    text-align: center;
    justify-self: center;
    align-self: start;
}

    .copy-index h1,
    .copy-solutions h1,
    .copy-demo h1 {
        font-size: clamp(18px, 2vw, 30px);
        line-height: 1.1;
        margin: 0 0 10px;
    }

    .copy-index p,
    .copy-solutions p,
    .copy-demo p {
        font-size: clamp(14px, 1.4vw, 18px);
        margin: 0 0 20px;
        /*color: var(--muted);*/
    }

/* Shared actions */
.actions-index,
.actions-solutions,
.actions-demo {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 8px;
}

/* Shared features */
.features-index,
.features-solutions,
.features-demo {
    grid-area: features;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-self: center;
}

.feature-index,
.feature-solutions,
.feature-demo {
    flex: 1 1 clamp(40px, 8vw, 60px);
    background: rgba(255,255,255,0.3);
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    padding: clamp(10px, 1vw, 15px);
    min-width: clamp(280px, 8vh, 400px);
    max-width: 400px;
    min-height: clamp(40px, 8vh, 60px);
    max-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.feature-solutions {
    max-height: 300px;
}

    .feature-index h3,
    .feature-solutions h3,
    .feature-demo h3 {
        margin: 0 0 4px;
        font-size: clamp(12px, 1.1vw, 15px);
    }

    .feature-index p,
    .feature-solutions p,
    .feature-demo p {
        margin: 0;
        font-size: clamp(10px, 0.95vw, 13px);
        color: var(--muted);
        line-height: 1.25;
    }

.solutions-heading {
    grid-column: 1 / -1; /* spans both columns */
    grid-row: 1; /* goes ABOVE logo */
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
    z-index: 2; /* stays above parallax bg */
    font-size: clamp(10px, 0.95vw, 13px);
}

.logo-solutions {
    grid-row: 2;
}


/* Shared CTA */
.cta-index,
.cta-solutions,
.cta-demo {
    grid-area: cta;
    margin-top: clamp(10px, 2vw, 20px);
}

    .cta-index h2,
    .cta-solutions h2,
    .cta-demo h2 {
        font-size: clamp(14px, 1.5vw, 20px);
        margin: 0 0 4px;
    }

    .cta-index p,
    .cta-solutions p,
    .cta-demo p {
        font-size: clamp(12px, 1vw, 16px);
        margin: 0 0 8px;
        color: var(--muted);
    }

/* Responsive for parallax pages */
@media (max-width: 800px) {
    .hero-parallax-index,
    .hero-parallax-solutions,
    .hero-parallax-demo {
        grid-template-areas: 'logo' 'copy' 'features' 'cta';
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
    }

    .logo-index,
    .logo-solutions,
    .logo-demo {
        text-align: center;
        justify-self: center;
        margin-left: 60px;
    }
    /* NEW: let features behave normally on mobile */
    .hero-parallax-index .features-index {
        align-self: stretch; /* or flex-start if you prefer */
    }

    /* Solutions-specific override */
    .hero-parallax-solutions {
        grid-template-rows: auto auto auto auto auto;
    }
}


/* Solutions-specific nested content */
.hero-parallax-solutions .hero-content-solutions {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: clamp(20px, 10vh, 20px);
    padding-bottom: clamp(20px, 10vh, 20px);
}

/* ========================================
   SHARED MODAL SYSTEM
   ======================================== */

.modal-index,
.modal-solutions,
.modal-demo {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
}

    .modal-index.hidden,
    .modal-solutions.hidden,
    .modal-demo.hidden {
        display: none;
    }

.modal-backdrop-index,
.modal-backdrop-solutions,
.modal-backdrop-demo {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.3);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .22s ease;
}

.modal-dialog-index,
.modal-dialog-solutions,
.modal-dialog-demo {
    position: relative;
    width: min(720px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    overflow: auto;
    background: rgba(255,255,255,.50);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    backdrop-filter: blur(10px) saturate(1.1);
    border: 1px solid rgba(203,213,225,.6);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(2,6,23,.3);
    padding: clamp(16px, 3vw, 24px);
    transform: translateY(12px) scale(.98);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
}

/* Mobile: full-screen modal */
@media (max-width: 768px) {
    .modal-dialog-index,
    .modal-dialog-solutions,
    .modal-dialog-demo {
        width: calc(100vw - 16px);
        max-height: calc(100dvh - 16px);
        border-radius: 8px;
        padding: 16px;
    }
}

.modal-index.show .modal-backdrop-index,
.modal-solutions.show .modal-backdrop-solutions,
.modal-demo.show .modal-backdrop-demo {
    opacity: 1;
}

.modal-index.show .modal-dialog-index,
.modal-solutions.show .modal-dialog-solutions,
.modal-demo.show .modal-dialog-demo {
    transform: none;
    opacity: 1;
}

.modal-close-index,
.modal-close-solutions,
.modal-close-demo {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 28px;
    line-height: 1;
    border: 0;
    background: transparent;
    color: #334155;
    cursor: pointer;
}

/* Mobile: larger touch target */
@media (max-width: 768px) {
    .modal-close-index,
    .modal-close-solutions,
    .modal-close-demo {
        font-size: 32px;
        padding: 8px;
        top: 4px;
        right: 4px;
    }
}

.modal-body-index,
.modal-body-solutions,
.modal-body-demo {
    margin-top: .25rem;
}

    .modal-body-index p,
    .modal-body-solutions p,
    .modal-body-demo p {
        margin: .5rem 0;
    }

.modal-actions-index,
.modal-actions-solutions,
.modal-actions-demo {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Media frames for modals */
.media-frame-index,
.media-frame-demo {
    width: min(960px, 100%);
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}

.media-video-index,
.media-video-demo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-parallax {
    position: relative;
    background: url('/img/programming_1.jpg') center/cover no-repeat fixed;
    min-height: calc(87dvh - var(--header-h));
    display: flex;
    align-items: center;
    padding-block: clamp(32px, 8vh, 80px);
    isolation: isolate;
}

    .contact-parallax::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
        z-index: 0;
    }

.contact.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contact h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact h2 {
    font-size: 1.1rem;
    margin: 0 0 .75rem;
}

.contact h3 {
    font-size: 1rem;
    margin: 1rem 0 .25rem;
}

.contact .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
    justify-items: stretch;
}

@media (min-width: 768px) {
    .contact .grid {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}

.contact .card {
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(8px) saturate(1.05);
    -webkit-backdrop-filter: blur(8px) saturate(1.05);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15,23,42,0.08);
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
}

.contact .grid > .card {
    height: 100%;
}

.contact .card-body {
    padding-left: 1.25rem;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
}

.contact .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact .list li {
        margin: .5rem 0;
    }

.contact address {
    font-style: normal;
    line-height: 1.4;
}

.contact a {
    text-decoration: none;
}

    .contact a:hover {
        text-decoration: underline;
    }

.contact .team {
    display: flex;
    flex-direction: column;
}

.contact .team-body {
    display: flex;
    flex: 1;
}

.contact .team-list {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0;
    width: 100%;
    min-height: 8rem;
}

    .contact .team-list li {
        margin: 0;
    }

.contact .team-columns li,
.contact .general-columns li {
    display: grid;
    grid-template-columns: clamp(120px, 15ch, 220px) 1fr;
    align-items: center;
    gap: 0.2rem;
}

.contact .general-columns li {
    gap: 0.3rem;
}

.contact .team-columns .person,
.contact .general-columns .label {
    font-weight: 600;
    text-align: left;
}

.contact .team-columns .email {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0.75rem;
}

.contact .general .field {
    display: grid;
    grid-template-columns: clamp(120px, 15ch, 220px) 1fr;
    column-gap: 0.3rem;
    align-items: start;
    margin-top: 0.75rem;
}

    .contact .general .field .label {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
    }

    .contact .general .field .value {
        font-style: normal;
        line-height: 1.4;
        padding-right: 0.5rem;
    }

@media (max-width: 520px) {
    .contact .team-columns li,
    .contact .general-columns li,
    .contact .general .field {
        grid-template-columns: 1fr;
        row-gap: 0.25rem;
    }
}

@supports (-webkit-touch-callout: none) {
    @media (max-width: 900px) {
        .contact-parallax {
            background-attachment: scroll;
        }
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-parallax {
    position: relative;
    min-height: calc(87dvh - var(--header-h));
    display: flex;
    align-items: center;
    padding-block: clamp(32px, 8vh, 80px);
    isolation: isolate;
    overflow: hidden;
}

    .about-parallax .plx-bg-about {
        position: absolute;
        inset: -20vh 0 -20vh 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: translate3d(0,0,0) scale(1.06);
        will-change: transform;
        opacity: .35;
        z-index: 0;
        pointer-events: none;
    }

    .about-parallax::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
        z-index: 1;
    }

    .about-parallax .container {
        position: relative;
        z-index: 2;
    }

.about-card {
    max-width: 1100px;
    margin-inline: auto;
    background: rgba(255,255,255,0.50) !important;
    backdrop-filter: blur(8px) saturate(1.1);
    -webkit-backdrop-filter: blur(8px) saturate(1.1);
    border: 1px solid rgba(203,213,225,0.65);
    box-shadow: 0 8px 26px rgba(15,23,42,0.08);
    padding: clamp(16px, 2.2vw, 26px);
}

    .about-card > p:first-of-type {
        margin-top: 6px;
    }

@supports (-webkit-touch-callout: none) {
    @media (max-width: 900px) {
        .about-parallax .plx-bg-about {
            transform: scale(1.06) !important;
        }
    }
}

.solutions-spacer-30 {
    height: 30px;
    width: 100%;
}
