:root {
    --blue: #0052e0;
    --blue-d: #0040c0;
    --blue-l: #e8f0ff;
    --dark: #060d1a;
    --dark2: #0f172a;
    --text: #0f172a;
    --text2: #475569;
    --text3: #94a3b8;
    --border: #e2e8f0;
    --boff: #dce8ff;
    --off: #f0f5ff;
    --font: "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

/* Section padding — tighter than before */
.sec {
    padding: 4.5rem 0
}

.sec-sm {
    padding: 3.5rem 0
}

.sec-lg {
    padding: 5rem 0
}

.rv {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .48s ease, transform .48s ease
}

.rv.in {
    opacity: 1;
    transform: none
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    padding: .72rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    transition: background .15s, transform .12s, box-shadow .18s;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

.btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 82, 224, .3)
}

.btn-blue:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 82, 224, .42)
}

.btn-blue svg {
    stroke: #fff
}

.btn-blue.lg {
    font-size: .92rem;
    padding: .82rem 1.6rem
}

.btn-ghost-d {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .13)
}

.btn-ghost-d:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-1px)
}

.btn-ghost-d svg {
    stroke: currentColor
}

.btn-ghost-l {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid rgba(0, 82, 224, .3)
}

.btn-ghost-l:hover {
    background: var(--blue-l);
    transform: translateY(-1px)
}

.btn-ghost-l svg {
    stroke: currentColor
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: .6rem
}

.chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.chip.lt {
    color: rgba(148, 187, 255, .8)
}

h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em
}

h2.wh {
    color: #fff
}

/* ════════════════════════════
   1. HERO — dark
════════════════════════════ */
.hero {
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none
}

.hg1 {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .2) 0%, rgba(99, 102, 241, .06) 45%, transparent 70%);
    pointer-events: none
}

.hg2 {
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, .07) 0%, transparent 65%);
    pointer-events: none
}

.hero-body {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero-left {
    padding-bottom: 4.5rem
}

.hero-left>* {
    animation: fadeUp .52s ease both
}

.hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.hero-left>*:nth-child(2) {
    animation-delay: .1s
}

.hero-left>*:nth-child(3) {
    animation-delay: .17s
}

.hero-left>*:nth-child(4) {
    animation-delay: .24s
}

.hero-left>*:nth-child(5) {
    animation-delay: .31s
}

.crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 1.4rem;
    flex-wrap: wrap
}

.crumb a {
    color: rgba(255, 255, 255, .38);
    text-decoration: none
}

.crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 82, 224, .14);
    border: 1px solid rgba(0, 82, 224, .3);
    border-radius: 100px;
    padding: .28rem .95rem .28rem .42rem;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(148, 196, 255, .9);
    margin-bottom: 1.6rem
}

.svc-badge-ico {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.svc-badge-ico svg {
    width: 9px;
    height: 9px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1rem
}

.hl {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .48);
    max-width: 42ch;
    margin-bottom: 1.85rem
}

.hero-btns {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.proof-row {
    display: flex;
    gap: .42rem;
    flex-wrap: wrap
}

.proof-pill {
    display: flex;
    align-items: center;
    gap: .32rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    padding: .25rem .7rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .43)
}

.proof-pill strong {
    color: rgba(255, 255, 255, .82);
    font-weight: 700
}

.pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0
}

.hero-right {
    animation: fadeUp .58s .14s ease both;
    position: relative;
    padding-bottom: 3.5rem
}

/* Keyword Dashboard Card */
.kw-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 1.35rem;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden
}

.kw-card::before {
    content: '';
    position: absolute;
    top: -35px;
    right: -35px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .14), transparent 65%)
}

.kc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem
}

.kc-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .26)
}

.kc-live {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .6rem;
    font-weight: 600;
    color: #4ade80
}

.kc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite
}

.kc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .38rem;
    margin-bottom: 1rem
}

.kc-stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 9px;
    padding: .62rem .5rem;
    text-align: center
}

.ks-v {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1
}

.ks-l {
    font-size: .56rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 3px
}

.ks-c {
    font-size: .56rem;
    color: #4ade80;
    margin-top: 2px
}

.kc-slbl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .23);
    margin-bottom: .45rem
}

.kc-rows {
    display: flex;
    flex-direction: column;
    gap: .32rem;
    margin-bottom: .95rem
}

.kw-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: .42rem .65rem
}

.kw-intent {
    font-size: .56rem;
    font-weight: 700;
    padding: .08rem .35rem;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap
}

.i-buy {
    background: rgba(0, 82, 224, .22);
    color: rgba(148, 196, 255, .9)
}

