/* ============================================================
   PETRICK LABS — PREMIUM GLOBAL SYSTEM
   Brand: Petrick Labs
   Legal Entity: PT Petrick Solusi Digital

   Design language:
   Premium / Digital / Elegant / Interactive
   ============================================================ */

:root {

    --navy: #050B14;
    --navy-2: #0B1220;
    --navy-3: #111C2E;

    --cyan: #00AEEF;
    --cyan-light: #4DD9FF;
    --cyan-deep: #0077B6;

    --orange: #F36F21;
    --orange-light: #FF9B62;

    --white: #FFFFFF;
    --off-white: #F7F9FC;

    --text: #0B1220;
    --muted: #667085;

    --border: #E5EAF0;

    --grad-blue:
        linear-gradient(
            135deg,
            #00AEEF 0%,
            #0066D6 100%
        );

    --grad-orange:
        linear-gradient(
            135deg,
            #F36F21 0%,
            #E53935 100%
        );

    --grad-mixed:
        linear-gradient(
            135deg,
            #00AEEF 0%,
            #2563EB 48%,
            #F36F21 100%
        );

    --shadow-soft:
        0 10px 40px rgba(5, 11, 20, .07);

    --shadow-card:
        0 25px 70px rgba(5, 11, 20, .10);

    --shadow-heavy:
        0 40px 100px rgba(5, 11, 20, .18);

    --glow-blue:
        0 20px 70px rgba(0, 174, 239, .28);

    --glow-orange:
        0 20px 70px rgba(243, 111, 33, .28);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --radius-pill: 999px;

    --ease:
        cubic-bezier(.22, .61, .36, 1);

    --ease-spring:
        cubic-bezier(.16, 1, .3, 1);
}


/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family:
        'Plus Jakarta Sans',
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    color: var(--text);
    background: var(--off-white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: .025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

    z-index: 9999;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: var(--cyan);
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    padding-left: 28px;
    padding-right: 28px;
}

.mono {
    font-family:
        'JetBrains Mono',
        ui-monospace,
        monospace;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {

    position: sticky;

    top: 0;

    z-index: 900;

    background:
        rgba(255,255,255,.70);

    backdrop-filter:
        saturate(180%)
        blur(22px);

    -webkit-backdrop-filter:
        saturate(180%)
        blur(22px);

    border-bottom:
        1px solid
        rgba(5,11,20,.055);

    transition:
        background .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s var(--ease);
}

.site-header.scrolled {

    background:
        rgba(255,255,255,.92);

    box-shadow:
        0 10px 40px rgba(5,11,20,.07);

    border-bottom-color:
        rgba(5,11,20,.08);
}

/* =========================================================
   PREMIUM NAVBAR
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    pointer-events: none;
}

.navbar-shell {
    width: 100%;
    pointer-events: auto;
}

.navbar {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 0 22px;

    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 20px;

    box-shadow:
        0 12px 40px rgba(15, 23, 42, .08),
        0 2px 8px rgba(15, 23, 42, .04);

    transition:
        min-height .35s var(--ease-smooth),
        box-shadow .35s var(--ease-smooth),
        background .35s var(--ease-smooth),
        transform .35s var(--ease-smooth);
}

.site-header.scrolled {
    padding-top: 10px;
}

.site-header.scrolled .navbar {
    min-height: 60px;

    background: rgba(255, 255, 255, .94);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, .12),
        0 3px 10px rgba(15, 23, 42, .05);
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    text-decoration: none;

    transition:
        transform .3s var(--ease-spring),
        opacity .3s ease;
}

.brand:hover {
    transform: translateY(-1px) scale(1.015);
    opacity: .94;
}

.brand img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 190px;
    object-fit: contain;
}


/* NAV */

.nav-navigation {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 5px;

    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 15px;

    color: #475569;
    text-decoration: none;

    font-size: 13.5px;
    font-weight: 700;

    border-radius: 12px;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 4px;

    height: 2px;

    border-radius: 99px;

    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--cyan-deep)
    );

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform .3s var(--ease-spring);
}

.nav-link:hover {
    color: var(--navy);
    background: #F8FAFC;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--navy);
    background: #F1F5F9;
}


/* CTA */

.nav-cta-item {
    margin-left: 7px !important;
}

.nav-cta {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 0 18px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #F97316 0%,
            #F36F21 50%,
            #EA580C 100%
        );

    color: #fff !important;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(243, 111, 33, .22);

    overflow: hidden;

    transition:
        transform .3s var(--ease-spring),
        box-shadow .3s ease;
}

.nav-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255,255,255,.28) 50%,
            transparent 75%
        );

    transform: translateX(-130%);

    transition: transform .6s ease;
}

.nav-cta span,
.nav-cta svg {
    position: relative;
    z-index: 1;
}

.nav-cta:hover {
    color: #fff !important;

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #FB923C 0%,
            #F97316 50%,
            #EA580C 100%
        );

    box-shadow:
        0 13px 28px rgba(243, 111, 33, .30);
}

.nav-cta:hover::before {
    transform: translateX(130%);
}

.nav-cta svg {
    transition: transform .3s var(--ease-spring);
}

.nav-cta:hover svg {
    transform: translateX(3px);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    border-radius: 12px;

    background: #F8FAFC;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    border-radius: 99px;

    background: var(--navy);

    transition:
        transform .3s ease,
        opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE OVERLAY */

.nav-overlay {
    position: fixed;
    inset: 0;

    background: rgba(15, 23, 42, .38);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    z-index: 998;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.brand {

    display: flex;

    align-items: center;

    position: relative;

    z-index: 5;
}

.brand img {

    height: 47px;

    width: auto;

    transition:
        transform .35s var(--ease),
        filter .35s var(--ease);
}

.brand:hover img {

    transform: scale(1.035);

    filter:
        drop-shadow(
            0 7px 20px
            rgba(0,174,239,.18)
        );
}

.nav-links {

    display: flex;

    align-items: center;

    gap: 3px;

    list-style: none;
}

.nav-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        10px 15px;

    border-radius:
        var(--radius-pill);

    color: #344054;

    font-size: 14px;

    font-weight: 650;

    transition:
        color .25s var(--ease),
        background .25s var(--ease),
        transform .25s var(--ease);
}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 0;
    height: 2px;

    border-radius: 99px;

    background:
        var(--grad-blue);

    transform:
        translateX(-50%);

    transition:
        width .3s var(--ease);
}

.nav-links a:hover {

    color: var(--navy);

    background:
        rgba(0,174,239,.055);

    transform:
        translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 18px;
}

.nav-links a.active {

    color:
        var(--cyan-deep);

    background:
        rgba(0,174,239,.075);
}

.nav-cta {

    display: inline-flex !important;

    align-items: center;

    gap: 9px;

    margin-left: 7px;

    padding:
        11px 19px !important;

    color: #fff !important;

    background:
        var(--grad-orange);

    box-shadow:
        0 12px 32px
        rgba(243,111,33,.25);

    overflow: hidden;
}

.nav-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255,255,255,.28) 50%,
            transparent 75%
        );

    transform:
        translateX(-120%);

    transition:
        transform .7s var(--ease);
}

.nav-cta:hover::before {
    transform:
        translateX(120%);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {

    color: #fff !important;

    background:
        var(--grad-orange);

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 42px
        rgba(243,111,33,.34);
}

.menu-toggle {

    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 13px;

    background:
        rgba(5,11,20,.045);

    cursor: pointer;

    z-index: 10;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {

    position: absolute;

    width: 21px;
    height: 2px;

    border-radius: 99px;

    background: var(--navy);

    transition:
        transform .35s var(--ease),
        top .35s var(--ease),
        opacity .2s;
}

.menu-toggle span {

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);
}

.menu-toggle span::before,
.menu-toggle span::after {

    content: "";

    left: 0;
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}

.menu-toggle.open span {
    background: transparent;
}

.menu-toggle.open span::before {

    top: 0;

    transform:
        rotate(45deg);
}

.menu-toggle.open span::after {

    top: 0;

    transform:
        rotate(-45deg);
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding:
        0 23px;

    border-radius:
        var(--radius-pill);

    border: 0;

    font-size: 14px;

    font-weight: 750;

    white-space: nowrap;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .3s,
        background .3s;
}

.btn-icon {

    display: grid;

    place-items: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    transition:
        transform .35s var(--ease);
}

.btn-icon svg {

    width: 17px;
    height: 17px;
}

.btn:hover .btn-icon {

    transform:
        translateX(3px);
}

.btn-primary {

    color: #fff;

    background:
        var(--grad-orange);

    box-shadow:
        0 18px 45px
        rgba(243,111,33,.25);
}

.btn-primary::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255,255,255,.28) 50%,
            transparent 80%
        );

    transform:
        translateX(-120%);

    transition:
        transform .75s var(--ease);
}

.btn-primary:hover::before {
    transform:
        translateX(120%);
}

.btn-primary:hover {

    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 23px 55px
        rgba(243,111,33,.34);
}

.btn-outline {

    color: var(--navy);

    background:
        rgba(255,255,255,.7);

    border:
        1px solid
        rgba(5,11,20,.12);

    box-shadow:
        0 8px 24px
        rgba(5,11,20,.04);
}

.btn-outline:hover {

    color: var(--navy);

    border-color:
        rgba(0,174,239,.4);

    background:
        rgba(255,255,255,.95);

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(5,11,20,.08);
}

.btn-whatsapp {

    background:
        #25D366;

    color: #fff;

    box-shadow:
        0 18px 45px
        rgba(37,211,102,.25);
}

.btn-whatsapp svg {

    width: 19px;
    height: 19px;
}

.btn-whatsapp:hover {

    color: #fff;

    background:
        #20BE5A;

    transform:
        translateY(-3px);

    box-shadow:
        0 23px 55px
        rgba(37,211,102,.3);
}

.btn-large {

    min-height: 58px;

    padding:
        0 27px;
}


/* ============================================================
   HERO
   ============================================================ */

.hero-v2 {

    position: relative;

    min-height:
        calc(100vh - 76px);

    display: flex;

    align-items: center;

    padding:
        100px 0 120px;

    overflow: hidden;

    background:

        radial-gradient(
            900px 650px
            at 85% 20%,
            rgba(0,174,239,.14),
            transparent 65%
        ),

        radial-gradient(
            700px 550px
            at 5% 80%,
            rgba(243,111,33,.10),
            transparent 65%
        ),

        linear-gradient(
            180deg,
            #F9FBFD 0%,
            #F6F8FB 100%
        );
}

.hero-grid-pattern {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(5,11,20,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(5,11,20,.035) 1px,
            transparent 1px
        );

    background-size:
        64px 64px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );

    animation:
        gridMove 25s linear infinite;

    pointer-events: none;
}

@keyframes gridMove {

    from {
        transform:
            translate3d(0,0,0);
    }

    to {
        transform:
            translate3d(64px,64px,0);
    }
}

.hero-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(2px);

    will-change:
        transform;
}

.hero-orb-1 {

    width: 380px;
    height: 380px;

    right: -120px;
    top: 80px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.17),
            transparent 68%
        );

    animation:
        orbFloat 10s ease-in-out infinite;
}

.hero-orb-2 {

    width: 280px;
    height: 280px;

    left: -100px;
    bottom: 80px;

    background:
        radial-gradient(
            circle,
            rgba(243,111,33,.12),
            transparent 68%
        );

    animation:
        orbFloat 12s ease-in-out infinite reverse;
}

.hero-orb-3 {

    width: 160px;
    height: 160px;

    right: 38%;
    top: 15%;

    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.08),
            transparent 70%
        );

    animation:
        orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform:
            translate3d(0,0,0)
            scale(1);
    }

    50% {
        transform:
            translate3d(0,-22px,0)
            scale(1.04);
    }
}

.hero-particles {

    position: absolute;

    inset: 0;

    pointer-events: none;
}

.hero-particles span {

    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--cyan);

    opacity: .4;

    box-shadow:
        0 0 16px
        rgba(0,174,239,.55);

    animation:
        particleFloat
        7s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
    left: 12%;
    top: 22%;
}

.hero-particles span:nth-child(2) {
    left: 23%;
    top: 72%;
    animation-delay: -2s;
}

.hero-particles span:nth-child(3) {
    left: 42%;
    top: 13%;
    animation-delay: -4s;
}

.hero-particles span:nth-child(4) {
    left: 68%;
    top: 19%;
    animation-delay: -1s;
}

.hero-particles span:nth-child(5) {
    left: 78%;
    top: 73%;
    animation-delay: -3s;
}

.hero-particles span:nth-child(6) {
    left: 91%;
    top: 44%;
    animation-delay: -5s;
}

.hero-particles span:nth-child(7) {
    left: 56%;
    top: 85%;
    animation-delay: -2.5s;
}

.hero-particles span:nth-child(8) {
    left: 7%;
    top: 48%;
    animation-delay: -1.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform:
            translateY(0);
        opacity: .2;
    }

    50% {
        transform:
            translateY(-18px);
        opacity: .75;
    }
}

.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(460px, .88fr);

    align-items: center;

    gap: 80px;
}

.hero-copy {

    max-width:
        700px;
}

.hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 34px;

    padding:
        5px 11px;

    margin-bottom: 23px;

    border:
        1px solid
        rgba(0,174,239,.16);

    border-radius:
        var(--radius-pill);

    background:
        rgba(255,255,255,.72);

    color:
        var(--cyan-deep);

    font-size: 11px;

    font-weight: 750;

    letter-spacing:
        .8px;

    text-transform:
        uppercase;

    box-shadow:
        0 8px 24px
        rgba(5,11,20,.035);
}

.status-dot {

    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 0 4px
        rgba(0,174,239,.11);

    animation:
        statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    50% {
        transform: scale(1.25);
        opacity: .65;
    }
}

.eyebrow-arrow {

    color:
        var(--orange);

    font-size: 14px;
}

.hero-kicker {

    margin-bottom: 13px;

    color:
        var(--cyan-deep);

    font-size: 13px;

    font-weight: 800;

    letter-spacing:
        3px;
}

.hero-title {

    max-width:
        720px;

    font-size:
        clamp(
            3rem,
            5.2vw,
            5.2rem
        );

    line-height:
        .98;

    letter-spacing:
        -3.4px;

    font-weight:
        800;

    color:
        var(--navy);

    margin-bottom:
        27px;
}

.title-accent {

    display: inline;

    background:
        var(--grad-mixed);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.hero-description {

    max-width:
        610px;

    color:
        #667085;

    font-size:
        clamp(
            1rem,
            1.5vw,
            1.12rem
        );

    line-height:
        1.75;

    margin-bottom:
        34px;
}

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom:
        30px;
}

.hero-trust {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 19px;
}

.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #667085;

    font-size: 12.5px;

    font-weight: 600;
}

.trust-check {

    display: grid;

    place-items: center;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    color:
        var(--cyan-deep);

    background:
        rgba(0,174,239,.10);
}

