*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #0052e0;
    --blue-d: #003bb5;
    --blue-l: #e8f0ff;
    --teal: #00bfa8;
    --purple: #7c3aed;
    --amber: #f59e0b;
    --green: #16a34a;
    --red: #dc2626;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --off: #f8fafc;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
    background: #fff
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font);
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: transform .14s, box-shadow .18s;
    white-space: nowrap;
    font-size: .92rem;
    text-decoration: none
}

.btn-p {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    color: #fff;
    padding: .85rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 82, 224, .38)
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .5)
}

.btn-g {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .88);
    padding: .82rem 1.6rem
}

.btn-g:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-1px)
}

.btn-o {
    background: transparent;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    padding: .78rem 1.5rem
}

.btn-o:hover {
    background: var(--blue-l);
    transform: translateY(-1px)
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    border-radius: 100px;
    padding: .28rem .9rem
}

.tag-b {
    background: var(--blue-l);
    color: var(--blue)
}

.tag-d {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.tag-t {
    background: rgba(0, 191, 168, .12);
    color: #007a6e
}

.tag-pu {
    background: rgba(124, 58, 237, .1);
    color: var(--purple)
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 224, .35)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 82, 224, 0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes scorerise {
    from {
        stroke-dashoffset: 283
    }

    to {
        stroke-dashoffset: var(--offset)
    }
}

@keyframes slidein {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ======= HERO ======= */
.hero {
    background: #060d1a;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 30%, transparent 100%)
}

.horb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.ho1 {
    top: -20%;
    right: -6%;
    width: min(680px, 72vw);
    height: min(680px, 72vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .2), transparent 65%)
}

.ho2 {
    bottom: -30%;
    left: -8%;
    width: min(500px, 58vw);
    height: min(500px, 58vw);
    background: radial-gradient(circle, rgba(0, 191, 168, .12), transparent 65%)
}

.ho3 {
    top: 30%;
    left: 15%;
    width: min(260px, 32vw);
    height: min(260px, 32vw);
    background: radial-gradient(circle, rgba(124, 58, 237, .07), transparent 65%)
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 5rem
}

.hbadges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem
}

.hbg {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 100px;
    padding: .26rem .85rem;
    font-size: .7rem;
    font-weight: 700
}

.hbg-b {
    background: rgba(0, 82, 224, .2);
    border: 1px solid rgba(0, 82, 224, .4);
    color: rgba(148, 196, 255, .9)
}

.hbg-g {
    background: rgba(22, 163, 74, .15);
    border: 1px solid rgba(22, 163, 74, .3);
    color: rgba(134, 239, 172, .9)
}

.hbg-r {
    background: rgba(220, 38, 38, .15);
    border: 1px solid rgba(220, 38, 38, .3);
    color: rgba(252, 165, 165, .9)
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite;
    flex-shrink: 0
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.046em;
    color: #fff;
    margin-bottom: 1.4rem
}

.gt {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #00e5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hdesc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.85;
    max-width: 50ch;
    margin-bottom: 2.25rem
}

.hbtns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hchips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.chip {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .2rem .7rem
}

/* Hero right — score card */
.score-card {
    background: linear-gradient(150deg, #0d1829, #0f1e3a);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 82, 224, .12);
    padding: 1.5rem
}

.sc-title {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.sc-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .07)
}

.score-ring-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem
}

.score-ring {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0
}

.score-ring svg {
    transform: rotate(-90deg);
    width: 90px;
    height: 90px
}

.score-ring circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round
}

.sr-bg {
    stroke: rgba(255, 255, 255, .07)
}

.sr-fg {
    stroke: #4ade80;
    stroke-dasharray: 283;
    animation: scorerise 1.8s ease forwards
}

.score-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.score-num span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--mono);
    line-height: 1
}

.score-num small {
    font-size: .55rem;
    color: rgba(255, 255, 255, .3);
    font-weight: 600;
    letter-spacing: .08em
}

