*,
*::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;
    --orange: #ea580c;
    --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
}

a {
    text-decoration: none
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px)
}

/* ANIMATIONS */
@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@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 scan {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(400%)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes countup {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* SCROLL REVEAL */
.sr {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease
}

.sr.in {
    opacity: 1;
    transform: none
}

.sr-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .65s ease, transform .65s ease
}

.sr-l.in {
    opacity: 1;
    transform: none
}

.sr-r {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .65s ease, transform .65s ease
}

.sr-r.in {
    opacity: 1;
    transform: none
}

/* BUTTONS */
.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)
}

/* TAGS */
.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)
}

.tag-o {
    background: rgba(234, 88, 12, .1);
    color: var(--orange)
}

/* ===================== HERO ===================== */
.hero {
    background: #060d1a;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column
}

.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;
    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: -15%;
    right: -4%;
    width: min(700px, 75vw);
    height: min(700px, 75vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .18), transparent 65%)
}

.ho2 {
    bottom: -20%;
    left: -6%;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(circle, rgba(0, 191, 168, .1), transparent 65%)
}

.ho3 {
    top: 40%;
    left: 10%;
    width: min(280px, 35vw);
    height: min(280px, 35vw);
    background: radial-gradient(circle, rgba(124, 58, 237, .08), transparent 65%)
}

.hero-in {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    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-o {
    background: rgba(234, 88, 12, .15);
    border: 1px solid rgba(234, 88, 12, .3);
    color: rgba(253, 186, 116, .9)
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite;
    flex-shrink: 0
}

.hero h1 {
    font-size: clamp(2.5rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    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: 1rem;
    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
}

/* AUDIT SCORE CARD */
.audit-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);
    animation: float 6s ease-in-out infinite
}

.ac-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: .875rem 1.25rem;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.acd {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.acd1 {
    background: #ff5f57
}

.acd2 {
    background: #ffbd2e
}

.acd3 {
    background: #28ca41
}

.ac-url {
    font-family: var(--mono);
    font-size: .68rem;
    color: rgba(255, 255, 255, .2);
    margin-left: .4rem;
    flex: 1
}

.ac-live {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    font-weight: 700;
    color: #4ade80
}

.ac-ldot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 1.8s infinite
}

/* scan line */
.ac-scan-wrap {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, .03);
    overflow: hidden
}

.ac-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 224, .6), transparent);
    animation: scan 2.5s linear infinite
}

/* overall score */
.ac-score-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem 1rem
}

.big-ring {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0
}

.big-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.big-ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.big-ring-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em
}

.big-ring-lbl {
    font-size: .52rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 1px
}

.ac-score-info h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: .2rem
}

.ac-score-info p {
    font-size: .74rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.6
}

.ac-score-info .ac-issues {
    display: flex;
    gap: .625rem;
    margin-top: .5rem
}

.ac-issue {
    font-size: .64rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 100px
}

.ac-issue-r {
    background: rgba(220, 38, 38, .2);
    color: #f87171
}

.ac-issue-y {
    background: rgba(245, 158, 11, .2);
    color: #fbbf24
}

.ac-issue-g {
    background: rgba(22, 163, 74, .2);
    color: #4ade80
}

/* category scores */
.ac-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.ac-cat {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: .75rem;
    display: flex;
    align-items: center;
    gap: .625rem
}

.ac-cat-ring {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0
}

.ac-cat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.ac-cat-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 800;
    color: #fff
}

.ac-cat-name {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    line-height: 1.2
}

.ac-cat-lbl {
    font-size: .6rem;
    color: rgba(255, 255, 255, .28);
    margin-top: .1rem
}

/* issues list */
.ac-issues-list {
    padding: .5rem 1.25rem .875rem
}

.ac-issue-row {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    animation: slideIn .4s ease both
}

.ac-issue-row:last-child {
    border-bottom: none
}