.trust-check svg {

    width: 12px;
    height: 12px;
}


/* ============================================================
   HERO INTERFACE
   ============================================================ */

.hero-visual-wrap {

    position: relative;

    width: 100%;

    max-width:
        550px;

    margin-left: auto;

    perspective:
        1200px;
}

.hero-visual-glow {

    position: absolute;

    width: 75%;
    height: 75%;

    left: 13%;
    top: 13%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.22),
            transparent 68%
        );

    filter:
        blur(35px);

    animation:
        heroGlow 6s ease-in-out infinite;

    pointer-events: none;
}

@keyframes heroGlow {

    50% {
        transform:
            scale(1.12);

        opacity: .7;
    }
}

.hero-interface {

    position: relative;

    min-height:
        555px;

    padding:
        0;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius:
        30px;

    color:
        #fff;

    background:

        linear-gradient(
            145deg,
            #07101D 0%,
            #0C1727 55%,
            #0F2035 100%
        );

    box-shadow:
        0 45px 100px
        rgba(5,11,20,.28);

    overflow:
        hidden;

    transform-style:
        preserve-3d;

    transition:
        transform .2s ease-out;
}

.hero-interface::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            500px 280px
            at 80% 20%,
            rgba(0,174,239,.16),
            transparent 65%
        ),

        radial-gradient(
            400px 280px
            at 20% 90%,
            rgba(243,111,33,.11),
            transparent 65%
        );

    pointer-events: none;
}

.hero-interface::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(0,174,239,.55),
            transparent 35%,
            transparent 65%,
            rgba(243,111,33,.45)
        );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite:
        xor;

    mask-composite:
        exclude;

    pointer-events: none;
}

.interface-topbar {

    position: relative;

    z-index: 2;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.025);
}

.window-controls {

    display: flex;

    gap: 7px;
}

.window-controls span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.22);
}

.window-controls span:nth-child(1) {
    background: #FF6B6B;
}

.window-controls span:nth-child(2) {
    background: #FFC857;
}

.window-controls span:nth-child(3) {
    background: #48D597;
}

.interface-url {

    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);

    color:
        #64748B;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        10px;

    letter-spacing:
        .4px;
}

.interface-status {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        #6EE7B7;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        1px;
}

.interface-status span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        #34D399;

    box-shadow:
        0 0 10px
        rgba(52,211,153,.8);

    animation:
        statusPulse 2s infinite;
}

.interface-content {

    position: relative;

    z-index: 2;

    padding:
        37px 34px 28px;
}

.interface-label {

    color:
        #64748B;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        10px;

    letter-spacing:
        2px;

    margin-bottom:
        12px;
}

.interface-heading {

    font-size:
        26px;

    line-height:
        1.16;

    font-weight:
        750;

    letter-spacing:
        -.8px;

    margin-bottom:
        34px;
}

.interface-heading span {

    color:
        var(--cyan);
}


/* ============================================================
   ECOSYSTEM
   ============================================================ */

.ecosystem {

    position: relative;

    height:
        275px;

    max-width:
        420px;

    margin:
        0 auto;
}

.eco-node {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    width:
        94px;

    height:
        76px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:
        17px;

    background:
        rgba(255,255,255,.045);

    backdrop-filter:
        blur(10px);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04);

    transition:
        transform .35s var(--ease),
        border-color .35s,
        background .35s;

    z-index: 3;
}

.eco-node:hover {

    transform:
        translateY(-5px)
        scale(1.03);

    border-color:
        rgba(0,174,239,.45);

    background:
        rgba(0,174,239,.07);
}

.eco-node span {

    color:
        #CBD5E1;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;

    letter-spacing:
        1.3px;

    font-weight:
        600;
}

.node-core {

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    width:
        125px;

    height:
        108px;

    border-color:
        rgba(0,174,239,.3);

    background:
        rgba(0,174,239,.055);

    box-shadow:
        0 0 50px
        rgba(0,174,239,.08);
}

.node-core:hover {

    transform:
        translate(-50%,-50%)
        translateY(-5px)
        scale(1.03);
}

.node-icon {

    display: grid;

    place-items: center;

    width:
        38px;

    height:
        38px;

    margin-bottom:
        2px;

    border-radius:
        11px;

    background:
        var(--grad-mixed);

    font-size:
        11px;

    font-weight:
        800;

    box-shadow:
        0 8px 25px
        rgba(0,174,239,.25);
}

.node-core strong {

    font-size:
        11px;

    font-weight:
        700;
}

.node-core small {

    color:
        #64748B;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        7px;

    letter-spacing:
        1.5px;
}

.node-web {
    left: 0;
    top: 18px;
}

.node-mobile {
    right: 0;
    top: 18px;
}

.node-cloud {
    left: 0;
    bottom: 18px;
}

.node-system {
    right: 0;
    bottom: 18px;
}

.small-node-icon {

    display: grid;

    place-items: center;

    width:
        25px;

    height:
        25px;

    color:
        var(--cyan);

    border-radius:
        7px;

    background:
        rgba(0,174,239,.09);
}

.small-node-icon svg {

    width:
        15px;

    height:
        15px;
}


/* Connection lines */

.eco-line {

    position: absolute;

    height:
        1px;

    transform-origin:
        left center;

    background:
        linear-gradient(
            90deg,
            rgba(0,174,239,.05),
            rgba(0,174,239,.55),
            rgba(0,174,239,.05)
        );

    z-index: 1;

    overflow: hidden;
}

.eco-line::after {

    content: "";

    position: absolute;

    width:
        35px;

    height:
        2px;

    left:
        -40px;

    top:
        -0.5px;

    background:
        var(--cyan);

    box-shadow:
        0 0 12px
        var(--cyan);

    animation:
        dataFlow 2.7s linear infinite;
}

@keyframes dataFlow {

    to {
        left:
            100%;
    }
}

.line-1 {

    width:
        115px;

    left:
        95px;

    top:
        96px;

    transform:
        rotate(22deg);
}

.line-2 {

    width:
        115px;

    right:
        95px;

    top:
        96px;

    transform:
        rotate(158deg);
}

.line-3 {

    width:
        115px;

    left:
        95px;

    bottom:
        96px;

    transform:
        rotate(-22deg);
}

.line-4 {

    width:
        115px;

    right:
        95px;

    bottom:
        96px;

    transform:
        rotate(-158deg);
}

.interface-footer {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding-top:
        22px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}

.interface-footer > div:first-child {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.footer-label {

    color:
        #475569;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        8px;

    letter-spacing:
        1.5px;
}

.interface-footer strong {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #CBD5E1;

    font-size:
        9px;

    font-weight:
        500;
}

.interface-footer strong i {

    width:
        5px;

    height:
        5px;

    border-radius:
        50%;

    background:
        #34D399;

    box-shadow:
        0 0 9px
        #34D399;
}

.footer-metric {

    text-align:
        right;
}

.footer-metric span {

    display: block;

    color:
        var(--cyan);

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        16px;

    font-weight:
        600;
}

.footer-metric small {

    color:
        #475569;

    font-size:
        7px;

    letter-spacing:
        1.4px;
}


/* Floating cards */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        11px 14px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius:
        15px;

    background:
        rgba(12,23,39,.88);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 50px
        rgba(5,11,20,.2);

    z-index: 5;

    animation:
        floatingCard 5s ease-in-out infinite;
}

.floating-card-top {

    right:
        -34px;

    top:
        70px;
}

.floating-card-bottom {

    left:
        -38px;

    bottom:
        70px;

    animation-delay:
        -2.5s;
}

@keyframes floatingCard {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-9px);
    }
}

.floating-icon {

    display: grid;

    place-items: center;

    width:
        31px;

    height:
        31px;

    border-radius:
        9px;
}

.floating-icon svg {

    width:
        16px;

    height:
        16px;
}

.floating-icon.blue {

    color:
        #fff;

    background:
        var(--grad-blue);
}

.floating-icon.orange {

    color:
        #fff;

    background:
        var(--grad-orange);
}

.floating-card small {

    display: block;

    color:
        #64748B;

    font-size:
        8px;

    letter-spacing:
        .5px;

    margin-bottom:
        2px;
}

.floating-card strong {

    display: block;

    color:
        #E2E8F0;

    font-size:
        10px;

    font-weight:
        650;
}

.hero-scroll-indicator {

    position: absolute;

    bottom:
        30px;

    left:
        50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        #98A2B3;

    font-size:
        9px;

    font-family:
        'JetBrains Mono',
        monospace;

    letter-spacing:
        1px;

    text-transform:
        uppercase;

    z-index: 3;
}

.scroll-line {

    width:
        30px;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan)
        );

    animation:
        scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    50% {
        width:
            45px;
    }
}


/* ============================================================
   REVEAL
   ============================================================ */

.reveal {

    opacity:
        0;

    transform:
        translateY(38px);

    transition:
        opacity .85s var(--ease),
        transform .85s var(--ease);
}

.reveal.on {

    opacity:
        1;

    transform:
        translateY(0);
}

.hero-reveal {

    opacity:
        0;

    transform:
        translateY(24px);

    animation:
        heroEntrance
        .9s
        var(--ease)
        forwards;
}

.hero-reveal:nth-child(1) {
    animation-delay:
        .05s;
}

.hero-reveal:nth-child(2) {
    animation-delay:
        .13s;
}

.hero-reveal:nth-child(3) {
    animation-delay:
        .21s;
}

.hero-reveal:nth-child(4) {
    animation-delay:
        .3s;
}

@keyframes heroEntrance {

    to {

        opacity:
            1;

        transform:
            translateY(0);
    }
}


/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {

    position: relative;

    padding:
        22px 0;

    border-top:
        1px solid
        rgba(5,11,20,.06);

    border-bottom:
        1px solid
        rgba(5,11,20,.06);

    background:
        #fff;
}

.trust-strip-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.trust-strip-label {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #667085;

    font-size:
        10px;

    font-family:
        'JetBrains Mono',
        monospace;

    letter-spacing:
        .7px;

    text-transform:
        uppercase;

    white-space:
        nowrap;
}

.trust-strip-label span {

    color:
        var(--orange);
}

.trust-strip-items {

    display: flex;

    align-items: center;

    gap: 18px;

    color:
        #98A2B3;

    font-size:
        9px;

    font-family:
        'JetBrains Mono',
        monospace;

    letter-spacing:
        1.8px;
}

.trust-strip-items i {

    width:
        3px;

    height:
        3px;

    border-radius:
        50%;

    background:
        var(--cyan);
}


/* ============================================================
   GENERAL SECTION
   ============================================================ */

section {
    position: relative;
}

.services-section,
.work-section,
.process-section,
.testimonial-section {

    padding:
        125px 0;
}

.section-head {

    max-width:
        760px;

    margin:
        0 auto 65px;

    text-align:
        center;
}

.section-index {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-bottom:
        20px;

    color:
        #98A2B3;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;

    letter-spacing:
        1.8px;
}

.section-index span:first-child {

    color:
        var(--cyan-deep);

    font-weight:
        700;
}

.section-index i {

    display: block;

    width:
        30px;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            transparent
        );
}

.section-head h2 {

    font-size:
        clamp(
            2.1rem,
            4vw,
            3.45rem
        );

    line-height:
        1.08;

    letter-spacing:
        -2px;

    font-weight:
        800;

    color:
        var(--navy);

    margin-bottom:
        19px;
}

.section-head h2 span {

    background:
        var(--grad-blue);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.section-head p {

    max-width:
        680px;

    margin:
        0 auto;

    color:
        #667085;

    font-size:
        15px;

    line-height:
        1.8;
}


/* ============================================================
   SERVICES
   ============================================================ */

.services-section {

    background:
        #fff;
}

.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;
}

.service-card {

    position:
        relative;

    min-height:
        310px;

    padding:
        27px;

    border:
        1px solid
        #E7ECF2;

    border-radius:
        var(--radius-lg);

    background:
        #fff;

    overflow:
        hidden;

    transform-style:
        preserve-3d;

    transition:
        transform .35s var(--ease),
        border-color .35s,
        box-shadow .35s;
}

.service-card::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        var(--grad-mixed);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .5s var(--ease);
}

.service-card:hover {

    border-color:
        rgba(0,174,239,.22);

    box-shadow:
        var(--shadow-card);
}

.service-card:hover::after {
    transform:
        scaleX(1);
}

.service-card-glow {

    position: absolute;

    width:
        180px;

    height:
        180px;

    left:
        var(--mouse-x, 50%);

    top:
        var(--mouse-y, 0%);

    transform:
        translate(-50%,-50%);

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.10),
            transparent 70%
        );

    opacity:
        0;

    transition:
        opacity .3s;

    pointer-events:
        none;
}

.service-card:hover .service-card-glow {
    opacity:
        1;
}

.service-top {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        28px;
}

.service-number {

    color:
        #AAB4C2;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        10px;

    letter-spacing:
        1px;
}

.service-arrow {

    display:
        grid;

    place-items:
        center;

    width:
        34px;

    height:
        34px;

    border:
        1px solid
        #E6EBF0;

    border-radius:
        50%;

    color:
        #667085;

    font-size:
        16px;

    transition:
        transform .35s var(--ease),
        background .35s,
        color .35s,
        border-color .35s;
}

.service-card:hover .service-arrow {

    color:
        #fff;

    background:
        var(--grad-blue);

    border-color:
        transparent;

    transform:
        rotate(45deg);
}

.service-icon {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    place-items:
        center;

    width:
        54px;

    height:
        54px;

    margin-bottom:
        23px;

    border-radius:
        15px;

    color:
        #fff;

    background:
        var(--grad-blue);

    box-shadow:
        0 14px 32px
        rgba(0,174,239,.18);

    transition:
        transform .4s var(--ease);
}

.service-card:nth-child(even) .service-icon {

    background:
        var(--grad-orange);

    box-shadow:
        0 14px 32px
        rgba(243,111,33,.18);
}

.service-card:hover .service-icon {

    transform:
        translateY(-4px)
        rotate(-3deg);
}

.service-icon svg {

    width:
        26px;

    height:
        26px;
}

.service-card h3 {

    position:
        relative;

    z-index:
        2;

    font-size:
        18px;

    line-height:
        1.25;

    font-weight:
        750;

    margin-bottom:
        10px;
}

.service-card p {

    position:
        relative;

    z-index:
        2;

    color:
        #667085;

    font-size:
        13px;

    line-height:
        1.75;
}

.service-bottom {

    position:
        absolute;

    left:
        27px;

    right:
        27px;

    bottom:
        24px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    color:
        #98A2B3;

    font-size:
        9px;

    font-family:
        'JetBrains Mono',
        monospace;

    letter-spacing:
        .5px;

    text-transform:
        uppercase;
}

.service-bottom svg {

    width:
        15px;

    height:
        15px;

    transition:
        transform .35s var(--ease);
}

.service-card:hover .service-bottom svg {

    transform:
        translateX(5px);
}