.score-vitals {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.sv-item {
    display: flex;
    align-items: center;
    gap: .625rem
}

.sv-label {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    width: 60px;
    flex-shrink: 0;
    font-family: var(--mono)
}

.sv-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden
}

.sv-fill {
    height: 100%;
    border-radius: 10px;
    transition: width .8s ease
}

.sv-good {
    background: linear-gradient(90deg, #4ade80, #22d3ee)
}

.sv-med {
    background: linear-gradient(90deg, #fbbf24, #f97316)
}

.sv-val {
    font-size: .65rem;
    font-weight: 700;
    font-family: var(--mono);
    color: rgba(255, 255, 255, .55);
    width: 38px;
    text-align: right;
    flex-shrink: 0
}

.sc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .625rem
}

.sc-metric {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: .6rem .75rem;
    text-align: center
}

.scm-val {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--mono)
}

.scm-lbl {
    font-size: .58rem;
    color: rgba(255, 255, 255, .28);
    margin-top: .15rem
}

.sc-foot {
    margin-top: 1rem;
    padding: .7rem 1rem;
    background: rgba(0, 191, 168, .08);
    border: 1px solid rgba(0, 191, 168, .18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: .6rem
}

.scf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 1.8s infinite;
    flex-shrink: 0
}

.scf-txt {
    font-size: .67rem;
    font-family: var(--mono);
    color: rgba(148, 196, 255, .55)
}

/* ======= TICKER ======= */
.ticker {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent)
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent)
}

.ttrack {
    display: flex;
    white-space: nowrap;
    animation: ticker 35s linear infinite
}

.ti {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 0 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted)
}

.ti svg {
    width: 13px;
    height: 13px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

.tdot {
    padding: 0 .5rem;
    color: var(--border)
}

/* ======= SECTION HEADERS ======= */
.shead {
    text-align: center;
    margin-bottom: 3.5rem
}

.shead h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.shead p {
    font-size: .95rem;
    color: var(--muted);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

/* ======= STATS ======= */
.stats {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: relative;
    overflow: hidden
}

.sgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.sitem {
    position: relative;
    text-align: center;
    padding: 2rem 1.25rem 1.75rem;
    border-right: 1px solid var(--border);
    transition: background .2s;
    overflow: hidden
}

.sitem:last-child {
    border-right: none
}

.sitem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    transition: width .3s ease
}

.sitem:nth-child(1)::after {
    background: linear-gradient(90deg, #0052e0, #4f46e5)
}

.sitem:nth-child(2)::after {
    background: linear-gradient(90deg, #059669, #0891b2)
}

.sitem:nth-child(3)::after {
    background: linear-gradient(90deg, #7c3aed, #00bfa8)
}

.sitem:nth-child(4)::after {
    background: linear-gradient(90deg, #f59e0b, #ef4444)
}

.sitem:hover {
    background: var(--off)
}

.sitem:hover::after {
    width: 60%
}

.sico-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .875rem;
    font-size: 1.1rem
}

.sitem:nth-child(1) .sico-wrap {
    background: rgba(0, 82, 224, .08)
}

.sitem:nth-child(2) .sico-wrap {
    background: rgba(5, 150, 105, .08)
}

.sitem:nth-child(3) .sico-wrap {
    background: rgba(124, 58, 237, .08)
}

.sitem:nth-child(4) .sico-wrap {
    background: rgba(245, 158, 11, .08)
}

.sval {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.05em;
    color: var(--text);
    line-height: 1;
    margin-bottom: .3rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px
}

.sval b {
    font-size: 1.15rem;
    font-weight: 800
}

.sitem:nth-child(1) .sval b {
    color: #0052e0
}

.sitem:nth-child(2) .sval b {
    color: #059669
}

.sitem:nth-child(3) .sval b {
    color: #7c3aed
}

.sitem:nth-child(4) .sval b {
    color: #f59e0b
}

.slbl {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 17ch;
    margin: 0 auto
}

/* ======= WHAT WE FIX ======= */
.fix-sec {
    background: #fff;
    padding: 6rem 0
}

.fix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.fix-card {
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden
}

.fix-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none
}

.fix-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 12px 40px rgba(0, 82, 224, .08)
}

.fix-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 82, 224, .02), transparent)
}

