﻿
/* tokens */
:root {
    --brand: #3dac9b;
    --ink: #0f1220;
    --muted: #5e6676;
    --line: rgba(16,20,24,.12);
    --card: #fff;
    --bg: #fff;
    --radius: 16px;
    --shadow: 0 12px 28px rgba(16,20,24,.10);
    --h1: clamp(44px,7vw,72px);
    --h2: clamp(32px,4.5vw,48px);
    --h3: clamp(20px,2.6vw,28px);
    --lead: clamp(16px,2vw,20px);
    --btn-h: 48px;
    --btn-r: 12px;
    --container: 2000px;
    --space-s: 14px;
    --space-m: 22px;
    --space-l: clamp(24px,3.5vw,36px);
    --space-xl: clamp(56px,7vw,96px);
    --space-xxl: clamp(84px,10vw,140px);
    --accent: var(--brand);
    --accent-600: color-mix(in oklab,var(--brand) 88%,black 12%);
}

*, *:before, *:after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
    line-height: 1.45
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit
}

:where(a,button,[role="button"]):focus-visible {
    outline: 3px solid color-mix(in oklab,var(--brand) 70%,white 30%);
    outline-offset: 2px;
    border-radius: 12px
}

/* layout */
.container {
    width: min(var(--container),92%);
    margin-inline: auto
}

.section {
    padding: var(--space-xxl) 0
}

    .section > .container > :first-child {
        margin-top: 0
    }

    .section > .container > :last-child {
        margin-bottom: 0
    }

    .section + .section {
        margin-top: 0
    }

.grid {
    display: grid;
    gap: clamp(22px,2.8vw,32px)
}

.grid-2 {
    grid-template-columns: 1fr
}

.grid-3 {
    grid-template-columns: 1fr
}

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

@media(min-width:980px) {
    .grid-3 {
        grid-template-columns: repeat(3,1fr)
    }
}

.text-center {
    text-align: center
}

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

/* type */
h1 {
    font: 800 var(--h1)/1.05 Inter,system-ui,sans-serif;
    letter-spacing: -.01em;
    margin: .2rem 0 var(--space-m)
}

h2 {
    font: 800 var(--h2)/1.08 Inter,system-ui,sans-serif;
    margin: .2rem 0 var(--space-s)
}

h3 {
    font: 800 var(--h3)/1.15 Inter,system-ui,sans-serif;
    margin: .2rem 0 calc(var(--space-s)*.8)
}

p {
    margin: .35rem 0;
    line-height: 1.65
}

.lead {
    font-size: var(--lead);
    opacity: .95
}

.section h1 + p,
.section h2 + p,
.section .subtitle,
.section .lead {
    margin-top: 8px;
    margin-bottom: var(--space-l)
}

.section h1 + .grid,
.section h2 + .grid,
.section h1 + .cards,
.section h2 + .cards,
.section h1 + .work-grid,
.section h2 + .work-grid,
.section h1 + .svc-grid,
.section h2 + .svc-grid,
.section h1 + .svc-carousel,
.section h2 + .svc-carousel,
.section p + .grid,
.section p + .cards,
.section p + .work-grid,
.section p + .svc-grid,
.section p + .svc-carousel {
    margin-top: var(--space-l)
}

/* header + nav (desktop/base) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(120%) blur(8px)
}

body.menu-open .site-header {
    background: radial-gradient(900px 420px at 0% 0%, color-mix(in oklab,var(--brand) 18%, transparent) 0%, transparent 60%), linear-gradient(135deg, var(--brand), var(--accent-600));
    border-bottom-color: transparent;
    box-shadow: 0 20px 40px color-mix(in oklab,var(--brand) 22%, transparent 78%)
}

body.menu-open .brand img {
    filter: brightness(0) invert(1) saturate(0) contrast(105%)
}

body.menu-open .nav-toggle {
    background: color-mix(in oklab,#fff 12%, var(--brand) 88%);
    border-color: color-mix(in oklab,var(--brand) 70%, #0000 30%)
}

    body.menu-open .nav-toggle span {
        background: #fff
    }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.brand {
    display: inline-block;
    text-decoration: none
}

    .brand img {
        height: 50px;
        display: block
    }

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

.nav-link {
    position: relative;
    text-decoration: none;
    color: #090909;
    padding: .6rem .8rem;
    border-radius: 10px
}

    .nav-link:hover {
        color: var(--brand)
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: .8rem;
        right: .8rem;
        bottom: .35rem;
        height: 2px;
        background: linear-gradient(90deg,transparent,var(--brand),transparent);
        transform: scaleX(0);
        transition: .25s
    }

    .nav-link:hover::after {
        transform: scaleX(1)
    }

.nav-cta {
    margin-left: 6px
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid color-mix(in oklab,var(--brand) 35%, #0000 65%);
    border-radius: 10px;
    background: linear-gradient(180deg,#fff, color-mix(in oklab,#fff 85%, var(--brand) 15%));
    box-shadow: 0 10px 24px rgba(16,20,24,.10), inset 0 0 0 1px rgba(255,255,255,.7);
    position: relative;
    transition: transform .18s, box-shadow .18s, border-color .18s
}

    .nav-toggle:is(:hover,:focus-visible) {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(16,20,24,.14), inset 0 0 0 1px rgba(255,255,255,.85)
    }

    .nav-toggle span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: #0f1220;
        transform: translate(-50%,-50%) translateY(calc(var(--y,0)*1px)) rotate(var(--r,0deg));
        transform-origin: center;
        transition: transform .22s, opacity .18s, background .18s
    }

        .nav-toggle span:nth-child(1) {
            --y: -6
        }

        .nav-toggle span:nth-child(2) {
            --y: 0
        }

        .nav-toggle span:nth-child(3) {
            --y: 6
        }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        --y: 0;
        --r: 45deg
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        --y: 0;
        --r: -45deg
    }

/* mobile nav */
@media (max-width:960px) {
    :root {
        --nav-dur: 640ms;
        --nav-ease: cubic-bezier(.22,1,.36,1);
        --header-h: 64px;
        --nav-open-h: 75vh;
        --nav-fill: 0px;
        --nav-top-pad: 18px
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto
    }

    .nav {
        flex-wrap: wrap
    }

    #mainNav.nav-links {
        max-height: 0;
        padding: 0;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        display: grid;
        gap: 18px;
        align-content: start;
        transition: max-height var(--nav-dur) var(--nav-ease), padding var(--nav-dur) var(--nav-ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
        border-top: 0;
        box-shadow: none;
        position: static
    }

        #mainNav.nav-links.is-open {
            max-height: var(--nav-open-h) !important;
            padding: var(--nav-top-pad) 18px calc(max(20px, env(safe-area-inset-bottom,0px)) + var(--nav-fill));
            background: radial-gradient(900px 420px at 0% 0%, color-mix(in oklab,var(--brand) 18%, transparent) 0%, transparent 60%), linear-gradient(135deg, var(--brand), var(--accent-600));
            box-shadow: 0 24px 60px color-mix(in oklab,var(--brand) 24%, transparent 76%);
            border-top: 1px solid color-mix(in oklab,var(--brand) 35%, #0000 65%);
            color: #fff
        }

        #mainNav.nav-links .nav-link {
            display: block;
            padding: 10px 0;
            background: transparent !important;
            border: 0 !important;
            border-radius: 0;
            color: #fff !important;
            font-weight: 800;
            font-size: 20px
        }

            #mainNav.nav-links .nav-link::after {
                display: none
            }

        #mainNav.nav-links .nav-cta {
            justify-self: start;
            height: 44px;
            padding: 0 16px;
            border-radius: 12px;
            background: #fff !important;
            color: var(--brand) !important;
            border: 0 !important;
            box-shadow: none;
            margin-top: 6px
        }

    .nav-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 24px
    }

    .lang-select {
        appearance: none;
        border: 0;
        background: #fff;
        color: #0f1220;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 999px;
        line-height: 1
    }

    .nav-social {
        display: flex;
        gap: 22px
    }

        .nav-social .social {
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            opacity: .95
        }

    body.menu-open .site-header,
    body.menu-closing .site-header {
        background: radial-gradient(900px 420px at 0% 0%, color-mix(in oklab,var(--brand) 18%, transparent) 0%, transparent 60%), linear-gradient(135deg, var(--brand), var(--accent-600));
        border-bottom-color: transparent;
        box-shadow: 0 20px 40px color-mix(in oklab,var(--brand) 22%, transparent 78%)
    }

    body.menu-open .brand img,
    body.menu-closing .brand img {
        filter: brightness(0) invert(1) saturate(0) contrast(105%)
    }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce) {
    #mainNav.nav-links {
        transition: none !important
    }
}

