:root {
    --cream: #f5f2eb;
    --cream-2: #ede9df;
    --white: #fff;
    --ink: #080c18;
    --muted: #5c6478;
    --muted-2: #8a93a8;
    --border: #080c1814;
    --border-md: #080c1824;
    --dark: #070b19;
    --dark-2: #0d1428;
    --dark-3: #131d38;
    --dark-4: #1a2644;
    --blue: #0a6eff;
    --green: #00c896;
    --grad-brand: linear-gradient(135deg, #0a6eff 0%, #00c896 100%);
    --grad-brand-r: linear-gradient(135deg, #00c896 0%, #0a6eff 100%);
    --grad-warm: linear-gradient(135deg, #0a6eff 0%, #5b5eff 50%, #00c896 100%);
    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --ease-out-expo: cubic-bezier(.19, 1, .22, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1)
}

*,:before,:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--ink)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#0a6eff,#00c896);
    border-radius: 2px
}

::selection {
    color: var(--ink);
    background: #0a6eff26
}

body.no-scroll {
    overflow: hidden
}

#preloader {
    z-index: 99999;
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
    background: #080c18;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    inset: 0
}

#preloader.pl-exit {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.04)
}

.pl-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: .5s forwards pl-fadein;
    display: flex
}

@keyframes pl-fadein {
    0% {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.pl-logo-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative
}

.pl-logo-ring {
    border: 2px solid #0a6eff;
    border-color: #0a6eff #00c896 #0a6eff26 #0a6eff26;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: 1.2s linear infinite pl-spin;
    position: absolute;
    inset: 0
}

@keyframes pl-spin {
    to {
        transform: rotate(360deg)
    }
}

.pl-logo-inner {
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
    background: linear-gradient(135deg,#0a6eff26,#00c8961a);
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 8px
}

.pl-logo-inner span {
    font-family: var(--font-display);
    letter-spacing: -.02em;
    background: var(--grad-brand);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 22px;
    font-weight: 900
}

.pl-brand {
    font-family: var(--font-display);
    letter-spacing: .15em;
    color: #ffffffe6;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 800
}

.pl-tagline {
    font-family: var(--font-mono);
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff40;
    margin-bottom: 28px;
    font-size: 9px
}

.pl-track {
    background: #ffffff12;
    width: 200px;
    height: 1.5px;
    position: relative;
    overflow: hidden
}

.pl-fill {
    background: var(--grad-brand);
    width: 0%;
    height: 100%;
    transition: width .1s
}

.pl-pct {
    font-family: var(--font-mono);
    color: #fff3;
    letter-spacing: .1em;
    margin-top: 10px;
    font-size: 9px
}

#scroll-progress {
    background: var(--grad-brand);
    transform-origin: 0;
    z-index: 9999;
    pointer-events: none;
    height: 2px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.grain:after {
    content: "";
    opacity: .028;
    pointer-events: none;
    z-index: 9990;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    width: 400%;
    height: 400%;
    animation: .5s steps(2,end) infinite grainShift;
    position: fixed;
    inset: -200%
}

@keyframes grainShift {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(-3%,-3%)
    }

    50% {
        transform: translate(3%,1%)
    }

    75% {
        transform: translate(-1%,3%)
    }
}

.grad-text {
    background: var(--grad-brand);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text
}

.grad-text-warm {
    background: var(--grad-warm);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text
}

.clip-notch {
    clip-path: polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px))
}

.clip-notch-sm {
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px))
}

[data-reveal] {
    opacity: 0;
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo), filter .9s var(--ease-out-expo);
    filter: blur(6px);
    transform: translateY(36px)
}

[data-reveal=left] {
    transform: translate(-40px)
}

[data-reveal=right] {
    transform: translate(40px)
}

[data-reveal=scale] {
    transform: scale(.9)
}

[data-reveal=fade] {
    transform: none
}

[data-reveal].revealed {
    opacity: 1;
    filter: blur();
    transform: none
}

.stagger-child {
    opacity: 0;
    filter: blur(4px);
    transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo), filter .7s;
    transform: translateY(28px)
}

.stagger-child.revealed {
    opacity: 1;
    filter: blur();
    transform: none
}

.badge {
    color: var(--blue);
    font-family: var(--font-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    background: #0a6eff14;
    border: 1px solid #0a6eff33;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 10.5px;
    display: inline-flex
}

.badge-dot {
    background: var(--blue);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation: 2s ease-in-out infinite blink;
    position: relative
}

.badge-dot:after {
    content: "";
    border: 1px solid #0a6eff66;
    border-radius: 50%;
    animation: 2.2s ease-out infinite badge-ring;
    position: absolute;
    inset: -3px
}

@keyframes badge-ring {
    0% {
        opacity: .8;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(3)
    }
}

@keyframes blink {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.badge-dark {
    color: #93b8ff;
    background: #0a6eff1f;
    border-color: #0a6eff40
}

.badge-green {
    color: var(--green);
    background: #00c89614;
    border-color: #00c89633
}

.btn {
    font-family: var(--font-display);
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .3s var(--ease-out-expo), box-shadow .3s;
    border: none;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    position: relative;
    overflow: hidden
}

.btn:before {
    content: "";
    transition: transform .5s var(--ease-out-expo);
    background: #ffffff26;
    position: absolute;
    inset: 0;
    transform: translate(-101%)
}

.btn:hover:before {
    transform: translate(0)
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:active {
    transform: translateY(0)
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
    transition: transform .3s var(--ease-out-expo), box-shadow .3s, background .4s;
    padding: 14px 28px;
    box-shadow: 0 8px 32px #080c1833
}

.btn-primary:hover {
    background: linear-gradient(135deg,#0a6eff 0%,#00c896 100%);
    box-shadow: 0 16px 48px #080c184d
}

.btn-brand {
    background: var(--grad-brand);
    color: var(--white);
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
    padding: 14px 28px;
    box-shadow: 0 8px 32px #0a6eff4d
}

.btn-brand:hover {
    box-shadow: 0 16px 48px #0a6eff73
}

.btn-outline {
    color: var(--ink);
    border: 1.5px solid var(--border-md);
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
    background: 0 0;
    padding: 13px 27px;
    transition: all .3s
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px)
}

.btn-ghost-light {
    color: var(--white);
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
    background: #ffffff1f;
    border: 1.5px solid #fff3;
    padding: 13px 27px
}

.btn-ghost-light:hover {
    background: #ffffff38;
    transform: translateY(-2px)
}

.mag-wrap {
    display: inline-block
}

.sec-h2 {
    font-family: var(--font-display);
    letter-spacing: -.04em;
    color: var(--ink);
    font-size: clamp(2rem,4.5vw,3.6rem);
    font-weight: 800;
    line-height: .98
}

.sec-h2-light {
    color: var(--white)
}

.sec-p {
    color: var(--muted);
    max-width: 480px;
    font-size: 1rem;
    line-height: 1.7
}

.sec-p-light {
    color: #ffffff80
}

#nav {
    z-index: 1000;
    transition: transform .55s var(--ease-out-expo), background .4s, padding .4s, box-shadow .4s;
    background: #f5f2ebe0;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}

#nav.scrolled {
    -webkit-backdrop-filter: blur(24px)saturate(160%);
    border-bottom: 1px solid var(--border);
    background: #f5f2ebeb;
    padding: 12px 0;
    box-shadow: 0 8px 40px #080c1814
}

#nav.nav-hidden {
    transform: translateY(-105%)
}

.nav-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex
}