.fix-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.1rem
}

.fix-ico-b {
    background: rgba(0, 82, 224, .08)
}

.fix-ico-t {
    background: rgba(0, 191, 168, .1)
}

.fix-ico-pu {
    background: rgba(124, 58, 237, .08)
}

.fix-ico-g {
    background: rgba(22, 163, 74, .08)
}

.fix-ico-a {
    background: rgba(245, 158, 11, .08)
}

.fix-ico-r {
    background: rgba(220, 38, 38, .08)
}

.fix-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .5rem;
    letter-spacing: -.02em
}

.fix-desc {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.72
}

.fix-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: 1rem
}

.fix-tag {
    font-size: .62rem;
    font-weight: 600;
    padding: .15rem .55rem;
    border-radius: 100px;
    background: var(--blue-l);
    color: var(--blue)
}

.fix-tag-t {
    background: rgba(0, 191, 168, .1);
    color: #007a6e
}

.fix-tag-pu {
    background: rgba(124, 58, 237, .08);
    color: var(--purple)
}

.fix-tag-g {
    background: rgba(22, 163, 74, .08);
    color: #15803d
}

/* ======= CORE WEB VITALS ======= */
.cwv-sec {
    background: var(--off);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.cwv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.cwv-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 1rem
}

.cwv-left p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 2rem
}

.cwv-checks {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.cwv-check {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: .875rem 1rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    transition: border-color .2s
}

.cwv-check:hover {
    border-color: rgba(0, 82, 224, .25)
}

.cvc-ico {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.cvc-body {
    flex: 1
}

.cvc-title {
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.cvc-desc {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.55
}

.cvc-score {
    font-size: .72rem;
    font-weight: 800;
    font-family: var(--mono);
    padding: .2rem .6rem;
    border-radius: 100px
}

.good {
    background: #dcfce7;
    color: #15803d
}

.med {
    background: #fef9c3;
    color: #a16207
}

/* CWV Right — visual dashboard */
.cwv-dash {
    background: linear-gradient(150deg, #060d1a, #0d1b30);
    border-radius: 22px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4)
}

.cwv-dash-title {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 1.5rem
}

.cwv-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.cwv-bar-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
    align-items: center
}

.cwv-bar-label {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .35rem
}

.cwv-bar-sub {
    font-size: .62rem;
    color: rgba(255, 255, 255, .28)
}

.cwv-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden
}

.cwv-bar-fill {
    height: 100%;
    border-radius: 10px
}

.cwv-bar-fill-g {
    background: linear-gradient(90deg, #4ade80, #22d3ee)
}

.cwv-bar-fill-b {
    background: linear-gradient(90deg, #60a5fa, #818cf8)
}

.cwv-bar-fill-t {
    background: linear-gradient(90deg, #2dd4bf, #6ee7b7)
}

.cwv-bar-val {
    font-size: .72rem;
    font-weight: 800;
    font-family: var(--mono);
    color: #4ade80;
    text-align: right
}

.cwv-bar-old {
    font-size: .6rem;
    color: rgba(255, 255, 255, .25);
    text-decoration: line-through;
    text-align: right
}

.cwv-dash-foot {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .625rem
}

.cwv-df-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: .625rem;
    text-align: center
}

.cwv-df-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--mono)
}

.cwv-df-lbl {
    font-size: .58rem;
    color: rgba(255, 255, 255, .28);
    margin-top: .2rem
}

/* ======= PROCESS ======= */
.proc-sec {
    background: #fff;
    padding: 6rem 0
}

.procgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative
}