/* buttons */
.btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    height: var(--btn-h);
    padding: 0 18px;
    border-radius: var(--btn-r);
    border: 1px solid transparent;
    font: 700 15px/1 Inter,system-ui,sans-serif;
    letter-spacing: .01em;
    cursor: pointer;
    text-decoration: none;
    transition: .18s ease;
    box-shadow: 0 8px 24px rgba(16,20,24,.10)
}

    .btn:active {
        transform: translateY(1px)
    }

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg,var(--brand),color-mix(in oklab,var(--brand) 80%,black 20%));
    border-color: color-mix(in oklab,var(--brand) 70%,#0000 30%)
}

    .btn-primary:hover {
        color: var(--brand);
        background: #fff;
        border-color: var(--brand);
        box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 45%,white 55%),0 8px 24px rgba(16,20,24,.10)
    }

.btn-outline {
    background: #fff;
    color: var(--brand);
    border-color: var(--brand)
}

    .btn-outline:hover {
        color: #fff;
        background: linear-gradient(135deg,var(--brand),color-mix(in oklab,var(--brand) 80%,black 20%))
    }

.btn-cta {
    color: #fff;
    background: var(--cta);
    border-color: var(--cta)
}

    .btn-cta:hover {
        filter: brightness(.95)
    }

.is-fullwidth {
    width: 100%
}

/* hero */
.hero {
    position: relative;
    min-height: 89vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: var(--space-xl) 0
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,var(--overlay,.45)),rgba(0,0,0,calc(var(--overlay,.45)*.9)))
}

.hero__inner {
    position: relative;
    z-index: 1;
    color: #fff;
    width: 100%;
    max-width: 980px;
    padding: clamp(24px,5vw,40px) 0
}

    .hero__inner .hero-title {
        color: #fff;
        margin-bottom: var(--space-s)
    }

    .hero__inner .hero-sub {
        color: #fff;
        opacity: .95;
        margin-bottom: var(--space-m);
        max-width: 60ch
    }

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* logo row */
.logo-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
    padding: 26px 0
}

@media(min-width:740px) {
    .logo-row {
        grid-template-columns: repeat(6,1fr)
    }
}

.logo-row img {
    filter: grayscale(1);
    opacity: .9;
    height: 42px;
    object-fit: contain
}

/* cards + services */
.cards {
    display: grid;
    gap: clamp(18px,2.6vw,28px)
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(18px,2.2vw,24px);
    box-shadow: 0 6px 20px rgba(16,20,24,.06)
}

    .card h3 {
        margin: 6px 0
    }

    .card p {
        margin: 0;
        color: var(--muted)
    }

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: clamp(18px,2.6vw,28px);
    justify-content: center
}

@media(max-width:1024px) {
    .svc-grid {
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 6px 8px;
        mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)
    }

    .svc-card {
        scroll-snap-align: center
    }
}

.svc-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 24px 64px;
    box-shadow: 0 8px 24px rgba(16,20,24,.06)
}

.svc-ico {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--tone,var(--brand));
    background: color-mix(in oklab,var(--tone,var(--brand)) 12%,#fff 88%);
    border: 1px solid color-mix(in oklab,var(--tone,var(--brand)) 28%,#0000 72%)
}

    .svc-ico svg {
        width: 28px;
        height: 28px
    }

.svc-title {
    font-weight: 800;
    line-height: 1.12;
    font-size: clamp(22px,2.8vw,30px);
    margin: 4px 0 8px
}

.svc-text {
    color: var(--muted);
    font-size: clamp(15px,1.6vw,17px);
    max-width: 54ch
}

/* --- Service Card Knapp (Fixad) --- */
.svc-go {
    position: absolute;
    left: 20px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: transform .15s, background-color .2s ease, color .2s ease;
    background-color: transparent;
    border: 1px solid var(--brand);
    color: var(--brand);
    box-shadow: 0 8px 20px rgba(133, 89, 195, 0.2);
}

    .svc-go svg {
        width: 22px;
        height: 22px;
    }

    .svc-go:hover {
        background-color: var(--brand);
        color: #fff;
        transform: translateY(-2px);
    }

.snap-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: none
}

    .snap-btn:before {
        content: "";
        display: block;
        width: 14px;
        height: 14px;
        margin: 0 auto;
        border-top: 2px solid #151a22;
        border-right: 2px solid #151a22;
        transform: rotate(45deg)
    }

.snap-prev {
    left: -6px
}

.snap-next {
    right: -6px
}

    .snap-next:before {
        transform: rotate(-135deg)
    }

@media(max-width:1024px) {
    .snap-btn {
        display: block
    }
}

/* soft section */
.section--soft {
    background: #fafafa;
    position: relative;
    padding: var(--space-xxl) 0
}

    .section--soft::before, .section--soft::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--line);
        pointer-events: none
    }

    .section--soft::before {
        top: 0
    }

    .section--soft::after {
        bottom: 0
    }

    .section--soft .svc-card {
        background: #fff
    }

/* feature split */
.feature {
    align-items: center;
    gap: clamp(24px,4vw,48px)
}

.feature-copy {
    justify-self: center;
    align-self: center;
    max-width: 560px;
    text-align: left
}

    .feature-copy h2 {
        margin-bottom: var(--space-s)
    }

    .feature-copy p {
        margin-bottom: var(--space-m)
    }

.feature-media {
    justify-self: end
}

    .feature-media .square {
        width: min(560px,100%);
        aspect-ratio: 1/1;
        border-radius: 18px;
        overflow: hidden;
        background: #f6f7f9;
        border: 1px solid var(--line);
        box-shadow: 0 10px 26px rgba(16,20,24,.08)
    }

        .feature-media .square img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

@media(max-width:740px) {
    .feature {
        gap: clamp(18px,5vw,28px)
    }

    .feature-media {
        order: -1;
        justify-self: center
    }

    .feature-copy {
        justify-self: center;
        text-align: left
    }
}

/* dark band */
.dark-band {
    background: #1c1f22;
    color: #fff;
    padding: var(--space-xl) 0
}

    .dark-band .muted {
        color: #c8d0d7
    }

    .dark-band h2 {
        color: #fff
    }