.nav-logo {
    align-items: center;
    gap: 12px;
    display: contents
}

.nav-links {
    align-items: center;
    gap: 36px;
    list-style: none;
    display: flex
}

.nav-link {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    transition: color .25s;
    position: relative
}

.nav-link:after {
    content: "";
    background: var(--grad-brand);
    transform-origin: 0;
    height: 1.5px;
    transition: transform .35s var(--ease-out-expo);
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.nav-link:hover {
    color: var(--ink)
}

.nav-link:hover:after {
    transform: scaleX(1)
}

.nav-tel {
    font-family: var(--font-mono);
    color: var(--muted);
    align-items: center;
    gap: 8px;
    font-size: 12px;
    transition: color .25s;
    display: flex
}

.nav-tel:hover {
    color: var(--blue)
}

.nav-tel-dot {
    background: var(--green);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    animation: 2s ease-in-out infinite blink
}

.nav-actions {
    align-items: center;
    gap: 16px;
    display: flex
}

.hamburger {
    cursor: pointer;
    background: 0 0;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    display: none
}

.hamburger span {
    background: var(--ink);
    width: 24px;
    height: 1.5px;
    transition: all .3s;
    display: block
}

#mobile-nav {
    z-index: 999;
    background: var(--ink);
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: opacity .4s;
    display: none;
    position: fixed;
    inset: 0
}

#mobile-nav.open {
    opacity: 1;
    display: flex
}

#mobile-nav a {
    font-family: var(--font-display);
    color: #fffc;
    font-size: 2rem;
    font-weight: 700;
    transition: color .2s
}

#mobile-nav a:hover {
    color: var(--white)
}

#hero {
    background: var(--cream);
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    position: relative;
    overflow: hidden
}

.hero-mesh {
    background: radial-gradient(80% 70% at 70% 30%,#0a6eff14 0%,#0000 60%),radial-gradient(60% 50% at 20% 80%,#00c89612 0%,#0000 55%),radial-gradient(50% 60% at 90% 90%,#5b5eff0d 0%,#0000 50%);
    animation: 12s ease-in-out infinite alternate meshShift;
    position: absolute;
    inset: 0
}

@keyframes meshShift {
    0% {
        transform: scale(1)rotate(0)
    }

    to {
        transform: scale(1.05)rotate(1deg)
    }
}

.hero-blob {
    opacity: .12;
    width: 600px;
    height: 600px;
    animation: 16s ease-in-out infinite blobMorph;
    position: absolute;
    top: 10%;
    right: -5%
}

@keyframes blobMorph {
    0%,to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        transform: rotate(0)scale(1)
    }

    25% {
        border-radius: 30% 60% 70% 40%/50% 60% 30%
    }

    50% {
        border-radius: 50% 60% 30%/40% 30% 70% 60%;
        transform: rotate(8deg)scale(1.05)
    }

    75% {
        border-radius: 40% 70% 60% 30%/60% 40% 60% 30%
    }
}

.hero-grid-overlay {
    background-image: linear-gradient(#080c1808 1px,#0000 1px),linear-gradient(90deg,#080c1808 1px,#0000 1px);
    background-size: 64px 64px;
    position: absolute;
    inset: 0
}

#hero-particles {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.hero-inner {
    z-index: 2;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 120px;
    display: grid;
    position: relative
}

.hero-eyebrow,.hero-desc,.hero-ctas,.hero-stats {
    opacity: 0;
    filter: blur(4px);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo), filter .9s;
    transform: translateY(22px)
}

.hero-eyebrow.revealed,.hero-desc.revealed,.hero-ctas.revealed,.hero-stats.revealed {
    opacity: 1;
    filter: blur();
    transform: none
}

.hero-eyebrow {
    transition-delay: .5s
}

.hero-desc {
    transition-delay: .65s
}

.hero-ctas {
    transition-delay: .8s
}

.hero-stats {
    transition-delay: .95s
}

.hero-h1 {
    font-family: var(--font-display);
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: 28px;
    font-size: clamp(3.2rem,6.5vw,6rem);
    font-weight: 800;
    line-height: .92
}

.hero-h1 .line {
    display: block;
    overflow: hidden
}

.hero-h1 .line-inner {
    filter: blur(3px);
    transition: transform 1.1s var(--ease-out-expo), filter .8s ease;
    display: block;
    transform: translateY(110%)
}

.hero-h1 .line-inner.revealed {
    filter: blur();
    transform: translateY(0)
}

.hero-h1 .line:first-child .line-inner {
    transition-delay: .1s
}

.hero-h1 .line:nth-child(2) .line-inner {
    transition-delay: .2s
}

.hero-h1 .line:nth-child(3) .line-inner {
    transition-delay: .3s
}

.hero-desc {
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 40px;
    font-size: 1.0625rem;
    line-height: 1.7
}

.hero-ctas {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
    display: flex
}

.hero-stats {
    gap: 32px;
    display: flex
}

.hero-stat-num {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: 4px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1
}

.hero-stat-label {
    font-family: var(--font-mono);
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 10px
}

.hero-stat-divider {
    background: var(--border-md);
    align-self: stretch;
    width: 1px
}

.hero-right {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative
}

.hero-card-wrap {
    width: 100%;
    max-width: 500px;
    position: relative
}

.hero-main-card {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,28px 100%,0 calc(100% - 28px));
    transform-style: preserve-3d;
    padding: 2px;
    transition: transform .15s;
    box-shadow: 0 32px 80px #080c181f,0 8px 24px #080c180f
}

.hero-card-inner {
    clip-path: polygon(0 0,calc(100% - 26px) 0,100% 26px,100% 100%,26px 100%,0 calc(100% - 26px));
    background: #f9f8f5;
    padding: 24px
}

.hero-card-topbar {
    border-bottom: 1px solid var(--border);
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    display: flex
}

.hct-dot {
    border-radius: 50%;
    width: 10px;
    height: 10px
}

