/* =========================================================
   UNITECH SOLUTIONS
   Corporate / AI Technology Website
========================================================= */

:root {
    --navy-950: #030d1f;
    --navy-900: #06152d;
    --navy-850: #081a36;
    --navy-800: #0b2344;

    --blue: #1687ff;
    --blue-light: #39b7ff;
    --cyan: #61d5ff;

    --white: #ffffff;
    --text: #e8f1fc;
    --muted: #9db0c8;
    --dark-text: #12233b;

    --border-dark: rgba(255, 255, 255, 0.10);
    --border-light: #e4ebf3;

    --shadow: 0 25px 70px rgba(0, 0, 0, 0.18);

    --container: 1180px;
    --radius: 18px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--dark-text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 106px;

    z-index: 100;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    background:
        rgba(4, 18, 39, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    height: 106px;

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

    position: relative;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    height: 100%;
}

.brand-logo {
    width: 150px;
    max-height: 92px;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 36px;
}

.main-nav > a:not(.nav-cta) {
    position: relative;

    color: #dce8f6;

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

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -11px;

    width: 0;
    height: 2px;

    border-radius: 2px;

    background: var(--blue-light);

    transition:
        width 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a.active {
    color: #ffffff;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.active::after {
    width: 100%;
}


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 60px;

    padding:
        0 25px;

    border-radius: 13px;

    color: white;

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

    background:
        linear-gradient(
            135deg,
            #178bff,
            #0864d8
        );

    box-shadow:
        0 10px 30px rgba(13, 120, 242, 0.25);

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

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(13, 120, 242, 0.35);
}


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

.mobile-toggle {
    display: none;

    border: 0;
    background: transparent;

    width: 42px;
    height: 42px;

    cursor: pointer;
}

.mobile-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: white;

    margin: 5px auto;

    border-radius: 2px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 780px;

    display: flex;
    align-items: center;

    color: white;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(16, 117, 221, 0.20),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #030e21 0%,
            #061b38 52%,
            #082c58 100%
        );
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            rgba(87, 173, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87, 173, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 35%,
            black 75%,
            transparent
        );
}


/* =========================================================
   HERO GLOWS
========================================================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}

.hero-glow-one {
    width: 420px;
    height: 420px;

    right: -150px;
    top: 160px;

    background:
        radial-gradient(
            circle,
            rgba(0, 150, 255, 0.25),
            transparent 70%
        );
}

.hero-glow-two {
    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -100px;

    background:
        radial-gradient(
            circle,
            rgba(0, 105, 220, 0.25),
            transparent 70%
        );
}


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

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 50px;

    /*
       Important:
       Header is 106px tall.
       Additional spacing prevents
       eyebrow/logo collision.
    */
    padding-top: 145px;
    padding-bottom: 65px;
}


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

.hero-content {
    max-width: 680px;
}