.i-com {
    background: rgba(251, 146, 60, .18);
    color: rgba(253, 186, 116, .9)
}

.i-inf {
    background: rgba(34, 197, 94, .14);
    color: rgba(134, 239, 172, .9)
}

.kw-name {
    font-size: .68rem;
    color: rgba(255, 255, 255, .6);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.kw-vol {
    font-size: .58rem;
    color: rgba(255, 255, 255, .3);
    flex-shrink: 0
}

.kw-kd {
    font-size: .58rem;
    font-weight: 700;
    flex-shrink: 0
}

.kd-lo {
    color: #4ade80
}

.kd-md {
    color: #fbbf24
}

.kc-bars {
    display: flex;
    flex-direction: column;
    gap: .38rem
}

.kb-row .kb-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: .18rem
}

.kb-nm {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38)
}

.kb-vl {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .68)
}

.kb-track {
    height: 4px;
    background: rgba(255, 255, 255, .07);
    border-radius: 100px;
    overflow: hidden
}

.kb-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.2s ease
}

.float-pill {
    position: absolute;
    bottom: -1.4rem;
    left: .875rem;
    background: rgba(10, 18, 38, .93);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 11px;
    padding: .55rem .825rem;
    display: flex;
    align-items: center;
    gap: .48rem;
    min-width: 210px;
    animation: floatY 4s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    backdrop-filter: blur(12px)
}

.fp-ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(34, 197, 94, .13);
    border: 1px solid rgba(34, 197, 94, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fp-ico svg {
    width: 12px;
    height: 12px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fp-t {
    font-size: .7rem;
    font-weight: 700;
    color: #fff
}

.fp-s {
    font-size: .58rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 1px
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 64px;
    overflow: hidden
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block
}

/* ════════════════════════════
   2. WHAT WE DO — white
════════════════════════════ */
.wwd-sec {
    background: #fff
}

.sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.sh2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.sh2 p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.7;
    margin-top: .6rem
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem
}

.wwd-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.wwd-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
    opacity: 0;
    transition: opacity .2s
}

.wwd-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 8px 24px rgba(0, 82, 224, .08);
    transform: translateY(-3px)
}

.wwd-card:hover::after {
    opacity: 1
}

.wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: .9rem
}

.wwd-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s
}

.wwd-ico svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .18s
}

.wwd-card:hover .wwd-ico {
    background: var(--blue)
}

.wwd-card:hover .wwd-ico svg {
    stroke: #fff
}

.wwd-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--border);
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .18s
}

.wwd-card:hover .wwd-num {
    color: #dce8ff
}

.wwd-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem
}

.wwd-desc {
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.68;
    margin-bottom: .85rem
}

.wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.wt {
    font-size: .63rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-l);
    padding: .16rem .52rem;
    border-radius: 100px
}

/* ════════════════════════════
   3. WHY IT MATTERS — off-blue
   Balanced: left copy, right visual stats strip
════════════════════════════ */
.why-sec {
    background: var(--off);
    border-top: 1px solid var(--boff);
    border-bottom: 1px solid var(--boff)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.why-copy {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.76;
    margin-bottom: 1.35rem
}

.why-copy strong {
    color: var(--text);
    font-weight: 700
}

.why-checks {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.75rem
}

.wck {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.5
}

.wck-tick {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.wck-tick svg {
    width: 8px;
    height: 8px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* Right side: stat cards grid 2x2 + extra card spanning full */
.why-right {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.wstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.wstat {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    transition: border-color .2s, box-shadow .2s, transform .18s;
    position: relative;
    overflow: hidden
}

.wstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), #818cf8);
    opacity: 0;
    transition: opacity .2s
}

.wstat:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 6px 18px rgba(0, 82, 224, .07);
    transform: translateY(-2px)
}

.wstat:hover::before {
    opacity: 1
}

.wstat-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .3rem
}

.wstat-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .18rem
}

.wstat-sub {
    font-size: .7rem;
    color: var(--text3);
    line-height: 1.4
}

.wstat-wide {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color .2s, box-shadow .2s, transform .18s
}

.wstat-wide:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 6px 18px rgba(0, 82, 224, .07);
    transform: translateY(-2px)
}

.wstat-wide-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 82, 224, .25)
}

.wstat-wide-ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.wstat-wide-val {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0
}

.wstat-wide-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px
}

.wstat-wide-sub {
    font-size: .7rem;
    color: var(--text3);
    line-height: 1.35
}

/* ════════════════════════════
   4. INTENT TYPES — white
   Tighter header, more compact cards
════════════════════════════ */
.intent-sec {
    background: #fff;
    border-top: 1px solid var(--border)
}

.intent-head {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: end
}