.ac-sev {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.ac-sev-r {
    background: #f87171
}

.ac-sev-y {
    background: #fbbf24
}

.ac-sev-g {
    background: #4ade80
}

.ac-issue-txt {
    font-size: .72rem;
    color: rgba(255, 255, 255, .52);
    flex: 1;
    line-height: 1.3
}

.ac-issue-tag {
    font-size: .58rem;
    font-weight: 700;
    padding: .1rem .45rem;
    border-radius: 4px
}

.ac-ft {
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .5rem
}

.ac-fdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: blink 1.5s infinite
}

.ac-ftxt {
    font-size: .63rem;
    font-family: var(--mono);
    color: rgba(148, 196, 255, .45)
}

/* ===================== 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 28s 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)
}

/* ===================== STATS ===================== */
.stats {
    background: #fff;
    border-bottom: 1px solid var(--border)
}

.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, #ea580c, #f59e0b)
}

.sitem:nth-child(4)::after {
    background: linear-gradient(90deg, #7c3aed, #00bfa8)
}

.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(234, 88, 12, .08)
}

.sitem:nth-child(4) .sico-wrap {
    background: rgba(124, 58, 237, .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: #ea580c
}

.sitem:nth-child(4) .sval b {
    color: #7c3aed
}

.slbl {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 17ch;
    margin: 0 auto
}

/* ===================== WHAT IS AUDIT ===================== */
.intro-sec {
    background: #fff;
    padding: 6rem 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.sh2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 1rem
}

.sdesc {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 1.5rem
}

.cklist {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 2rem
}

.cki {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    line-height: 1.6
}

.ckico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052e0, #00bfa8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 800
}

.sbtns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

/* audit deliverables card */
.deliv-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.deliv-hd {
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.deliv-hd h4 {
    font-size: .82rem;
    font-weight: 700
}

.deliv-badge {
    font-size: .62rem;
    font-weight: 700;
    background: var(--blue-l);
    color: var(--blue);
    border-radius: 100px;
    padding: .18rem .6rem
}

.deliv-list {
    padding: .5rem 0
}

.deliv-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s
}

.deliv-row:last-child {
    border-bottom: none
}

.deliv-row:hover {
    background: #fff
}

.deliv-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.deliv-name {
    font-size: .84rem;
    font-weight: 600;
    flex: 1
}

.deliv-pages {
    font-size: .72rem;
    color: var(--muted);
    font-family: var(--mono)
}

.deliv-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0
}

/* ===================== AUDIT CATEGORIES (TABS) ===================== */
.cats-sec {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0
}

.shead {
    text-align: center;
    margin-bottom: 2.5rem
}

.shead h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.shead p {
    font-size: .95rem;
    color: var(--muted);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.tnav {
    display: flex;
    gap: .375rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: .375rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none
}

.tnav::-webkit-scrollbar {
    display: none
}

.tbtn {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    padding: .55rem 1.1rem;
    border-radius: 9px;
    cursor: pointer;
    color: var(--muted);
    border: none;
    background: transparent;
    font-family: var(--font);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .12s, color .12s
}

.tbtn:hover {
    background: var(--off);
    color: var(--text)
}

.tbtn.act {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 82, 224, .3)
}

.tpanel {
    display: none
}

.tpanel.act {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: fadein .3s ease
}

.tcopy h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: .75rem;
    line-height: 1.2
}

.tcopy p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem
}

.tsteps {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.tstep {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: .875rem 1rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px
}

.tsn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px
}

.tst {
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: .16rem
}

.tsd {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.55
}

/* right panel */
.tvis {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden
}

.tvh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .875rem 1.25rem;
    background: var(--off);
    border-bottom: 1px solid var(--border)
}

.tvtit {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted)
}

.tvbdg {
    font-size: .62rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 100px
}

.tvbody {
    padding: 1.25rem
}

.brow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .875rem
}

.brow:last-child {
    margin-bottom: 0
}

.blbl {
    font-size: .74rem;
    color: var(--muted);
    width: 130px;
    flex-shrink: 0
}

.btrack {
    flex: 1;
    height: 8px;
    background: var(--off);
    border-radius: 100px;
    overflow: hidden
}

.bfill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1)
}

.bval {
    font-size: .72rem;
    font-weight: 700;
    width: 36px;
    text-align: right;
    flex-shrink: 0
}