.eyebrow,
.section-label {
    color: var(--cyan);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 27px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 15px rgba(70, 210, 255, 0.9);
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {
    font-size:
        clamp(
            54px,
            6vw,
            82px
        );

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 800;

    max-width: 700px;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;

    color: #ffffff;
}

.hero h1 strong {
    display: block;

    font-weight: 800;

    background:
        linear-gradient(
            90deg,
            #1894ff,
            #62d5ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


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

.hero-description {
    max-width: 600px;

    color: #b8cbe0;

    font-size: 18px;

    line-height: 1.75;

    margin-bottom: 36px;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

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

    gap: 12px;

    min-height: 54px;

    padding:
        0 25px;

    border-radius: 11px;

    font-size: 15px;

    font-weight: 700;

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

.btn span {
    font-size: 19px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.btn-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #168bff,
            #0965dc
        );

    box-shadow:
        0 15px 35px rgba(0, 111, 236, 0.28);
}

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

    box-shadow:
        0 20px 45px rgba(0, 111, 236, 0.38);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.btn-secondary {
    color: white;

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

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

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

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

    border-color:
        rgba(255, 255, 255, 0.50);
}


/* =========================================================
   HERO TRUST / STATS
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 55px;
}

.trust-item {
    display: flex;

    flex-direction: column;
}

.trust-item strong {
    font-size: 23px;

    color: white;
}

.trust-item span {
    color: #8fa7c1;

    font-size: 12px;
}

.trust-divider {
    width: 1px;
    height: 38px;

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


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

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}


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

.visual-orbit {
    position: absolute;

    border:
        1px solid rgba(65, 184, 255, 0.20);

    border-radius: 50%;

    transform: rotate(-20deg);
}

.orbit-one {
    width: 390px;
    height: 390px;
}

.orbit-two {
    width: 300px;
    height: 460px;
}

.orbit-three {
    width: 500px;
    height: 250px;
}


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

.ai-core {
    position: relative;

    width: 205px;
    height: 205px;

    display: flex;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #123e72 0%,
            #09244a 48%,
            #06172e 100%
        );

    border:
        1px solid rgba(81, 193, 255, 0.60);

    box-shadow:
        0 0 70px rgba(0, 138, 255, 0.28),
        inset 0 0 40px rgba(27, 163, 255, 0.16);

    z-index: 3;
}

.ai-core-ring {
    position: absolute;

    inset: 13px;

    border-radius: 50%;

    border:
        1px dashed rgba(93, 211, 255, 0.60);

    animation:
        spin 18s linear infinite;
}

.ai-core-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 2;
}

.ai-symbol {
    color: var(--cyan);

    font-size: 34px;

    line-height: 1;

    margin-bottom: 4px;
}

.ai-core-content strong {
    font-size: 45px;

    line-height: 1;
}

.ai-core-content small {
    color: #79a8ce;

    font-size: 8px;

    letter-spacing: 2px;

    margin-top: 7px;
}


/* =========================================================
   NETWORK
========================================================= */

.network {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #54d3ff;

    box-shadow:
        0 0 20px #32baff;
}

.network::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(67, 202, 255, 0.7),
            transparent
        );

    transform-origin: left center;
}

.network-one {
    top: 75px;
    right: 115px;
}

.network-one::after {
    transform: rotate(150deg);
}

.network-two {
    bottom: 90px;
    left: 70px;
}

.network-two::after {
    transform: rotate(-15deg);
}

.network-three {
    top: 145px;
    left: 55px;
}

.network-three::after {
    transform: rotate(20deg);
}

.network-four {
    bottom: 80px;
    right: 70px;
}

.network-four::after {
    transform: rotate(170deg);
}


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

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 17px;

    border:
        1px solid rgba(117, 205, 255, 0.20);

    border-radius: 13px;

    background:
        rgba(8, 29, 58, 0.76);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);

    z-index: 5;
}

.floating-card strong {
    display: block;

    color: white;

    font-size: 12px;
}

.floating-card small {
    display: block;

    color: #7fa1c2;

    font-size: 9px;

    margin-top: 2px;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 9px;

    color: var(--cyan);

    background:
        rgba(30, 155, 255, 0.12);

    font-size: 16px;
}

.card-app {
    top: 72px;
    left: 20px;
}

.card-cloud {
    right: 10px;
    bottom: 65px;
}

.card-ai {
    right: 5px;
    top: 105px;
}


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

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


/* =========================================================
   COMMON SECTIONS
========================================================= */

.services-section,
.why-section,
.testimonials-section {
    padding: 110px 0;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 60px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2,
.why-content h2 {
    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--dark-text);

    margin-top: 13px;
}

.section-heading h2 span,
.why-content h2 span {
    display: block;

    color: var(--blue);
}

.section-heading p {
    color: #687a91;

    font-size: 17px;

    line-height: 1.75;

    margin-top: 18px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: #f7faff;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    padding:
        34px 28px;

    min-height: 330px;

    border:
        1px solid #e3eaf3;

    border-radius: var(--radius);

    background: white;

    overflow: hidden;

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

.service-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(19, 137, 255, 0.12),
            transparent 70%
        );
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(21, 137, 255, 0.25);

    box-shadow:
        0 25px 55px rgba(15, 55, 95, 0.10);
}

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #d7e3ef;

    font-size: 12px;

    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

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

    border-radius: 15px;

    color: var(--blue);

    background:
        linear-gradient(
            135deg,
            #e8f5ff,
            #f4fbff
        );

    font-size: 25px;

    margin-bottom: 28px;
}