/* ============================================================
   IMPACT
   ============================================================ */

.impact-section {

    padding:
        125px 0;

    color:
        #fff;

    background:
        #050B14;

    overflow:
        hidden;
}

.impact-grid-bg {

    position:
        absolute;

    inset:
        0;

    opacity:
        .4;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        65px 65px;

    mask-image:
        linear-gradient(
            180deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            180deg,
            #000,
            transparent
        );
}

.impact-orb {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

    filter:
        blur(3px);
}

.impact-orb-1 {

    width:
        600px;

    height:
        600px;

    right:
        -300px;

    top:
        -250px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.16),
            transparent 68%
        );
}

.impact-orb-2 {

    width:
        500px;

    height:
        500px;

    left:
        -250px;

    bottom:
        -280px;

    background:
        radial-gradient(
            circle,
            rgba(243,111,33,.10),
            transparent 68%
        );
}

.impact-heading {

    position:
        relative;

    max-width:
        700px;

    margin-bottom:
        70px;
}

.section-index.light {

    justify-content:
        flex-start;

    color:
        #64748B;
}

.section-index.light span:first-child {
    color:
        var(--cyan);
}

.impact-heading h2 {

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.5rem
        );

    line-height:
        1.08;

    letter-spacing:
        -2px;

    font-weight:
        800;
}

.impact-heading h2 span {

    background:
        var(--grad-mixed);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.stats-grid-v2 {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        0;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.stat-v2 {

    min-height:
        270px;

    padding:
        30px 28px;

    border-right:
        1px solid
        rgba(255,255,255,.08);

    transition:
        background .35s var(--ease);
}

.stat-v2:last-child {
    border-right:
        0;
}

.stat-v2:hover {

    background:
        rgba(255,255,255,.025);
}

.stat-top {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    color:
        #475569;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;

    letter-spacing:
        1px;

    margin-bottom:
        38px;
}

.stat-top i {

    width:
        22px;

    height:
        1px;

    background:
        #334155;
}

.stat-number {

    display:
        inline-block;

    font-size:
        clamp(
            2.8rem,
            4vw,
            4.1rem
        );

    line-height:
        1;

    letter-spacing:
        -2px;

    font-weight:
        800;

    margin-bottom:
        12px;
}

.gradient-cyan {

    background:
        var(--grad-blue);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.gradient-orange {

    background:
        var(--grad-orange);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.stat-title {

    color:
        #E2E8F0;

    font-size:
        14px;

    font-weight:
        700;

    margin-bottom:
        9px;
}

.stat-description {

    max-width:
        200px;

    color:
        #64748B;

    font-size:
        11px;

    line-height:
        1.7;
}


/* ============================================================
   WORK
   ============================================================ */

.work-section {

    background:
        #F7F9FC;
}

.work-head {

    max-width:
        none;

    text-align:
        left;

    margin-bottom:
        58px;
}

.work-head .section-index {
    justify-content:
        flex-start;
}

.work-head-content {

    display:
        grid;

    grid-template-columns:
        1.1fr .7fr;

    gap:
        80px;

    align-items:
        end;
}

.work-head-content h2 {

    margin:
        0;

    max-width:
        650px;
}

.work-head-content > div {

    padding-bottom:
        3px;
}

.work-head-content p {

    margin:
        0 0 17px;

    max-width:
        420px;

    color:
        #667085;

    font-size:
        13px;

    line-height:
        1.75;
}

.text-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--cyan-deep);

    font-size:
        12px;

    font-weight:
        750;
}

.text-link span {

    transition:
        transform .3s var(--ease);
}

.text-link:hover span {

    transform:
        translate(3px,-3px);
}

.projects-grid-v2 {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        50px 25px;
}

.project-v2 {

    display:
        block;
}

.project-v2:first-child {

    grid-column:
        span 2;
}

.project-image {

    position:
        relative;

    aspect-ratio:
        16 / 9;

    overflow:
        hidden;

    border-radius:
        var(--radius-lg);

    background:
        #E7ECF2;

    box-shadow:
        0 18px 50px
        rgba(5,11,20,.07);
}

.project-v2:first-child .project-image {

    aspect-ratio:
        2.15 / 1;
}

.project-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .8s var(--ease),
        filter .6s var(--ease);
}

.project-v2:hover .project-image img {

    transform:
        scale(1.055);

    filter:
        saturate(1.08);
}

.project-image-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    color:
        #fff;

    background:
        rgba(5,11,20,.38);

    opacity:
        0;

    transition:
        opacity .4s var(--ease);
}

.project-v2:hover .project-image-overlay {
    opacity:
        1;
}

.project-image-overlay span {

    padding:
        10px 15px;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius:
        var(--radius-pill);

    background:
        rgba(255,255,255,.10);

    backdrop-filter:
        blur(10px);

    font-size:
        11px;

    font-weight:
        650;
}

.project-image-overlay strong {

    display:
        grid;

    place-items:
        center;

    width:
        38px;

    height:
        38px;

    border-radius:
        50%;

    background:
        var(--grad-orange);

    font-size:
        16px;
}

.project-number {

    position:
        absolute;

    top:
        18px;

    left:
        18px;

    padding:
        7px 10px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius:
        8px;

    color:
        #fff;

    background:
        rgba(5,11,20,.45);

    backdrop-filter:
        blur(10px);

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;
}

.project-info {

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        19px 3px 0;
}

.project-category {

    display:
        inline-block;

    margin-bottom:
        7px;

    color:
        var(--cyan-deep);

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}

.project-info h3 {

    font-size:
        19px;

    line-height:
        1.25;

    font-weight:
        750;
}

.project-meta {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    gap:
        5px;

    color:
        #98A2B3;

    font-size:
        10px;

    white-space:
        nowrap;
}


/* ============================================================
   PROCESS
   ============================================================ */

.process-section {

    background:
        #fff;
}

.process-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);
}

.process-item {

    position:
        relative;

    min-height:
        285px;

    padding:
        30px 27px;

    border-right:
        1px solid
        var(--border);
}

.process-item:last-child {
    border-right:
        0;
}

.process-number {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        43px;

    height:
        43px;

    margin-bottom:
        60px;

    border:
        1px solid
        #DCE4EC;

    border-radius:
        12px;

    color:
        var(--cyan-deep);

    background:
        #F8FAFC;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        10px;

    font-weight:
        700;
}

.process-line {

    position:
        absolute;

    left:
        27px;

    top:
        94px;

    width:
        50px;

    height:
        1px;

    background:
        var(--grad-blue);
}

.process-item h3 {

    font-size:
        18px;

    font-weight:
        750;

    margin-bottom:
        10px;
}

.process-item p {

    max-width:
        210px;

    color:
        #667085;

    font-size:
        12px;

    line-height:
        1.75;
}


/* ============================================================
   TESTIMONIAL
   ============================================================ */

.testimonial-section {

    background:
        #F7F9FC;
}

.testimonials-v2 {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;
}

.testimonial-v2 {

    position:
        relative;

    min-height:
        320px;

    padding:
        27px;

    border:
        1px solid
        #E4EAF0;

    border-radius:
        var(--radius-lg);

    background:
        rgba(255,255,255,.8);

    overflow:
        hidden;

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s;
}

.testimonial-v2::before {

    content: "";

    position:
        absolute;

    width:
        180px;

    height:
        180px;

    right:
        -80px;

    top:
        -80px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.10),
            transparent 68%
        );
}

.testimonial-v2:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(0,174,239,.2);

    box-shadow:
        var(--shadow-card);
}

.testimonial-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        30px;
}

.testimonial-index {

    color:
        #AAB4C2;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;
}

.stars {

    color:
        #F5A623;

    font-size:
        10px;

    letter-spacing:
        2px;
}

.testimonial-quote {

    height:
        34px;

    color:
        var(--cyan);

    font-family:
        Georgia,
        serif;

    font-size:
        55px;

    line-height:
        .7;

    opacity:
        .65;

    margin-bottom:
        17px;
}

.testimonial-v2 p {

    position:
        relative;

    z-index:
        2;

    min-height:
        100px;

    color:
        #344054;

    font-size:
        13px;

    line-height:
        1.8;

    margin-bottom:
        28px;
}

.testimonial-author {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding-top:
        17px;

    border-top:
        1px solid
        #EAEFF4;
}

.testimonial-avatar {

    display:
        grid;

    place-items:
        center;

    width:
        42px;

    height:
        42px;

    flex:
        0 0 auto;

    border-radius:
        12px;

    color:
        #fff;

    background:
        var(--grad-blue);

    font-size:
        10px;

    font-weight:
        800;
}

.testimonial-author strong {

    display:
        block;

    font-size:
        12px;

    font-weight:
        750;

    margin-bottom:
        2px;
}

.testimonial-author span {

    display:
        block;

    color:
        #98A2B3;

    font-size:
        10px;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta-section {

    padding:
        110px 0;

    background:
        #F7F9FC;
}

.final-cta {

    position:
        relative;

    min-height:
        510px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    padding:
        70px 35px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius:
        36px;

    color:
        #fff;

    text-align:
        center;

    background:

        radial-gradient(
            650px 420px
            at 85% 20%,
            rgba(0,174,239,.25),
            transparent 65%
        ),

        radial-gradient(
            600px 400px
            at 15% 90%,
            rgba(243,111,33,.20),
            transparent 65%
        ),

        #050B14;

    box-shadow:
        0 45px 100px
        rgba(5,11,20,.20);

    overflow:
        hidden;
}

.final-cta::before {

    content: "";

    position:
        absolute;

    inset:
        0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        linear-gradient(
            180deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            180deg,
            #000,
            transparent
        );
}

.cta-noise {

    position:
        absolute;

    inset:
        0;

    opacity:
        .035;

    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cta-orb {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

    animation:
        orbFloat 9s ease-in-out infinite;
}

.cta-orb-1 {

    width:
        400px;

    height:
        400px;

    right:
        -180px;

    top:
        -190px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.22),
            transparent 68%
        );
}

.cta-orb-2 {

    width:
        320px;

    height:
        320px;

    left:
        -160px;

    bottom:
        -160px;

    background:
        radial-gradient(
            circle,
            rgba(243,111,33,.16),
            transparent 68%
        );

    animation-delay:
        -4s;
}

.final-cta > *:not(.cta-noise):not(.cta-orb) {

    position:
        relative;

    z-index:
        2;
}

.cta-topline {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    color:
        #64748B;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        9px;

    letter-spacing:
        2px;

    margin-bottom:
        23px;
}

.cta-topline span {

    width:
        26px;

    height:
        1px;

    background:
        var(--cyan);
}

.final-cta h2 {

    max-width:
        800px;

    font-size:
        clamp(
            2.5rem,
            5vw,
            4.6rem
        );

    line-height:
        .98;

    letter-spacing:
        -3px;

    font-weight:
        800;

    margin-bottom:
        23px;
}

.final-cta h2 span {

    display:
        block;

    background:
        var(--grad-mixed);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.final-cta > p {

    max-width:
        620px;

    color:
        #94A3B8;

    font-size:
        14px;

    line-height:
        1.75;

    margin-bottom:
        31px;
}

.cta-actions {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px;
}

.cta-footer {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        10px 22px;

    margin-top:
        48px;

    padding-top:
        18px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color:
        #475569;

    font-family:
        'JetBrains Mono',
        monospace;

    font-size:
        8px;

    letter-spacing:
        .8px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {

    position:
        relative;

    padding:
        80px 0 25px;

    color:
        #CBD5E1;

    background:
        #030810;

    overflow:
        hidden;
}

.site-footer::before {

    content: "";

    position:
        absolute;

    left:
        50%;

    top:
        0;

    width:
        700px;

    height:
        250px;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(0,174,239,.08),
            transparent 70%
        );

    pointer-events:
        none;
}

.footer-grid {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        1.6fr
        repeat(3,1fr);

    gap:
        55px;

    padding-bottom:
        60px;
}

.footer-brand img {

    height:
        82px;

    width:
        auto;

    margin-bottom:
        17px;
}

.footer-brand p {

    max-width:
        350px;

    color:
        #64748B;

    font-size:
        12px;

    line-height:
        1.8;
}

.footer-col h4 {

    color:
        #F8FAFC;

    font-size:
        11px;

    letter-spacing:
        .5px;

    font-weight:
        750;

    margin-bottom:
        18px;
}

.footer-col ul {

    list-style:
        none;
}

.footer-col li {

    margin-bottom:
        11px;
}

.footer-col a {

    color:
        #64748B;

    font-size:
        11px;

    transition:
        color .25s var(--ease),
        transform .25s var(--ease);
}

.footer-col a:hover {

    color:
        var(--cyan);

    transform:
        translateX(3px);
}

.socials {

    display:
        flex;

    gap:
        8px;
}

.socials a {

    display:
        grid;

    place-items:
        center;

    width:
        39px;

    height:
        39px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius:
        11px;

    color:
        #94A3B8;

    background:
        rgba(255,255,255,.025);

    transition:
        transform .3s var(--ease),
        color .3s,
        border-color .3s,
        background .3s;
}

.socials a:hover {

    color:
        #fff;

    background:
        rgba(0,174,239,.12);

    border-color:
        rgba(0,174,239,.25);

    transform:
        translateY(-4px);
}

.footer-bottom {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    flex-wrap:
        wrap;

    gap:
        12px;

    padding-top:
        22px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color:
        #475569;

    font-size:
        9px;
}

.footer-bottom p {
    margin:
        0;
}

/* =========================================================
   PETRICK LABS — PREMIUM FOOTER
   ========================================================= */

.site-footer-premium {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(0,174,239,.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(243,111,33,.08),
            transparent 25%
        ),
        #070F1F;

    color: #fff;

    padding: 0 0 26px;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.footer-grid-bg {
    position: absolute;
    inset: 0;

    z-index: -2;

    opacity: .22;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 75%
        );

    pointer-events: none;
}


.footer-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .13;

    z-index: -1;

    pointer-events: none;
}

.footer-glow-1 {
    top: -250px;
    left: -160px;

    background: #00AEEF;
}

.footer-glow-2 {
    top: 180px;
    right: -220px;

    background: #F36F21;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.footer-container {
    position: relative;
}


/* =========================================================
   FOOTER HERO
   ========================================================= */

.footer-hero {
    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 85px 0 75px;
}


.footer-hero-copy {
    max-width: 720px;
}


.footer-kicker {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    color: #94A3B8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.footer-kicker-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22C55E;

    box-shadow:
        0 0 0 5px rgba(34,197,94,.10),
        0 0 16px rgba(34,197,94,.45);

    animation: footerStatusPulse 2.2s ease-in-out infinite;
}


@keyframes footerStatusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .65;
        transform: scale(.82);
    }

}


.footer-hero h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(
        2.8rem,
        6vw,
        5.4rem
    );

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 800;
}