.hct-dot.red {
    background: #ff5f57
}

.hct-dot.yellow {
    background: #ffbc2e
}

.hct-dot.green {
    background: #28c840
}

.hct-url {
    font-family: var(--font-mono);
    color: var(--muted);
    background: #080c180d;
    border-radius: 3px;
    flex: 1;
    margin-left: 8px;
    padding: 5px 10px;
    font-size: 10px
}

.hero-chart {
    margin-bottom: 20px
}

.hero-chart-title {
    font-family: var(--font-display);
    color: var(--ink);
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    display: flex
}

.hero-chart-badge {
    font-family: var(--font-mono);
    color: var(--green);
    background: #00c8961a;
    border-radius: 2px;
    padding: 3px 8px;
    font-size: 9px
}

.chart-bars {
    align-items: flex-end;
    gap: 5px;
    height: 80px;
    margin-bottom: 6px;
    display: flex
}

.chart-bar {
    transition: height .8s var(--ease-out-expo);
    background: #0a6eff1f;
    border-radius: 3px 3px 0 0;
    flex: 1
}

.chart-bar.active {
    background: linear-gradient(#0a6eff 0%,#0a6eff99 100%)
}

.chart-bar.green-bar {
    background: linear-gradient(#00c896 0%,#00c89680 100%)
}

.chart-labels {
    font-family: var(--font-mono);
    color: var(--muted-2);
    justify-content: space-between;
    font-size: 8px;
    display: flex
}

.hero-kpis {
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    display: grid
}

.hero-kpi {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,0 100%);
    padding: 10px 12px
}

.hero-kpi-label {
    font-family: var(--font-mono);
    color: var(--muted-2);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 8.5px
}

.hero-kpi-val {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -.02em;
    font-size: 16px;
    font-weight: 700;
    line-height: 1
}

.hero-kpi-change {
    font-family: var(--font-mono);
    color: var(--green);
    margin-top: 3px;
    font-size: 8.5px
}

.float-chip {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: transform .4s var(--ease-out-expo), box-shadow .4s;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    display: flex;
    position: absolute;
    box-shadow: 0 12px 36px #080c181a
}

.float-chip-icon {
    background: var(--grad-brand);
    clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    display: flex
}

.float-chip-text {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1
}

.float-chip-sub {
    font-family: var(--font-mono);
    color: var(--muted-2);
    font-size: 9px
}

.chip-1 {
    animation: 5s ease-in-out infinite floatA;
    top: -22px;
    right: -30px
}

.chip-2 {
    animation: 6s ease-in-out infinite floatB;
    bottom: -20px;
    left: -28px
}

.chip-3 {
    animation: 7s ease-in-out 1s infinite floatA;
    bottom: 80px;
    right: -38px
}

@keyframes floatA {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes floatB {
    0%,to {
        transform: translateY(0)translate(0)
    }

    50% {
        transform: translateY(-7px)translate(4px)
    }
}

.hero-cut {
    height: 120px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden
}

.hero-cut svg {
    width: 100%;
    position: absolute;
    bottom: 0
}

.ticker-section {
    background: var(--ink);
    padding: 14px 0;
    position: relative;
    overflow: hidden
}

.ticker-track {
    width: max-content;
    display: flex
}

.ticker-item {
    font-family: var(--font-mono);
    color: #ffffff73;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 11px;
    font-weight: 500;
    transition: color .25s;
    display: flex
}

.ticker-item:hover {
    color: #ffffffe6
}

.ticker-item i {
    font-size: 14px
}

.ticker-sep {
    color: #0a6eff80!important;
    padding: 0 16px!important;
    font-size: 16px!important
}

#stats {
    background: var(--dark);
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.stats-mesh {
    background: radial-gradient(60% 80% at 20%,#0a6eff1a 0%,#0000 60%),radial-gradient(50% 70% at 80%,#00c89614 0%,#0000 55%);
    position: absolute;
    inset: 0
}

.stats-grid-bg {
    background-image: linear-gradient(#ffffff05 1px,#0000 1px),linear-gradient(90deg,#ffffff05 1px,#0000 1px);
    background-size: 60px 60px;
    position: absolute;
    inset: 0
}

.stats-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.stats-grid {
    background: #ffffff0d;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    display: grid
}

.stat-item {
    background: var(--dark);
    padding: 48px 40px;
    transition: background .4s;
    position: relative;
    overflow: hidden
}

.stat-item:hover {
    background: var(--dark-2)
}

.stat-item:before {
    content: "";
    background: var(--grad-brand);
    transform-origin: 0;
    height: 2px;
    transition: transform .6s var(--ease-out-expo);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.stat-item:hover:before {
    transform: scaleX(1)
}

.stat-num {
    font-family: var(--font-display);
    letter-spacing: -.04em;
    margin-bottom: 10px;
    font-size: clamp(2.5rem,5vw,4.5rem);
    font-weight: 800;
    line-height: 1
}

.stat-label {
    font-family: var(--font-mono);
    color: #ffffff59;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
    font-size: 10.5px
}

.stat-icon {
    color: #ffffff0a;
    font-size: 72px;
    transition: all .4s;
    position: absolute;
    bottom: 24px;
    right: 24px
}

.stat-item:hover .stat-icon {
    color: #0a6eff14;
    transform: scale(1.1)rotate(-8deg)
}

#services {
    background: var(--cream);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden
}

.services-mesh {
    background: radial-gradient(70% 60% at 90% 20%,#0a6eff0d 0%,#0000 55%),radial-gradient(60% 50% at 10% 80%,#00c8960a 0%,#0000 50%);
    position: absolute;
    inset: 0
}

.services-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.services-header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 64px;
    display: grid
}

.bento {
    grid-template-columns: repeat(12,1fr);
    gap: 14px;
    display: grid
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));
    transition: transform .45s var(--ease-out-expo), box-shadow .4s, border-color .3s;
    cursor: default;
    transform-style: preserve-3d;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.bento-card:hover {
    clip-path: polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px));
    border-color: #0a6eff2e;
    box-shadow: 0 24px 64px #080c181a
}

.bento-card:before {
    content: "";
    opacity: 0;
    background: linear-gradient(135deg,#0a6eff0a 0%,#00c89608 100%);
    transition: opacity .4s;
    position: absolute;
    inset: 0
}

.bento-card:hover:before {
    opacity: 1
}

.bento-card-line {
    background: var(--grad-brand);
    transform-origin: 0;
    height: 2px;
    transition: transform .5s var(--ease-out-expo);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.bento-card:hover .bento-card-line {
    transform: scaleX(1)
}

.tilt-shine {
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    border-radius: inherit;
    transition: opacity .3s,background 50ms;
    position: absolute;
    inset: 0
}

.bento-featured {
    background: var(--ink);
    color: var(--white);
    clip-path: polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,28px 100%,0 calc(100% - 28px));
    grid-area: 1/1/3/7;
    padding: 40px
}

.bento-featured:before {
    background: linear-gradient(135deg,#0a6eff26 0%,#00c8961a 100%)
}

.bento-featured .bento-card-line {
    height: 3px
}

.bento-c-r {
    grid-area: 1/7/auto/10
}

.bento-c-r2 {
    grid-area: 1/10/auto/13
}

.bento-c-r3 {
    grid-area: 2/7/auto/10
}

.bento-c-r4 {
    grid-area: 2/10/auto/13
}

.bento-c-b1 {
    grid-area: 3/1/auto/5
}

.bento-c-b2 {
    grid-area: 3/5/auto/9
}

.bento-c-b3 {
    grid-area: 3/9/auto/13
}

.card-icon {
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    width: 48px;
    height: 48px;
    color: var(--blue);
    background: #0a6eff14;
    border: 1px solid #0a6eff26;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    transition: all .4s;
    display: flex
}

.bento-card:hover .card-icon {
    background: var(--grad-brand);
    color: var(--white);
    border-color: #0000;
    transform: rotate(5deg)scale(1.05)
}

.bento-featured .card-icon {
    color: #93b8ff;
    clip-path: polygon(0 0,calc(100% - 13px) 0,100% 13px,100% 100%,13px 100%,0 calc(100% - 13px));
    background: #0a6eff33;
    border-color: #0a6eff4d;
    width: 60px;
    height: 60px;
    font-size: 24px
}

.card-title {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -.015em;
    margin-bottom: 8px;
    font-size: 1.0625rem;
    font-weight: 700
}

.bento-featured .card-title {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.5rem
}

.card-desc {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.65
}

.bento-featured .card-desc {
    color: #ffffff8c
}

.card-tags {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
    display: flex
}

.card-tag {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--blue);
    clip-path: polygon(0 0,calc(100% - 5px) 0,100% 5px,100% 100%,5px 100%,0 calc(100% - 5px));
    background: #0a6eff12;
    border: 1px solid #0a6eff1f;
    padding: 4px 10px;
    font-size: 9.5px
}

.card-tag.green {
    color: var(--green);
    background: #00c89612;
    border-color: #00c8961f
}

.card-tag.dark {
    color: #ffffff80;
    background: #ffffff14;
    border-color: #ffffff1a
}

.service-group-label {
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex
}

.service-group-line {
    background: var(--grad-brand);
    flex: 0 0 36px;
    height: 1.5px
}

.service-group-text {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted-2);
    font-size: 10.5px
}

.service-group-fill {
    background: var(--border);
    flex: 1;
    height: 1px
}

#about {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.about-mesh {
    background: radial-gradient(70% 80% at 0%,#0a6eff0a 0%,#0000 60%),radial-gradient(50% 50% at 100% 30%,#00c89608 0%,#0000 50%);
    position: absolute;
    inset: 0
}

.about-inner {
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    position: relative
}

.about-card-main {
    background: var(--cream);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,28px 100%,0 calc(100% - 28px));
    padding: 40px;
    box-shadow: 0 20px 60px #080c1814
}