/* issue table */
.issue-table {
    margin: 0 1.25rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.it-hd {
    display: grid;
    grid-template-columns: 1fr 80px 70px;
    padding: .5rem .875rem;
    background: var(--off);
    border-bottom: 1px solid var(--border);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted)
}

.it-row {
    display: grid;
    grid-template-columns: 1fr 80px 70px;
    padding: .6rem .875rem;
    border-bottom: 1px solid #f8fafc;
    font-size: .75rem;
    align-items: center;
    transition: background .15s
}

.it-row:last-child {
    border-bottom: none
}

.it-row:hover {
    background: #fafbff
}

.it-name {
    font-weight: 500;
    color: var(--text)
}

.it-sev {
    font-size: .62rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
    width: fit-content
}

.sev-hi {
    background: #fee2e2;
    color: #b91c1c
}

.sev-md {
    background: #fff7ed;
    color: #c2410c
}

.sev-lo {
    background: #f0fdf4;
    color: #15803d
}

.it-impact {
    font-size: .68rem;
    font-family: var(--mono);
    color: var(--muted);
    text-align: center
}

/* kpi row */
.tvextra {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: .25rem
}

.tvextra-title {
    font-size: .63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted);
    padding: .875rem 0 .625rem
}

.tvkpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .625rem
}

.tvkpi {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem .625rem;
    text-align: center
}

.tvkpiv {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .2rem
}

.tvkpil {
    font-size: .62rem;
    color: var(--muted);
    line-height: 1.35
}

/* crawl viz */
.crawl-viz {
    margin: 0 1.25rem 1.25rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem
}

.cv-title {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .75rem
}

.cv-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem
}

.cv-row:last-child {
    margin-bottom: 0
}

.cv-node {
    font-size: .68rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 6px;
    white-space: nowrap
}

.cv-home {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    color: #fff
}

.cv-ok {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0
}

.cv-warn {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa
}

.cv-err {
    background: #fff0f0;
    color: #b91c1c;
    border: 1px solid #fecaca
}

.cv-arr {
    color: #94a3b8;
    font-size: .75rem
}

/* speed gauge */
.speed-gauge {
    margin: 0 1.25rem 1.25rem
}

.sg-items {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.sg-row {
    display: flex;
    align-items: center;
    gap: .75rem
}

.sg-lbl {
    font-size: .72rem;
    color: var(--muted);
    width: 100px;
    flex-shrink: 0
}

.sg-bar {
    flex: 1;
    height: 10px;
    background: var(--off);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.sg-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1)
}

.sg-val {
    font-size: .7rem;
    font-weight: 700;
    width: 50px;
    text-align: right;
    flex-shrink: 0;
    font-family: var(--mono)
}

/* kw table */
.kw-table {
    margin: 0 1.25rem 1.25rem
}

.kw-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem .875rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: .375rem;
    font-size: .75rem;
    transition: border-color .15s
}

.kw-row:hover {
    border-color: rgba(0, 82, 224, .25)
}

.kw-name {
    flex: 1;
    font-weight: 600
}

.kw-vol {
    font-family: var(--mono);
    font-size: .68rem;
    color: var(--muted);
    width: 55px;
    text-align: right
}

.kw-pos {
    font-size: .68rem;
    font-weight: 800;
    width: 36px;
    text-align: center;
    border-radius: 4px;
    padding: .1rem 0
}

.kw-pos.top {
    background: #dcfce7;
    color: #15803d
}

.kw-pos.mid {
    background: #fff7ed;
    color: #c2410c
}

.kw-pos.bot {
    background: #fee2e2;
    color: #b91c1c
}

.kw-gap {
    font-size: .65rem;
    font-weight: 700;
    color: var(--blue);
    font-family: var(--mono);
    width: 40px;
    text-align: right
}

/* backlink metrics */
.bl-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
    margin: 0 1.25rem 1.25rem
}

.bl-met {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .875rem;
    text-align: center
}

.bl-met-val {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .18rem
}

.bl-met-lbl {
    font-size: .62rem;
    color: var(--muted);
    line-height: 1.35
}