.intent-head p {
    font-size: .87rem;
    color: var(--text2);
    line-height: 1.7
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .9rem
}

.icard {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: #fff;
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.icard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 82, 224, .08);
    border-color: rgba(0, 82, 224, .18)
}

.ic-hdr {
    padding: 1.2rem 1.2rem .85rem
}

.ic-badge {
    display: inline-flex;
    align-items: center;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .18rem .58rem;
    border-radius: 100px;
    margin-bottom: .65rem
}

.ic-em {
    font-size: 1.5rem;
    display: block;
    margin-bottom: .55rem
}

.ic-hdr h3 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .28rem
}

.ic-hdr p {
    font-size: .74rem;
    color: var(--text2);
    line-height: 1.55
}

.ic-footer {
    padding: .7rem 1.2rem 1.15rem;
    border-top: 1px solid var(--border)
}

.ic-exlbl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text3);
    margin-bottom: .22rem
}

.ic-ex {
    font-size: .68rem;
    color: var(--text2);
    padding: .22rem .52rem;
    background: #f8faff;
    border-radius: 5px;
    border: 1px solid var(--border);
    margin-bottom: .2rem;
    display: block
}

.ic-buy .ic-badge {
    background: rgba(0, 82, 224, .08);
    color: var(--blue)
}

.ic-buy .ic-hdr {
    background: linear-gradient(155deg, rgba(0, 82, 224, .03) 0%, transparent 65%)
}

.ic-com .ic-badge {
    background: rgba(251, 146, 60, .1);
    color: #d97706
}

.ic-com .ic-hdr {
    background: linear-gradient(155deg, rgba(251, 146, 60, .03) 0%, transparent 65%)
}

.ic-inf .ic-badge {
    background: rgba(34, 197, 94, .1);
    color: #059669
}

.ic-inf .ic-hdr {
    background: linear-gradient(155deg, rgba(34, 197, 94, .03) 0%, transparent 65%)
}

.ic-nav .ic-badge {
    background: rgba(168, 85, 247, .1);
    color: #7c3aed
}

.ic-nav .ic-hdr {
    background: linear-gradient(155deg, rgba(168, 85, 247, .03) 0%, transparent 65%)
}

/* ════════════════════════════
   5. TOPIC CLUSTERS — off-blue
   Richer diagram with more content
════════════════════════════ */
.cluster-sec {
    background: var(--off);
    border-top: 1px solid var(--boff);
    border-bottom: 1px solid var(--boff)
}

.cluster-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.cluster-diagram {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden
}

.cluster-diagram::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .07), transparent 65%)
}

.cd-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text3);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

.cd-lbl::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    display: block
}

.cluster-hub {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.hub-row {
    display: flex;
    align-items: stretch;
    gap: .5rem
}

.hub-pill {
    border-radius: 9px;
    padding: .55rem .85rem;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start
}

.hub-pill svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.hp-main {
    background: var(--blue);
    color: #fff
}

.hp-main svg {
    stroke: #fff
}

.hp-sub {
    background: var(--blue-l);
    color: var(--blue);
    border: 1px solid rgba(0, 82, 224, .16)
}

.hp-sub svg {
    stroke: var(--blue)
}

.spokes {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1
}

.spoke {
    background: var(--off);
    color: var(--text2);
    border-radius: 7px;
    padding: .36rem .65rem;
    font-size: .68rem;
    font-weight: 500;
    border: 1px solid var(--boff);
    display: flex;
    align-items: center;
    gap: .35rem
}

.sa {
    color: rgba(0, 82, 224, .32);
    font-size: .58rem;
    flex-shrink: 0
}

/* Cluster divider */
.cd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1rem 0
}

/* Mini stats strip inside diagram */
.cd-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem
}

.cd-stat {
    text-align: center;
    padding: .55rem .3rem;
    background: var(--off);
    border-radius: 8px;
    border: 1px solid var(--boff)
}

.cd-sv {
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.03em;
    line-height: 1
}

.cd-sl {
    font-size: .58rem;
    color: var(--text3);
    margin-top: 2px;
    line-height: 1.3
}

.cluster-right h2 {
    margin: .6rem 0 .85rem
}

.cluster-right p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.72;
    margin-bottom: 1.25rem
}

.cluster-benefits {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.75rem
}

.cb {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.5
}

.cb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 5px
}

/* ════════════════════════════
   6. PROCESS — dark
════════════════════════════ */
.proc-sec {
    background: var(--dark2);
    position: relative;
    overflow: hidden
}

.proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.proc-sec::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .12) 0%, transparent 65%);
    pointer-events: none
}