.procgrid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1px;
    background: linear-gradient(90deg, var(--blue-l), rgba(0, 82, 224, .3), var(--blue-l));
    z-index: 0
}

.proc-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    transition: border-color .2s, transform .2s, box-shadow .2s
}

.proc-step:hover {
    border-color: rgba(0, 82, 224, .35);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 82, 224, .08)
}

.proc-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #4f46e5);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--mono);
    box-shadow: 0 4px 14px rgba(0, 82, 224, .3)
}

.proc-ico {
    font-size: 1.5rem;
    margin-bottom: .75rem
}

.proc-title {
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: .5rem;
    letter-spacing: -.02em
}

.proc-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.65
}

/* ======= SERVICES BREAKDOWN ======= */
.svc-sec {
    background: var(--off);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.svc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.svc-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .875rem;
    border-radius: 12px;
    cursor: pointer;
    border: 1.5px solid transparent;
    background: transparent;
    transition: all .15s;
    font-family: var(--font);
    width: 100%;
    text-align: left
}

.svc-item.act {
    background: #fff;
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 4px 16px rgba(0, 82, 224, .07)
}

.svc-item:hover:not(.act) {
    background: rgba(255, 255, 255, .7)
}

.si-ico {
    font-size: 1.1rem;
    flex-shrink: 0
}

.si-label {
    font-size: .84rem;
    font-weight: 700;
    color: var(--text)
}

.si-sub {
    font-size: .68rem;
    color: var(--muted)
}

.si-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
    background: var(--blue)
}

.svc-panel {
    display: none
}

.svc-panel.act {
    display: block
}

.sp-hero {
    background: linear-gradient(135deg, #060d1a, #0d1b30);
    border-radius: 20px;
    padding: 2rem 2rem 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden
}

.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .06) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000, transparent);
    mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000, transparent)
}

.sp-hero-in {
    position: relative;
    z-index: 1
}

.sp-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 1rem;
    flex-wrap: wrap
}

.sp-title-row {
    display: flex;
    align-items: center;
    gap: .875rem
}

.sp-icon {
    font-size: 2.2rem
}

.sp-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1
}

.sp-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    margin-top: .25rem
}

.sp-badges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.sp-badge {
    font-size: .65rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .55)
}

.sp-desc-txt {
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.78;
    max-width: 62ch;
    margin-bottom: 1.5rem
}

.sp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.sp-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem
}

.sp-card-h {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.sp-card-h::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

.sp-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.sp-li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8rem;
    color: var(--text);
    line-height: 1.5
}

.sp-li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    font-size: .75rem;
    margin-top: .1rem;
    flex-shrink: 0
}

/* ======= WHY IT MATTERS ======= */
.why-sec {
    background: #fff;
    padding: 6rem 0
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.why-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 1rem
}

.why-left p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 1.5rem
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.why-stat {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem
}

.ws-val {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--blue);
    line-height: 1;
    margin-bottom: .2rem
}

.ws-lbl {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.5
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.why-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color .2s, transform .2s
}

.why-card:hover {
    border-color: rgba(0, 82, 224, .25);
    transform: translateX(4px)
}

.wc-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(0, 82, 224, .08)
}

.wc-body {
    flex: 1
}

.wc-title {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.wc-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6
}

/* ======= RESULTS ======= */
.results-sec {
    background: var(--off);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.resgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.res-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.res-card:hover {
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 12px 40px rgba(0, 82, 224, .08);
    transform: translateY(-4px)
}

.rc-industry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.rc-ind-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted)
}

.rc-flag {
    font-size: 1.2rem
}

.rc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .625rem;
    margin-bottom: 1.25rem
}

.rc-metric {
    text-align: center;
    padding: .625rem .5rem;
    background: var(--off);
    border-radius: 10px
}