.about-quote {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.35
}

.about-quote-body {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: .875rem;
    line-height: 1.7
}

.about-cert {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    align-items: center;
    gap: 14px;
    padding: 16px;
    display: flex
}

.cert-icon {
    background: var(--grad-brand);
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    width: 40px;
    height: 40px;
    color: var(--white);
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    display: flex
}

.cert-name {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700
}

.cert-sub {
    font-family: var(--font-mono);
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 2px;
    font-size: 9.5px
}

.about-deco-1 {
    clip-path: polygon(0 0,calc(100% - 16px) 0,100% 16px,100% 100%,16px 100%,0 calc(100% - 16px));
    border: 1.5px solid #0a6eff33;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -20px;
    right: -20px
}

.about-deco-2 {
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    background: #00c89614;
    border: 1px solid #00c89633;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: -16px;
    left: -16px
}

.about-differentials {
    margin: 28px 0;
    list-style: none
}

.about-diff {
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,0 100%);
    transition: all .35s var(--ease-out-expo);
    background: var(--white);
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
    padding: 16px;
    display: flex
}

.about-diff:hover {
    background: #0a6eff05;
    border-color: #0a6eff40;
    transform: translate(6px);
    box-shadow: 0 6px 24px #0a6eff0f
}

.diff-icon {
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    width: 36px;
    height: 36px;
    color: var(--blue);
    background: #0a6eff14;
    border: 1px solid #0a6eff26;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all .35s;
    display: flex
}

.about-diff:hover .diff-icon {
    background: var(--grad-brand);
    color: var(--white);
    border-color: #0000
}

.diff-name {
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 3px;
    font-size: 13.5px;
    font-weight: 700
}

.diff-desc {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5
}

.founder-photo-wrap {
    border: 1px solid var(--border-md);
    aspect-ratio: 1;
    border-radius: 12px;
    width: 100%;
    position: relative;
    overflow: hidden
}

.founder-photo {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .6s var(--ease-out-expo)
}

.founder-photo-wrap:hover .founder-photo {
    transform: scale(1.05)
}

.founder-badge {
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    clip-path: polygon(0 0,calc(100% - 6px) 0,100% 6px,100% 100%,6px 100%,0 calc(100% - 6px));
    padding: 4px 10px;
    font-size: 9px;
    position: absolute;
    bottom: 12px;
    left: 12px
}

.modal {
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all .4s var(--ease-out-expo);
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    inset: 0
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible
}

.modal-overlay {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: #080c18b3;
    position: absolute;
    inset: 0
}

.modal-content {
    z-index: 1;
    background: var(--cream);
    clip-path: polygon(0 0,calc(100% - 32px) 0,100% 32px,100% 100%,32px 100%,0 calc(100% - 32px));
    width: 95%;
    max-width: 500px;
    transition: transform .4s var(--ease-out-expo);
    border-radius: 0;
    padding: 40px;
    position: relative;
    transform: translateY(20px)scale(.98);
    box-shadow: 0 40px 100px #0006
}

.modal.open .modal-content {
    transform: none
}

.modal-close {
    color: var(--muted);
    cursor: pointer;
    background: 0 0;
    border: none;
    font-size: 28px;
    transition: color .2s;
    position: absolute;
    top: 20px;
    right: 20px
}

.modal-close:hover {
    color: var(--ink)
}