.proc-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.75rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.proc-head h2 {
    margin-top: .6rem
}

/* 5-step grid with filled step boxes */
.steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 224, .35) 15%, rgba(0, 82, 224, .35) 85%, transparent);
    z-index: 0
}

.step-box {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 1.35rem 1.1rem 1.25rem;
    text-align: center;
    transition: border-color .2s, background .2s
}

.step-box:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(0, 82, 224, .25)
}

.step-box.on {
    background: rgba(0, 82, 224, .1);
    border-color: rgba(0, 82, 224, .3)
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .8rem;
    font-size: .82rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .3);
    transition: all .2s
}

.step-box.on .step-circle {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(0, 82, 224, .18)
}

.step-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .28rem;
    line-height: 1.3
}

.step-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .36);
    line-height: 1.52
}

/* ════════════════════════════
   7. TOOLS WE USE — off-blue  ← NEW
════════════════════════════ */
.tools-sec {
    background: var(--off);
    border-top: 1px solid var(--boff);
    border-bottom: 1px solid var(--boff)
}

.tools-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.25rem
}

.tools-head p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.7;
    margin-top: .6rem
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.tool-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: border-color .2s, box-shadow .2s, transform .18s
}

.tool-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 6px 18px rgba(0, 82, 224, .07);
    transform: translateY(-2px)
}

.tool-logo {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    border: 1.5px solid var(--border)
}

.tool-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem
}

.tool-use {
    font-size: .74rem;
    color: var(--text3);
    line-height: 1.4
}

/* Usage badge row */
.tool-badge-row {
    margin-top: .875rem;
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: .875rem
}

.tool-badge {
    font-size: .62rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-l);
    padding: .16rem .5rem;
    border-radius: 100px
}

/* ════════════════════════════
   8. DELIVERABLES — white
════════════════════════════ */
.deliv-sec {
    background: #fff;
    border-top: 1px solid var(--border)
}

.deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.dcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.dcard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
    opacity: 0;
    transition: opacity .2s
}

.dcard:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 8px 24px rgba(0, 82, 224, .08);
    transform: translateY(-3px)
}

.dcard:hover::after {
    opacity: 1
}

.dcard-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
    transition: background .18s
}

.dcard-ico svg {
    width: 19px;
    height: 19px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .18s
}

.dcard:hover .dcard-ico {
    background: var(--blue)
}

.dcard:hover .dcard-ico svg {
    stroke: #fff
}

.dcard h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.dcard p {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: .8rem
}

.dlist {
    display: flex;
    flex-direction: column;
    gap: .28rem
}

.dl {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .74rem;
    color: var(--text2)
}

.dl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 4px
}

/* ════════════════════════════
   9. FAQ — off-blue  ← NEW
════════════════════════════ */
.faq-sec {
    background: var(--off);
    border-top: 1px solid var(--boff);
    border-bottom: 1px solid var(--boff)
}

.faq-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 4.5rem;
    align-items: start
}

.faq-left h2 {
    margin: .6rem 0 .8rem
}

.faq-left p {
    font-size: .87rem;
    color: var(--text2);
    line-height: 1.72;
    margin-bottom: 1.75rem
}

.faq-cta {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem 1.4rem
}

.faq-cta h4 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .32rem
}

.faq-cta p {
    font-size: .78rem;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: .95rem
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .45rem
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(0, 82, 224, .22)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1.15rem;
    cursor: pointer;
    user-select: none;
    transition: background .15s
}

.faq-q:hover {
    background: #fafbff
}

.faq-qt {
    font-size: .84rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.42
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s
}

.faq-icon svg {
    width: 8px;
    height: 8px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s
}

.faq-item.open .faq-icon {
    background: var(--blue)
}

.faq-item.open .faq-icon svg {
    stroke: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.open .faq-a {
    max-height: 260px
}

.faq-ai {
    padding: .1rem 1.15rem .95rem;
    font-size: .81rem;
    color: var(--text2);
    line-height: 1.72
}

.faq-ai strong {
    color: var(--text);
    font-weight: 700
}

/* ════════════════════════════
   10. RESULTS + AUDIT — white
════════════════════════════ */
.results-sec {
    background: #fff;
    border-top: 1px solid var(--border)
}

.results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.rcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: 1.25rem 1.4rem;
    display: grid;
    grid-template-columns: 86px 2px 1fr;
    align-items: center;
    gap: 1rem;
    transition: box-shadow .2s, transform .18s, border-color .18s
}

.rcard:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
    transform: translateY(-2px);
    border-color: rgba(0, 82, 224, .18)
}

.rcard-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right
}