/* content gaps */
.gap-list {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    margin: 0 1.25rem 1.25rem
}

.gap-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .55rem .875rem;
    border-radius: 8px;
    font-size: .75rem;
    border: 1px solid
}

.gap-item.missing {
    background: #fff8f8;
    color: #991b1b;
    border-color: #fecaca
}

.gap-item.partial {
    background: #fff7ed;
    color: #92400e;
    border-color: #fed7aa
}

.gap-item.covered {
    background: #f0fdf4;
    color: #14532d;
    border-color: #bbf7d0
}

.gap-ico {
    font-size: .82rem;
    flex-shrink: 0
}

/* ===================== PROCESS DARK ===================== */
.proc-sec {
    background: linear-gradient(160deg, #060d1a, #0d1b30);
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent)
}

.procsh {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1
}

.procsh h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: .75rem
}

.procsh p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .4);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.procgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1
}

.pcard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 1.5rem;
    transition: background .2s, border-color .2s, transform .2s;
    position: relative;
    overflow: hidden
}

.pcard::before {
    content: attr(data-n);
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--mono);
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none
}

.pcard:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(0, 82, 224, .35);
    transform: translateY(-4px)
}

.pnum {
    font-size: .68rem;
    font-weight: 800;
    font-family: var(--mono);
    color: rgba(0, 82, 224, .65);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .875rem
}

.pico {
    font-size: 1.6rem;
    margin-bottom: .75rem
}

.pcard h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem
}

.pcard p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.7
}

.ptags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: .75rem
}

.ptag {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(148, 196, 255, .65);
    background: rgba(0, 82, 224, .15);
    border: 1px solid rgba(0, 82, 224, .25);
    border-radius: 100px;
    padding: .12rem .5rem
}

/* timeline */
.ptl {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    flex-wrap: wrap
}

.ptli {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 80px;
    position: relative
}

.ptli::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .18)
}

.ptli:last-child::after {
    display: none
}

.ptday {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em
}

.ptlbl {
    font-size: .66rem;
    color: rgba(255, 255, 255, .33);
    margin-top: .18rem
}

/* ===================== WHAT YOU GET ===================== */
.get-sec {
    background: #fff;
    padding: 6rem 0
}

.get-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.get-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.get-card:hover {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .07);
    transform: translateY(-4px)
}

.get-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem
}

.get-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.get-card p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7
}

.get-tag {
    display: inline-block;
    margin-top: .75rem;
    font-size: .62rem;
    font-weight: 700;
    border-radius: 4px;
    padding: .14rem .5rem
}

/* ===================== SCORE SIMULATOR ===================== */
.sim-sec {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0
}

.simlyt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start
}

/* issues picker */
.sim-issues {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.sim-ih {
    padding: 1rem 1.5rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    background: var(--off);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sim-ihcount {
    font-size: .68rem;
    font-weight: 700;
    background: var(--blue);
    color: #fff;
    border-radius: 100px;
    padding: .1rem .55rem
}

.sim-rows {
    padding: .375rem 0
}

.sim-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem 1.5rem;
    border-bottom: 1px solid #f8fafc;
    transition: background .15s
}

.sim-row:last-child {
    border-bottom: none
}

.sim-row:hover {
    background: #fafbff
}

.sim-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0
}

.sim-name {
    font-size: .82rem;
    font-weight: 600;
    flex: 1
}

.sim-sev {
    font-size: .6rem;
    font-weight: 700;
    padding: .12rem .45rem;
    border-radius: 4px;
    flex-shrink: 0
}

.sim-gain {
    font-size: .75rem;
    font-weight: 800;
    font-family: var(--mono);
    width: 52px;
    text-align: right;
    flex-shrink: 0
}

.tog {
    width: 44px;
    height: 24px;
    border-radius: 100px;
    background: #e2e8f0;
    position: relative;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0
}

.tog.on {
    background: var(--blue)
}

.knb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15)
}

.tog.on .knb {
    transform: translateX(20px)
}

/* result panel */
.sim-res {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 6rem
}

.sim-res-lbl {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1rem
}