.rcm-val {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -.03em
}

.rcm-val.up {
    color: var(--green)
}

.rcm-val.down {
    color: var(--blue)
}

.rcm-lbl {
    font-size: .58rem;
    color: var(--muted);
    margin-top: .15rem;
    line-height: 1.3
}

.rc-quote {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.65;
    font-style: italic;
    border-left: 2px solid var(--blue-l);
    padding-left: .875rem;
    margin-bottom: 1rem
}

.rc-client {
    display: flex;
    align-items: center;
    gap: .625rem
}

.rc-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.rc-name {
    font-size: .78rem;
    font-weight: 700
}

.rc-role {
    font-size: .68rem;
    color: var(--muted)
}

/* ======= FAQ ======= */
.faq-sec {
    background: #fff;
    padding: 6rem 0
}

.faqlyt {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start
}

.faqstk {
    position: sticky;
    top: 6rem
}

.faqstk h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.03em;
    margin-bottom: .875rem
}

.faqstk p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.faqitem {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .15s
}

.faqitem.open {
    border-color: rgba(0, 82, 224, .3)
}

.faqq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text);
    gap: 1rem
}

.faqico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    transition: transform .2s, border-color .2s;
    flex-shrink: 0
}

.faqitem.open .faqico {
    transform: rotate(45deg);
    border-color: var(--blue);
    color: var(--blue)
}

.faqa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.75;
    padding: 0 1.25rem
}

.faqitem.open .faqa {
    max-height: 300px;
    padding: .125rem 1.25rem 1.25rem
}

/* ======= CTA ======= */
.cta-sec {
    background: #060d1a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .06) 1px, transparent 1px);
    background-size: 56px 56px
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.cta-o1 {
    top: -20%;
    right: -8%;
    width: min(500px, 55vw);
    height: min(500px, 55vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .18), transparent 65%)
}

.cta-o2 {
    bottom: -20%;
    left: -6%;
    width: min(400px, 45vw);
    height: min(400px, 45vw);
    background: radial-gradient(circle, rgba(0, 191, 168, .1), transparent 65%)
}

.cta-in {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.cta-in h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1rem
}

.cta-in p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem
}

.cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center
}

.cta-chip {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .2rem .7rem
}

/* ======= FOOTER ======= */
.footer {
    background: #060d1a;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 3rem 0 2rem
}

.footer-in {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem
}

.fl-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.fl-brand span {
    color: var(--blue)
}

.fl-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28);
    line-height: 1.7;
    max-width: 26ch;
    margin-bottom: 1rem
}

.fl-locs {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.fl-loc {
    font-size: .65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: .15rem .5rem
}

.fcol h5 {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 1rem
}

.fcol {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.fcol h5 {
    margin-bottom: .25rem
}

.fcol a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .38);
    transition: color .15s
}

.fcol a:hover {
    color: rgba(255, 255, 255, .7)
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.footer-bot p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .22)
}

/* ======= RESPONSIVE ======= */
@media(max-width:1024px) {
    .hero-in {
        grid-template-columns: 1fr;
        padding-bottom: 3rem
    }

    .cwv-layout,
    .why-grid {
        grid-template-columns: 1fr
    }

    .svc-layout {
        grid-template-columns: 1fr
    }

    .svc-item {
        width: auto
    }

    .procgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .resgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faqlyt {
        grid-template-columns: 1fr
    }

    .faqstk {
        position: static
    }

    .footer-in {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }
}

@media(max-width:640px) {
    .fix-grid {
        grid-template-columns: 1fr
    }

    .sgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .procgrid {
        grid-template-columns: 1fr
    }

    .resgrid {
        grid-template-columns: 1fr
    }

    .footer-in {
        grid-template-columns: 1fr
    }

    .sp-cards {
        grid-template-columns: 1fr
    }

    .why-stats {
        grid-template-columns: 1fr 1fr
    }
}