/* cta band */
.cta-band {
    background: linear-gradient( -45deg,color-mix(in srgb, var(--brand) 85%, black 15%),var(--brand),color-mix(in srgb, var(--brand) 85%, white 15%),var(--brand) );
    color: #fff;
    padding: var(--space-xl) 0;
    margin-bottom: 0;
    overflow: hidden;
    background-size: 400% 400%;
    animation: moveGradient 15s ease infinite;
}

    .cta-band .grid {
        align-items: center
    }

        .cta-band .grid > div:first-child {
            justify-self: start
        }

        .cta-band .grid > div:nth-child(2) {
            justify-self: end;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center
        }

    .cta-band .btn {
        box-shadow: none
    }

    .cta-band .btn-outline {
        background: transparent;
        border-color: #fff;
        color: #fff
    }

        .cta-band .btn-outline:hover {
            background: #fff;
            color: var(--brand)
        }

    .cta-band .btn-primary {
        background: #fff;
        color: var(--brand);
        border-color: #fff
    }

        .cta-band .btn-primary:hover {
            background: color-mix(in oklab,#fff 86%,var(--brand) 14%)
        }

    .cta-band > .container > *:last-child {
        margin-bottom: 0
    }

    .cta-band + * {
        margin-top: 0 !important
    }

    .cta-band + .site-footer,
    .cta-band ~ .site-footer {
        margin-top: 0 !important
    }

@media(max-width:740px) {
    .cta-band .grid {
        grid-template-columns: 1fr;
        row-gap: var(--space-m)
    }

        .cta-band .grid > div {
            justify-self: center;
            text-align: center
        }
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/* footer */
.site-footer {
    background: #171a1c;
    color: #e8edf1;
    margin-top: var(--space-xxl);
    padding: clamp(48px,6vw,80px) 0 22px
}

.footer-wrap {
    display: grid;
    gap: 22px
}

@media(min-width:900px) {
    .footer-wrap {
        grid-template-columns: 1.2fr 1fr 1fr 1fr
    }
}

.footer-col h4 {
    margin: 0 0 .35rem;
    font-weight: 800
}

.footer-col p, .footer-col a {
    color: #b8c2cc;
    text-decoration: none
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #202427;
    padding: 18px 0;
    margin-top: 18px
}

.footer-links a {
    color: #b8c2cc;
    text-decoration: none;
    margin-left: 16px
}

    .footer-links a:hover {
        color: #fff
    }

/* reveal + helpers */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease,transform .6s ease
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

hr.soft {
    height: 1px;
    border: 0;
    background: var(--line);
    margin: var(--space-l) 0
}

/* work */
.work-grid {
    display: grid;
    gap: clamp(22px,2.8vw,32px);
    grid-template-columns: 1fr
}

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

.work-card {
    display: grid;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent
}

    .work-card .thumb {
        aspect-ratio: 16/10;
        border-radius: 18px;
        overflow: hidden
    }

        .work-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform .45s ease
        }

    .work-card:hover .thumb img {
        transform: scale(1.04)
    }

    .work-card h3 {
        margin: 6px 0 4px;
        font: 800 clamp(20px,2.6vw,28px)/1.15 Inter,system-ui,sans-serif
    }

    .work-card p {
        margin: 0
    }

.work-grid.work-grid--2x2 > :nth-child(n+5) {
    display: none
}

/* industries */
.industries {
    position: relative;
    background: #fff;
    padding: clamp(56px, 7vw, 96px) 0
}

    .industries::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        height: 1px;
        width: 100%;
        background: linear-gradient(90deg,transparent,var(--line),transparent);
        top: 0;
        pointer-events: none
    }

    .industries .industries-card {
        position: relative;
        background: #fff;
        border: 1px solid color-mix(in oklab,var(--ink) 8%, transparent 92%);
        border-radius: clamp(14px, 2.2vw, 22px);
        padding: clamp(28px, 4.5vw, 56px) clamp(20px, 4vw, 48px);
        margin-inline: auto;
        max-width: 920px;
        text-align: center;
        box-shadow: 0 18px 40px rgba(16,20,24,.06);
        overflow: hidden
    }

        .industries .industries-card::before,
        .industries .industries-card::after {
            content: "";
            position: absolute;
            inset: -22% -12% auto -12%;
            height: 60%;
            pointer-events: none;
            background: radial-gradient(closest-side, color-mix(in oklab,var(--brand) 8%, transparent 92%), transparent 70%);
            filter: blur(28px);
            opacity: .28
        }

        .industries .industries-card::after {
            inset: auto -8% -26% auto;
            height: 55%
        }

.industries-title {
    display: flex;
    gap: .6ch;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    margin: 0 0 10px;
    font: 800 var(--h2)/1.1 Inter,system-ui,sans-serif;
    color: var(--ink)
}

.word-roller {
    --items: 13;
    --dur: 15.6s;
    position: relative;
    display: inline-grid;
    height: 1.2em;
    perspective: 700px;
    overflow: hidden;
    padding: .06em .36ch;
    border-radius: 12px;
    background: #fff;
    border: 1px solid color-mix(in oklab,var(--ink) 10%, transparent 90%);
    box-shadow: 0 10px 24px rgba(16,20,24,.04) inset
}

    .word-roller .words {
        display: grid
    }

        .word-roller .words > span {
            grid-area: 1/1;
            font-weight: 800;
            color: var(--brand);
            white-space: nowrap;
            opacity: 0;
            transform-origin: 50% 100%;
            transform: rotateX(-90deg);
            filter: blur(2px);
            animation: wordFlip var(--dur) linear infinite
        }

            .word-roller .words > span:nth-child(1) {
                --i: 0
            }

            .word-roller .words > span:nth-child(2) {
                --i: 1
            }

            .word-roller .words > span:nth-child(3) {
                --i: 2
            }

            .word-roller .words > span:nth-child(4) {
                --i: 3
            }

            .word-roller .words > span:nth-child(5) {
                --i: 4
            }

            .word-roller .words > span:nth-child(6) {
                --i: 5
            }

            .word-roller .words > span:nth-child(7) {
                --i: 6
            }

            .word-roller .words > span:nth-child(8) {
                --i: 7
            }

            .word-roller .words > span:nth-child(9) {
                --i: 8
            }

            .word-roller .words > span:nth-child(10) {
                --i: 9
            }

            .word-roller .words > span:nth-child(11) {
                --i: 10
            }

            .word-roller .words > span:nth-child(12) {
                --i: 11
            }

            .word-roller .words > span:nth-child(13) {
                --i: 12
            }

        .word-roller .words > span {
            animation-delay: calc(var(--i) * (var(--dur) / var(--items)))
        }

    .word-roller:hover .words > span {
        animation-play-state: paused
    }

@keyframes wordFlip {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
        filter: blur(2px)
    }

    3% {
        opacity: 1;
        transform: rotateX(0);
        filter: blur(0)
    }

    7% {
        opacity: 1;
        transform: rotateX(0);
        filter: blur(0)
    }

    10% {
        opacity: 0;
        transform: rotateX(90deg);
        filter: blur(2px)
    }

    10.01% {
        opacity: 0
    }

    100% {
        opacity: 0;
        transform: rotateX(90deg);
        filter: blur(2px)
    }
}

.industries-sub {
    margin: 10px auto 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: clamp(16px, 2.2vw, 18px)
}

@media(max-width:740px) {
    .industries .industries-card {
        padding: clamp(22px, 6vw, 36px) clamp(16px, 5vw, 28px)
    }

    .industries-title {
        font: 800 clamp(24px,6.2vw,32px)/1.15 Inter,system-ui,sans-serif
    }

    .word-roller {
        height: 1.25em
    }
}

@media (prefers-reduced-motion: reduce) {
    .word-roller .words > span {
        animation: none;
        opacity: 0
    }

        .word-roller .words > span:first-child {
            opacity: 1;
            transform: none;
            filter: none
        }
}

/* contact */
.contact-section header h1 {
    margin-bottom: 6px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(18px,3vw,26px);
    align-items: start;
    margin-top: var(--space-m)
}

.card-white {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(14px,2vw,18px);
    box-shadow: 0 8px 22px rgba(16,20,24,.06)
}

.card-dark {
    color: #eef2f6;
    background: radial-gradient(1200px 600px at 0% 0%, color-mix(in oklab,var(--brand) 16%, #000 84%), #14171a);
    border: 1px solid #202427;
    border-radius: 16px;
    padding: clamp(16px,2.2vw,20px);
    box-shadow: 0 16px 38px rgba(0,0,0,.32)
}

.contact-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.contact-form .field--full {
    grid-column: 1/-1
}

.contact-form .input, .contact-form .select, .contact-form .textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
    font: 500 15px/1.25 Inter,system-ui,sans-serif;
    color: var(--ink);
    transition: border-color .18s, box-shadow .18s
}

.contact-form label {
    font-weight: 600;
    font-size: .92rem;
    color: #394150
}

.contact-form .input:focus, .contact-form .select:focus, .contact-form .textarea:focus {
    outline: 0;
    border-color: color-mix(in oklab,var(--brand) 70%, #0000 30%);
    box-shadow: 0 0 0 4px color-mix(in oklab,var(--brand) 15%, #0000 85%)
}

.contact-form .textarea {
    resize: none;
    min-height: 140px
}

.contact-form .hint {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px
}

.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239,68,68,.12) !important
}

.error {
    color: #ef4444;
    font-size: 13px
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px
}

.small {
    font-size: 13px
}

.ticks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

    .ticks li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.35
    }

