﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #06070c;
    --bg2: #10121a;
    --bg3: #181a24;
    --border: rgba(232,214,186,0.14);
    --border2: rgba(232,214,186,0.28);
    --white: #f3ede3;
    --gray1: #efe6d8;
    --gray2: #b8a898;
    --gray3: #7a6b5c;
    --font: 'Inter',system-ui,sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--gray1);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 82px;
    background: rgba(6,7,12,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    text-decoration: none;
    font-family: 'Fjalla One',sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.5px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none
}

    .nav-links a {
        font-size: 14px;
        font-weight: 400;
        color: var(--gray2);
        text-decoration: none;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 5px
    }

        .nav-links a:hover {
            color: var(--white)
        }

    .nav-links .has-drop {
        position: relative;
        cursor: pointer;
        font-size: 14px;
        color: var(--gray2)
    }

.has-drop:hover {
    color: var(--white)
}

    .has-drop:hover .drop {
        display: block
    }

.drop {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -12px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 6px;
    min-width: 190px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6)
}

    .drop a {
        display: block;
        padding: 9px 14px;
        border-radius: 7px;
        font-size: 13px;
        color: var(--gray2);
        text-decoration: none
    }

        .drop a:hover {
            background: rgba(232,214,186,0.05);
            color: var(--white)
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    border: none
}

.btn-white {
    background: var(--white);
    color: #14100a;
    border: 1.5px solid var(--white)
}

    .btn-white:hover {
        background: var(--gray1);
        transform: translateY(-1px)
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border2)
}

    .btn-outline:hover {
        border-color: var(--white);
        background: rgba(232,214,186,0.04);
        transform: translateY(-1px)
    }

.arrow {
    font-size: 16px;
    line-height: 1
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 48px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block
}

.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,var(--bg) 0%,var(--bg) 30%,rgba(6,7,12,0.5) 55%,transparent 78%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,214,186,0.06);
    border: 1px solid var(--border2);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 28px;
    width: fit-content;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%
}

.hero-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gray2);
    text-transform: uppercase
}

h1 {
    font-size: clamp(52px,5.5vw,80px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 820px
}

    h1 .dim {
        color: var(--gray3);
        font-weight: 800
    }

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray2);
    max-width: 480px;
    margin-bottom: 36px
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

/* LOGOS STRIP */
.logos-strip {
    padding: 36px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg)
}

.logos-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap
}

.logos-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray3);
    white-space: nowrap
}

.logos-list {
    display: flex;
    align-items: center;
    gap: 44px;
    flex: 1;
    flex-wrap: wrap
}

.logo-name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(232,214,186,0.18);
    letter-spacing: 0.05em;
    transition: color 0.3s;
    cursor: default;
    text-transform: uppercase
}

    .logo-name:hover {
        color: rgba(232,214,186,0.5)
    }

/* SECTIONS */
section {
    padding: 100px 48px
}

.container {
    max-width: 1280px;
    margin: 0 auto
}

.sec-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

    .sec-label::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--gray3)
    }

h2 {
    font-size: clamp(32px,3.5vw,48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 16px
}

    h2 .dim {
        color: var(--gray3);
        font-weight: 700
    }

.sec-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray2);
    max-width: 520px;
    margin-bottom: 52px
}

/* SERVICES */
.svc-sec {
    background: var(--bg)
}

.svc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden
}

.svc-card {
    background: var(--bg2);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s
}

    .svc-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--white);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s
    }

    .svc-card:hover {
        background: var(--bg3)
    }

        .svc-card:hover::after {
            transform: scaleX(1)
        }

.svc-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(232,214,186,0.03);
    line-height: 1
}

.svc-card-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

    .svc-card-cta .svc-cta-orb {
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(232,214,186,0.14),transparent 70%);
        pointer-events: none;
        transition: transform .5s cubic-bezier(.4,0,.2,1)
    }

    .svc-card-cta:hover .svc-cta-orb {
        transform: scale(1.3)
    }

    .svc-card-cta .svc-icon {
        background: rgba(232,214,186,0.08);
        border-color: rgba(232,214,186,0.22)
    }

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: rgba(232,214,186,0.05);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

    .svc-icon svg {
        width: 20px;
        height: 20px;
        stroke: #f3ede3;
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.svc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px
}

.svc-txt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray2);
    margin-bottom: 20px
}

.svc-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s
}

    .svc-link:hover {
        color: var(--white);
        gap: 9px
    }

    .svc-link::after {
        content: '→'
    }

/* NUMBERS */
.nums-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.nums-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.num-item {
    padding: 52px 40px;
    border-right: 1px solid var(--border)
}

    .num-item:last-child {
        border-right: none
    }