.service-card h3 {
    color: #142942;

    font-size: 20px;

    margin-bottom: 13px;
}

.service-card p {
    color: #6c7d91;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 22px;
}

.service-card a {
    color: var(--blue);

    font-size: 13px;

    font-weight: 700;
}

.service-card a span {
    margin-left: 6px;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background:
        linear-gradient(
            110deg,
            #06172f,
            #0b315c
        );

    color: white;
}

.stats-container {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 42px 0;
}

.stat-item {
    display: flex;

    flex-direction: column;

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

    min-height: 90px;

    border-right:
        1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    font-size: 35px;

    line-height: 1;

    background:
        linear-gradient(
            90deg,
            white,
            #70d6ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.stat-item span {
    color: #8fa8c3;

    font-size: 12px;

    margin-top: 9px;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: white;
}

.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    align-items: center;
}

.why-visual {
    position: relative;

    min-height: 480px;

    display: flex;

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

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #06172f,
            #0b315b
        );
}

.why-grid-lines {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(78, 180, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(78, 180, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.why-circle {
    position: absolute;

    border:
        1px solid rgba(69, 193, 255, 0.18);

    border-radius: 50%;
}

.circle-one {
    width: 430px;
    height: 430px;
}

.circle-two {
    width: 280px;
    height: 280px;
}

.why-panel {
    position: relative;

    width: 350px;

    padding: 30px;

    border:
        1px solid rgba(112, 207, 255, 0.25);

    border-radius: 18px;

    background:
        rgba(5, 22, 45, 0.86);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.30);

    z-index: 2;
}

.panel-top {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #83a6c6;

    font-size: 9px;

    letter-spacing: 1.5px;
}

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

    border-radius: 50%;

    background: #36d695;

    box-shadow:
        0 0 10px rgba(54, 214, 149, 0.8);
}

.panel-title {
    color: white;

    font-size: 27px;

    line-height: 1.15;

    margin: 30px 0;
}

.panel-title strong {
    display: block;

    color: var(--cyan);
}

.panel-bars {
    display: grid;

    gap: 14px;
}

.panel-bars > div {
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

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

.panel-bars span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #138aff,
            #5bd5ff
        );
}

.panel-footer {
    display: flex;

    justify-content: space-between;

    color: #7795b2;

    font-size: 10px;

    margin-top: 22px;
}

.panel-footer strong {
    color: #5bd5ff;
}


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

.why-content > p {
    color: #687b91;

    font-size: 16px;

    line-height: 1.8;

    margin:
        22px
        0
        30px;
}

.check-list {
    display: grid;

    gap: 21px;

    margin-bottom: 35px;
}

.check-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}

.check {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    color: var(--blue);

    background: #e8f5ff;

    font-size: 12px;

    font-weight: 900;
}

.check-item strong {
    display: block;

    color: #1a304b;

    font-size: 15px;

    margin-bottom: 3px;
}

.check-item p {
    color: #718399;

    font-size: 13px;
}


/* =========================================================
   TECHNOLOGY STRIP
========================================================= */

.technology-strip {
    padding: 32px 0;

    background: #f4f8fc;

    border-top:
        1px solid #e4ebf3;

    border-bottom:
        1px solid #e4ebf3;
}

.technology-strip p {
    text-align: center;

    color: #91a0b1;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;

    margin-bottom: 22px;
}

.technology-items {
    display: flex;

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

    flex-wrap: wrap;

    gap: 55px;
}

.technology-items span {
    color: #52657b;

    font-size: 15px;

    font-weight: 800;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: #f8fbff;
}

.testimonial-grid {
    display: grid;

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

    gap: 20px;
}

.testimonial-card {
    position: relative;

    padding: 36px;

    border:
        1px solid #e3eaf2;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 10px 35px rgba(20, 50, 80, 0.04);
}