.footer-hero h2 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #fff 5%,
            #67D9FF 48%,
            #00AEEF 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.footer-hero p {
    max-width: 590px;

    margin: 24px 0 0;

    color: #94A3B8;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   MAIN CTA
   ========================================================= */

.footer-hero-action {
    flex-shrink: 0;
}


.footer-main-cta {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    min-height: 60px;

    padding: 0 21px 0 9px;

    border-radius: 999px;

    color: #fff !important;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #F97316,
            #F36F21
        );

    box-shadow:
        0 15px 35px rgba(243,111,33,.22);

    overflow: hidden;

    transition:
        transform .35s var(--ease-spring),
        box-shadow .35s ease;
}


.footer-main-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255,255,255,.28) 50%,
            transparent 75%
        );

    transform: translateX(-130%);

    transition:
        transform .7s ease;
}


.footer-main-cta:hover {
    color: #fff !important;

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 45px rgba(243,111,33,.30);
}


.footer-main-cta:hover::before {
    transform: translateX(130%);
}


.footer-main-cta-icon {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,.16);
}


.footer-main-cta span:not(.footer-main-cta-icon) {
    position: relative;
    z-index: 1;

    font-size: 13px;
    font-weight: 800;
}


.footer-main-cta-arrow {
    position: relative;
    z-index: 1;

    transition:
        transform .3s var(--ease-spring);
}


.footer-main-cta:hover .footer-main-cta-arrow {
    transform: translateX(4px);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.footer-divider {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12) 15%,
            rgba(255,255,255,.12) 85%,
            transparent
        );
}


/* =========================================================
   MAIN FOOTER GRID
   ========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.7fr)
        repeat(3, minmax(130px, .75fr));

    gap: 70px;

    padding: 72px 0 65px;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand-premium {
    max-width: 380px;
}


.footer-logo-link {
    display: inline-flex;

    margin-bottom: 22px;

    transition:
        transform .3s var(--ease-spring),
        opacity .3s ease;
}


.footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: .9;
}


.footer-logo-link img {
    display: block;

    width: auto;
    height: 58px;

    max-width: 220px;

    object-fit: contain;
}


.footer-brand-description {
    margin: 0;

    color: #94A3B8;

    font-size: 13.5px;

    line-height: 1.85;
}


.footer-status {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 24px;

    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 999px;

    background: rgba(255,255,255,.035);

    color: #CBD5E1;

    font-size: 11px;
    font-weight: 700;
}


.footer-status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22C55E;

    box-shadow:
        0 0 12px rgba(34,197,94,.65);
}


/* =========================================================
   LINKS
   ========================================================= */

.footer-links-group h3 {
    margin: 4px 0 22px;

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .13em;
}


.footer-links-group ul {
    display: flex;
    flex-direction: column;

    gap: 13px;

    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-links-group li {
    margin: 0;
}


.footer-links-group li a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    color: #94A3B8;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-links-group li a span {
    font-size: 12px;

    opacity: 0;

    transform:
        translate(-5px, 5px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.footer-links-group li a:hover {
    color: #fff;

    transform: translateX(3px);
}


.footer-links-group li a:hover span {
    opacity: .8;

    transform:
        translate(0, 0);
}


/* =========================================================
   SOCIAL
   ========================================================= */

.footer-socials {
    display: flex;
    align-items: center;

    gap: 9px;
}


.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.035);

    color: #94A3B8;

    text-decoration: none;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s var(--ease-spring),
        box-shadow .3s ease;
}


.footer-socials a:hover {
    color: #fff;

    background: rgba(0,174,239,.12);

    border-color:
        rgba(0,174,239,.32);

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);
}


.footer-domain {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 26px;
}


.footer-domain-label {
    color: #64748B;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    letter-spacing: .16em;
}


.footer-domain a {
    color: #CBD5E1;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: color .25s ease;
}


.footer-domain a:hover {
    color: #67D9FF;
}


/* =========================================================
   FOOTER CLOSING
========================================================= */

.footer-closing {
    margin-top: 70px;
}


/* =========================================================
   COMPANY IDENTITY
========================================================= */

.footer-company-line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-company-identity {
    display: flex;
    align-items: baseline;
    gap: 7px;

    flex-wrap: wrap;
}

.footer-company-identity > span {
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.35);
}

.footer-company-identity > strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255,255,255,.72);
}

.footer-company-meta {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .05em;

    color: rgba(255,255,255,.25);
}

.footer-company-meta i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,.25);
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-closing-divider {
    width: 100%;
    height: 1px;

    margin: 20px 0 18px;

    background: rgba(255,255,255,.09);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.footer-bottom-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-bottom-premium p {
    margin: 0;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    line-height: 1.6;
    letter-spacing: .04em;

    color: rgba(255,255,255,.3);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 9px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    letter-spacing: .04em;

    color: rgba(255,255,255,.3);
}

.footer-bottom-right i {
    width: 3px;
    height: 3px;

    flex: 0 0 3px;

    border-radius: 50%;

    background: var(--cyan, #00AEEF);

    box-shadow:
        0 0 8px rgba(0,174,239,.5);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .footer-closing {
        margin-top: 50px;
    }

    .footer-company-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-company-identity {
        display: block;
    }

    .footer-company-identity > span {
        display: block;
        margin-bottom: 5px;
    }

    .footer-company-identity > strong {
        font-size: 9px;
    }

    .footer-company-meta {
        font-size: 7px;
    }

    .footer-bottom-premium {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-right {
        font-size: 7px;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .footer-hero {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;

        padding:
            70px 0
            65px;
    }


    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 50px;
    }


    .footer-brand-premium {
        grid-column: 1 / -1;

        max-width: 520px;
    }

}

/* ============================================================
   PETRICK LABS — PROJECT VIEWER
   ============================================================ */

.project-viewer {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 28px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.project-viewer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* BACKDROP */

.project-viewer-backdrop {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 174, 239, .12),
            transparent 40%
        ),
        rgba(5, 11, 20, .78);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* MODAL */

.project-viewer-modal {
    position: relative;

    width: min(1400px, 96vw);
    height: min(900px, 92vh);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(255, 255, 255, .16);

    border-radius: 22px;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .04);

    transform:
        translateY(20px)
        scale(.97);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1);
}

.project-viewer.is-open .project-viewer-modal {
    transform:
        translateY(0)
        scale(1);
}


/* TOPBAR */

.project-viewer-topbar {
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px 0 22px;

    background:
        linear-gradient(
            135deg,
            #0b1220,
            #111c2f
        );

    color: #fff;

    flex-shrink: 0;
}


.project-viewer-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}


.project-viewer-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #00AEEF;

    box-shadow:
        0 0 0 5px rgba(0, 174, 239, .10),
        0 0 20px rgba(0, 174, 239, .65);

    animation: viewerPulse 2s ease-in-out infinite;
}


@keyframes viewerPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(0, 174, 239, .10),
            0 0 20px rgba(0, 174, 239, .65);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(0, 174, 239, .04),
            0 0 28px rgba(0, 174, 239, .9);
    }

}


.project-viewer-brand > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.project-viewer-brand span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .45);
}


.project-viewer-brand strong {
    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ACTIONS */

.project-viewer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.project-viewer-external {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 13px;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius: 10px;

    color: rgba(255, 255, 255, .78);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.project-viewer-external svg {
    width: 15px;
    height: 15px;
}


.project-viewer-external:hover {
    color: #fff;

    background: rgba(255, 255, 255, .08);

    border-color:
        rgba(255, 255, 255, .22);
}


.project-viewer-close {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .05);

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}


.project-viewer-close:hover {
    background:
        rgba(255, 255, 255, .12);

    transform: rotate(4deg);
}


.project-viewer-close span {
    position: absolute;

    width: 17px;
    height: 1.8px;

    border-radius: 99px;

    background: #fff;
}


.project-viewer-close span:first-child {
    transform: rotate(45deg);
}


.project-viewer-close span:last-child {
    transform: rotate(-45deg);
}


/* BROWSER BAR */

.project-viewer-browserbar {
    height: 46px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 0 16px;

    background: #f5f7fa;

    border-bottom:
        1px solid #e5e9ef;

    flex-shrink: 0;
}


.browser-controls {
    display: flex;
    gap: 6px;
}


.browser-controls span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}


.browser-url {
    flex: 1;

    min-width: 0;

    height: 28px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    border:
        1px solid #e2e8f0;

    border-radius: 8px;

    background: #fff;

    color: #64748b;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 10px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.browser-live {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;

    color: #16a34a;
}


.browser-live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, .10);
}


/* CONTENT */

.project-viewer-content {
    position: relative;

    flex: 1;

    min-height: 0;

    background: #f8fafc;

    overflow: hidden;
}


.project-viewer-content iframe {
    display: none;

    width: 100%;
    height: 100%;

    border: 0;

    background: #fff;
}


.project-viewer-content.is-iframe iframe {
    display: block;
}


/* IMAGE */

.project-viewer-image {
    display: none;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 24px;

    background:
        #f8fafc;
}


.project-viewer-content.is-image
.project-viewer-image {
    display: block;
}


/* LOADER */

.project-viewer-loader {
    position: absolute;
    inset: 0;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: #fff;

    color: #64748b;

    font-size: 11px;
    font-weight: 600;

    transition:
        opacity .25s ease;
}


.viewer-loader-spinner {
    width: 34px;
    height: 34px;

    border:
        2px solid #e2e8f0;

    border-top-color:
        #00AEEF;

    border-radius: 50%;

    animation:
        viewerSpin .75s linear infinite;
}


@keyframes viewerSpin {
    to {
        transform: rotate(360deg);
    }
}


.project-viewer-loader.hidden {
    opacity: 0;
    pointer-events: none;
}


/* ERROR */

.project-viewer-error {
    position: absolute;
    inset: 0;

    z-index: 4;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;

    padding: 30px;

    background: #fff;
}


.project-viewer-content.is-error
.project-viewer-error {
    display: flex;
}


.viewer-error-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 16px;

    background:
        rgba(0, 174, 239, .08);

    color: #00AEEF;

    font-size: 22px;
}


.project-viewer-error h3 {
    margin: 0 0 8px;

    font-size: 20px;

    color: #0f172a;
}


.project-viewer-error p {
    max-width: 440px;

    margin: 0 0 22px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* BODY LOCK */

body.project-viewer-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 720px) {

    .project-viewer {
        padding: 0;
    }

    .project-viewer-modal {
        width: 100vw;
        height: 100dvh;

        border-radius: 0;
    }

    .project-viewer-topbar {
        height: 62px;

        padding:
            0 12px 0 16px;
    }

    .project-viewer-brand strong {
        max-width: 180px;
    }

    .project-viewer-external span {
        display: none;
    }

    .project-viewer-external {
        width: 38px;
        height: 38px;

        justify-content: center;

        padding: 0;
    }

    .project-viewer-browserbar {
        height: 42px;

        padding: 0 10px;

        gap: 9px;
    }

    .browser-url {
        font-size: 9px;
    }

    .browser-live {
        display: none;
    }

    .project-viewer-image {
        padding: 12px;
    }

}

/* ============================================================
   PROJECT CARD — VIEW PROJECT
   ============================================================ */

.project-card {
    position: relative;
}


.project-card .img {
    position: relative;
    overflow: hidden;
}


.project-card-view {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0;

    border: 0;

    background:
        linear-gradient(
            135deg,
            rgba(5, 11, 20, .15),
            rgba(5, 11, 20, .72)
        );

    color: #fff;

    cursor: pointer;

    opacity: 0;

    transition:
        opacity .35s ease,
        background .35s ease;
}


.project-card:hover .project-card-view,
.project-card:focus-within .project-card-view {
    opacity: 1;
}


.project-view-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;

    transform: translateY(8px);

    transition:
        transform .35s cubic-bezier(.16,1,.3,1);
}


.project-view-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background:
        rgba(255,255,255,.10);

    backdrop-filter: blur(8px);

    transform:
        translateY(8px)
        rotate(-10deg);

    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        background .25s ease;
}


.project-card:hover .project-view-label,
.project-card:hover .project-view-icon,
.project-card:focus-within .project-view-label,
.project-card:focus-within .project-view-icon {
    transform:
        translateY(0)
        rotate(0);
}


.project-card-view:hover {
    background:
        linear-gradient(
            135deg,
            rgba(5, 11, 20, .25),
            rgba(0, 82, 212, .72)
        );
}


.project-card-view:hover .project-view-icon {
    background:
        rgba(255,255,255,.18);

    transform:
        translateY(0)
        rotate(8deg)
        scale(1.08);
}


/* CARD HEADER */