#why {
    background: var(--dark-2);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.why-mesh {
    background: radial-gradient(60% 70% at 15% 30%,#0a6eff14 0%,#0000 55%),radial-gradient(50% 60% at 85% 70%,#00c8960f 0%,#0000 50%),radial-gradient(40% 50% at 50% 100%,#5b5eff0f 0%,#0000 45%);
    position: absolute;
    inset: 0
}

.why-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.why-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 56px;
    display: grid
}

.why-card {
    background: var(--dark-3);
    clip-path: polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));
    transition: all .4s var(--ease-out-expo);
    border: 1px solid #ffffff0d;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.why-card:hover {
    background: var(--dark-4);
    border-color: #0a6eff33;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px #0000004d
}

.why-card:before {
    content: "";
    background: var(--grad-brand);
    transform-origin: 0;
    height: 2px;
    transition: transform .5s var(--ease-out-expo);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.why-card:hover:before {
    transform: scaleX(1)
}

.why-card:after {
    content: attr(data-num);
    font-family: var(--font-display);
    color: #ffffff08;
    letter-spacing: -.06em;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    transition: color .4s;
    position: absolute;
    bottom: 12px;
    right: 16px
}

.why-card:hover:after {
    color: #0a6eff12
}

.why-icon {
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    color: #93b8ff;
    background: #0a6eff1a;
    border: 1px solid #0a6eff33;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    font-size: 20px;
    transition: all .4s;
    display: flex
}

.why-card:hover .why-icon {
    background: var(--grad-brand);
    color: var(--white);
    border-color: #0000;
    transform: rotate(5deg)scale(1.1)
}

.why-title {
    font-family: var(--font-display);
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700
}

.why-desc {
    color: #ffffff73;
    font-size: .8125rem;
    line-height: 1.65
}

#work {
    background: var(--cream-2);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.work-mesh {
    background: radial-gradient(50% 60% at 80% 20%,#0a6eff0d 0%,#0000 55%),radial-gradient(40% 40% at 10% 70%,#00c8960a 0%,#0000 50%);
    position: absolute;
    inset: 0
}

.work-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.work-grid {
    grid-template-columns: repeat(12,1fr);
    gap: 14px;
    margin-top: 56px;
    display: grid
}

.work-card {
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,20px 100%,0 calc(100% - 20px));
    transition: all .5s var(--ease-out-expo);
    position: relative;
    overflow: hidden
}

.work-card:hover {
    clip-path: polygon(0 0,calc(100% - 24px) 0,100% 24px,100% 100%,24px 100%,0 calc(100% - 24px));
    box-shadow: 0 32px 80px #080c1824
}

.work-card:after {
    content: "";
    pointer-events: none;
    z-index: 5;
    clip-path: polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,20px 100%,0 calc(100% - 20px));
    border: 2px solid #0000;
    transition: border-color .35s;
    position: absolute;
    inset: 0
}

.work-card:hover:after {
    border-color: #0a6eff59
}

.wc-1 {
    grid-column: 1/7;
    min-height: 360px
}

.wc-2 {
    grid-column: 7/10;
    min-height: 360px
}

.wc-3 {
    grid-column: 10/13;
    min-height: 360px
}

.wc-4 {
    grid-column: 1/4;
    min-height: 280px
}

.wc-5 {
    grid-column: 4/8;
    min-height: 280px
}

.wc-6 {
    grid-column: 8/13;
    min-height: 280px
}

.work-card-bg {
    transition: transform .6s var(--ease-out-expo);
    position: absolute;
    inset: 0
}

.work-card-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.work-card:hover .work-card-bg {
    transform: scale(1.06)
}

.work-card-content {
    text-align: center;
    background: #080c184d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px;
    display: flex;
    position: absolute;
    inset: 0
}

.wc-category {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #ffffffb3;
    margin-bottom: 8px;
    font-size: 9.5px
}

.wc-name {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.2rem;
    font-weight: 700
}

.wc-sub {
    color: #fff9;
    font-size: 12px
}

.work-card-overlay {
    opacity: 0;
    background: linear-gradient(#080c1800 0%,#080c18f2 100%);
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: opacity .4s;
    display: flex;
    position: absolute;
    inset: 0
}

.work-card:hover .work-card-overlay {
    opacity: 1
}

.wco-tag {
    font-family: var(--font-mono);
    color: #ffffffb3;
    clip-path: polygon(0 0,calc(100% - 6px) 0,100% 6px,100% 100%,6px 100%,0 calc(100% - 6px));
    background: #ffffff1a;
    border: 1px solid #ffffff26;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 9.5px;
    display: inline-flex
}

.wco-name {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700
}

.wco-result {
    font-family: var(--font-mono);
    color: var(--green);
    margin-bottom: 12px;
    font-size: 10.5px
}

.wco-link {
    font-family: var(--font-mono);
    color: #fff6;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    transition: color .2s;
    display: flex
}

.work-card:hover .wco-link {
    color: #fffc
}

#industries {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.industries-grid {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 44px;
    display: flex
}

.ind-pill {
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: all .38s var(--ease-out-expo);
    cursor: default;
    background: #ffffff0a;
    border: 1px solid #ffffff12;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    display: flex
}

.ind-pill:hover {
    background: #0a6eff1a;
    border-color: #0a6eff40;
    transform: translateY(-5px)scale(1.04);
    box-shadow: 0 12px 32px #0a6eff26
}

.ind-pill i {
    color: #ffffff59;
    width: 16px;
    height: 16px;
    font-size: 14px;
    transition: color .3s
}

.ind-pill:hover i {
    color: var(--blue)
}

.ind-pill-name {
    font-family: var(--font-body);
    color: #ffffff73;
    font-size: 12px;
    font-weight: 500;
    transition: color .3s
}

.ind-pill:hover .ind-pill-name {
    color: #ffffffd9
}

#process {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.process-mesh {
    background: radial-gradient(60% 50%,#0a6eff0a 0%,#0000 60%);
    position: absolute;
    inset: 0
}

.process-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.process-steps {
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 64px;
    display: grid;
    position: relative
}

.process-steps:before {
    content: "";
    background: linear-gradient(90deg,transparent,var(--blue),var(--green),transparent);
    height: 1px;
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%
}

.process-step-item {
    text-align: center;
    padding: 0 20px
}

.step-num-wrap {
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    display: flex
}

.step-num {
    background: var(--cream);
    border: 1px solid var(--border-md);
    clip-path: polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));
    width: 80px;
    height: 80px;
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -.03em;
    transition: all .45s var(--ease-bounce);
    z-index: 1;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    position: relative
}

.process-step-item:hover .step-num {
    background: var(--ink);
    color: var(--white);
    transform: scale(1.1)rotate(-3deg);
    box-shadow: 0 16px 40px #080c1826
}