.testimonial-card.featured {
    border-color:
        rgba(21, 137, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(21, 137, 255, 0.10);
}

.quote-mark {
    color: #1a91ff;

    font-family: Georgia, serif;

    font-size: 60px;

    line-height: 0.7;

    margin-bottom: 20px;
}

.testimonial-card > p {
    color: #64768b;

    font-size: 14px;

    line-height: 1.8;

    min-height: 100px;
}

.testimonial-person {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid #edf1f5;
}

.person-avatar {
    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 50%;

    color: var(--blue);

    background: #eaf5ff;

    font-size: 11px;

    font-weight: 800;
}

.testimonial-person strong {
    display: block;

    color: #1b3049;

    font-size: 13px;
}

.testimonial-person span {
    display: block;

    color: #8a99a9;

    font-size: 11px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding:
        0
        0
        110px;

    background: #f8fbff;
}

.cta-card {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding:
        60px 65px;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #06172f,
            #0b3768
        );

    box-shadow:
        0 30px 70px rgba(7, 36, 72, 0.18);
}

.cta-card::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -120px;
    top: -170px;

    border-radius: 50%;

    border:
        1px solid rgba(90, 211, 255, 0.20);

    box-shadow:
        0 0 0 60px rgba(74, 186, 255, 0.04),
        0 0 0 120px rgba(74, 186, 255, 0.025);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 680px;
}

.cta-content h2 {
    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.05;

    letter-spacing: -2px;

    margin-top: 10px;
}

.cta-content h2 span {
    color: var(--cyan);
}

.cta-content p {
    color: #b2c8df;

    font-size: 15px;

    max-width: 580px;

    margin-top: 15px;
}

.btn-white {
    position: relative;

    z-index: 3;

    flex-shrink: 0;

    color: #0758ad;

    background: white;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: #8fa4bb;

    background: #030d1e;

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.2fr;

    gap: 55px;

    padding-bottom: 60px;
}

.footer-logo {
    width: 155px;

    display: block;
}

.footer-brand p {
    max-width: 340px;

    color: #7e94ad;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 20px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h3 {
    color: white;

    font-size: 13px;

    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    color: #8297ae;

    font-size: 12px;

    transition:
        color 0.2s ease;
}

.footer-column a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #657c96;

    font-size: 11px;
}


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