.num-val {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px
}

    .num-val .pre {
        font-size: 24px;
        color: var(--gray2)
    }

    .num-val .suf {
        font-size: 24px;
        color: var(--gray2)
    }

.num-lbl {
    font-size: 13px;
    color: var(--gray3);
    line-height: 1.5
}

/* PROCESS */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 52px
}

.proc-step {
    background: var(--bg2);
    padding: 36px 28px;
    position: relative;
    transition: background 0.3s
}

    .proc-step:hover {
        background: var(--bg3)
    }

        .proc-step:hover .p-accent {
            transform: scaleX(1)
        }

.p-num {
    font-size: 56px;
    font-weight: 800;
    color: rgba(232,214,186,0.04);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px
}

.p-dot {
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    margin-bottom: 14px;
    opacity: 0.6
}

.p-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px
}

.p-txt {
    font-size: 13px;
    line-height: 1.75;
    color: var(--gray2)
}

.p-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    opacity: 0.3
}

/* CASES */
.cases-sec {
    background: var(--bg3)
}

.cases-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 16px;
    margin-top: 52px
}

.case-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
    cursor: pointer
}

    .case-card:hover {
        border-color: var(--border2);
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.5)
    }

    .case-card.feat {
        background: rgba(232,214,186,0.03);
        border-color: var(--border2)
    }

.case-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gray2);
    background: rgba(232,214,186,0.05);
    border: 1px solid var(--border2);
    border-radius: 999px;
    padding: 4px 12px;
    width: fit-content
}

.case-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -0.3px
}

.case-mets {
    display: flex;
    gap: 20px
}

.cm-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: -1px
}

.cm-lbl {
    font-size: 11px;
    color: var(--gray3)
}

.case-read {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: all 0.2s
}

    .case-read:hover {
        color: var(--white);
        gap: 9px
    }

    .case-read::after {
        content: '→'
    }

/* TESTIMONIALS */
.testi-sec {
    background: var(--bg)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 52px
}

.testi {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: border-color 0.3s
}

    .testi:hover {
        border-color: var(--border2)
    }

.t-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px
}

.star {
    width: 12px;
    height: 12px;
    background: #f3ede3;
    opacity: 0.8;
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%)
}

.t-quote-mark {
    font-size: 40px;
    line-height: 0.8;
    color: rgba(232,214,186,0.15);
    margin-bottom: 14px;
    font-family: Georgia,serif
}

.t-quote {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray2);
    margin-bottom: 20px;
    font-style: italic
}

.t-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 16px
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #f3ede3;
    flex-shrink: 0;
    background: rgba(232,214,186,0.1);
    border: 1px solid var(--border2)
}

.t-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px
}

.t-role {
    font-size: 11px;
    color: var(--gray3)
}

/* PRICING */
.price-sec {
    background: var(--bg3)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 52px
}

.price-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    transition: all 0.3s
}

    .price-card:hover:not(.popu) {
        border-color: var(--border2);
        transform: translateY(-3px)
    }

    .price-card.popu {
        border-color: rgba(232,214,186,0.3);
        background: rgba(232,214,186,0.04);
        box-shadow: 0 0 60px rgba(232,214,186,0.03)
    }

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: #14100a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap
}

.p-tier {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray3);
    margin-bottom: 14px
}

.p-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 6px
}

    .p-price sup {
        font-size: 20px;
        font-weight: 600;
        color: var(--gray2)
    }

    .p-price sub {
        font-size: 14px;
        font-weight: 400;
        color: var(--gray3);
        letter-spacing: 0
    }

.p-desc {
    font-size: 13px;
    color: var(--gray3);
    margin-bottom: 24px;
    line-height: 1.6
}

.p-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

    .p-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--gray2)
    }

.chk {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(232,214,186,0.06);
    border: 1px solid var(--border2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .chk::after {
        content: '';
        width: 5px;
        height: 3px;
        border-left: 1.5px solid var(--white);
        border-bottom: 1.5px solid var(--white);
        transform: rotate(-45deg) translateY(-1px)
    }

/* TICKER */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    background: var(--bg2)
}

.ticker-inner {
    display: flex;
    animation: tickmove 35s linear infinite;
    white-space: nowrap
}

@keyframes tickmove {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ti {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray3);
    padding: 0 32px;
    border-right: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .ti strong {
        color: var(--gray1);
        font-weight: 700
    }

/* CTA */
.cta-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 100px 48px
}

    .cta-sec h2 {
        letter-spacing: -1.5px;
        margin-bottom: 14px
    }

.cta-note {
    font-size: 16px;
    color: var(--gray2);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(232,214,186,0.04);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 6px 6px 6px 20px
}

    .cta-row input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-family: var(--font);
        font-size: 14px;
        color: var(--white)
    }

        .cta-row input::placeholder {
            color: var(--gray3)
        }