.project-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.project-card-arrow {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid var(--border);

    border-radius: 50%;

    color: var(--text-muted);

    font-size: 14px;

    transition:
        transform .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.project-card:hover .project-card-arrow {
    transform:
        translate(2px, -2px);

    color: var(--cyan);

    border-color:
        rgba(0,174,239,.35);
}


/* MOBILE
   On touch devices there is no reliable hover.
*/

@media (max-width: 720px) {

    .project-card-view {
        inset: auto;

        right: 12px;
        bottom: 12px;

        width: auto;
        height: auto;

        padding: 9px 12px;

        border-radius: 10px;

        opacity: 1;

        background:
            rgba(5, 11, 20, .72);

        backdrop-filter: blur(12px);

        gap: 7px;
    }


    .project-view-label {
        font-size: 10px;

        transform: none;
    }


    .project-view-icon {
        width: 24px;
        height: 24px;

        font-size: 12px;

        transform: none;
    }

}


@media (max-width: 720px) {

    .site-footer-premium {
        padding-bottom: 20px;
    }


    .footer-hero {
        padding:
            58px 0
            52px;
    }


    .footer-hero h2 {
        font-size:
            clamp(
                2.65rem,
                12vw,
                4rem
            );
    }


    .footer-hero p {
        font-size: 13px;

        line-height: 1.75;
    }


    .footer-main-cta {
        min-height: 56px;
    }


    .footer-main {
        grid-template-columns:
            1fr 1fr;

        gap:
            45px 30px;

        padding:
            55px 0
            50px;
    }


    .footer-brand-premium {
        grid-column: 1 / -1;
    }


    .footer-company {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .footer-bottom-premium {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

}


@media (max-width: 480px) {

    .footer-hero {
        padding:
            50px 0
            45px;
    }


    .footer-kicker {
        margin-bottom: 18px;

        font-size: 10px;
    }


    .footer-hero h2 {
        letter-spacing: -.045em;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .footer-brand-premium {
        grid-column: auto;
    }


    .footer-links-group h3 {
        margin-bottom: 17px;
    }


    .footer-company-meta {
        white-space: normal;

        flex-wrap: wrap;
    }


    .footer-bottom-right {
        flex-wrap: wrap;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-kicker-dot {
        animation: none;
    }

    .footer-main-cta,
    .footer-socials a,
    .footer-links-group li a,
    .footer-logo-link {
        transition: none;
    }

}


/* ============================================================
   EXISTING INNER PAGE SUPPORT
   ============================================================ */

.form-card {

    background:
        #fff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-lg);

    padding:
        40px;

    box-shadow:
        var(--shadow-soft);
}

.form-row {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        16px;
}

.form-group {
    margin-bottom:
        18px;
}

.form-group label {

    display:
        block;

    margin-bottom:
        8px;

    font-size:
        13px;

    font-weight:
        700;
}

.form-control {

    width:
        100%;

    padding:
        14px 16px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        #fff;

    color:
        var(--text);

    font-size:
        14px;

    outline:
        none;

    transition:
        border-color .25s,
        box-shadow .25s;
}

.form-control:focus {

    border-color:
        var(--cyan);

    box-shadow:
        0 0 0 4px
        rgba(0,174,239,.10);
}

textarea.form-control {

    min-height:
        140px;

    resize:
        vertical;
}

.alert {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        14px 18px;

    margin-bottom:
        20px;

    border-radius:
        var(--radius);

    font-size:
        13px;

    font-weight:
        600;
}

.alert-success {

    color:
        #047857;

    background:
        rgba(16,185,129,.08);

    border:
        1px solid
        rgba(16,185,129,.2);
}

.alert-error {

    color:
        #B91C1C;

    background:
        rgba(229,57,53,.08);

    border:
        1px solid
        rgba(229,57,53,.2);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .container {
        padding-left:
            24px;
        padding-right:
            24px;
    }

    .hero-container {

        grid-template-columns:
            minmax(0,1fr)
            minmax(390px,.8fr);

        gap:
            45px;
    }

    .hero-title {

        font-size:
            clamp(
                2.8rem,
                5vw,
                4.3rem
            );
    }

    .hero-interface {
        min-height:
            510px;
    }

    .floating-card-top {
        right:
            -15px;
    }

    .floating-card-bottom {
        left:
            -15px;
    }

    .footer-grid {
        gap:
            35px;
    }
}


@media (max-width: 960px) {

    .nav-links {
        gap:
            0;
    }

    .nav-links a {
        padding:
            9px 10px;
    }

    .nav-cta {
        margin-left:
            4px;
    }

    .hero-v2 {

        min-height:
            auto;

        padding:
            80px 0 105px;
    }

    .hero-container {

        grid-template-columns:
            1fr;

        gap:
            65px;
    }

    .hero-copy {

        max-width:
            760px;

        text-align:
            center;

        margin:
            0 auto;
    }

    .hero-eyebrow {
        margin-left:
            auto;

        margin-right:
            auto;
    }

    .hero-title {
        margin-left:
            auto;

        margin-right:
            auto;
    }

    .hero-description {
        margin-left:
            auto;

        margin-right:
            auto;
    }

    .hero-actions {
        justify-content:
            center;
    }

    .hero-trust {
        justify-content:
            center;
    }

    .hero-visual-wrap {

        margin:
            0 auto;

        width:
            min(100%, 550px);
    }

    .services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .stats-grid-v2 {
        grid-template-columns:
            repeat(2,1fr);
    }

    .stat-v2:nth-child(2) {
        border-right:
            0;
    }

    .stat-v2:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }

    .work-head-content {
        grid-template-columns:
            1fr;

        gap:
            25px;
    }

    .process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .process-item:nth-child(2) {
        border-right:
            0;
    }

    .process-item:nth-child(-n+2) {
        border-bottom:
            1px solid
            var(--border);
    }

    .testimonials-v2 {
        grid-template-columns:
            repeat(2,1fr);
    }

    .testimonial-v2:last-child {
        grid-column:
            span 2;
    }

    .footer-grid {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    .footer-grid .footer-col:last-child {
        grid-column:
            span 3;
    }
}


@media (max-width: 720px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .container {
        padding-left:
            18px;

        padding-right:
            18px;
    }

    /* =========================================
       MOBILE NAVBAR
       LOGO = KIRI
       MENU = KANAN
       ========================================= */

    .navbar {
        min-height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }

    .brand {
        flex-shrink: 0;
    }

    .brand img {
        height: 40px;
        width: auto;
    }

    /* Hamburger */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: 0;
        border-radius: 13px;
        background: rgba(5, 11, 20, .045);
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {

        position:
            absolute;

        width:
            21px;

        height:
            2px;

        border-radius:
            99px;

        background:
            var(--navy);

        transition:
            transform .35s var(--ease),
            top .35s var(--ease),
            opacity .2s ease;
    }

    .menu-toggle span {

        left:
            50%;

        top:
            50%;

        transform:
            translate(-50%, -50%);
    }

    .menu-toggle span::before,
    .menu-toggle span::after {

        content:
            "";

        left:
            0;
    }

    .menu-toggle span::before {
        top:
            -7px;
    }

    .menu-toggle span::after {
        top:
            7px;
    }

    /* Hamburger → X */
    .menu-toggle.open span {
        background:
            transparent;
    }

    .menu-toggle.open span::before {
        top:
            0;

        transform:
            rotate(45deg);
    }

    .menu-toggle.open span::after {
        top:
            0;

        transform:
            rotate(-45deg);
    }

    /* =========================================
       MOBILE MENU PANEL
       ========================================= */

    .nav-links {

        position:
            absolute;

        left:
            12px;

        right:
            12px;

        top:
            calc(100% + 8px);

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            4px;

        padding:
            12px;

        border:
            1px solid
            rgba(5,11,20,.08);

        border-radius:
            20px;

        background:
            rgba(255,255,255,.95);

        backdrop-filter:
            blur(22px);

        -webkit-backdrop-filter:
            blur(22px);

        box-shadow:
            0 25px 60px
            rgba(5,11,20,.14);

        opacity:
            0;

        visibility:
            hidden;

        pointer-events:
            none;

        transform:
            translateY(-10px)
            scale(.98);

        transform-origin:
            top right;

        transition:
            opacity .3s var(--ease),
            transform .3s var(--ease),
            visibility .3s;
    }

    .nav-links.open {

        opacity:
            1;

        visibility:
            visible;

        pointer-events:
            auto;

        transform:
            translateY(0)
            scale(1);
    }

    .nav-links a {

        justify-content:
            flex-start;

        width:
            100%;

        padding:
            12px 14px;
    }

    .nav-links a::after {
        display:
            none;
    }

    .nav-cta {

        justify-content:
            center !important;

        margin:
            6px 0 0 !important;

        width:
            100% !important;
    }

    .nav-links {

        position:
            absolute;

        left:
            12px;

        right:
            12px;

        top:
            calc(100% + 8px);

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            4px;

        padding:
            12px;

        border:
            1px solid
            rgba(5,11,20,.08);

        border-radius:
            20px;

        background:
            rgba(255,255,255,.95);

        backdrop-filter:
            blur(22px);

        box-shadow:
            0 25px 60px
            rgba(5,11,20,.14);

        opacity:
            0;

        visibility:
            hidden;

        pointer-events:
            none;

        transform:
            translateY(-10px)
            scale(.98);

        transform-origin:
            top center;

        transition:
            opacity .3s var(--ease),
            transform .3s var(--ease),
            visibility .3s;
    }

    .nav-links.open {

        opacity:
            1;

        visibility:
            visible;

        pointer-events:
            auto;

        transform:
            translateY(0)
            scale(1);
    }

    .nav-links a {

        justify-content:
            flex-start;

        width:
            100%;

        padding:
            12px 14px;
    }

    .nav-links a::after {
        display:
            none;
    }

    .nav-cta {

        justify-content:
            center !important;

        margin:
            6px 0 0 !important;

        width:
            100% !important;
    }

    .hero-v2 {

        padding:
            68px 0 88px;
    }

    .hero-title {

        font-size:
            clamp(
                2.6rem,
                13vw,
                4rem
            );

        letter-spacing:
            -2.5px;
    }

    .hero-kicker {
        font-size:
            11px;

        letter-spacing:
            2.4px;
    }

    .hero-description {

        font-size:
            14px;

        line-height:
            1.75;
    }

    .hero-actions {

        width:
            100%;

        flex-direction:
            column;
    }

    .hero-actions .btn {

        width:
            100%;
    }

    .hero-trust {

        gap:
            11px 15px;
    }

    .trust-item {
        font-size:
            10px;
    }

    .hero-interface {

        min-height:
            470px;

        border-radius:
            24px;
    }

    .interface-content {

        padding:
            27px 20px 22px;
    }

    .interface-heading {

        font-size:
            21px;

        margin-bottom:
            25px;
    }

    .ecosystem {

        transform:
            scale(.88);

        transform-origin:
            center;
    }

    .interface-footer {

        padding-top:
            12px;
    }

    .floating-card {

        padding:
            9px 11px;
    }

    .floating-card-top {
        right:
            -6px;

        top:
            45px;
    }

    .floating-card-bottom {
        left:
            -6px;

        bottom:
            45px;
    }

    .floating-card strong {
        font-size:
            9px;
    }

    .trust-strip {
        padding:
            18px 0;
    }

    .trust-strip-inner {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            13px;
    }

    .trust-strip-items {
        width:
            100%;

        justify-content:
            space-between;

        gap:
            8px;

        overflow:
            hidden;
    }

    .trust-strip-items span {
        font-size:
            7px;
    }

    .trust-strip-items i {
        flex:
            0 0 auto;
    }

    .services-section,
    .work-section,
    .process-section,
    .testimonial-section {

        padding:
            85px 0;
    }

    .section-head {
        margin-bottom:
            45px;
    }

    .section-head h2 {

        font-size:
            clamp(
                2rem,
                9vw,
                2.8rem
            );

        letter-spacing:
            -1.5px;
    }

    .section-head p {
        font-size:
            13px;
    }

    .services-grid {
        grid-template-columns:
            1fr;

        gap:
            14px;
    }

    .service-card {
        min-height:
            290px;
    }

    .impact-section {
        padding:
            85px 0;
    }

    .impact-heading {
        margin-bottom:
            45px;
    }

    .impact-heading h2 {

        font-size:
            clamp(
                2rem,
                9vw,
                2.8rem
            );
    }

    .stats-grid-v2 {
        grid-template-columns:
            1fr;
    }

    .stat-v2,
    .stat-v2:nth-child(2) {

        min-height:
            220px;

        border-right:
            0;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }

    .stat-v2:last-child {
        border-bottom:
            0;
    }

    .stat-top {
        margin-bottom:
            28px;
    }

    .stat-description {
        max-width:
            300px;
    }

    .work-head-content h2 {
        font-size:
            2.2rem;
    }

    .projects-grid-v2 {

        grid-template-columns:
            1fr;

        gap:
            38px;
    }

    .project-v2:first-child {
        grid-column:
            auto;
    }

    .project-v2:first-child .project-image {
        aspect-ratio:
            16 / 10;
    }

    .project-info {

        flex-direction:
            column;

        gap:
            10px;
    }

    .project-meta {

        flex-direction:
            row;

        align-items:
            center;

        width:
            100%;

        justify-content:
            space-between;
    }

    .process-grid {
        grid-template-columns:
            1fr;
    }

    .process-item,
    .process-item:nth-child(2) {

        min-height:
            235px;

        border-right:
            0;

        border-bottom:
            1px solid
            var(--border);
    }

    .process-item:last-child {
        border-bottom:
            0;
    }

    .process-number {
        margin-bottom:
            45px;
    }

    .process-line {
        top:
            79px;
    }

    .testimonials-v2 {
        grid-template-columns:
            1fr;
    }

    .testimonial-v2:last-child {
        grid-column:
            auto;
    }

    .testimonial-v2 {
        min-height:
            290px;
    }

    .testimonial-v2 p {
        min-height:
            auto;
    }

    .final-cta-section {
        padding:
            70px 0;
    }

    .final-cta {

        min-height:
            500px;

        padding:
            55px 20px;

        border-radius:
            27px;
    }

    .final-cta h2 {

        font-size:
            clamp(
                2.4rem,
                11vw,
                3.5rem
            );

        letter-spacing:
            -2px;
    }

    .final-cta > p {
        font-size:
            13px;
    }

    .cta-actions {
        width:
            100%;

        flex-direction:
            column;
    }

    .cta-actions .btn {
        width:
            100%;
    }

    .cta-footer {

        gap:
            9px 14px;

        line-height:
            1.5;

        text-align:
            center;
    }

    .site-footer {

        padding:
            60px 0 22px;
    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap:
            40px 25px;

        padding-bottom:
            45px;
    }

    .footer-brand {
        grid-column:
            span 2;
    }

    .footer-grid .footer-col:last-child {
        grid-column:
            span 2;
    }

    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;
    }

    .form-row {
        grid-template-columns:
            1fr;
    }

    .form-card {
        padding:
            25px;
    }
}


@media (max-width: 430px) {

    .hero-eyebrow {

        font-size:
            8.5px;

        letter-spacing:
            .45px;
    }

    .hero-interface {

        min-height:
            425px;
    }

    .interface-topbar {
        height:
            48px;

        padding:
            0 14px;
    }

    .interface-url {
        display:
            none;
    }

    .interface-content {
        padding:
            23px 15px 18px;
    }

    .interface-label {
        font-size:
            8px;
    }

    .interface-heading {

        font-size:
            18px;

        margin-bottom:
            18px;
    }

    .ecosystem {

        height:
            225px;

        transform:
            scale(.73);
    }

    .interface-footer {
        font-size:
            8px;
    }

    .footer-label {
        font-size:
            6px;
    }

    .interface-footer strong {
        font-size:
            8px;
    }

    .floating-card-top {
        right:
            -8px;

        top:
            28px;
    }

    .floating-card-bottom {
        left:
            -8px;

        bottom:
            28px;
    }

    .floating-icon {
        width:
            27px;

        height:
            27px;
    }

    .floating-card small {
        font-size:
            7px;
    }

    .floating-card strong {
        font-size:
            8px;
    }

    .hero-scroll-indicator {
        display:
            none;
    }
}


/* ============================================================
   REDUCED MOTION / ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

    .reveal,
    .hero-reveal {

        opacity:
            1 !important;

        transform:
            none !important;
    }
}

/* =========================================================
   PROJECTS CTA — PREMIUM AGENCY STYLE
   ========================================================= */

.projects-cta-section {
    padding: 40px 0 110px;
}

.projects-cta {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 64px 72px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(0, 174, 239, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0F172A 0%,
            #111C31 55%,
            #0B1425 100%
        );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    isolation: isolate;
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.projects-cta-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.projects-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.58);
}

.projects-cta-label .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00AEEF;
    box-shadow: 0 0 14px rgba(0,174,239,0.7);
}

.projects-cta h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 800;
    color: #fff;
}

.projects-cta h2 span {
    display: block;
    color: #00AEEF;
}

.projects-cta p {
    max-width: 650px;
    margin: 24px 0 32px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
}

.projects-cta-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.projects-cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.projects-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.projects-cta-link-arrow {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.projects-cta-link:hover {
    color: #fff;
}

.projects-cta-link:hover .projects-cta-link-arrow {
    transform: translateX(5px);
}


/* RIGHT SIDE TYPOGRAPHIC DETAIL */

.projects-cta-side {
    position: relative;
    z-index: 3;
    width: 190px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-left: 40px;
}

.cta-side-line {
    width: 48px;
    height: 2px;
    background: #00AEEF;
}

.projects-cta-side span {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: rgba(255,255,255,0.32);
}


/* BACKGROUND EFFECT */

.projects-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.075;
    background-image:
        linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 55%,
        transparent 100%
    );
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.cta-orb-1 {
    width: 280px;
    height: 280px;
    right: -80px;
    top: -120px;
    border: 1px solid rgba(0,174,239,0.18);
    box-shadow:
        0 0 100px rgba(0,174,239,0.12),
        inset 0 0 80px rgba(0,174,239,0.05);
}

.cta-orb-2 {
    width: 150px;
    height: 150px;
    right: 90px;
    bottom: -85px;
    border: 1px solid rgba(255,255,255,0.07);
}


/* HOVER / MOTION */

.projects-cta {
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}

.projects-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 32px 75px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.projects-cta:hover .cta-orb-1 {
    transform: scale(1.05);
}

.cta-orb-1 {
    transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}


/* MOBILE */

@media (max-width: 768px) {

    .projects-cta-section {
        padding: 25px 0 75px;
    }

    .projects-cta {
        min-height: auto;
        padding: 42px 28px;
        border-radius: 22px;
    }

    .projects-cta-content {
        max-width: none;
    }

    .projects-cta h2 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .projects-cta p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .projects-cta-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .projects-cta-side {
        display: none;
    }

    .cta-grid {
        background-size: 30px 30px;
    }

    .cta-orb-1 {
        width: 220px;
        height: 220px;
        right: -110px;
        top: -80px;
    }
}

/* =========================================================
   PROJECTS FILTER
   ========================================================= */

.projects-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin: 10px 0 55px;
    padding-bottom: 18px;

    border-bottom: 1px solid var(--border, #E2E8F0);
}

.projects-filter-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;

    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--text-muted, #64748B);
    text-transform: uppercase;
}