/* health meter */
.health-meter {
    margin-bottom: 1.5rem
}

.hm-track {
    height: 14px;
    background: var(--off);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: .5rem;
    position: relative
}

.hm-fill {
    height: 100%;
    border-radius: 100px;
    transition: width .8s cubic-bezier(.34, 1.56, .64, 1);
    background: linear-gradient(90deg, #dc2626, #f59e0b 40%, #16a34a)
}

.hm-labels {
    display: flex;
    justify-content: space-between;
    font-size: .6rem;
    color: var(--muted);
    font-weight: 600
}

/* score display */
.score-disp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--off);
    border-radius: 14px
}

.score-sd {
    text-align: center
}

.score-lbl {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .25rem
}

.score-val {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    transition: color .4s
}

.score-arr {
    font-size: 1.5rem;
    color: #cbd5e1
}

/* issues found */
.issues-found {
    margin-bottom: 1rem
}

.if-title {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .5rem
}

.if-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    min-height: 24px
}

.if-chip {
    font-size: .63rem;
    font-weight: 700;
    padding: .18rem .6rem;
    border-radius: 100px;
    animation: fadein .2s ease
}

.if-chip-r {
    background: #fee2e2;
    color: #b91c1c
}

.if-chip-y {
    background: #fff7ed;
    color: #c2410c
}

.if-chip-b {
    background: var(--blue-l);
    color: var(--blue)
}

.sim-note {
    font-size: .71rem;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: .875rem
}

/* ===================== COMPARISON ===================== */
.cmp-sec {
    background: #fff;
    padding: 6rem 0
}

.cmpbox {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden
}

.cmpscroll {
    overflow-x: auto
}

.cmpt {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px
}

.cmpt th {
    padding: .9rem 1.25rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    background: var(--off);
    border-bottom: 2px solid var(--border);
    text-align: left
}

.cmpt th.thus {
    background: var(--blue-l);
    color: var(--blue)
}

.cmpt td {
    padding: .9rem 1.25rem;
    font-size: .84rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: left
}

.cmpt tr:last-child td {
    border-bottom: none
}

.cmpt tr:hover td {
    background: #fafbff
}

.cmpt td:first-child {
    font-weight: 600;
    color: var(--text)
}

.tdno {
    color: #94a3b8
}

.tdmeh {
    color: #d97706
}

.tdyes {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 700
}

.tdyes,
.cmpt th.thus {
    border-left: 2px solid rgba(0, 82, 224, .12)
}

.ix {
    color: var(--red);
    font-weight: 800
}

.io {
    color: var(--green);
    font-weight: 800
}

.im {
    color: #d97706;
    font-weight: 800
}

/* ===================== SCORE RINGS ===================== */
.rings-sec {
    background: linear-gradient(160deg, #060d1a, #0d1b30);
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.rings-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent)
}

.rsh {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1
}

.rsh h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: .75rem
}

.rsh p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .4);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.rgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1
}

.rcard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background .2s, transform .2s, border-color .2s
}

.rcard:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(0, 82, 224, .3);
    transform: translateY(-4px)
}

.rsvgw {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.25rem
}

.rsvgw svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.rinn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.rval {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em
}

.rwas {
    font-size: .6rem;
    color: rgba(255, 255, 255, .28);
    margin-top: .2rem
}

.rlbl {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem
}

.rsub {
    font-size: .71rem;
    color: rgba(255, 255, 255, .36);
    line-height: 1.55
}

/* ===================== RESULTS ===================== */
.results-sec {
    background: #fff;
    padding: 6rem 0
}

.resgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem
}

.rc {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s
}

.rc:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    transform: translateY(-4px)
}

.rctop {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border)
}

.rcdom {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--muted);
    margin-bottom: .75rem
}

.rcmet {
    display: flex;
    gap: 1rem
}

.rcm {
    flex: 1;
    text-align: center
}

.rcmv {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1
}

.rcml {
    font-size: .64rem;
    color: var(--muted);
    margin-top: .18rem
}

.rcbot {
    padding: 1.25rem 1.5rem
}