.cta-small {
    font-size: 12px;
    color: var(--gray3);
    margin-top: 12px
}

/* FOOTER */
footer {
    background: var(--bg);
    color: var(--gray3);
    padding: 64px 48px 32px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.section-wash {
    position: relative;
    overflow: hidden
}

    .section-wash::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        background: radial-gradient(circle at 6% 10%, rgba(147,197,253,0.06), transparent 30%), radial-gradient(circle at 92% 15%, rgba(240,171,252,0.06), transparent 30%), radial-gradient(circle at 50% 92%, rgba(94,234,212,0.05), transparent 34%), radial-gradient(circle at 20% 80%, rgba(252,165,165,0.04), transparent 30%), radial-gradient(circle at 82% 78%, rgba(196,181,253,0.05), transparent 30%)
    }

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 6% 12%, rgba(147,197,253,0.09), transparent 30%), radial-gradient(circle at 30% 5%, rgba(94,234,212,0.07), transparent 28%), radial-gradient(circle at 55% 10%, rgba(240,171,252,0.08), transparent 30%), radial-gradient(circle at 80% 6%, rgba(196,181,253,0.08), transparent 30%), radial-gradient(circle at 96% 20%, rgba(252,165,165,0.07), transparent 28%), radial-gradient(circle at 8% 85%, rgba(147,197,253,0.05), transparent 32%), radial-gradient(circle at 92% 70%, rgba(240,171,252,0.05), transparent 32%), radial-gradient(circle at 50% 95%, rgba(94,234,212,0.04), transparent 38%), radial-gradient(circle at 25% 55%, rgba(252,165,165,0.04), transparent 32%), radial-gradient(circle at 75% 45%, rgba(196,181,253,0.04), transparent 32%)
}

footer .container {
    position: relative;
    z-index: 1
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.foot-brand-name {
    font-family: 'Fjalla One',sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    display: block
}

.foot-desc {
    font-size: 13px;
    line-height: 1.75;
    max-width: 240px;
    margin-bottom: 22px
}

.foot-col-h {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray2);
    margin-bottom: 14px
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .foot-links a {
        font-size: 13px;
        color: var(--gray3);
        text-decoration: none;
        transition: color 0.2s
    }

        .foot-links a:hover {
            color: var(--white)
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px
}

.socials {
    display: flex;
    gap: 8px
}

.soc {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray3);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s
}

    .soc:hover {
        border-color: var(--white);
        color: var(--white)
    }

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease,transform 0.55s ease
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0)
    }

    .reveal.d1 {
        transition-delay: .1s
    }

    .reveal.d2 {
        transition-delay: .2s
    }

    .reveal.d3 {
        transition-delay: .3s
    }

    .reveal.d4 {
        transition-delay: .4s
    }