.rcard-div {
    width: 2px;
    height: 34px;
    background: var(--blue-l);
    border-radius: 2px;
    justify-self: center
}

.rcard-title {
    font-size: .83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .16rem;
    line-height: 1.4
}

.rcard-sub {
    font-size: .72rem;
    color: var(--text3);
    margin-bottom: .32rem
}

.rcard-tag {
    display: inline-flex;
    align-items: center;
    gap: .26rem;
    font-size: .6rem;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    padding: .13rem .48rem;
    border-radius: 100px
}

.rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.audit-card {
    background: var(--dark2);
    border-radius: 16px;
    padding: 1.65rem;
    overflow: hidden;
    position: relative
}

.audit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 82, 224, .13) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none
}

.audit-card::after {
    content: '';
    position: absolute;
    top: -45px;
    right: -45px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .17), transparent 65%);
    pointer-events: none
}

.ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.ac-ey {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(148, 196, 255, .62);
    display: flex;
    align-items: center;
    gap: .3rem
}

.ac-ey svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ac-ttl {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.02em
}

.ac-ttl span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ac-sub {
    font-size: .76rem;
    color: rgba(255, 255, 255, .36);
    line-height: 1.6
}

.ac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--font);
    font-size: .84rem;
    font-weight: 600;
    padding: .75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 82, 224, .35);
    transition: background .15s, transform .12s;
    border: none;
    cursor: pointer
}

.ac-btn:hover {
    background: var(--blue-d);
    transform: translateY(-2px)
}

.ac-btn svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ac-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .58);
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 500;
    padding: .67rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background .15s
}

.ac-ph:hover {
    background: rgba(255, 255, 255, .09)
}

.ac-ph svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ac-trust {
    display: flex;
    flex-direction: column;
    gap: .28rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.ac-ti {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .65rem;
    color: rgba(255, 255, 255, .26)
}

.ac-ti svg {
    width: 9px;
    height: 9px;
    stroke: rgba(74, 222, 128, .6);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
    .results-layout {
        grid-template-columns: 1fr 290px
    }
}

@media(max-width:1024px) {
    .hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 0
    }

    .hero-right {
        display: none
    }

    .hero-left {
        padding-bottom: 4rem
    }

    .sh {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .sh2 {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem
    }

    .wstat-grid {
        grid-template-columns: 1fr 1fr
    }

    .intent-head {
        grid-template-columns: 1fr;
        gap: .75rem
    }

    .intent-grid {
        grid-template-columns: 1fr 1fr
    }

    .cluster-inner {
        grid-template-columns: 1fr;
        gap: 2.25rem
    }

    .proc-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .steps-row::before {
        display: none
    }

    .tools-head {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .tools-grid {
        grid-template-columns: 1fr 1fr
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .results-layout {
        grid-template-columns: 1fr 270px;
        gap: 1.25rem
    }
}

@media(max-width:768px) {
    .sec {
        padding: 3.5rem 0
    }

    .sec-sm {
        padding: 3rem 0
    }

    .sec-lg {
        padding: 4rem 0
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.55rem
    }

    .hero-body {
        padding-top: 2.75rem
    }

    .hero-btns {
        flex-direction: column;
        gap: .55rem
    }

    .btn,
    .btn-blue,
    .btn-ghost-d {
        width: 100%;
        justify-content: center
    }

    .wwd-grid {
        grid-template-columns: 1fr
    }

    .intent-grid {
        grid-template-columns: 1fr
    }

    .wstat-grid {
        grid-template-columns: 1fr
    }

    .steps-row {
        grid-template-columns: 1fr
    }

    .tools-grid {
        grid-template-columns: 1fr
    }

    .deliv-grid {
        grid-template-columns: 1fr
    }

    .results-layout {
        grid-template-columns: 1fr
    }

    .rcard {
        grid-template-columns: 72px 2px 1fr;
        gap: .85rem;
        padding: 1rem 1.15rem
    }

    .rcard-num {
        font-size: 1.65rem
    }
}

@media(max-width:480px) {
    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.38rem
    }

    .wwd-card,
    .dcard {
        padding: 1.25rem
    }

    .rcard {
        grid-template-columns: 65px 2px 1fr;
        gap: .7rem;
        padding: .9rem
    }

    .rcard-num {
        font-size: 1.45rem
    }

    .audit-card {
        padding: 1.35rem
    }

    .sh>div:last-child,
    .sh2>div:last-child,
    .tools-head>div:last-child {
        display: none
    }

    .btn-ghost-l {
        width: 100%;
        justify-content: center
    }
}

@media(max-width:380px) {
    h1 {
        font-size: 1.62rem
    }

    h2 {
        font-size: 1.25rem
    }
}