@media (max-width: 1050px) {

    .main-nav {
        gap: 22px;
    }

    .hero-container {
        gap: 25px;
    }

    .hero h1 {
        font-size: 64px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-grid {
        gap: 50px;
    }

    .brand-logo {
        width: 140px;
    }

    .nav-cta {
        padding: 0 20px;
    }
}


/* =========================================================
   MOBILE NAVIGATION / TABLET
========================================================= */

@media (max-width: 900px) {

    .site-header {
        height: 82px;
    }

    .nav-container {
        height: 82px;
    }

    .brand-logo {
        width: 135px;
        max-height: 70px;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 92px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

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

        border-radius: 15px;

        background:
            rgba(5, 22, 45, 0.97);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.30);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a:not(.nav-cta) {
        padding: 14px 12px;
    }

    .main-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;

        margin-top: 8px;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

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

        padding-top: 145px;
        padding-bottom: 70px;

        gap: 25px;
    }

    .hero-content {
        max-width: 760px;

        text-align: center;

        margin:
            0 auto;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        min-height: 430px;
    }


    /* TESTIMONIALS */

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card > p {
        min-height: auto;
    }


    /* CTA */

    .cta-card {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


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

@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }


    /* HEADER */

    .site-header {
        height: 76px;
    }

    .nav-container {
        height: 76px;
    }

    .brand-logo {
        width: 125px;
        max-height: 64px;
    }


    /* MOBILE NAV */

    .main-nav {
        top: 86px;

        left: 8px;
        right: 8px;
    }


    /* HERO */

    .hero-container {
        padding-top: 125px;
        padding-bottom: 55px;
    }

    .eyebrow {
        font-size: 10px;

        letter-spacing: 1.5px;

        margin-bottom: 22px;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -2px;

        line-height: 1;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.7;
    }


    /* HERO BUTTONS */

    .hero-actions {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }


    /* HERO TRUST */

    .hero-trust {
        gap: 12px;

        margin-top: 40px;
    }

    .trust-divider {
        height: 30px;
    }

    .trust-item strong {
        font-size: 18px;
    }

    .trust-item span {
        font-size: 9px;
    }


    /* HERO VISUAL */

    .hero-visual {
        min-height: 360px;

        transform: scale(0.82);

        margin:
            -35px
            -30px;
    }

    .ai-core {
        width: 165px;
        height: 165px;
    }

    .ai-core-content strong {
        font-size: 37px;
    }

    .visual-orbit.orbit-one {
        width: 310px;
        height: 310px;
    }

    .visual-orbit.orbit-two {
        width: 240px;
        height: 360px;
    }

    .visual-orbit.orbit-three {
        width: 380px;
        height: 200px;
    }

    .floating-card {
        padding:
            9px 12px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card small {
        font-size: 8px;
    }

    .card-app {
        left: 5px;
    }

    .card-cloud {
        right: 0;
    }

    .card-ai {
        right: 0;

        top: 70px;
    }


    /* SECTIONS */

    .services-section,
    .why-section,
    .testimonials-section {
        padding: 75px 0;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        padding: 25px 0;
    }

    .stat-item {
        border-right: 0;

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

        padding:
            20px 5px;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 0;
    }


    /* WHY */

    .why-visual {
        min-height: 350px;
    }

    .why-panel {
        width: 290px;

        padding: 24px;
    }


    /* TECHNOLOGY */

    .technology-items {
        gap:
            20px 30px;
    }


    /* CTA */

    .cta-section {
        padding-bottom: 75px;
    }

    .cta-card {
        padding:
            40px 28px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .brand-logo {
        width: 115px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero-container {
        padding-top: 115px;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-item strong {
        font-size: 16px;
    }

    .trust-item span {
        font-size: 8px;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   CLIENT MARQUEE
========================================================= */

.client-marquee-section {
    position: relative;
    padding: 80px 0 70px;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.client-marquee-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.client-marquee-header .section-label {
    margin-bottom: 14px;
}

.client-marquee-header h2 {
    margin: 0;
    color: #06152d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.client-marquee-header h2 span {
    color: #1687ff;
}

.client-marquee-header p {
    max-width: 680px;
    margin: 18px auto 0;
    color: #66758a;
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   MARQUEE
--------------------------------------------------------- */

.client-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 18px;

    /*
     * Soft fade at both edges.
     * Older browsers simply ignore this property.
     */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}


.client-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;

    animation: clientMarquee 32s linear infinite;

    will-change: transform;
}


/* ---------------------------------------------------------
   CLIENT NAME
--------------------------------------------------------- */

.client-name {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 0 34px;

    color: #16304f;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.client-name:hover {
    color: #1687ff;
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   SEPARATOR
--------------------------------------------------------- */

.client-separator {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 10px;

    color: #1687ff;

    font-size: 9px;
    opacity: 0.65;
}


/* ---------------------------------------------------------
   MARQUEE ANIMATION
--------------------------------------------------------- */

@keyframes clientMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ---------------------------------------------------------
   PAUSE ON HOVER
--------------------------------------------------------- */

.client-marquee:hover .client-marquee-track {
    animation-play-state: paused;
}


/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */

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

    .client-marquee-track {
        animation: none;
        transform: translateX(0);
    }

    .client-marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

    .client-marquee-section {
        padding: 65px 0 55px;
    }

    .client-marquee-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .client-marquee-header h2 {
        font-size: 34px;
    }

    .client-name {
        padding: 0 26px;
        font-size: 16px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

    .client-marquee-section {
        padding: 55px 0 45px;
    }

    .client-marquee-header {
        margin-bottom: 25px;
    }

    .client-marquee-header h2 {
        font-size: 28px;
    }

    .client-marquee-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .client-name {
        min-height: 52px;
        padding: 0 20px;
        font-size: 14px;
    }

    .client-separator {
        font-size: 7px;
    }

    .client-marquee-track {
        animation-duration: 26s;
    }

}