@media(max-width:1024px) {
    nav {
        padding: 0 20px
    }

    .nav-links {
        display: none
    }

    #nav-toggle {
        display: flex !important
    }

    nav.nav-open .nav-links {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #0a0c14;
        border-bottom: 1px solid var(--border);
        padding: 8px 20px 16px
    }

        nav.nav-open .nav-links li {
            width: 100%
        }

        nav.nav-open .nav-links a {
            padding: 12px 0;
            width: 100%;
            border-bottom: 1px solid rgba(232,214,186,0.06)
        }

    section {
        padding: 64px 20px
    }

    .hero {
        padding: 112px 20px 50px;
        min-height: auto;
        align-items: flex-start
    }

    .hero-canvas, .hero-fade {
        display: none
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .nums-grid {
        grid-template-columns: 1fr 1fr
    }

    .proc-grid {
        grid-template-columns: 1fr 1fr
    }

    .cases-grid {
        grid-template-columns: 1fr 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .logos-strip {
        padding: 32px 20px
    }
}

@media(max-width:640px) {
    .svc-grid {
        grid-template-columns: 1fr
    }

    .nums-grid {
        grid-template-columns: 1fr
    }

    .proc-grid {
        grid-template-columns: 1fr
    }

    .cases-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .two-col-grid {
        grid-template-columns: 1fr !important
    }

    .auto-stack-grid {
        grid-template-columns: 1fr !important
    }

    .quote-icon-grid > div:last-child {
        order: -1;
        margin-bottom: 8px
    }

    .nav-logo img {
        height: 34px !important
    }

    .nav-logo span {
        font-size: 19px !important
    }

    .nav-right .btn-outline {
        display: none
    }

    h1 {
        font-size: clamp(28px,8vw,38px) !important;
        line-height: 1.18 !important;
        letter-spacing: -1px !important
    }

    .foot-map svg {
        max-width: 100% !important
    }

    .foot-map {
        margin-top: 20px !important
    }

    #foot-map-tip {
        max-width: 80vw;
        white-space: normal !important;
        text-align: center
    }

    .insights-scroll article {
        flex-basis: 85% !important;
        min-width: 0 !important
    }

    #insights-prev, #insights-next {
        width: 34px;
        height: 34px;
        left: 0 !important;
        right: 0 !important
    }

    #insights-prev {
        left: 2px !important
    }

    #insights-next {
        right: 2px !important
    }

    .logos-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px
    }

    .logos-list {
        gap: 22px 28px;
        flex: none;
        width: 100%
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

.foot-map-mark {
    position: relative;
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    overflow: visible
}

.kinetic-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.word-play {
    position: relative;
    z-index: 2;
    font-family: 'Fjalla One',sans-serif;
    font-weight: 900;
    font-size: clamp(34px,4.6vw,64px);
    letter-spacing: 1px;
    white-space: nowrap;
    user-select: none
}

    .word-play span {
        display: inline-block;
        color: #f3ede3;
        line-height: .85;
        opacity: 0;
        transform: translateY(28px)
    }

        .word-play span.in {
            animation: letterIn .65s cubic-bezier(.16,1,.3,1) forwards
        }

        .word-play span.out {
            animation: letterOut .4s ease-in forwards
        }

@keyframes letterIn {
    0% {
        opacity: 0;
        transform: translateY(28px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes letterOut {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(-18px)
    }
}

.orbit-terms {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.orbit-term {
    position: absolute;
    font-family: 'Inter',system-ui,sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--tc,rgba(232,214,186,0.55));
    text-shadow: 0 0 12px var(--tg,transparent);
    white-space: nowrap;
    opacity: 0;
    animation: orbitFade var(--fdur,7s) ease-in-out var(--fdelay,0s) infinite,orbitDrift var(--ddur,16s) ease-in-out infinite alternate
}

@keyframes orbitFade {
    0%,100% {
        opacity: 0
    }

    22%,55% {
        opacity: 1
    }

    78% {
        opacity: 0
    }
}

@keyframes orbitDrift {
    0% {
        transform: translate(0,0)
    }

    50% {
        transform: translate(8px,-10px)
    }

    100% {
        transform: translate(-7px,7px)
    }
}

@media(max-width:900px) {
    .foot-map-mark {
        min-height: 110px;
        margin-top: 20px;
        min-width: 0;
        width: 100%;
        flex: none
    }

    .word-play {
        font-size: clamp(26px,8vw,42px)
    }

    .foot-map-wrap {
        flex-direction: column;
        align-items: stretch !important
    }

    .orbit-terms {
        display: none
    }
}

.map-pulse {
    animation: mapPulse 2.4s ease-out infinite
}

@keyframes mapPulse {
    0% {
        r: 4;
        opacity: 0.35
    }

    100% {
        r: 15;
        opacity: 0
    }
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,214,186,0.28)
}

.insights-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(232,214,186,0.25) transparent
}

    .insights-scroll::-webkit-scrollbar {
        height: 6px
    }

    .insights-scroll::-webkit-scrollbar-thumb {
        background: rgba(232,214,186,0.2);
        border-radius: 999px
    }

#faq summary::-webkit-details-marker {
    display: none
}

#faq summary {
    position: relative;
    padding-right: 24px
}

    #faq summary::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0;
        font-size: 20px;
        color: var(--gray3);
        transition: transform .2s
    }

#faq details[open] summary::after {
    content: '−'
}

#faq details:hover summary {
    color: var(--gray1)
}

.team-row {
    display: flex;
    gap: 16px;
    align-items: stretch
}

.team-panel {
    flex: 1;
    min-width: 118px;
    background: #10121a;
    border: 1px solid rgba(232,214,186,0.1);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: flex .5s cubic-bezier(.4,0,.2,1),border-color .3s
}

.team-panel-inner {
    padding: 28px 20px;
    height: 100%;
    display: flex;
    flex-direction: column
}

.team-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    margin-bottom: 4px
}

.team-name {
    white-space: normal !important
}

.team-role {
    font-size: 11px;
    color: var(--gray3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: normal;
    line-height: 1.55;
    margin-bottom: 0
}

.team-bio {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray2);
    margin-top: 16px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .3s ease .05s,max-height .5s ease
}

.team-row:hover .team-panel {
    flex: 0.72;
    border-color: rgba(232,214,186,0.08)
}

    .team-row:hover .team-panel:hover {
        flex: 2.4;
        border-color: rgba(232,214,186,0.3)
    }

.team-panel:hover .team-bio {
    opacity: 1;
    max-height: 400px
}

@media(max-width:900px) {
    .team-row {
        flex-direction: column
    }

    .team-panel {
        flex: none !important
    }

    .team-bio {
        opacity: 1 !important;
        max-height: none !important;
        overflow: visible
    }
}