.tick {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: color-mix(in oklab, var(--brand) 18%, #fff 82%);
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 60%, #0000 40%)
}

    .tick::before {
        content: "";
        width: 8px;
        height: 8px;
        transform: rotate(45deg);
        border-right: 2px solid #1e293b;
        border-bottom: 2px solid #1e293b;
        margin-top: -1px
    }

.contact-ways {
    display: grid;
    gap: 10px
}

.way {
    display: flex;
    align-items: center;
    gap: 10px
}

    .way a {
        color: #fff;
        text-decoration: none
    }

        .way a:hover {
            text-decoration: underline
        }

.alert {
    border: 1px solid color-mix(in oklab,var(--brand) 30%,#0000 70%);
    background: color-mix(in oklab,var(--brand) 10%,#fff 90%);
    color: #0c4128;
    padding: 12px 14px;
    border-radius: 12px;
    margin: 12px 0 var(--space-m)
}

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

/* about */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: clamp(14px,2vw,22px)
}

.stat {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(14px,2vw,18px);
    background: #fff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(16,20,24,.06)
}

.stat-num {
    font: 800 clamp(20px,3.6vw,28px)/1.1 Inter,system-ui,sans-serif;
    color: var(--brand)
}

.stat-txt {
    color: var(--muted);
    font-weight: 600
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: var(--space-s) 0 0;
    display: grid;
    gap: 10px
}

    .about-bullets li {
        display: flex;
        align-items: center;
        gap: 10px
    }

        .about-bullets li::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 6px;
            background: color-mix(in oklab,var(--brand) 85%, #0000 15%);
            box-shadow: 0 0 0 2px color-mix(in oklab,var(--brand) 25%, #0000 75%)
        }

.timeline {
    list-style: none;
    padding: 0;
    margin: var(--space-m) 0 0;
    display: grid;
    gap: clamp(16px,2.2vw,20px);
    position: relative
}

    .timeline li {
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: clamp(14px,2vw,18px);
        background: #fff;
        box-shadow: 0 6px 18px rgba(16,20,24,.06);
        position: relative
    }

    .timeline .dot {
        position: absolute;
        left: -10px;
        top: 18px;
        width: 14px;
        height: 14px;
        border-radius: 999px;
        background: var(--brand);
        box-shadow: 0 0 0 4px color-mix(in oklab,var(--brand) 20%, #0000 80%)
    }

@media(max-width:980px) {
    .about-stats {
        grid-template-columns: repeat(2,1fr)
    }
}

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

.steps {
    display: grid;
    gap: clamp(14px,2vw,20px)
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(16,20,24,.06);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start
}

    .step .no {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 800;
        background: color-mix(in oklab,var(--brand) 12%, #fff 88%);
        border: 1px solid color-mix(in oklab,var(--brand) 35%, #0000 65%);
        color: var(--brand)
    }

.hero .about-bullets {
    color: #fff;
    opacity: .95
}

    .hero .about-bullets li::before {
        box-shadow: 0 0 0 2px color-mix(in oklab,#fff 70%, var(--brand) 30%)
    }

/* responsive helpers */
html, body {
    overflow-x: hidden
}

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

@media (max-width:960px) {
    .container {
        width: min(var(--container),94%)
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important
    }

    .hero__inner, .cta-band .grid > div {
        text-align: center
    }

    .hero__actions {
        justify-content: center !important
    }

    .feature {
        gap: clamp(18px,5vw,28px) !important
    }

    .feature-media {
        order: -1;
        justify-self: center !important
    }

    .feature-copy {
        justify-self: center !important;
        text-align: center !important
    }

    .cards {
        gap: clamp(16px,4vw,24px)
    }

    .card {
        text-align: center
    }

    .work-grid {
        grid-template-columns: 1fr
    }
}

@media (min-width:640px) and (max-width:980px) {
    .work-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:740px) {
    .cta-band .grid > div {
        justify-self: center !important
    }

    .cta-band .hero__actions {
        width: 100%;
        justify-content: center !important
    }

    .cta-band .btn {
        width: auto
    }

    .hero {
        min-height: 64vh;
        padding: clamp(48px,12vw,72px) 0
    }

    .hero__inner {
        padding: 0
    }

    .hero-title {
        margin-bottom: var(--space-s)
    }

    .hero-sub {
        margin-bottom: var(--space-m)
    }

    .section h1 + .hero__actions,
    .section h2 + .hero__actions,
    .section h1 + .grid,
    .section h2 + .grid {
        margin-top: var(--space-m) !important
    }

    .footer-wrap {
        text-align: center
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px
    }
}

@media (max-width:360px) {
    h1, .hero-title {
        word-break: break-word;
        hyphens: auto
    }
}

/* pricing (base) */
.pricing-shell {
    padding: var(--space-xxl) 0
}

.section-head.ta-center {
    text-align: center
}

.h1 {
    font: 800 var(--h1)/1.05 Inter,system-ui,sans-serif
}

.h3 {
    font: 800 var(--h3)/1.15 Inter,system-ui,sans-serif
}

.mb-s {
    margin-bottom: var(--space-s)
}

.mb-l {
    margin-bottom: var(--space-l)
}

.mt-l {
    margin-top: var(--space-l)
}

.pricing-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    margin: 0 auto var(--space-m);
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff
}

    .pricing-tabs .p-tab {
        appearance: none;
        border: 0;
        padding: 10px 16px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 700;
        color: #111827;
        background: transparent
    }

        .pricing-tabs .p-tab.is-active {
            background: color-mix(in oklab,var(--brand) 12%, #fff 88%);
            border: 1px solid color-mix(in oklab,var(--brand) 40%, #0000 60%)
        }

.pricing-panel {
    display: none
}

    .pricing-panel.is-active {
        display: block
    }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px,2.6vw,22px)
}

@media(min-width:740px) {
    .pricing-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(min-width:1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(16px,1.8vw,20px);
    box-shadow: 0 12px 28px rgba(16,20,24,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease
}

    .pricing-card:is(:hover,:focus-within) {
        transform: translateY(-2px);
        border-color: color-mix(in oklab,var(--brand) 40%, var(--line) 60%);
        box-shadow: 0 16px 34px rgba(16,20,24,.10)
    }

    .pricing-card.is-featured {
        outline: 2px solid color-mix(in oklab,var(--brand) 55%, #0000);
        transform: translateY(-2px)
    }

    .pricing-card[data-tone] .pricing-head {
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 10px
    }

    .pricing-card[data-tone="brand"] .pricing-head {
        background: color-mix(in oklab,var(--brand) 10%, #fff 90%)
    }

    .pricing-card[data-tone="soft"] .pricing-head {
        background: #fafafa
    }

    .pricing-card[data-tone="deep"] .pricing-head {
        background: color-mix(in oklab,var(--brand) 6%, #fff 94%)
    }

    .pricing-card[data-tone="amber"] .pricing-head {
        background: color-mix(in oklab,#f59e0b 14%, #fff 86%)
    }

    .pricing-card[data-tone="green"] .pricing-head {
        background: color-mix(in oklab,#22c55e 14%, #fff 86%)
    }

    .pricing-card[data-tone="violet"] .pricing-head {
        background: color-mix(in oklab,#8b5cf6 14%, #fff 86%)
    }

.plan-eyebrow {
    letter-spacing: .02em;
    font-weight: 700;
    font-size: .92rem;
    color: var(--muted);
    margin: 0 0 4px
}

.plan-title {
    margin: 0 0 6px
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 10px
}

    .plan-price strong {
        font-size: clamp(26px,3.4vw,32px);
        line-height: 1
    }

    .plan-price span {
        font-size: .95rem;
        color: var(--muted)
    }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
    display: grid;
    gap: 8px
}

    .plan-features li {
        position: relative;
        padding-left: 26px
    }

        .plan-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            line-height: 1;
            width: 18px;
            height: 18px;
            border-radius: 8px;
            background: color-mix(in oklab,var(--brand) 18%, #fff 82%);
            border: 1px solid color-mix(in oklab,var(--brand) 45%, #0000 55%);
            display: grid;
            place-items: center;
            font-size: 12px;
            color: #1e293b
        }

.pricing-card .ribbon {
    position: absolute;
    top: 12px;
    right: -8px;
    padding: 6px 10px;
    font-size: .8rem;
    font-weight: 800;
    color: #111827;
    background: #fff;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 10px 22px rgba(16,20,24,.10)
}

.p-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    height: var(--btn-h);
    padding: 0 18px;
    border-radius: var(--btn-r);
    border: 1px solid var(--brand);
    background: #fff;
    color: var(--brand);
    font: 700 15px/1 Inter,system-ui,sans-serif;
    letter-spacing: .01em;
    cursor: pointer;
    text-decoration: none;
    transition: .18s ease;
    box-shadow: 0 8px 24px rgba(16,20,24,.08)
}

    .p-btn:hover {
        background: linear-gradient(135deg,var(--brand),color-mix(in oklab,var(--brand) 80%,black 20%));
        color: #fff
    }

.p-btn-primary {
    color: #fff;
    background: linear-gradient(135deg,var(--brand),color-mix(in oklab,var(--brand) 80%,black 20%));
    border-color: color-mix(in oklab,var(--brand) 70%,#0000 30%)
}

    .p-btn-primary:hover {
        color: var(--brand);
        background: #fff;
        border-color: var(--brand);
        box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 45%,white 55%), 0 8px 24px rgba(16,20,24,.10)
    }

.p-is-full {
    width: 100%
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in oklab,var(--brand) 6%, #fff 94%)
}

    .trust-pill .ico {
        width: 18px;
        height: 18px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #fff;
        font-size: 12px
    }

.process-lite {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px
}

@media(min-width:768px) {
    .process-lite {
        grid-template-columns: repeat(3,1fr)
    }
}

.proc-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff
}

.guarantee-card {
    margin-top: 18px;
    padding: 14px;
    border: 1px dashed color-mix(in oklab,var(--brand) 50%, #0000);
    border-radius: 12px;
    background: color-mix(in oklab,var(--brand) 6%, #fff 94%)
}

/* pricing (namespaced) */
.p-tabs {
    --p-bg: #fff;
    --p-ring: color-mix(in oklab,var(--brand) 18%,#0000 82%);
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    margin: 0 auto var(--space-m);
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--p-bg);
    box-shadow: 0 8px 26px rgba(16,20,24,.06)
}

    .p-tabs .p-tab {
        appearance: none;
        border: 0;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: .55rem;
        padding: 10px 16px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 800;
        color: #111827;
        background: transparent;
        transition: .18s ease
    }

        .p-tabs .p-tab svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            opacity: .8
        }

        .p-tabs .p-tab:is(:hover,:focus-visible) {
            background: color-mix(in oklab,var(--brand) 8%, #fff 92%)
        }

        .p-tabs .p-tab.is-active {
            background: linear-gradient(180deg,color-mix(in oklab,var(--brand) 12%,#fff 88%),#fff);
            box-shadow: 0 6px 18px rgba(16,20,24,.08), inset 0 0 0 1px color-mix(in oklab,var(--brand) 35%, #0000 65%);
            outline: 0
        }

.p-panel {
    display: none
}

    .p-panel.is-active {
        display: block
    }

.p-grid {
    display: grid;
    gap: clamp(16px,2.8vw,24px);
    grid-template-columns: 1fr
}

@media(min-width:740px) {
    .p-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(min-width:1024px) {
    .p-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

.p-card {
    --p-border: color-mix(in oklab,var(--brand) 16%, var(--line));
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--p-border);
    border-radius: var(--radius);
    background: linear-gradient(#fff,#fff) padding-box, radial-gradient(1200px 600px at 0% 0%, color-mix(in oklab,var(--brand) 10%,#0000 90%), transparent) border-box;
    padding: clamp(18px,2.2vw,22px);
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease
}

    .p-card:is(:hover,:focus-within) {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(16,20,24,.14)
    }

    .p-card.is-featured {
        outline: 2px solid color-mix(in oklab,var(--brand) 55%, #0000);
        background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg,color-mix(in oklab,var(--brand) 22%,#0000),transparent 60%) border-box
    }

    .p-card[data-tone="brand"] .p-head {
        background: color-mix(in oklab,var(--brand) 12%, #fff 88%)
    }

    .p-card[data-tone="soft"] .p-head {
        background: #fafafa
    }

    .p-card[data-tone="deep"] .p-head {
        background: color-mix(in oklab,var(--brand) 8%, #fff 92%)
    }

    .p-card[data-tone="amber"] .p-head {
        background: color-mix(in oklab,#f59e0b 16%, #fff 84%)
    }

    .p-card[data-tone="green"] .p-head {
        background: color-mix(in oklab,#22c55e 16%, #fff 84%)
    }

    .p-card[data-tone="violet"] .p-head {
        background: color-mix(in oklab,#8b5cf6 16%, #fff 84%)
    }

.p-head {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px
}

.p-eyebrow {
    font-weight: 700;
    font-size: .92rem;
    color: var(--muted);
    margin: 0 0 4px
}

.p-price {
    display: flex;
    align-items: baseline;
    gap: 10px
}

    .p-price strong {
        font-size: clamp(28px,3.8vw,34px);
        line-height: 1
    }

    .p-price span {
        font-size: .95rem;
        color: var(--muted)
    }

.p-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
    display: grid;
    gap: 8px;
    grid-auto-rows: minmax(min-content,auto)
}

    .p-list li {
        position: relative;
        padding-left: 26px
    }

        .p-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px;
            height: 18px;
            border-radius: 8px;
            background: color-mix(in oklab,var(--brand) 16%, #fff 84%);
            border: 1px solid color-mix(in oklab,var(--brand) 45%, #0000 55%);
            box-shadow: inset 0 0 0 1px #fff
        }

        .p-list li::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 7px;
            width: 8px;
            height: 4px;
            border-left: 2px solid #1e293b;
            border-bottom: 2px solid #1e293b;
            transform: rotate(-45deg)
        }

.p-cta {
    margin-top: auto
}

.p-ribbon {
    position: absolute;
    top: 12px;
    right: -8px;
    padding: 6px 10px;
    font-size: .8rem;
    font-weight: 800;
    color: #111827;
    background: #fff;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 10px 22px rgba(16,20,24,.10)
}

@media (max-width:1023.98px) {
    .p-grid {
        grid-auto-flow: column;
        grid-auto-columns: clamp(280px,86%,360px);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 12px;
        -webkit-overflow-scrolling: touch;
        padding: 6px 8px;
        gap: 18px;
        mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)
    }

    .p-card {
        scroll-snap-align: center
    }
}

.pricing-shell .section-head {
    max-width: 920px;
    margin: 0 auto var(--space-s);
    text-align: center
}

    .pricing-shell .section-head .muted {
        font-size: var(--lead)
    }

.pricing-shell .p-tabs {
    margin-bottom: var(--space-m)
}

.pricing-shell .p-panel {
    margin-top: var(--space-s)
}

.pricing-shell .trust-row {
    margin-top: var(--space-l);
    justify-content: center
}

.pricing-shell .process-lite {
    margin-top: var(--space-m);
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto
}

.pricing-shell .guarantee-card {
    max-width: 1160px;
    margin: var(--space-m) auto 0;
    padding: 16px 18px;
    background: color-mix(in oklab,var(--brand) 6%, #fff 94%);
    border: 1px dashed color-mix(in oklab,var(--brand) 45%, #0000);
    border-radius: 14px
}

.pricing-shell .big-project-cta {
    margin-top: var(--space-l)
}

    .pricing-shell .big-project-cta .cta-row {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 16px;
        align-items: center
    }

@media(max-width:820px) {
    .pricing-shell .big-project-cta .cta-row {
        grid-template-columns: 1fr;
        text-align: center
    }

    .pricing-shell .big-project-cta .cta-col-narrow {
        justify-content: center
    }
}

.p-grid {
    display: grid;
    gap: clamp(18px,2.8vw,24px);
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.p-card {
    padding: clamp(20px,2.4vw,24px);
    min-height: 100%
}

/* cases */
.case-grid {
    grid-template-columns: 1fr
}

@media(min-width:640px) {
    .case-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width:1024px) {
    .case-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

.case-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

    .case-card .thumb {
        aspect-ratio: 1/1;
        width: 100%;
        background: #f6f7f9;
        border-bottom: 1px solid var(--line)
    }

        .case-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1);
            transition: transform .4s ease
        }

    .case-card:hover .thumb img {
        transform: scale(1.04)
    }

    .case-card .body {
        padding: clamp(14px,1.8vw,18px);
        display: grid;
        gap: 10px
    }

.case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}

@media(max-width:740px) {
    .case-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

.case-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .88rem;
    border: 1px solid var(--line);
    background: #fff
}

    .case-badge .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: inline-block
    }

.case-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

    .case-links .btn {
        height: 40px;
        padding: 0 14px
    }

@media(max-width:740px) {
    .case-links .btn {
        width: 100%
    }
}

.case-feats {
    list-style: none;
    padding: 0;
    margin: 2px 0 0;
    display: grid;
    gap: 8px;
    color: var(--muted)
}

    .case-feats li {
        display: flex;
        gap: 10px;
        align-items: flex-start
    }

        .case-feats li::before {
            content: "";
            width: 14px;
            height: 14px;
            flex: 0 0 14px;
            margin-top: 3px;
            border-radius: 6px;
            background: color-mix(in oklab,var(--brand) 16%, #fff 84%);
            box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 55%, #0000 45%)
        }

.case-grid.cards {
    gap: clamp(16px,2.6vw,22px)
}

@media(max-width:740px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: clamp(24px,7vw,36px);
        padding-block: 4px
    }

    .case-card .body {
        gap: 12px
    }
}

/* misc */
.container--narrow {
    width: min(860px,90%);
    margin-inline: auto
}

:root {
    --tool-h: 70px
}

.tools-block {
    gap: var(--space-l)
}

.tool-board {
    display: grid;
    place-items: center;
    gap: clamp(18px,3vw,28px);
    grid-template-columns: repeat(5,minmax(0,1fr));
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none
}

.tool-badge {
    display: grid;
    place-items: center;
    gap: 0;
    padding: 0;
    text-align: center;
    box-shadow: none
}

.tool-ico {
    height: var(--tool-h);
    display: grid;
    place-items: center
}

    .tool-ico img {
        height: var(--tool-h);
        width: auto;
        max-width: 150px;
        display: block;
        object-fit: contain
    }

.tool-badge em {
    display: none
}

@media(max-width:1024px) {
    .tool-board {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }
}

@media(max-width:740px) {
    :root {
        --tool-h: 72px
    }

    .tool-board {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }
}

@media(max-width:480px) {
    :root {
        --tool-h: 60px
    }

    .tool-board {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

/* order */
.order-section .section-head {
    max-width: 840px;
    margin: 0 auto var(--space-l)
}

.order-shell {
    display: grid;
    gap: clamp(18px,2.8vw,26px);
    grid-template-columns: 1.1fr .9fr;
    align-items: start
}

@media(max-width:980px) {
    .order-shell {
        grid-template-columns: 1fr
    }
}

.order-form {
    padding: clamp(16px,2.2vw,20px)
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px,2vw,16px)
}

    .order-grid .field.field--full {
        grid-column: 1/-1
    }

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

    .order-section .section-head, .order-summary {
        text-align: center
    }

    .form-actions {
        justify-content: center;
        text-align: center
    }
}

.contact-form .input.input-validation-error,
.contact-form .select.input-validation-error,
.contact-form .textarea.input-validation-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,.12)
}

.order-summary {
    position: sticky;
    top: 84px;
    padding: clamp(16px,2.2vw,20px);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(16,20,24,.06)
}

.summary-head .eyebrow {
    font-weight: 700;
    color: var(--muted);
    margin: 0 0 6px
}

.summary-plan {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px
}

    .summary-plan .price {
        font-weight: 800;
        color: var(--brand)
    }

.summary-features {
    list-style: none;
    padding: 0;
    margin: var(--space-s) 0 var(--space-s);
    display: grid;
    gap: 10px
}

    .summary-features li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        line-height: 1.35
    }

        .summary-features li::before {
            content: "";
            width: 16px;
            height: 16px;
            flex: 0 0 16px;
            border-radius: 6px;
            background: color-mix(in oklab,var(--brand) 16%, #fff 84%);
            box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 55%, #0000 45%)
        }

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--space-s)
}

@media(min-width:981px) {
    .order-form .field {
        margin-bottom: 2px
    }
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.order-pill {
    display: none;
    margin: 10px auto 0;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(16,20,24,.06);
    gap: 10px
}

    .order-pill span {
        color: var(--brand);
        font-weight: 800
    }

@media(max-width:740px) {
    .order-pill.small-only {
        display: inline-flex
    }
}

.order-form .hint {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px
}

.order-form .req {
    color: var(--brand);
    font-weight: 800
}

.order-form,
.order-form label,
.order-form .field {
    text-align: left;
}

@media(max-width:740px) {
    .contact-form,
    .contact-form label,
    .contact-form .field {
        text-align: left
    }
}

.order-summary {
    position: sticky;
    top: 84px;
    padding: clamp(16px,2.2vw,20px);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(16,20,24,.06)
}

/* success */
.success-section .success-wrap {
    max-width: 820px;
    margin: 0 auto;
    text-align: center
}

.success-badge {
    width: 86px;
    height: 86px;
    margin: 0 auto var(--space-s);
    display: grid;
    place-items: center
}

    .success-badge svg {
        width: 100%;
        height: 100%
    }

    .success-badge .ring {
        fill: #fff;
        stroke: color-mix(in oklab,var(--brand) 30%, #0000);
        stroke-width: 2;
        filter: drop-shadow(0 8px 18px rgba(16,20,24,.10))
    }

    .success-badge .check {
        stroke: var(--brand);
        animation: successDraw .6s ease forwards .2s
    }

@keyframes successDraw {
    from {
        stroke-dasharray: 80;
        stroke-dashoffset: 80
    }

    to {
        stroke-dasharray: 80;
        stroke-dashoffset: 0
    }
}

.success-section h1 {
    margin: .2rem 0 var(--space-s)
}

.success-section .muted {
    font-size: var(--lead);
    margin: 0 0 var(--space-m)
}

.success-pill {
    display: inline-flex;
    gap: 10px;
    align-items: baseline;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 8px 18px rgba(16,20,24,.06);
    margin-bottom: var(--space-m)
}

    .success-pill span {
        color: var(--brand);
        font-weight: 800
    }

.success-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-m);
    display: grid;
    gap: 8px;
    text-align: left;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

    .success-steps li {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 12px 14px;
        box-shadow: 0 8px 18px rgba(16,20,24,.06)
    }

.success-actions {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-s)
}

@media(max-width:740px) {
    .success-steps {
        text-align: left
    }

    .success-actions .btn {
        width: auto
    }
}

@media (prefers-reduced-motion: reduce) {
    .success-badge .check {
        animation: none
    }
}

/* pricing tail cta */
.pricing-tail-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg,var(--brand),var(--accent-600));
    color: #fff;
    margin-top: var(--space-xl)
}

    .pricing-tail-cta .cta-tail {
        max-width: 920px;
        margin: 0 auto;
        text-align: center
    }

    .pricing-tail-cta h2 {
        color: #fff;
        font: 800 clamp(28px,4.2vw,40px)/1.15 Inter,system-ui,sans-serif;
        margin: 0 0 8px
    }

    .pricing-tail-cta .muted {
        color: color-mix(in oklab,#fff 88%, #000 12%);
        font-size: clamp(16px,2.2vw,18px);
        margin: 0 0 var(--space-m)
    }

    .pricing-tail-cta .cta-actions {
        display: inline-flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center
    }

    .pricing-tail-cta .btn {
        box-shadow: none
    }

    .pricing-tail-cta .btn-primary {
        background: #fff;
        color: var(--brand);
        border-color: #fff
    }

        .pricing-tail-cta .btn-primary:hover {
            background: color-mix(in oklab,#fff 86%, var(--brand) 14%)
        }

    .pricing-tail-cta .btn-outline {
        background: transparent;
        border-color: #fff;
        color: #fff
    }

        .pricing-tail-cta .btn-outline:hover {
            background: #fff;
            color: var(--brand)
        }

@media(max-width:740px) {
    .pricing-tail-cta {
        padding: clamp(36px,9vw,56px) 0
    }

        .pricing-tail-cta .cta-actions .btn {
            width: min(100%,320px)
        }
}

.brand img {
    height: 50px;
    display: block
}

/* service carousel */
@media (max-width:1024px) {
    .svc-carousel {
        overflow: visible;
        position: relative
    }

    .svc-grid {
        grid-auto-flow: column;
        grid-auto-columns: clamp(280px,86%,360px);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 6px 12px;
        scroll-padding: 12px;
        mask-image: none;
        justify-content: start;
        justify-items: stretch
    }

    .svc-card {
        scroll-snap-align: start;
        min-width: 280px;
        text-align: left
    }

    .svc-title, .svc-text {
        overflow-wrap: anywhere;
        hyphens: auto
    }
}


.cta-band {
    margin-bottom: 0
}

    .cta-band > .container > *:last-child {
        margin-bottom: 0
    }

.site-footer {
    margin-top: 0 !important
}

.cta-band + :is(.section, .section--soft, .container, .wrap, .wrapper, .content, .page, .block, div, section) {
    margin-top: 0 !important;
    padding-top: 0 !important
}

.cta-band + hr,
.cta-band + .soft,
.cta-band + .spacer,
.cta-band + .divider {
    margin: 0 !important;
    height: 0 !important;
    border: 0 !important
}

.cta-band + * + .site-footer,
.cta-band + * + * + .site-footer {
    margin-top: 0 !important
}

.cta-band ~ :is(.section, .section--soft, .wrap, .wrapper, .content, .page, .block) {
    margin-top: 0 !important;
    padding-top: 0 !important
}

@media (max-width:1023.98px) {
    .pricing-shell .p-grid {
        grid-auto-flow: column;
        grid-auto-columns: clamp(280px, 86%, 360px);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 6px 8px;
        scroll-padding: 12px;
        mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)
    }

    .pricing-shell .p-card {
        scroll-snap-align: center;
        min-width: 280px
    }

    .pricing-shell .pricing-grid {
        grid-auto-flow: column;
        grid-auto-columns: clamp(280px, 86%, 360px);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 6px 8px;
        scroll-padding: 12px;
        mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)
    }

    .pricing-shell .pricing-card {
        scroll-snap-align: center;
        min-width: 280px
    }

    .pricing-shell {
        overflow: visible
    }
}

@media (max-width:420px) {
    .pricing-shell .p-grid,
    .pricing-shell .pricing-grid {
        grid-auto-columns: min(92%, 320px)
    }
}

.pricing-shell .pricing-tabs,
.pricing-shell .p-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%
}

@supports not (width: fit-content) {
    .pricing-shell .pricing-tabs,
    .pricing-shell .p-tabs {
        width: max-content
    }
}

@media (max-width:740px) {
    .pricing-shell .pricing-tabs,
    .pricing-shell .p-tabs {
        flex-wrap: wrap;
        justify-content: center
    }
}

/* hero video */
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

@media (prefers-reduced-motion: reduce) {
    .hero__video {
        animation: none
    }

    .hero__video {
        display: none
    }
}

.hero .hero-title {
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.05;
    font-size: clamp(44px, 7vw, 72px);
    margin-bottom: var(--space-s)
}

.hero .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    opacity: .95;
    max-width: 60ch
}

.hero {
    font-size: 100%
}

/* faq */
.faq-section {
    padding: var(--space-xl) 0
}

.faq {
    display: grid;
    gap: 10px
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(16,20,24,.06);
    overflow: hidden
}

.faq-q {
    all: unset;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 800
}

.faq-ico {
    width: 18px;
    height: 18px;
    position: relative
}

    .faq-ico::before, .faq-ico::after {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        background: currentColor;
        width: 14px;
        height: 2px;
        border-radius: 2px;
        transition: transform .22s ease, opacity .22s ease
    }

    .faq-ico::after {
        transform: rotate(90deg)
    }

.faq-q[aria-expanded="true"] .faq-ico::after {
    transform: rotate(0deg);
    opacity: 0
}

.faq-a {
    height: 0;
    overflow: hidden;
    transition: height .28s ease;
    will-change: height;
    border-top: 1px solid var(--line)
}

.faq-a__inner {
    padding: 12px 16px;
    color: var(--muted);
    opacity: .85;
    transform: translateY(-2px);
    transition: opacity .24s ease, transform .24s ease
}

.faq-q[aria-expanded="true"] + .faq-a .faq-a__inner {
    opacity: 1;
    transform: none
}

main > :is(.section, .pricing-shell, .contact-section):first-child {
    padding-top: clamp(24px, 4vw, 48px) !important
}

@media (min-width:961px) {
    .nav-social {
        display: none !important
    }

    .nav-lang {
        margin-left: 8px
    }

    .lang-select {
        appearance: none;
        border: 1px solid var(--line);
        background: #fff;
        color: #0f1220;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 999px;
        line-height: 1;
        cursor: pointer
    }

        .lang-select:hover {
            border-color: color-mix(in oklab,var(--brand) 40%, #0000 60%);
            box-shadow: 0 2px 8px rgba(16,20,24,.06)
        }

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

@media (max-width:960px) {
    .nav-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 24px
    }

    .lang-select {
        appearance: none;
        border: 0;
        background: #fff;
        color: #0f1220;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 999px;
        line-height: 1
    }

    .nav-social {
        display: flex;
        gap: 22px
    }

        .nav-social .social {
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            opacity: .95
        }
}

@media (min-width: 900px) {
    .footer-wrap {
        grid-template-columns: 1.2fr 1fr 1fr;
        align-items: start;
    }
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-nav a {
    text-decoration: none;
    color: #b8c2cc;
}

    .footer-nav a:hover {
        color: #fff;
    }

.site-footer .footer-col h4 {
    margin-bottom: 10px;
}

.site-footer .footer-col p + p {
    margin-top: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #202427;
    padding: 18px 0;
    margin-top: 22px;
}


.policy {
    text-align: left;
}

.policy__meta {
    margin: 0 0 var(--space-m);
    color: var(--muted);
    font-size: .95rem;
}

.policy h2 {
    margin-top: var(--space-l);
    margin-bottom: 8px;
    line-height: 1.15;
}

.policy h3 {
    margin-top: var(--space-m);
    margin-bottom: 6px;
}

.policy p:not(.policy__meta) {
    margin: 10px 0 var(--space-m);
    line-height: 1.75;
    max-width: 70ch;
}

.policy ul {
    margin: 8px 0 var(--space-m);
}

.policy .case-feats,
.policy .ticks {
    gap: 10px;
}

.policy h2 + :is(p, ul, .ticks, .case-feats),
.policy h3 + :is(p, ul, .ticks, .case-feats) {
    margin-top: 8px; 
}

.policy :is(p, ul, .ticks, .case-feats) + h2 {
    margin-top: var(--space-l);
}

.policy :is(p, ul, .ticks, .case-feats) + h3 {
    margin-top: var(--space-m);
}

.policy address {
    margin-top: var(--space-s);
    font-style: normal;
}

@media (max-width:740px) {
    .policy h2 {
        margin-top: var(--space-m);
        margin-bottom: 6px;
    }

    .policy p:not(.policy__meta) {
        margin: 8px 0 14px;
    }

    .policy .case-feats, .policy .ticks {
        gap: 8px;
    }
}

.brand {
    position: relative;
    display: inline-block;
    isolation: isolate;
}


@media (hover: hover) and (pointer: fine) {
    .brand:hover::after {
        animation-duration: 2.2s;
    }
}

body.menu-open .brand::after {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .brand::after {
        animation: none;
        opacity: .0; 
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    will-change: transform;
    transition: transform .28s ease, background .25s ease, box-shadow .25s ease;
}

    .site-header.is-hidden {
        transform: translateY(-100%);
    }

main.site-main {
    padding-top: var(--header-h, 64px);
}


.portfolio-head {
    display: grid;
    gap: 6px;
    margin-bottom: var(--space-m);
}

.case-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2.4vw, 22px);
}

@media (min-width: 640px) {
    .case-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .case-gallery {
        grid-template-columns: repeat(3,1fr);
    }
}

.case-pro {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: clamp(14px, 2vw, 18px);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(16,20,24,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display: grid;
    grid-template-rows: auto 1fr;
}

    .case-pro:is(:hover,:focus-within) {
        transform: translateY(-2px);
        border-color: color-mix(in oklab,var(--brand) 35%, var(--line));
        box-shadow: 0 16px 34px rgba(16,20,24,.10);
    }

.case-media {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f6f7f9;
}

    .case-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: transform .45s ease, filter .45s ease;
    }

.case-pro:is(:hover,:focus-within) .case-media img {
    transform: scale(1.06);
    filter: saturate(1.03);
}

.case-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 420px at 0% 0%, color-mix(in oklab,var(--brand) 12%, transparent) 0%, transparent 60%);
    opacity: .28;
    pointer-events: none;
    transition: opacity .25s ease;
}

.case-pro:is(:hover,:focus-within) .case-media::after {
    opacity: .36;
}

.case-chip {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-weight: 800;
    font-size: .88rem;
    color: #111827;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(16,20,24,.10);
}

    .case-chip .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: inline-block;
    }

.case-body {
    padding: clamp(12px,1.6vw,16px) clamp(14px,1.8vw,18px) clamp(14px,2vw,18px);
    display: grid;
    gap: 8px;
}

.case-title {
    margin: 2px 0 0;
    font: 800 clamp(20px,2.4vw,24px)/1.15 Inter,system-ui,sans-serif;
}

.case-desc {
    margin: 4px 0 0;
}

.case-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.case-link {
    position: relative;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}

    .case-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        background: linear-gradient(90deg,transparent,var(--brand),transparent);
        transform: scaleX(0);
        transition: transform .25s ease;
    }

    .case-link:hover::after {
        transform: scaleX(1);
    }

.case-actions .btn {
    height: 40px;
    padding: 0 14px;
}

@media (max-width:740px) {
    .case-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

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

html[dir="rtl"] body {
    direction: rtl;
}

html[dir="rtl"] .nav-links a,
html[dir="rtl"] .btn,
html[dir="rtl"] p,
html[dir="rtl"] h1, h2, h3, h4 {
    letter-spacing: 0;
}

html[dir="rtl"] .hero__actions,
html[dir="rtl"] .case-meta,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .grid {
    direction: rtl;
}

html[dir="rtl"] .btn + .btn {
    margin-inline-start: 8px;
    margin-inline-end: 0;
}

html[dir="rtl"] .btn-primary,
html[dir="rtl"] .btn-outline {
    unicode-bidi: plaintext;
}

html[dir="rtl"] .field label {
    text-align: right;
}

html[dir="rtl"] .form-actions {
    justify-content: flex-start;
}


.cookie-banner {
    position: fixed;
    inset-inline: 16px;
    bottom: 16px;
    background: var(--bg, #0b0b0c);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    z-index: 9999;
    max-width: 840px;
    margin-inline: auto;
    padding: 16px;
}

.cookie-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-title {
    color: #000000;
    margin: 0 0 6px 0;
    font-size: 1.05rem
}

.cookie-text {
    margin: 0;
    opacity: .9;
    color: #000000;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-inline-start: auto;
    flex-wrap: wrap
}

.cookie-link {
    color: inherit;
    text-decoration: underline;
}

.cookie-prefs {
    margin-top: 12px;
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 12px
}

.cookie-pref-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

    .cookie-pref-row:last-child {
        border-bottom: 0
    }

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px
}

    .switch input {
        display: flex;
    }

    .switch span {
        position: absolute;
        cursor: pointer;
        inset: 0;
        background: #3b3b3b;
        border-radius: 999px;
        transition: .2s
    }

        .switch span:before {
            content: "";
            position: absolute;
            height: 18px;
            width: 18px;
            left: 3px;
            top: 3px;
            background: white;
            border-radius: 50%;
            transition: .2s
        }

    .switch input:checked + span {
        background: #22c55e
    }

        .switch input:checked + span:before {
            transform: translateX(20px)
        }

@media (max-width: 640px) {
    .cookie-inner {
        flex-direction: column;
    }

    .cookie-actions {
        margin-inline-start: 0
    }
}

.logo-scroller {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

    .logo-scroller:dir(rtl) {
        -webkit-mask-image: linear-gradient(to left, transparent, #000 10%, #000 90%, transparent);
        mask-image: linear-gradient(to left, transparent, #000 10%, #000 90%, transparent);
    }

.scroller__inner {
    display: flex;
    gap: 60px;
    padding-block: 10px;
    width: fit-content;
    animation: scroll-ltr 30s linear infinite;
}

    .scroller__inner img {
        height: 40px;
        max-width: 140px;
        object-fit: contain;
        transition: .2s;
    }


@keyframes scroll-ltr {
    from {
        transform: translate(0);
    }

    to {
        transform: translate(calc(-50% - 30px));
    }
}

.scroller__inner:dir(rtl) {
    animation-name: scroll-rtl;
}

@keyframes scroll-rtl {
    from {
        transform: translate(0);
    }

    to {

        transform: translate(calc(50% + 30px));
    }
}

.section--gradient {
    background: linear-gradient(145deg, var(--brand), color-mix(in oklab, var(--brand) 85%, black 15%));
    color: #fff;
    padding: var(--space-xl) 0;
}

    .section--gradient .industries-title {
        color: #fff;
    }

    .section--gradient .word-roller {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }

        .section--gradient .word-roller .words > span {
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

    .section--gradient .industries-sub {
        color: rgba(255, 255, 255, 0.9);
        max-width: 60ch;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(16px, 2.2vw, 18px);
    }


html[dir="rtl"] .feature-copy {
    text-align: right !important;
}

html[dir="rtl"] .text-center {

    text-align: center;
}

html[dir="rtl"] .p {
    text-align: right;
}
html[dir="rtl"] .policy h2,
html[dir="rtl"] .policy h3,
html[dir="rtl"] .policy p {
    text-align: right;
}

@media (max-width: 960px) {
    html[dir="rtl"] .nav-toggle {
        margin-left: 0;
        margin-right: auto;
    }

    html[dir="rtl"] .brand {
        margin-right: 8px;
    }
}

.btn-wipe {
    background: #ffffff;
    color: var(--brand);
    border: 1px solid var(--brand);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-wipe::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, var(--brand), var(--accent-600));
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: -1;
    }

    .btn-wipe:hover {
        color: #fff; 
    }

        .btn-wipe:hover::before {
            width: 100%;
        }


.btn-wipetwo {
    background-color: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-wipetwo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, var(--brand), var(--accent-600));
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: -1;
    }

    .btn-wipetwo:hover {
        background-color: var(--brand);
        color: #fff;
    }

        .btn-wipetwo:hover::before {
            width: 100%;
        }



.btn-explode {
    background: var(--brand);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-out;
}

    .btn-explode::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%;
        padding-top: 200%;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: -1;
    }

    .btn-explode:hover {
        background-color: transparent;
        color: var(--brand);
        border: 1px var(--brand) solid;
    }

        .btn-explode:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }



.btn-ghost {
    background: var(--brand);
    color: #fff;

    transition: background-color 0.3s ease, color 0.3s ease;
}

    .btn-ghost:hover {
        background-color: transparent;
        color: #fff;
        border-color: #fff;
    }


body {
    background-color: #f0f2f5;
}

.site-wrapper {
    max-width: var(--container, 2000px);
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bg, #fff);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}


.section--word-planet {
    background: linear-gradient( 160deg, color-mix(in oklab, var(--brand) 20%, black 80%), var(--ink) 70% );
    color: #ffffff;
    padding: var(--space-xl, 4rem) 0;
    overflow: hidden;
    text-align: center;
}

.planet-title, .planet-sub {
    position: relative;
    z-index: 10;
}

.tagcanvas-container {
    width: 100%;
    max-width: 900px;
    margin: -1.5rem auto;
    height: 450px;
}

@media (max-width: 768px) {
    .tagcanvas-container {
        height: 350px;
    }
}

#toTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--brand), var(--accent-600));
    color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

    #toTopBtn.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    #toTopBtn:hover {
        box-shadow: 0 14px 30px rgba(16, 20, 24, 0.15);
        transform: translateY(-2px) !important;
    }

    #toTopBtn svg {
        width: 24px;
        height: 24px;
    }

.site-footer .footer-wrap {
    display: grid;
    grid-template-columns: .8fr 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

.footer-logo img {
    height: clamp(48px, 6vw, 72px);
    width: auto;
    display: block;
    opacity: .95;
    transition: transform .2s ease, opacity .2s ease;
}

.footer-logo:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

.site-footer .footer-col h4 {
    margin: 0 0 10px;
    color: #fff;
    font: 800 clamp(18px, 2.2vw, 24px)/1.15 Inter,system-ui,sans-serif;
}

.site-footer .footer-col p,
.site-footer .footer-col a {
    color: #b8c2cc;
    text-decoration: none;
    line-height: 1.8;
}

    .site-footer .footer-col a:hover {
        color: #fff;
    }


@media (max-width: 960px) {
    .site-footer .footer-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-self: center;
    }
}

html[dir="rtl"] .site-footer .footer-wrap {
    direction: rtl;
}