.filter-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;

    border-radius: 50%;
    background: var(--cyan, #00AEEF);

    box-shadow: 0 0 12px rgba(0,174,239,.45);
}

.projects-filter-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 8px;
}

.projects-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 38px;
    padding: 8px 13px;

    border: 1px solid transparent;
    border-radius: 999px;

    background: transparent;
    color: var(--text-muted, #64748B);

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.projects-filter-btn small {
    display: inline-grid;
    place-items: center;

    min-width: 19px;
    height: 19px;
    padding: 0 5px;

    border-radius: 999px;

    background: var(--bg-clean, #F8FAFC);
    color: var(--text-muted, #64748B);

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;

    transition:
        background .25s ease,
        color .25s ease;
}

.projects-filter-btn:hover {
    color: var(--navy, #0F172A);
    background: rgba(0,174,239,.05);
    border-color: rgba(0,174,239,.18);
    transform: translateY(-1px);
}

.projects-filter-btn:hover small {
    background: #fff;
    color: var(--cyan, #00AEEF);
}

.projects-filter-btn.active {
    color: #fff;

    background: var(--navy, #0F172A);
    border-color: var(--navy, #0F172A);

    box-shadow: 0 8px 20px rgba(15,23,42,.10);
}

.projects-filter-btn.active small {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.82);
}


/* =========================================================
   FILTER CARD ANIMATION
   ========================================================= */

.project-v2.filter-hidden {
    display: none !important;
}

.project-v2.filter-show {
    animation: projectFilterIn .42s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes projectFilterIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.projects-empty {
    grid-column: 1 / -1;

    padding: 70px 20px;

    text-align: center;

    border-top: 1px solid var(--border, #E2E8F0);
    border-bottom: 1px solid var(--border, #E2E8F0);

    color: var(--text-muted, #64748B);
}

.projects-empty strong {
    display: block;

    margin-bottom: 7px;

    color: var(--navy, #0F172A);
    font-size: 18px;
}

.projects-empty span {
    font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .projects-filter {
        align-items: flex-start;
        flex-direction: column;

        gap: 16px;
    }

    .projects-filter-list {
        width: 100%;

        justify-content: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .projects-filter {
        display: block;

        width: 100%;
        max-width: 100%;

        margin: 8px 0 38px;
        padding-bottom: 18px;

        /*
         * PENTING:
         * Tidak ada overflow hidden / auto di parent.
         */
        overflow: visible;
    }

    .projects-filter-label {
        display: flex;

        width: 100%;

        margin-bottom: 14px;

        font-size: 8px;
        letter-spacing: .13em;
    }

    /*
     * FILTER BUTTONS
     *
     * Jangan horizontal scroll.
     * Biarkan browser melakukan wrapping.
     */
    .projects-filter-list {
        display: flex;

        width: 100%;
        max-width: 100%;

        flex-direction: row;
        flex-wrap: wrap;

        align-items: center;
        justify-content: flex-start;

        gap: 7px;
    }

    .projects-filter-btn {
        flex: 0 0 auto;

        min-height: 38px;

        padding: 7px 12px;

        font-size: 10px;

        /*
         * Supaya seluruh button selalu
         * berada di dalam viewport.
         */
        max-width: 100%;
    }

    .projects-filter-btn small {
        min-width: 18px;
        height: 18px;

        font-size: 7px;
    }
}


/* =========================================================
   VERY SMALL SCREEN
   ========================================================= */

@media (max-width: 380px) {

    .projects-filter-list {
        gap: 6px;
    }

    .projects-filter-btn {
        min-height: 36px;
        padding: 6px 10px;

        font-size: 9px;
    }

    .projects-filter-btn small {
        min-width: 17px;
        height: 17px;

        font-size: 7px;
    }
}

.profile-hero {
    padding: 80px 0 110px;
    overflow: hidden;
}

.profile-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 70px;
    align-items: center;
}

.profile-hero-main {
    max-width: 850px;
}

.profile-hero-main h1 {
    margin: 28px 0 28px;
    max-width: 850px;
    font-size: clamp(48px, 6.2vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.profile-hero-main h1 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.profile-hero-lead {
    max-width: 690px;
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.profile-hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 38px;
}

.profile-since {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.profile-since-line {
    width: 28px;
    height: 1px;
    background: var(--border, #E2E8F0);
}


/* HERO ORBIT */

.profile-hero-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border, #E2E8F0);
    border-radius: 50%;
}

.profile-orbit .ring-1 {
    transform: rotate(22deg) scaleX(.72);
}

.profile-orbit .ring-2 {
    transform: rotate(-22deg) scaleX(.72);
}

.profile-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy, #0F172A);
    color: #fff;
    box-shadow: 0 25px 60px rgba(15,23,42,.18);
}

.profile-orbit-core span {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.profile-orbit::before,
.profile-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.profile-orbit::before {
    width: 8px;
    height: 8px;
    top: 28px;
    right: 50px;
    background: var(--cyan, #00AEEF);
    box-shadow: 0 0 22px rgba(0,174,239,.65);
}

.profile-orbit::after {
    width: 6px;
    height: 6px;
    left: 40px;
    bottom: 58px;
    background: var(--orange, #F36F21);
}

.profile-side-label {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-top: 20px;
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--text-muted);
}


/* GENERAL */

.profile-section-head {
    margin-bottom: 65px;
}

.profile-section-head .section-index {
    margin-bottom: 26px;
}

.profile-intro-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
    gap: 60px;
    align-items: end;
}

.profile-intro-heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.profile-intro-heading h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.profile-intro-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* INTRO */

.profile-intro {
    padding: 30px 0 120px;
}

.profile-statement {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr 60px;
    gap: 35px;
    padding: 42px 0;
    border-top: 1px solid var(--border, #E2E8F0);
    border-bottom: 1px solid var(--border, #E2E8F0);
}

.profile-statement-number {
    color: var(--cyan, #00AEEF);
    font-size: 11px;
    font-weight: 700;
}

.profile-statement-content p {
    max-width: 850px;
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.2;
    letter-spacing: -.035em;
    font-weight: 600;
    color: var(--navy, #0F172A);
}

.profile-statement-mark {
    justify-self: end;
    font-size: 28px;
    color: var(--cyan, #00AEEF);
}


/* JOURNEY */

.profile-journey {
    padding: 120px 0;
    background: #fff;
}

.profile-timeline {
    position: relative;
}

.profile-timeline::before {
    content: "";
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border, #E2E8F0);
}

.profile-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1px minmax(0, 1fr);
    column-gap: 34px;
    min-height: 150px;
    padding-bottom: 62px;
}

.profile-timeline-item:last-child {
    padding-bottom: 0;
}

.profile-timeline-year {
    padding-top: 2px;
    color: var(--navy, #0F172A);
    font-size: 16px;
    font-weight: 800;
}

.profile-timeline-marker {
    position: relative;
}

.profile-timeline-marker span {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--cyan, #00AEEF);
    box-shadow: 0 0 0 5px #fff;
}

.profile-timeline-content {
    padding-left: 2px;
}

.profile-timeline-top {
    margin-bottom: 14px;
}

.profile-timeline-top span {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: .12em;
}

.profile-timeline-content h3 {
    margin: 0 0 10px;
    font-size: 25px;
    letter-spacing: -.025em;
}

.profile-timeline-content p {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 14px;
}


/* VALUES */

.profile-values {
    padding: 120px 0;
}

.profile-values-list {
    border-top: 1px solid var(--border, #E2E8F0);
}

.profile-value {
    display: grid;
    grid-template-columns: 80px minmax(280px, 1fr) minmax(260px, .8fr) 40px;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border, #E2E8F0);
    transition:
        padding .35s ease,
        background .35s ease;
}

.profile-value:hover {
    padding-left: 16px;
    padding-right: 16px;
    background: rgba(0,174,239,.025);
}

.profile-value-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan, #00AEEF);
}

.profile-value-title h3 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -.025em;
}

.profile-value-description p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.profile-value-arrow {
    justify-self: end;
    color: var(--cyan, #00AEEF);
    font-size: 20px;
    transition: transform .3s ease;
}

.profile-value:hover .profile-value-arrow {
    transform: translate(4px, -4px);
}


/* TRUST */

.profile-trust {
    padding: 30px 0 120px;
}

.profile-trust-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    padding: 65px;
    border-radius: 24px;
    background: var(--navy, #0F172A);
    overflow: hidden;
    color: #fff;
}

.profile-trust-box::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -160px;
    top: -160px;
    border: 1px solid rgba(0,174,239,.2);
    border-radius: 50%;
    box-shadow:
        0 0 100px rgba(0,174,239,.08),
        inset 0 0 70px rgba(0,174,239,.04);
}

.profile-trust-left {
    position: relative;
    z-index: 2;
}

.profile-trust-left .section-index span {
    color: rgba(255,255,255,.48);
}

.profile-trust-left .section-index i {
    background: rgba(255,255,255,.18);
}

.profile-trust-left h2 {
    margin: 28px 0 22px;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.profile-trust-left h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.profile-trust-left p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.58);
    line-height: 1.8;
    font-size: 14px;
}

.profile-trust-detail {
    position: relative;
    z-index: 2;
}

.trust-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.trust-detail-row:first-child {
    border-top: 1px solid rgba(255,255,255,.1);
}

.trust-detail-row span {
    color: rgba(255,255,255,.4);
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trust-detail-row strong {
    text-align: right;
    font-size: 12px;
    color: rgba(255,255,255,.85);
}


/* FINAL CTA */

.profile-final-cta {
    padding: 0 0 110px;
}

.profile-final {
    position: relative;
    min-height: 410px;
    padding: 62px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0,174,239,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0F172A,
            #111C31 60%,
            #0B1425
        );
    color: #fff;
    box-shadow: 0 25px 65px rgba(15,23,42,.14);
    transition: transform .45s ease, box-shadow .45s ease;
}

.profile-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 80px rgba(15,23,42,.18);
}

.profile-final-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.profile-final-grid {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 50%,
        transparent
    );
}

.profile-final-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -90px;
    top: -120px;
    border: 1px solid rgba(0,174,239,.18);
    border-radius: 50%;
}

.profile-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.profile-final .section-index span {
    color: rgba(255,255,255,.42);
}

.profile-final .section-index i {
    background: rgba(255,255,255,.18);
}

.profile-final h2 {
    margin: 26px 0 18px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
}

.profile-final h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.profile-final p {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.58);
    line-height: 1.75;
    font-size: 14px;
}

.profile-final-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.profile-final-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease, gap .25s ease;
}

.profile-final-link span {
    font-size: 18px;
    transition: transform .25s ease;
}

.profile-final-link:hover {
    color: #fff;
}

.profile-final-link:hover span {
    transform: translateX(5px);
}

.profile-final-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: .18em;
    color: rgba(255,255,255,.25);
}

.profile-final-side strong {
    color: rgba(255,255,255,.65);
    font-size: 16px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .profile-hero {
        padding: 55px 0 80px;
    }

    .profile-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .profile-hero-side {
        align-items: flex-start;
    }

    .profile-orbit {
        width: 220px;
        height: 220px;
    }

    .profile-side-label {
        width: 220px;
    }

    .profile-intro-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .profile-statement {
        grid-template-columns: 70px 1fr;
    }

    .profile-statement-mark {
        display: none;
    }

    .profile-value {
        grid-template-columns: 55px 1fr 30px;
        gap: 20px;
    }

    .profile-value-description {
        grid-column: 2 / -1;
    }

    .profile-trust-box {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 45px;
    }

    .profile-final {
        padding: 50px 45px;
    }

    .profile-final-side {
        display: none;
    }
}


@media (max-width: 600px) {

    .profile-hero {
        padding: 45px 0 70px;
    }

    .profile-hero-main h1 {
        font-size: clamp(43px, 12vw, 58px);
    }

    .profile-hero-lead {
        font-size: 15px;
    }

    .profile-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .profile-section-head {
        margin-bottom: 42px;
    }

    .profile-intro {
        padding-bottom: 80px;
    }

    .profile-intro-heading h2 {
        font-size: 40px;
    }

    .profile-statement {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 0;
    }

    .profile-statement-content p {
        font-size: 25px;
    }

    .profile-journey,
    .profile-values {
        padding: 80px 0;
    }

    .profile-timeline::before {
        left: 8px;
    }

    .profile-timeline-item {
        grid-template-columns: 1fr;
        padding-left: 32px;
        padding-bottom: 48px;
    }

    .profile-timeline-year {
        margin-bottom: 12px;
    }

    .profile-timeline-marker {
        position: absolute;
        left: 4px;
        top: 4px;
    }

    .profile-timeline-content {
        padding-left: 0;
    }

    .profile-timeline-content h3 {
        font-size: 22px;
    }

    .profile-value {
        grid-template-columns: 42px 1fr 24px;
        gap: 12px;
        padding: 25px 0;
    }

    .profile-value-title h3 {
        font-size: 18px;
    }

    .profile-value-description {
        grid-column: 2 / -1;
    }

    .profile-trust {
        padding: 10px 0 80px;
    }

    .profile-trust-box {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .trust-detail-row {
        flex-direction: column;
        gap: 6px;
    }

    .trust-detail-row strong {
        text-align: left;
    }

    .profile-final-cta {
        padding-bottom: 75px;
    }

    .profile-final {
        min-height: auto;
        padding: 40px 26px;
        border-radius: 22px;
    }

    .profile-final h2 {
        font-size: 43px;
    }

    .profile-final-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}

.services-hero {
    padding: 80px 0 115px;
    overflow: hidden;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(250px, .5fr);
    gap: 70px;
    align-items: center;
}

.services-hero-main h1 {
    max-width: 900px;
    margin: 28px 0;
    font-size: clamp(48px, 6.3vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.services-hero-main h1 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.services-hero-lead {
    max-width: 690px;
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.services-hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    color: var(--text-muted);
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.services-hero-line {
    width: 34px;
    height: 1px;
    background: var(--cyan, #00AEEF);
}


/* HERO SIDE */

.services-hero-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
}

.services-hero-counter {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.services-hero-counter strong {
    font-family: var(--font-mono, monospace);
    font-size: 64px;
    line-height: .8;
    letter-spacing: -.08em;
    color: var(--navy, #0F172A);
}

.services-hero-counter span {
    padding-bottom: 3px;
    color: var(--text-muted);
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: .12em;
}

.services-hero-circle {
    width: 145px;
    height: 145px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border, #E2E8F0);
    border-radius: 50%;
    color: var(--cyan, #00AEEF);
    font-size: 30px;
    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        border-color .3s ease;
}

.services-hero-circle:hover {
    transform: rotate(12deg) scale(1.05);
    border-color: rgba(0,174,239,.45);
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.services-list-section,
.services-process,
.services-advantages {
    padding: 115px 0;
}

.services-process {
    background: #fff;
}

.services-section-head {
    margin-bottom: 60px;
}

.services-section-head .section-index {
    margin-bottom: 26px;
}

.services-section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
    gap: 60px;
    align-items: end;
}

.services-section-intro h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.services-section-intro h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.services-section-intro p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES LIST
   ========================================================= */

.services-list {
    border-top: 1px solid var(--border, #E2E8F0);
}

.service-row {
    display: grid;
    grid-template-columns: 70px 70px minmax(0, 1fr) 35px;
    gap: 25px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid var(--border, #E2E8F0);
    transition:
        padding .35s ease,
        background .35s ease;
}

.service-row:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: rgba(0,174,239,.025);
}

.service-row-number {
    color: var(--cyan, #00AEEF);
    font-size: 11px;
    font-weight: 700;
}

.service-row-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border, #E2E8F0);
    border-radius: 12px;
    color: var(--cyan, #00AEEF);
    transition:
        transform .35s ease,
        border-color .35s ease;
}

.service-row-icon svg {
    width: 23px;
    height: 23px;
}

.service-row:hover .service-row-icon {
    transform: translateY(-3px);
    border-color: rgba(0,174,239,.4);
}

.service-row-main {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(280px, 1fr);
    gap: 50px;
    align-items: center;
}

.service-row-category {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
}

.service-row-heading h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -.025em;
}

.service-row-description p {
    margin: 0;
}

.service-short {
    color: var(--navy, #0F172A);
    font-size: 14px;
    line-height: 1.65;
}

.service-full {
    margin-top: 8px !important;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.service-row-arrow {
    justify-self: end;
    color: var(--cyan, #00AEEF);
    font-size: 21px;
    transition: transform .3s ease;
}

.service-row:hover .service-row-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   PROCESS
   ========================================================= */

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border, #E2E8F0);
}

.process-step {
    position: relative;
    min-height: 260px;
    padding: 30px 28px 30px 0;
    border-bottom: 1px solid var(--border, #E2E8F0);
}

.process-step + .process-step {
    padding-left: 28px;
    border-left: 1px solid var(--border, #E2E8F0);
}

.process-step-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.process-step-number {
    color: var(--cyan, #00AEEF);
    font-size: 12px;
    font-weight: 700;
}

.process-step-line {
    height: 1px;
    flex: 1;
    background: var(--border, #E2E8F0);
}

.process-step h3 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: -.025em;
}

.process-step p {
    max-width: 250px;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   ADVANTAGES
   ========================================================= */

.services-advantages-list {
    border-top: 1px solid var(--border, #E2E8F0);
}

.advantage-row {
    display: grid;
    grid-template-columns: 70px minmax(220px, .65fr) minmax(280px, 1fr) 35px;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border, #E2E8F0);
    transition:
        padding .35s ease,
        background .35s ease;
}

.advantage-row:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: rgba(0,174,239,.025);
}

.advantage-number {
    color: var(--cyan, #00AEEF);
    font-size: 11px;
    font-weight: 700;
}

.advantage-row h3 {
    margin: 0;
    font-size: 21px;
    letter-spacing: -.025em;
}

.advantage-row p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.advantage-arrow {
    justify-self: end;
    color: var(--cyan, #00AEEF);
    font-size: 20px;
    transition: transform .3s ease;
}

.advantage-row:hover .advantage-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.services-final-cta {
    padding: 10px 0 110px;
}

.services-final {
    position: relative;
    min-height: 410px;
    padding: 62px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0,174,239,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0F172A,
            #111C31 60%,
            #0B1425
        );
    color: #fff;
    box-shadow: 0 25px 65px rgba(15,23,42,.14);
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.services-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 80px rgba(15,23,42,.18);
}

.services-final-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-final-grid {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black 50%,
        transparent
    );
}

.services-final-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -90px;
    top: -120px;
    border: 1px solid rgba(0,174,239,.18);
    border-radius: 50%;
}

.services-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.services-final .section-index span {
    color: rgba(255,255,255,.42);
}

.services-final .section-index i {
    background: rgba(255,255,255,.18);
}

.services-final h2 {
    margin: 26px 0 18px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
}

.services-final h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.services-final p {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.58);
    line-height: 1.75;
    font-size: 14px;
}

.services-final-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.services-final-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color .25s ease,
        gap .25s ease;
}

.services-final-link span {
    font-size: 18px;
    transition: transform .25s ease;
}

.services-final-link:hover {
    color: #fff;
}

.services-final-link:hover span {
    transform: translateX(5px);
}

.services-final-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: .18em;
    color: rgba(255,255,255,.25);
}

.services-final-side strong {
    color: rgba(255,255,255,.65);
    font-size: 16px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .services-hero {
        padding: 55px 0 80px;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .services-hero-side {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }

    .services-section-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-row {
        grid-template-columns: 55px 55px minmax(0,1fr) 25px;
        gap: 18px;
    }

    .service-row-main {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(3) {
        border-left: 0;
    }

    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 1px solid var(--border, #E2E8F0);
    }

    .advantage-row {
        grid-template-columns: 55px 1fr 25px;
        gap: 18px;
    }

    .advantage-row p {
        grid-column: 2 / -1;
    }

    .services-final {
        padding: 50px 45px;
    }

    .services-final-side {
        display: none;
    }
}


@media (max-width: 600px) {

    .services-hero {
        padding: 45px 0 70px;
    }

    .services-hero-main h1 {
        font-size: clamp(43px, 12vw, 58px);
    }

    .services-hero-lead {
        font-size: 15px;
    }

    .services-hero-side {
        align-items: center;
    }

    .services-hero-circle {
        width: 105px;
        height: 105px;
    }

    .services-hero-counter strong {
        font-size: 50px;
    }

    .services-list-section,
    .services-process,
    .services-advantages {
        padding: 80px 0;
    }

    .services-section-head {
        margin-bottom: 42px;
    }

    .services-section-intro h2 {
        font-size: 40px;
    }

    .service-row {
        grid-template-columns: 42px 1fr 22px;
        gap: 12px;
        padding: 28px 0;
    }

    .service-row-icon {
        width: 42px;
        height: 42px;
    }

    .service-row-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-row-main {
        grid-column: 2;
        grid-row: 1;
    }

    .service-row-number {
        align-self: start;
        padding-top: 12px;
    }

    .service-row-arrow {
        align-self: start;
        padding-top: 10px;
    }

    .service-row-heading h3 {
        font-size: 20px;
    }

    .service-row-description {
        margin-top: 5px;
    }

    .service-full {
        display: none;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step + .process-step {
        min-height: auto;
        padding: 28px 0;
        border-left: 0;
        border-top: 0;
        border-bottom: 1px solid var(--border, #E2E8F0);
    }

    .process-step-top {
        margin-bottom: 28px;
    }

    .process-step p {
        max-width: none;
    }

    .advantage-row {
        grid-template-columns: 42px 1fr 22px;
        gap: 12px;
        padding: 25px 0;
    }

    .advantage-row h3 {
        font-size: 19px;
    }

    .services-final-cta {
        padding-bottom: 75px;
    }

    .services-final {
        min-height: auto;
        padding: 40px 26px;
        border-radius: 22px;
    }

    .services-final h2 {
        font-size: 43px;
    }

    .services-final-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

}

/* =========================================================
   CONTACTS PAGE
   PETRICK LABS — EDITORIAL SYSTEM
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    padding: 90px 0 80px;
    border-bottom: 1px solid var(--border, #E2E8F0);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
}

.contact-hero-main h1 {
    max-width: 800px;
    margin: 28px 0 0;

    font-size: clamp(54px, 7vw, 94px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 700;
}

.contact-hero-main h1 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.contact-hero-copy {
    padding-bottom: 6px;
}

.contact-hero-copy p {
    max-width: 460px;
    margin: 0 0 28px;

    color: var(--text-muted, #64748B);
    font-size: 15px;
    line-height: 1.8;
}

.contact-response {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    color: var(--text-dark, #0F172A);
}

.contact-response-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: var(--cyan, #00AEEF);

    box-shadow:
        0 0 0 4px rgba(0,174,239,.08),
        0 0 16px rgba(0,174,239,.35);
}


/* =========================================================
   MAIN CONTACT
========================================================= */

.contact-main-section {
    padding: 100px 0;
}

.contact-section-index {
    margin-bottom: 55px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.contact-sidebar {
    position: sticky;
    top: 110px;
}

.contact-sidebar-intro {
    margin-bottom: 42px;
}

.contact-kicker {
    display: block;
    margin-bottom: 16px;

    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--cyan, #00AEEF);
}

.contact-sidebar-intro h2 {
    margin: 0 0 18px;

    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.contact-sidebar-intro h2 span {
    display: block;
    color: var(--text-muted, #64748B);
}

.contact-sidebar-intro p {
    max-width: 390px;
    margin: 0;

    color: var(--text-muted, #64748B);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT CHANNEL
========================================================= */

.contact-channel {
    position: relative;

    display: flex;
    align-items: center;
    gap: 17px;

    padding: 18px 0;

    color: var(--text-dark, #0F172A);
    text-decoration: none;

    border-top: 1px solid var(--border, #E2E8F0);

    transition:
        padding .3s ease,
        color .3s ease;
}

.contact-channel:last-of-type {
    border-bottom: 1px solid var(--border, #E2E8F0);
}

.contact-channel:hover {
    padding-left: 8px;
    color: var(--cyan-deep, #0052D4);
}

.contact-channel-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    border: 1px solid var(--border, #E2E8F0);
    border-radius: 50%;

    color: var(--cyan, #00AEEF);

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.contact-channel:hover .contact-channel-icon {
    background: rgba(0,174,239,.07);
    border-color: rgba(0,174,239,.25);
}

.contact-channel-icon svg {
    width: 19px;
    height: 19px;
}

.contact-channel-content {
    min-width: 0;
}

.contact-channel-content > span {
    display: block;
    margin-bottom: 4px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;

    color: var(--text-muted, #64748B);
}

.contact-channel-content strong {
    display: block;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 13px;
    font-weight: 700;
}

.contact-channel-content small {
    display: block;
    margin-top: 3px;

    color: var(--text-muted, #64748B);
    font-size: 10px;
}

.contact-channel-arrow {
    margin-left: auto;

    font-size: 19px;
    color: var(--text-muted, #64748B);

    transition:
        transform .3s ease,
        color .3s ease;
}

.contact-channel:hover .contact-channel-arrow {
    transform: translate(3px,-3px);
    color: var(--cyan, #00AEEF);
}

.contact-sidebar-note {
    margin-top: 42px;
    padding-top: 18px;

    border-top: 1px solid var(--border, #E2E8F0);
}

.contact-sidebar-note > span {
    display: block;
    margin-bottom: 10px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;

    color: var(--text-muted, #64748B);
}

.contact-sidebar-note p {
    max-width: 310px;
    margin: 0;

    color: var(--text-muted, #64748B);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {
    position: relative;

    padding: 38px;

    background: #fff;

    border: 1px solid var(--border, #E2E8F0);

    box-shadow:
        0 20px 60px rgba(15,23,42,.055);
}

.contact-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 28px;
    margin-bottom: 8px;

    border-bottom: 1px solid var(--border, #E2E8F0);
}

.contact-form-header > div:first-child > span {
    display: block;
    margin-bottom: 10px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;

    color: var(--cyan, #00AEEF);
}

.contact-form-header h3 {
    margin: 0;

    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.contact-form-number {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 700;

    color: var(--text-muted, #64748B);
}


/* =========================================================
   ALERT
========================================================= */

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin: 24px 0;
    padding: 15px;

    border: 1px solid var(--border, #E2E8F0);
}

.contact-alert-icon {
    display: grid;
    place-items: center;

    width: 25px;
    height: 25px;
    flex: 0 0 25px;

    border-radius: 50%;

    font-weight: 800;
    font-size: 12px;
}

.contact-alert-success {
    background: rgba(0,174,239,.045);
    border-color: rgba(0,174,239,.18);
}

.contact-alert-success .contact-alert-icon {
    color: var(--cyan-deep, #0052D4);
    background: rgba(0,174,239,.10);
}

.contact-alert-error {
    background: rgba(229,57,53,.04);
    border-color: rgba(229,57,53,.16);
}

.contact-alert-error .contact-alert-icon {
    color: var(--red, #E53935);
    background: rgba(229,57,53,.08);
}

.contact-alert strong,
.contact-alert span {
    display: block;
}

.contact-alert strong {
    margin-bottom: 3px;
    font-size: 12px;
}

.contact-alert span {
    color: var(--text-muted, #64748B);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.contact-form {
    padding-top: 28px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-field {
    margin-bottom: 26px;
}

.contact-field label {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 9px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;

    color: var(--text-muted, #64748B);
}

.contact-field label span {
    color: var(--cyan, #00AEEF);
}

.contact-field input,
.contact-field textarea {
    display: block;

    width: 100%;

    padding: 13px 0;

    border: 0;
    border-bottom: 1px solid #CBD5E1;
    border-radius: 0;

    background: transparent;

    color: var(--text-dark, #0F172A);

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #94A3B8;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--cyan, #00AEEF);
    box-shadow: 0 1px 0 var(--cyan, #00AEEF);
}

.contact-field textarea {
    min-height: 125px;
    resize: vertical;
    line-height: 1.7;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-top: 8px;
}

.contact-submit > span {
    max-width: 260px;

    color: var(--text-muted, #64748B);

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    line-height: 1.6;
    letter-spacing: .03em;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    min-width: 190px;

    padding: 14px 17px;

    border: 1px solid var(--navy, #0F172A);

    background: var(--navy, #0F172A);
    color: #fff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.contact-submit-btn strong {
    font-size: 17px;
    font-weight: 400;

    transition: transform .3s ease;
}

.contact-submit-btn:hover {
    background: var(--cyan-deep, #0052D4);
    border-color: var(--cyan-deep, #0052D4);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0,82,212,.18);
}

.contact-submit-btn:hover strong {
    transform: translate(3px,-3px);
}


/* =========================================================
   PROCESS
========================================================= */

.contact-process-section {
    padding: 100px 0;

    background: var(--bg-clean, #F8FAFC);

    border-top: 1px solid var(--border, #E2E8F0);
}

.contact-process-head {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 80px;
    align-items: start;

    margin-bottom: 65px;
}

.contact-process-title {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 60px;
}

.contact-process-title h2 {
    margin: 0;

    font-size: clamp(35px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.045em;
}

.contact-process-title h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.contact-process-title p {
    margin: 6px 0 0;

    color: var(--text-muted, #64748B);
    font-size: 12px;
    line-height: 1.8;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border, #E2E8F0);
}

.contact-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;

    padding: 28px 28px 10px 0;

    border-right: 1px solid var(--border, #E2E8F0);
}

.contact-step + .contact-step {
    padding-left: 28px;
}

.contact-step:last-child {
    border-right: 0;
}

.contact-step-number {
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    color: var(--cyan, #00AEEF);
}

.contact-step > div:last-child > span {
    display: block;
    margin-bottom: 8px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;

    color: var(--text-muted, #64748B);
}

.contact-step h3 {
    margin: 0 0 9px;

    font-size: 18px;
    letter-spacing: -.02em;
}

.contact-step p {
    max-width: 270px;
    margin: 0;

    color: var(--text-muted, #64748B);
    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-section {
    padding: 100px 0;
}

.contact-final {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--navy, #0F172A);
    color: #fff;
}

.contact-final-bg {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.contact-final-orb {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(70px);

    opacity: .16;
}

.contact-final-orb-1 {
    top: -240px;
    right: 8%;

    background: var(--cyan, #00AEEF);
}

.contact-final-orb-2 {
    bottom: -280px;
    left: 18%;

    background: var(--cyan-deep, #0052D4);
}

.contact-final-grid {
    position: absolute;
    inset: 0;

    opacity: .07;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 44px 44px;
}

.contact-final-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 65px;
}

.contact-final-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;

    color: rgba(255,255,255,.58);
}

.contact-final-label .dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--cyan, #00AEEF);

    box-shadow:
        0 0 14px rgba(0,174,239,.7);
}

.contact-final h2 {
    margin: 0 0 22px;

    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
}

.contact-final h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.contact-final p {
    max-width: 560px;
    margin: 0 0 30px;

    color: rgba(255,255,255,.62);

    font-size: 13px;
    line-height: 1.8;
}

.contact-final-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255,255,255,.35);

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        color .25s ease,
        border-color .25s ease,
        gap .25s ease;
}

.contact-final-link strong {
    font-size: 17px;
    font-weight: 400;
}

.contact-final-link:hover {
    gap: 24px;

    color: var(--cyan, #00AEEF);

    border-color: var(--cyan, #00AEEF);
}

.contact-final-side {
    position: absolute;
    right: 55px;
    bottom: 50px;

    z-index: 2;
}

.contact-final-side span {
    display: block;

    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .14em;

    color: rgba(255,255,255,.22);

    text-align: right;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-sidebar {
        position: static;
    }

    .contact-sidebar-intro {
        max-width: 600px;
    }

    .contact-channel {
        max-width: 600px;
    }

    .contact-sidebar-note {
        display: none;
    }

    .contact-process-head {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-process-title {
        grid-template-columns: 1fr .8fr;
    }
}


@media (max-width: 800px) {

    .contact-hero {
        padding: 70px 0 60px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-hero-main h1 {
        font-size: clamp(48px, 11vw, 72px);
    }

    .contact-main-section,
    .contact-process-section,
    .contact-final-section {
        padding: 75px 0;
    }

    .contact-process-title {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-steps {
        grid-template-columns: 1fr;
    }

    .contact-step,
    .contact-step + .contact-step {
        grid-template-columns: 50px 1fr;

        padding: 25px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border, #E2E8F0);
    }

    .contact-step:last-child {
        border-bottom: 0;
    }

    .contact-final {
        min-height: auto;
    }

    .contact-final-content {
        padding: 55px 35px;
    }

    .contact-final-side {
        display: none;
    }
}


@media (max-width: 600px) {

    .contact-hero {
        padding: 55px 0 50px;
    }

    .contact-hero-main h1 {
        margin-top: 22px;

        font-size: clamp(43px, 13vw, 62px);
    }

    .contact-hero-copy p {
        font-size: 13px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-layout {
        gap: 48px;
    }

    .contact-sidebar-intro h2 {
        font-size: 34px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-header h3 {
        font-size: 23px;
    }

    .contact-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit > span {
        max-width: none;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-process-section {
        padding: 60px 0;
    }

    .contact-final-section {
        padding: 60px 0;
    }

    .contact-final-content {
        padding: 45px 25px;
    }

    .contact-final h2 {
        font-size: 42px;
    }
}

/* =========================================================
   START / BUY NOW PAGE
========================================================= */

.start-hero {
    padding: 78px 0 105px;
    background: var(--bg-clean, #F8FAFC);
}

.start-hero .section-index,
.start-solutions-section .section-index,
.start-process-section .section-index {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--text-muted, #64748B);
}

.section-index > span:first-child {
    color: var(--cyan, #00AEEF);
}

.section-index i {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--border, #E2E8F0);
}

.start-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 80px;
    align-items: end;
    margin-top: 48px;
}

.start-hero-copy h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(54px, 7vw, 104px);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 700;
    color: var(--navy, #0F172A);
}

.start-hero-copy h1 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.start-hero-side {
    padding-bottom: 8px;
}

.start-hero-side p {
    margin: 0;
    max-width: 450px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted, #64748B);
}

.start-hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--navy, #0F172A);
}

.start-note-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan, #00AEEF);
    box-shadow: 0 0 12px rgba(0,174,239,.45);
}


/* =========================================================
   SOLUTIONS
========================================================= */

.start-solutions-section {
    padding: 105px 0 120px;
    background: #fff;
}

.start-section-head {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 70px;
    margin-bottom: 58px;
}

.start-section-intro {
    max-width: 780px;
}

.start-section-intro h2,
.start-process-intro h2 {
    margin: 0 0 20px;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -.045em;
    color: var(--navy, #0F172A);
}

.start-section-intro h2 span,
.start-process-intro h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.start-section-intro p {
    max-width: 650px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted, #64748B);
}


/* solution row */

.solutions-list {
    border-top: 1px solid var(--border, #E2E8F0);
}

.solution-row {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 180px;
    gap: 35px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border, #E2E8F0);
    transition:
        padding .35s ease,
        background .35s ease;
}

.solution-row:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: rgba(248,250,252,.75);
}

.solution-number {
    padding-top: 5px;
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--cyan, #00AEEF);
}

.solution-main {
    min-width: 0;
}

.solution-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.solution-eyebrow {
    display: block;
    margin-bottom: 9px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--text-muted, #64748B);
}

.solution-heading h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -.035em;
    color: var(--navy, #0F172A);
}

.solution-arrow {
    flex: 0 0 auto;
    font-size: 26px;
    line-height: 1;
    color: var(--cyan, #00AEEF);
    opacity: .65;
    transition:
        transform .3s ease,
        opacity .3s ease;
}

.solution-row:hover .solution-arrow {
    opacity: 1;
    transform: translate(4px, -4px);
}

.solution-desc {
    max-width: 690px;
    margin: 18px 0 22px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted, #64748B);
}

.solution-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.solution-scope span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--navy-2, #1E293B);
}

.solution-scope i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan, #00AEEF);
}

.solution-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.solution-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--border, #E2E8F0);
    font-family: var(--font-mono, monospace);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--text-muted, #64748B);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--navy, #0F172A);
    color: var(--navy, #0F172A);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color .25s ease,
        border-color .25s ease,
        gap .25s ease;
}

.solution-link strong {
    font-size: 15px;
    font-weight: 500;
}

.solution-link:hover {
    color: var(--cyan, #00AEEF);
    border-color: var(--cyan, #00AEEF);
    gap: 13px;
}


/* =========================================================
   PRICING / INVESTMENT
========================================================= */

.pricing-section {
    padding: 100px 0;
    background: var(--bg-clean, #F8FAFC);
}

.pricing-note {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 70px;
}

.pricing-note-index {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 5px;
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    color: var(--cyan, #00AEEF);
}

.pricing-note-index i {
    width: 36px;
    height: 1px;
    margin-top: 5px;
    background: var(--border, #E2E8F0);
}

.pricing-note-content {
    max-width: 900px;
}

.pricing-eyebrow {
    display: block;
    margin-bottom: 14px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
    color: var(--text-muted, #64748B);
}

.pricing-note-content h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
    color: var(--navy, #0F172A);
}

.pricing-note-content h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.pricing-note-content > p {
    max-width: 680px;
    margin: 24px 0 45px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted, #64748B);
}

.pricing-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border, #E2E8F0);
    border-bottom: 1px solid var(--border, #E2E8F0);
}

.pricing-points > div {
    padding: 25px 25px 25px 0;
    border-right: 1px solid var(--border, #E2E8F0);
}

.pricing-points > div + div {
    padding-left: 25px;
}

.pricing-points > div:last-child {
    border-right: 0;
}

.pricing-points span {
    display: block;
    margin-bottom: 18px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    color: var(--cyan, #00AEEF);
}

.pricing-points strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--navy, #0F172A);
}

.pricing-points p {
    margin: 0;
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted, #64748B);
}


/* =========================================================
   PROCESS
========================================================= */

.start-process-section {
    padding: 110px 0;
    background: #fff;
}

.start-process-section .section-head {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 70px;
    margin-bottom: 60px;
}

.start-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border, #E2E8F0);
}

.start-process-step {
    padding: 30px 35px 0 0;
    border-right: 1px solid var(--border, #E2E8F0);
}

.start-process-step + .start-process-step {
    padding-left: 35px;
}

.start-process-step:last-child {
    border-right: 0;
}

.process-step-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 42px;
}

.process-step-top span {
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    color: var(--cyan, #00AEEF);
}

.process-step-top i {
    display: block;
    width: 35px;
    height: 1px;
    background: var(--border, #E2E8F0);
}

.start-process-step h3 {
    margin: 0 0 12px;
    font-size: 26px;
    letter-spacing: -.03em;
    color: var(--navy, #0F172A);
}

.start-process-step p {
    max-width: 300px;
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-muted, #64748B);
}


/* =========================================================
   FINAL CTA
========================================================= */

.start-final-section {
    padding: 0 0 110px;
    background: #fff;
}

.start-final {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px;
    background: var(--navy, #0F172A);
    color: #fff;
}

.start-final-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.start-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.start-orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
    background: var(--cyan, #00AEEF);
}

.start-orb-1 {
    top: -250px;
    right: 10%;
}

.start-orb-2 {
    bottom: -300px;
    right: 35%;
}

.start-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.start-final-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
    color: rgba(255,255,255,.5);
}

.start-final-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan, #00AEEF);
    box-shadow: 0 0 12px rgba(0,174,239,.7);
}

.start-final h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -.055em;
}

.start-final h2 span {
    display: block;
    color: var(--cyan, #00AEEF);
}

.start-final-content > p {
    max-width: 650px;
    margin: 25px 0 30px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.58);
}

.start-final-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.start-final-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: color .25s ease, gap .25s ease;
}

.start-final-link:hover {
    color: #fff;
    gap: 14px;
}

.start-final-side {
    position: absolute;
    z-index: 2;
    right: 70px;
    bottom: 65px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.start-final-side > div {
    width: 1px;
    height: 85px;
    background: rgba(255,255,255,.16);
}

.start-final-side span {
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    line-height: 1.7;
    letter-spacing: .1em;
    color: rgba(255,255,255,.35);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .start-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .start-hero-copy h1 {
        max-width: 700px;
    }

    .start-section-head,
    .pricing-note,
    .start-process-section .section-head {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-row {
        grid-template-columns: 55px minmax(0, 1fr);
    }

    .solution-action {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .pricing-points {
        grid-template-columns: 1fr;
    }

    .pricing-points > div,
    .pricing-points > div + div {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border, #E2E8F0);
    }

    .pricing-points > div:last-child {
        border-bottom: 0;
    }

    .start-final-side {
        display: none;
    }
}


@media (max-width: 600px) {

    .start-hero {
        padding: 55px 0 75px;
    }

    .start-hero-grid {
        margin-top: 35px;
    }

    .start-hero-copy h1 {
        font-size: clamp(47px, 14vw, 72px);
        line-height: .94;
    }

    .start-hero-side p {
        font-size: 14px;
    }

    .start-solutions-section {
        padding: 75px 0 85px;
    }

    .start-section-intro h2,
    .start-process-intro h2 {
        font-size: 38px;
    }

    .solution-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 32px 0;
    }

    .solution-row:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

    .solution-number {
        padding: 0;
    }

    .solution-heading h3 {
        font-size: 27px;
    }

    .solution-desc {
        font-size: 13px;
    }

    .solution-scope {
        gap: 9px 14px;
    }

    .solution-scope span {
        font-size: 7.5px;
    }

    .solution-action {
        grid-column: auto;
        align-items: flex-start;
        margin-top: 10px;
    }

    .pricing-section {
        padding: 75px 0;
    }

    .pricing-note-content h2 {
        font-size: 40px;
    }

    .pricing-note-content > p {
        font-size: 13px;
    }

    .start-process-section {
        padding: 80px 0;
    }

    .start-process-grid {
        grid-template-columns: 1fr;
    }

    .start-process-step,
    .start-process-step + .start-process-step {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border, #E2E8F0);
    }

    .start-process-step:last-child {
        border-bottom: 0;
    }

    .process-step-top {
        margin-bottom: 25px;
    }

    .start-final-section {
        padding-bottom: 70px;
    }

    .start-final {
        min-height: auto;
        padding: 48px 28px;
    }

    .start-final h2 {
        font-size: 44px;
    }

    .start-final-content > p {
        font-size: 13px;
    }

    .start-final-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

}