.rcq {
    font-size: .81rem;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: .875rem
}

.rcby {
    display: flex;
    align-items: center;
    gap: .625rem;
    border-top: 1px solid var(--border);
    padding-top: .875rem
}

.rcav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .64rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.rcn {
    font-size: .79rem;
    font-weight: 700;
    line-height: 1
}

.rcr {
    font-size: .69rem;
    color: var(--muted);
    margin-top: .1rem
}

/* ===================== CTA DARK ===================== */
.cta-sec {
    background: linear-gradient(160deg, #060d1a, #0a1628);
    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;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent)
}

.cta-orb1 {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .15), transparent 65%);
    pointer-events: none
}

.cta-orb2 {
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 168, .1), transparent 65%);
    pointer-events: none
}

.cta-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.cta-copy h2 {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1
}

.cta-copy p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.82;
    margin-bottom: 2rem
}

.cta-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.5rem
}

.cta-li {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5)
}

.cta-li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(22, 163, 74, .2);
    border: 1px solid rgba(22, 163, 74, .3);
    color: #4ade80;
    font-size: .55rem;
    font-weight: 800;
    flex-shrink: 0
}

/* audit form card */
.form-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    padding: 2rem;
    backdrop-filter: blur(12px)
}

.form-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .35rem
}

.form-card p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .35rem;
    text-transform: uppercase;
    letter-spacing: .07em
}

.form-group input,
.form-group select {
    width: 100%;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font);
    font-size: .875rem;
    outline: none;
    transition: border-color .2s, background .2s
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, .2)
}

.form-group input:focus,
.form-group select:focus {
    border-color: rgba(0, 82, 224, .6);
    background: rgba(0, 82, 224, .08)
}

.form-group select {
    color: rgba(255, 255, 255, .6);
    cursor: pointer
}

.form-group select option {
    background: #0d1829;
    color: #fff
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.form-submit {
    width: 100%;
    padding: .9rem;
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: transform .14s, box-shadow .18s;
    margin-top: .5rem
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .5)
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .875rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .25);
    font-weight: 600
}

.form-trust span {
    color: rgba(255, 255, 255, .35)
}

/* ===================== FAQ ===================== */
.faq-sec {
    background: var(--off);
    padding: 6rem 0;
    border-top: 1px solid var(--border)
}

.faqlyt {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3.5rem;
    align-items: start
}

.faqstk {
    position: sticky;
    top: 6rem
}

.faqstk h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.faqstk p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 1.5rem
}

.faqbox {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem
}

.faqbox h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.faqbox p {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: .5rem
}

.faqbox a {
    font-size: .79rem;
    color: var(--blue);
    font-weight: 600
}

.faqlist {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.faqitem {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .18s
}

.faqitem.open {
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 4px 16px rgba(0, 82, 224, .07)
}

.faqq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    font-size: .875rem;
    font-weight: 600
}

.faqico {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
    transition: background .15s, transform .25s
}

.faqitem.open .faqico {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg)
}

.faqa {
    display: none;
    padding: 0 1.25rem 1.1rem;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.78
}

.faqitem.open .faqa {
    display: block
}

/* RESPONSIVE */
@media(max-width:1100px) {

    .hero-in,
    .split,
    .cta-in {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-in {
        padding-bottom: 4rem
    }

    .tpanel.act {
        grid-template-columns: 1fr
    }

    .simlyt {
        grid-template-columns: 1fr
    }

    .sim-res {
        position: static
    }

    .faqlyt {
        grid-template-columns: 1fr
    }

    .faqstk {
        position: static
    }

    .rgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .procgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .sgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sitem {
        border-bottom: 1px solid var(--border)
    }

    .sitem:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .sitem:nth-child(even) {
        border-right: none
    }

    .get-grid,
    .resgrid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {

    .rgrid,
    .procgrid {
        grid-template-columns: 1fr
    }

    .hbtns,
    .cta-btns {
        flex-direction: column
    }

    .hbtns .btn,
    .cta-btns .btn {
        justify-content: center
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .ac-cats {
        grid-template-columns: 1fr
    }
}