.step-title {
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 10px;
    font-size: 1.0625rem;
    font-weight: 700
}

.step-desc {
    color: var(--muted);
    font-size: .8125rem;
    line-height: 1.65
}

#testimonials {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.testi-mesh {
    background: radial-gradient(70% 60% at 80% 20%,#0a6eff17 0%,#0000 55%),radial-gradient(50% 50% at 10% 80%,#00c89612 0%,#0000 50%);
    position: absolute;
    inset: 0
}

.testi-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.testi-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 56px;
    display: grid
}

.testi-card {
    background: var(--dark-2);
    clip-path: polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));
    border: 1px solid #ffffff0d;
    padding: 32px;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.testi-card:hover {
    background: var(--dark-3);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px #0006
}

.testi-card:before {
    content: "";
    background: var(--grad-brand);
    transform-origin: 0;
    height: 2px;
    transition: transform .5s var(--ease-out-expo);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.testi-card:hover:before {
    transform: scaleX(1)
}

.testi-quote-icon {
    color: #0a6eff33;
    margin-bottom: 16px;
    font-family: Georgia,serif;
    font-size: 48px;
    line-height: 1;
    transition: color .4s,transform .4s;
    display: block
}

.testi-card:hover .testi-quote-icon {
    color: #0a6eff59;
    transform: scale(1.1)rotate(-3deg)
}

.testi-stars {
    gap: 3px;
    margin-bottom: 14px;
    display: flex
}

.testi-stars i {
    color: #ffbc2e;
    font-size: 12px
}

.testi-text {
    color: #fff9;
    margin-bottom: 24px;
    font-size: .875rem;
    font-style: italic;
    line-height: 1.75
}

.testi-author {
    align-items: center;
    gap: 12px;
    display: flex
}

.testi-avatar {
    background: var(--grad-brand);
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    width: 40px;
    height: 40px;
    font-family: var(--font-display);
    color: var(--white);
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    display: flex
}

.testi-name {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 700
}

.testi-role {
    font-family: var(--font-mono);
    color: #ffffff59;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 9.5px
}

.testi-rating-row {
    justify-content: center;
    margin-top: 48px;
    display: flex
}

.rating-bar {
    background: var(--dark-2);
    clip-path: polygon(0 0,calc(100% - 16px) 0,100% 16px,100% 100%,16px 100%,0 calc(100% - 16px));
    border: 1px solid #ffffff12;
    align-items: center;
    gap: 24px;
    padding: 20px 32px;
    display: flex
}

.rating-bar-num {
    font-family: var(--font-display);
    color: var(--white);
    letter-spacing: -.03em;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1
}

.rating-bar-label {
    font-family: var(--font-mono);
    color: #ffffff4d;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
    font-size: 9.5px
}

.rating-bar-sep {
    background: #ffffff0f;
    width: 1px;
    height: 40px
}

#faq {
    background: var(--dark-2);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.faq-mesh {
    background: radial-gradient(60% 70%,#0a6eff0f 0%,#0000 60%);
    position: absolute;
    inset: 0
}

.faq-inner {
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.faq-list {
    text-align: left;
    margin-top: 56px
}

.faq-item {
    border-bottom: 1px solid #ffffff0f;
    overflow: hidden
}

.faq-q {
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    transition: all .3s;
    display: flex
}

.faq-q:hover .faq-q-text {
    color: #93b8ff
}

.faq-q-text {
    font-family: var(--font-display);
    color: #ffffffd9;
    letter-spacing: -.01em;
    font-size: 1rem;
    font-weight: 600;
    transition: color .3s
}

.faq-icon-wrap {
    clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
    width: 30px;
    height: 30px;
    transition: all .4s var(--ease-bounce);
    border: 1px solid #ffffff1a;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex
}

.faq-icon-wrap i {
    color: #fff6;
    transition: transform .4s var(--ease-bounce),color .3s;
    font-size: 12px
}

.faq-item.open .faq-icon-wrap {
    background: var(--blue);
    border-color: var(--blue)
}

.faq-item.open .faq-icon-wrap i {
    color: var(--white);
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    transition: max-height .5s var(--ease-out-expo),padding .4s;
    overflow: hidden
}

.faq-a.open {
    max-height: 200px;
    padding-bottom: 20px
}

.faq-a p {
    color: #ffffff73;
    font-size: .875rem;
    line-height: 1.75
}

#cta {
    background: var(--cream);
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

.cta-bg {
    background: var(--ink);
    clip-path: polygon(0 8%,100% 0%,100% 92%,0% 100%);
    position: absolute;
    inset: 0
}

.cta-mesh {
    clip-path: polygon(0 8%,100% 0%,100% 92%,0% 100%);
    background: radial-gradient(70% 80% at 20%,#0a6eff33 0%,#0000 60%),radial-gradient(60% 70% at 80%,#00c89626 0%,#0000 55%);
    position: absolute;
    inset: 0
}

.cta-grid {
    clip-path: polygon(0 8%,100% 0%,100% 92%,0% 100%);
    background-image: linear-gradient(#ffffff05 1px,#0000 1px),linear-gradient(90deg,#ffffff05 1px,#0000 1px);
    background-size: 64px 64px;
    position: absolute;
    inset: 0
}

.cta-inner {
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative
}

.cta-heading {
    font-family: var(--font-display);
    color: var(--white);
    letter-spacing: -.04em;
    margin-bottom: 20px;
    font-size: clamp(2.5rem,5vw,4.5rem);
    font-weight: 800;
    line-height: .95
}

.cta-sub {
    color: #ffffff8c;
    max-width: 520px;
    margin: 0 auto 40px;
    font-size: 1.0625rem;
    line-height: 1.65
}

.cta-btns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    display: flex
}

#contact {
    background: var(--cream);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.contact-mesh {
    background: radial-gradient(50% 60% at 0%,#0a6eff0a 0%,#0000 55%),radial-gradient(40% 40% at 100% 30%,#00c89608 0%,#0000 50%);
    position: absolute;
    inset: 0
}

.contact-inner {
    z-index: 1;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    position: relative
}

.contact-cards {
    flex-direction: column;
    gap: 10px;
    margin-top: 36px;
    display: flex
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,0 100%);
    transition: all .35s var(--ease-out-expo);
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    display: flex
}

.contact-card:hover {
    border-color: #0a6eff40;
    transform: translate(6px);
    box-shadow: 0 8px 28px #0a6eff14
}

.cc-icon {
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    width: 38px;
    height: 38px;
    color: var(--blue);
    background: #0a6eff14;
    border: 1px solid #0a6eff26;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    display: flex
}

.cc-label {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-2);
    margin-bottom: 4px;
    font-size: 9.5px
}

.cc-value {
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 500
}

.cc-value a {
    color: var(--ink);
    transition: color .2s
}

.cc-value a:hover {
    color: var(--blue)
}

.social-label {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-2);
    margin-bottom: 12px;
    font-size: 10px
}

.social-links {
    gap: 8px;
    display: flex
}

.social-link {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    width: 38px;
    height: 38px;
    color: var(--muted);
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all .3s;
    display: flex
}

.social-link:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-3px)
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,28px 100%,0 calc(100% - 28px));
    padding: 40px;
    box-shadow: 0 20px 60px #080c180f
}

.form-title {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 28px;
    font-size: 1.3rem;
    font-weight: 700
}

.form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
    display: grid
}

.form-group {
    margin-bottom: 14px
}

.form-label {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-2);
    margin-bottom: 7px;
    font-size: 9.5px;
    display: block
}

.form-input,.form-textarea,.form-select {
    background: var(--cream);
    border: 1px solid var(--border-md);
    width: 100%;
    font-family: var(--font-body);
    color: var(--ink);
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    appearance: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    transition: all .3s
}

.form-input:focus,.form-textarea:focus,.form-select:focus {
    border-color: var(--blue);
    background: #0a6eff05;
    box-shadow: 0 0 0 3px #0a6eff14
}

.form-input::placeholder,.form-textarea::placeholder {
    color: var(--muted-2)
}

.form-textarea {
    resize: none;
    min-height: 110px
}

.form-success {
    text-align: center;
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    background: #00c89614;
    border: 1px solid #00c89633;
    margin-top: 14px;
    padding: 20px;
    display: none
}

.form-success i {
    color: var(--green);
    margin-bottom: 8px;
    font-size: 24px;
    display: block
}

.form-success-text {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700
}

.contact-social {
    margin-top: 24px
}

.service-hero {
    background: var(--ink);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden
}

.service-hero-mesh {
    background: radial-gradient(70% 80% at 30%,#0a6eff26 0%,#0000 60%),radial-gradient(60% 60% at 80% 30%,#00c8961a 0%,#0000 55%);
    position: absolute;
    inset: 0
}

.service-hero-grid {
    background-image: linear-gradient(#ffffff05 1px,#0000 1px),linear-gradient(90deg,#ffffff05 1px,#0000 1px);
    background-size: 64px 64px;
    position: absolute;
    inset: 0
}

.service-hero-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    clip-path: polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px));
    transition: all .4s var(--ease-out-expo);
    padding: 40px;
    position: relative;
    overflow: hidden
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px #080c181a
}

.service-detail-card:before {
    content: "";
    background: var(--grad-brand);
    transform-origin: 0;
    height: 3px;
    transition: transform .5s var(--ease-out-expo);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleX(0)
}

.service-detail-card:hover:before {
    transform: scaleX(1)
}

.service-img-wrap {
    clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,0 100%);
    position: relative;
    overflow: hidden
}

.service-img-wrap img {
    object-fit: cover;
    width: 100%;
    height: 220px;
    transition: transform .6s var(--ease-out-expo);
    display: block
}

.service-detail-card:hover .service-img-wrap img {
    transform: scale(1.06)
}

.testi-page-hero {
    background: var(--ink);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden
}

.testi-full-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    display: grid
}

.contact-page-hero {
    background: var(--ink);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden
}

.contact-map-wrap {
    clip-path: polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px));
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

footer {
    background: #0a0a0f;
    padding-bottom: 0;
    position: relative;
    overflow: hidden
}

.f-accent-orb {
    pointer-events: none;
    background: radial-gradient(circle,#0a6eff12 0%,#0000 65%);
    border-radius: 50%;
    width: 600px;
    height: 600px;
    position: absolute;
    top: -100px;
    right: -100px
}

.f-accent-orb2 {
    pointer-events: none;
    background: radial-gradient(circle,#00c8960a 0%,#0000 65%);
    border-radius: 50%;
    width: 400px;
    height: 300px;
    position: absolute;
    bottom: 60px;
    left: 80px
}

.f-inner {
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.f-identity {
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    padding: 64px 0 0;
    display: flex
}

.f-identity .f-logo {
    transition: transform .4s var(--ease-out-expo),filter .4s
}

.f-identity .f-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.04)rotate(-1deg)
}

.f-identity-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    padding-bottom: 8px;
    display: flex
}

.f-badge {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #ffffff4d;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    display: flex
}

.f-badge-dot {
    background: #0a6eff;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation: 2.5s ease-in-out infinite blink
}

.f-desc {
    color: #ffffff61;
    text-align: right;
    max-width: 300px;
    font-size: 13px;
    line-height: 1.8
}

.f-divider {
    background: linear-gradient(90deg,#0000 0%,#ffffff12 20%,#0a6eff33 50%,#ffffff12 80%,#0000 100%);
    width: 100%;
    height: 1px;
    margin: 40px 0
}

.f-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    display: grid
}

.f-col-header {
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    display: flex
}

.f-col-num {
    font-family: var(--font-mono);
    color: #0a6eff80;
    letter-spacing: .06em;
    font-size: 9px
}

.f-col-line {
    background: #ffffff12;
    flex: 1;
    height: 1px
}

.f-col-title {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #ffffff47;
    font-size: 9.5px
}

.f-col ul {
    flex-direction: column;
    gap: 0;
    list-style: none;
    display: flex
}

.f-col ul li a {
    color: #ffffff80;
    border-bottom: 1px solid #ffffff0a;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    text-decoration: none;
    transition: all .22s;
    display: flex;
    position: relative
}

.f-col ul li:last-child a {
    border-bottom: none
}

.f-col ul li a:after {
    content: "â†’";
    color: #0a6eff4d;
    font-size: 11px;
    transition: all .22s;
    transform: translate(-4px)
}

.f-col ul li a:hover {
    color: #fff;
    padding-left: 6px
}

.f-col ul li a:hover:after {
    color: #0a6eff;
    transform: translate(0)
}

.f-col ul li a:before {
    content: "";
    background: var(--blue);
    transform-origin: bottom;
    width: 2px;
    transition: transform .25s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transform: scaleY(0)
}

.f-col ul li a:hover:before {
    transform: scaleY(1)
}

.f-contact-strip {
    clip-path: polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,20px 100%,0 calc(100% - 20px));
    background: #ffffff05;
    border: 1px solid #ffffff0f;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 48px 0 0;
    display: grid
}

.f-contact-item {
    border-right: 1px solid #ffffff0d;
    flex-direction: column;
    gap: 6px;
    padding: 24px 28px;
    text-decoration: none;
    transition: background .25s;
    display: flex;
    position: relative;
    overflow: hidden
}

.f-contact-item:last-child {
    border-right: none
}

.f-contact-item:before {
    content: "";
    opacity: 0;
    z-index: 0;
    background: linear-gradient(90deg,#0a6eff0f,#00c8960a);
    transition: opacity .3s;
    position: absolute;
    inset: 0
}

.f-contact-item>* {
    z-index: 1;
    position: relative
}

.f-contact-item:hover:before {
    opacity: 1
}

.f-contact-label {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #ffffff38;
    font-size: 9px
}

.f-contact-value {
    color: #ffffffa6;
    font-size: 14px;
    font-weight: 500;
    transition: color .25s
}

.f-contact-item:hover .f-contact-value {
    color: #fff
}

.f-contact-arrow {
    color: #0a6eff40;
    font-size: 12px;
    transition: all .25s;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%)
}

.f-contact-item:hover .f-contact-arrow {
    color: #0a6eff;
    transform: translateY(-50%)translate(3px)
}

.f-bottom {
    border-top: 1px solid #ffffff0d;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 22px 0;
    display: flex
}

.f-bottom-left {
    align-items: center;
    gap: 20px;
    display: flex
}

.f-logo-mark {
    background: var(--grad-brand);
    clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
    width: 30px;
    height: 30px;
    font-family: var(--font-display);
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    display: flex
}

.f-copy {
    font-family: var(--font-mono);
    color: #fff3;
    letter-spacing: .04em;
    font-size: 10px
}

#wa-float {
    z-index: 999;
    clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    width: 52px;
    height: 52px;
    color: var(--white);
    transition: all .3s var(--ease-bounce);
    background: linear-gradient(135deg,#25d366,#128c7e);
    justify-content: center;
    align-items: center;
    font-size: 22px;
    display: flex;
    position: fixed;
    bottom: 28px;
    right: 28px;
    box-shadow: 0 8px 32px #25d36666
}

#wa-float:hover {
    transform: translateY(-4px)scale(1.07);
    box-shadow: 0 16px 48px #25d36680
}

#btt {
    z-index: 999;
    background: var(--white);
    border: 1px solid var(--border-md);
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    width: 44px;
    height: 44px;
    color: var(--muted);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all .3s;
    display: flex;
    position: fixed;
    bottom: 28px;
    left: 28px;
    box-shadow: 0 4px 20px #080c181a
}

#btt.show {
    opacity: 1;
    pointer-events: auto
}

#btt:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink)
}

.ripple-wave {
    pointer-events: none;
    z-index: 100;
    background: #0a6eff14;
    border-radius: 50%;
    animation: .8s ease-out forwards rippleAnim;
    position: absolute;
    transform: scale(0)
}

@keyframes rippleAnim {
    to {
        opacity: 0;
        transform: scale(1)
    }
}

[data-glitch] {
    position: relative
}

[data-glitch].is-glitching {
    animation: .18s steps(2,end) forwards glitch-anim
}

@keyframes glitch-anim {
    0% {
        text-shadow: 2px 0 #0a6eff,-2px 0 #00c896;
        transform: none
    }

    25% {
        text-shadow: -3px 0 #0a6eff,3px 0 #00c896;
        transform: translate(2px)
    }

    50% {
        text-shadow: 3px 2px #0a6eff,-2px -2px #00c896;
        transform: translate(-2px)skew(1deg)
    }

    75% {
        text-shadow: -2px 0 #00c896,2px 0 #0a6eff;
        transform: none
    }

    to {
        text-shadow: none;
        transform: none
    }
}

[data-typewriter]:after {
    content: "|";
    color: var(--blue);
    opacity: 1;
    animation: .75s step-end infinite tw-blink
}

@keyframes tw-blink {
    50% {
        opacity: 0
    }
}

.split-active {
    display: inline-block;
    overflow: visible
}

.split-ch {
    opacity: 0;
    animation: ch-in .55s var(--ease-out-expo) forwards;
    display: inline-block;
    transform: translateY(30px)
}

@keyframes ch-in {
    to {
        opacity: 1;
        transform: none
    }
}

.sec-bg-num {
    font-family: var(--font-display);
    letter-spacing: -.06em;
    color: var(--ink);
    opacity: .025;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 0;
    font-size: clamp(160px,20vw,280px);
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: -20px;
    right: -10px
}

#why .sec-bg-num,#testimonials .sec-bg-num,#industries .sec-bg-num,#faq .sec-bg-num {
    color: #fff;
    opacity: .025
}

@media (width<=1100px) {
    .bento {
        grid-template-columns: 1fr 1fr
    }

    .bento-featured {
        grid-area: 1/1/auto/3
    }

    .bento-c-r,.bento-c-r2,.bento-c-r3,.bento-c-r4,.bento-c-b1,.bento-c-b2,.bento-c-b3 {
        grid-area: auto/span 1
    }

    .work-grid {
        grid-template-columns: 1fr 1fr
    }

    .wc-1 {
        grid-column: 1/3
    }

    .wc-2,.wc-3,.wc-4,.wc-5 {
        grid-column: span 1
    }

    .wc-6 {
        grid-column: 1/3
    }

    .why-grid,.stats-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (width<=900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 60px
    }

    .hero-right {
        display: none
    }

    .about-inner {
        grid-template-columns: 1fr
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .testi-full-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .process-steps:before {
        display: none
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .nav-links,.nav-actions .btn {
        display: none
    }

    .hamburger {
        display: flex
    }

    .f-identity {
        flex-direction: column;
        align-items: flex-start
    }

    .f-identity-right {
        align-items: flex-start
    }

    .f-desc {
        text-align: left
    }

    .f-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .f-contact-strip {
        grid-template-columns: 1fr
    }

    .f-contact-item {
        border-bottom: 1px solid #ffffff0d;
        border-right: none
    }

    .f-contact-item:last-child {
        border-bottom: none
    }
}

@media (width<=640px) {
    .stats-inner,.services-inner,.about-inner,.why-inner,.work-inner,.process-inner,.testi-inner,.faq-inner,.cta-inner,.contact-inner {
        padding: 0 20px
    }

    .hero-inner {
        padding: 0 20px 60px
    }

    .nav-inner {
        padding: 0 20px
    }

    .testi-full-grid {
        grid-template-columns: 1fr
    }

    .service-hero-inner,.f-inner {
        padding: 0 20px
    }

    .f-links-grid,.process-steps,.bento {
        grid-template-columns: 1fr
    }

    .bento-featured {
        grid-column: 1
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid,.work-grid {
        grid-template-columns: 1fr
    }

    .wc-1,.wc-2,.wc-3,.wc-4,.wc-5,.wc-6 {
        grid-column: 1;
        min-height: 220px
    }
}
