:root {
    --dark: #060d1a;
    --dark2: #0a1628;
    --charcoal: #1a1a2e;
    --blue: #0052e0;
    --blue2: #3b82f6;
    --blue3: #60a5fa;
    --purple: #7c3aed;
    --purple2: #a78bfa;
    --cyan: #06b6d4;
    --green: #10b981;
    --amber: #f59e0b;
    --dt1: rgba(255, 255, 255, .95);
    --dt2: rgba(255, 255, 255, .62);
    --dt3: rgba(255, 255, 255, .35);
    --lt1: #0f172a;
    --lt2: #475569;
    --lt3: #94a3b8;
    --lb: #e2e8f0;
    --la: #f0f5ff;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'DM Mono', monospace;
    --r: 12px;
    --rl: 18px;
    --rxl: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: #fff;
    color: var(--lt1);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4.5vw, 40px)
}

.sec {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0
}

.wh {
    background: #fff;
    color: var(--lt1)
}

.la {
    background: var(--la);
    color: var(--lt1)
}

.bl {
    background: var(--blue);
    color: #fff
}

.dk {
    background: var(--dark);
    color: var(--dt1)
}

.dk2 {
    background: var(--dark2);
    color: var(--dt1)
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes floatR {

    0%,
    100% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(22px, 18px)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.65)
    }
}

@keyframes barGrow {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes starPop {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes checkIn {
    from {
        opacity: 0;
        transform: scale(.5) rotate(-15deg)
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

.s1 {
    animation: fadeUp .65s .05s both cubic-bezier(.4, 0, .2, 1)
}

.s2 {
    animation: fadeUp .65s .15s both cubic-bezier(.4, 0, .2, 1)
}

.s3 {
    animation: fadeUp .65s .25s both cubic-bezier(.4, 0, .2, 1)
}

.s4 {
    animation: fadeUp .65s .35s both cubic-bezier(.4, 0, .2, 1)
}

.s5 {
    animation: fadeUp .65s .45s both cubic-bezier(.4, 0, .2, 1)
}

.s6 {
    animation: fadeUp .65s .55s both cubic-bezier(.4, 0, .2, 1)
}

.sl {
    animation: fadeLeft .65s .1s both
}

.sr {
    animation: fadeRight .65s .2s both
}

.si {
    animation: fadeUp .5s .1s both
}

/* ── TAGS ── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 100px
}

.tl-b {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe
}

.tl-g {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0
}

.tl-a {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a
}

.tl-p {
    background: #f5f3ff;
    color: #6d28d9;
    border: 1px solid #ddd6fe
}

.tl-c {
    background: #ecfeff;
    color: #0e7490;
    border: 1px solid #a5f3fc
}

.td-b {
    background: rgba(59, 130, 246, .14);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, .28)
}

.td-g {
    background: rgba(16, 185, 129, .12);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, .24)
}

.td-a {
    background: rgba(245, 158, 11, .12);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, .2)
}

/* ── BUTTONS ── */
.bp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.7rem;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    border-radius: 8px;
    transition: all .25s ease;
    box-shadow: 0 4px 18px rgba(0, 82, 224, .28);
    font-family: var(--font)
}

.bp:hover {
    background: #0047c7;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 82, 224, .4)
}

.bgd {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.7rem;
    background: rgba(255, 255, 255, .08);
    color: var(--dt1);
    font-weight: 600;
    font-size: .88rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    transition: all .25s ease;
    font-family: var(--font)
}

.bgd:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-2px)
}

.bgl {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.7rem;
    background: #fff;
    color: var(--lt1);
    font-weight: 600;
    font-size: .88rem;
    border-radius: 8px;
    border: 1px solid var(--lb);
    transition: all .25s ease;
    font-family: var(--font)
}

.bgl:hover {
    border-color: #93c5fd;
    background: #f0f7ff;
    transform: translateY(-2px)
}

/* ── BREADCRUMB ── */
.bc {
    background: var(--dark2);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: .7rem 0
}

.bc-in {
    display: flex;
    align-items: center;
    gap: .42rem;
    font-size: .77rem;
    color: rgba(255, 255, 255, .38)
}

.bc-in a {
    color: rgba(255, 255, 255, .38)
}

.bc-in a:hover {
    color: #93c5fd
}

.bc-sep {
    opacity: .4
}

.bc-cur {
    color: #93c5fd
}

/* ═══════════════════
   ① HERO
═══════════════════ */
.hero {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5.5rem) 0 0
}

.hg1 {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 224, .22), transparent 65%);
    pointer-events: none;
    animation: floatR 9s ease-in-out infinite alternate
}

.hg2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(16, 185, 129, .1), transparent 65%);
    pointer-events: none;
    animation: float 11s ease-in-out infinite
}

.h-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 58px 58px;
    pointer-events: none
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 3.5rem
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .3);
    padding: .4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem
}

.h-bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #93c5fd;
    animation: pulse 2s infinite
}

.h-badge-txt {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #93c5fd
}

.h-h1 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--dt1);
    margin-bottom: 1.1rem
}

.h-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #60a5fa, #10b981 50%, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.h-sub {
    font-size: .97rem;
    color: var(--dt2);
    line-height: 1.8;
    margin-bottom: 1.85rem;
    max-width: 470px
}

.h-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.h-chips {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap
}

.h-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    color: var(--dt3);
    font-weight: 500
}

.h-cdiv {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .12)
}

/* Citation meter card */
.cite-card {
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rxl);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease
}

.cite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .65), transparent)
}

.cite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, .45)
}

.cc-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.35rem
}

.cc-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--dt2)
}

.cc-score {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--green)
}

.cc-score-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s infinite
}

/* Directory rows in card */
.dir-rows {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.dir-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem .7rem;
    border-radius: var(--r);
    transition: background .2s
}

.dir-row:hover {
    background: rgba(255, 255, 255, .06)
}

.dir-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: .7rem;
    font-family: var(--mono)
}

.dl-jd {
    background: #e8f5e9;
    color: #2e7d32
}

.dl-ib {
    background: #fff3e0;
    color: #e65100
}

.dl-gg {
    background: #e3f2fd;
    color: #1565c0
}

.dl-ys {
    background: #f3e5f5;
    color: #6a1b9a
}

.dl-fb {
    background: #e8eaf6;
    color: #283593
}

.dl-li {
    background: #e1f5fe;
    color: #01579b
}

.dl-bb {
    background: #fff8e1;
    color: #f57f17
}

.dir-meta {
    flex: 1;
    min-width: 0
}

.dir-name {
    font-size: .8rem;
    font-weight: 700;
    color: var(--dt1)
}

.dir-da {
    font-size: .68rem;
    color: var(--dt3);
    font-family: var(--mono)
}

.dir-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .2rem
}

.ds-pill {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .67rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 100px
}

.ds-live {
    background: rgba(16, 185, 129, .15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, .25)
}

.ds-pending {
    background: rgba(245, 158, 11, .12);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, .2)
}

.ds-fixing {
    background: rgba(59, 130, 246, .14);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, .28)
}

.dir-score {
    font-size: .6rem;
    color: var(--dt3)
}

.cc-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 1.1rem 0
}

.cc-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem
}

.cc-s {
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    padding: .65rem .4rem
}

.cc-sn {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--mono);
    background: linear-gradient(135deg, #60a5fa, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.cc-sl {
    font-size: .6rem;
    color: var(--dt3);
    margin-top: .18rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em
}

/* Float badge */
.h-float {
    position: absolute;
    bottom: -.8rem;
    right: -.7rem;
    background: rgba(8, 18, 38, .94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r);
    padding: .7rem .9rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.hf-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hf-n {
    font-size: .98rem;
    font-weight: 800;
    color: var(--dt1);
    line-height: 1
}

.hf-l {
    font-size: .62rem;
    color: var(--dt3)
}

/* ═══════════════════
   ② TICKER — directory logos scrolling
═══════════════════ */
.ticker-wrap {
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: .85rem 0;
    overflow: hidden
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker 30s linear infinite
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 0 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--dt2);
    flex-shrink: 0
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2)
}

.ticker-badge {
    font-size: .62rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 100px;
    background: rgba(16, 185, 129, .15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, .25);
    margin-left: .3rem
}

/* ═══════════════════
   ③ STATS
═══════════════════ */
.st-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.st-b {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
    transition: background .2s;
    cursor: default
}

.st-b:hover {
    background: rgba(255, 255, 255, .08)
}

.st-b:last-child {
    border-right: none
}

.st-n {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    font-family: var(--mono);
    color: #fff;
    line-height: 1;
    margin-bottom: .25rem;
    transition: transform .2s
}

.st-b:hover .st-n {
    transform: scale(1.06)
}

.st-l {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7)
}

/* ═══════════════════
   ④ WHAT IS
═══════════════════ */
.what-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.sec-h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: var(--lt1);
    margin-bottom: .85rem
}

.sec-p {
    color: var(--lt2);
    line-height: 1.8;
    font-size: .92rem;
    margin-bottom: .75rem
}

/* NAP consistency visual */
.nap-card {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07)
}

.nap-hd {
    background: #f8f9fa;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--lb);
    font-size: .8rem;
    font-weight: 700;
    color: var(--lt2);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nap-body {
    padding: 1.1rem
}

.nap-row {
    display: flex;
    gap: .85rem;
    margin-bottom: .85rem;
    align-items: flex-start
}

.nap-row:last-child {
    margin-bottom: 0
}

.nap-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--lt3);
    text-transform: uppercase;
    letter-spacing: .07em;
    width: 70px;
    flex-shrink: 0;
    padding-top: .1rem
}

.nap-vals {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    flex: 1
}

.nap-val {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4rem .65rem;
    border-radius: 8px;
    font-size: .77rem
}

.nap-val.ok {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d
}

.nap-val.err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626
}

.nap-val.fix {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #b45309
}

.nap-site {
    font-weight: 600;
    font-size: .72rem;
    color: var(--lt3);
    margin-right: .5rem
}

.nap-icon {
    font-size: .75rem
}

/* ═══════════════════
   ⑤ DIRECTORY GRID
═══════════════════ */
.dir-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.dirc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.25rem;
    transition: all .3s ease;
    cursor: default;
    position: relative;
    overflow: hidden
}

.dirc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s
}

.dirc:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 82, 224, .1);
    border-color: #bfdbfe
}

.dirc:hover::after {
    transform: scaleX(1)
}

.dirc-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
    font-weight: 800;
    font-size: .85rem;
    font-family: var(--mono);
    transition: transform .3s
}

.dirc:hover .dirc-logo {
    transform: scale(1.1) rotate(-4deg)
}

.dirc-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .18rem
}

.dirc-da {
    font-size: .72rem;
    color: var(--lt3);
    font-family: var(--mono);
    margin-bottom: .3rem
}

.dirc-type {
    font-size: .7rem;
    color: var(--lt2)
}

/* Category headers */
.cat-hd {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lt3);
    margin: 1.5rem 0 .75rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.cat-hd::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lb)
}

/* ═══════════════════
   ⑥ INLINE CTA
═══════════════════ */
.icta {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border-top: 1px solid #bfdbfe;
    border-bottom: 1px solid #bbf7d0;
    padding: 1.6rem 0
}

.icta-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap
}

/* ═══════════════════
   ⑦ PROCESS
═══════════════════ */
.proc-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.pc {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--rl);
    padding: 1.4rem;
    transition: all .3s ease;
    cursor: default;
    position: relative;
    overflow: hidden
}

.pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s
}

.pc:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-4px)
}

.pc:hover::before {
    transform: scaleX(1)
}

.pc1::before {
    background: linear-gradient(90deg, #3b82f6, #10b981)
}

.pc2::before {
    background: linear-gradient(90deg, #10b981, #06b6d4)
}

.pc3::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444)
}

.pc4::before {
    background: linear-gradient(90deg, #7c3aed, #3b82f6)
}

.pc5::before {
    background: linear-gradient(90deg, #10b981, #3b82f6)
}

.pc6::before {
    background: linear-gradient(90deg, #06b6d4, #7c3aed)
}

.pc-num {
    font-size: .62rem;
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--dt3);
    margin-bottom: .75rem
}

.pc-ico {
    width: 38px;
    height: 38px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
    transition: transform .3s
}

.pc:hover .pc-ico {
    transform: rotate(-8deg) scale(1.1)
}

.pc-tt {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dt1);
    margin-bottom: .35rem
}

.pc-dd {
    font-size: .79rem;
    color: var(--dt2);
    line-height: 1.7
}

.pc-del {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    margin-top: .7rem;
    font-size: .66rem;
    font-weight: 700;
    color: #93c5fd;
    font-family: var(--mono)
}

/* ═══════════════════
   ⑧ RESULTS
═══════════════════ */
.res-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.res-c {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.5rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    cursor: default
}

.res-c::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: .38s
}

.res-c:hover {
    box-shadow: 0 12px 36px rgba(0, 82, 224, .1);
    border-color: #bfdbfe;
    transform: translateY(-4px)
}

.res-c:hover::after {
    transform: scaleX(1)
}

.res-flag {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    flex-wrap: wrap
}

.res-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 100px;
    background: #f8f9fa;
    border: 1px solid var(--lb);
    color: var(--lt3)
}

.res-m {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin: 1rem 0
}

.rm {
    background: #f8fbff;
    border: 1px solid #e0ecff;
    border-radius: 8px;
    padding: .75rem .65rem;
    text-align: center
}

.rm-n {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--mono);
    line-height: 1;
    margin-bottom: .15rem;
    color: var(--blue)
}

.rm-l {
    font-size: .62rem;
    color: var(--lt3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.res-q {
    font-size: .78rem;
    color: var(--lt2);
    line-height: 1.7;
    font-style: italic;
    border-left: 2px solid #bfdbfe;
    padding-left: .8rem;
    margin-top: .85rem
}

/* ═══════════════════
   ⑨ WHY CITATIONS MATTER
═══════════════════ */
.why-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.wi {
    display: flex;
    gap: .85rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    transition: all .28s;
    cursor: default
}

.wi:hover {
    border-color: #93c5fd;
    box-shadow: 0 6px 22px rgba(0, 82, 224, .08);
    transform: translateX(4px)
}

.wi-ico {
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s
}

.wi:hover .wi-ico {
    transform: scale(1.12)
}

.wi-tt {
    font-size: .87rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .2rem
}

.wi-dd {
    font-size: .79rem;
    color: var(--lt2);
    line-height: 1.65
}

/* Ranking factor visual */
.rank-visual {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.rv-card {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.2rem;
    transition: all .3s
}

.rv-card:hover {
    box-shadow: 0 8px 24px rgba(0, 82, 224, .09);
    border-color: #bfdbfe
}

.rv-lbl {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lt2);
    margin-bottom: .38rem
}

.rv-lbl span:last-child {
    font-weight: 700;
    color: var(--blue);
    font-family: var(--mono)
}

.rv-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 100px;
    overflow: hidden
}

.rv-fill {
    height: 100%;
    border-radius: 100px;
    animation: barGrow 1.4s .3s both cubic-bezier(.4, 0, .2, 1)
}

.rvf1 {
    background: linear-gradient(90deg, #0052e0, #7c3aed);
    --w: 32%
}

.rvf2 {
    background: linear-gradient(90deg, #10b981, #06b6d4);
    --w: 24%
}

.rvf3 {
    background: linear-gradient(90deg, #f59e0b, #ea4335);
    --w: 18%
}

.rvf4 {
    background: linear-gradient(90deg, #4285f4, #34a853);
    --w: 16%
}

.rvf5 {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    --w: 10%
}

.rv-note {
    font-size: .7rem;
    color: var(--lt3);
    margin-top: .28rem;
    font-family: var(--mono)
}

/* ═══════════════════
   ⑩ PRICING PACKAGES
═══════════════════ */
.pkg-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem
}

.pkgc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rxl);
    padding: 1.75rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.pkgc:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 82, 224, .1)
}

.pkgc.pop {
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    border-color: #bfdbfe;
    border-width: 2px
}

.pkgc.pop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple))
}

.pkg-badge {
    margin-bottom: 1rem
}

.pkg-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--lt3);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .25rem
}

.pkg-price {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--lt1);
    line-height: 1;
    margin-bottom: .2rem
}

.pkg-price span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--lt3)
}

.pkg-sub {
    font-size: .78rem;
    color: var(--lt3);
    margin-bottom: 1.35rem
}

.pkg-features {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.5rem
}

.pkg-feat {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: var(--lt2)
}

.pkg-feat svg {
    flex-shrink: 0;
    margin-top: .1rem
}

.pkg-feat.no {
    color: var(--lt3)
}

.pop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .65rem;
    font-weight: 700;
    padding: .22rem .6rem;
    background: var(--blue);
    color: #fff;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* ═══════════════════
   ⑪ FAQ
═══════════════════ */
.faq-g {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.faq-i {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .25s
}

.faq-i.open {
    border-color: #93c5fd;
    box-shadow: 0 4px 18px rgba(0, 82, 224, .07)
}

.faq-qb {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.1rem;
    background: none;
    border: none;
    color: var(--lt1);
    font-size: .85rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    gap: .9rem
}

.faq-ic {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid var(--lb);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .25s;
    color: var(--lt2)
}

.faq-i.open .faq-ic {
    background: #eff6ff;
    border-color: #93c5fd;
    transform: rotate(45deg);
    color: var(--blue)
}

.faq-ans {
    display: none;
    padding: 0 1.1rem 1.1rem;
    font-size: .82rem;
    color: var(--lt2);
    line-height: 1.8
}

.faq-i.open .faq-ans {
    display: block
}

.faq-side {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.faq-cta {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border: 1px solid #bfdbfe;
    border-radius: var(--rl);
    padding: 1.6rem;
    position: relative;
    overflow: hidden
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green))
}

.faq-links {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.15rem
}

.faq-lnk {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .48rem 0;
    font-size: .82rem;
    color: var(--lt2);
    border-bottom: 1px solid #f1f5f9;
    transition: .2s
}

.faq-lnk:last-child {
    border-bottom: none
}

.faq-lnk:hover {
    color: var(--blue)
}

/* ═══════════════════
   ⑫ FINAL CTA
═══════════════════ */
.cta-wrap {
    background: linear-gradient(135deg, #0f172a, #0d2a1a);
    position: relative;
    overflow: hidden
}

.cta-g1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 82, 224, .2), transparent 60%);
    pointer-events: none;
    animation: float 10s ease-in-out infinite
}

.cta-g2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, .15), transparent 60%);
    pointer-events: none;
    animation: float 8s 2s ease-in-out infinite alternate
}

.cta-dots {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.cta-in {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.cta-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--rxl);
    padding: 1.85rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .4)
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green))
}

.ct {
    display: flex;
    align-items: center;
    gap: .28rem;
    font-size: .68rem;
    color: var(--dt3)
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

    .hero-in,
    .what-g,
    .why-g,
    .cta-in {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .hero-right {
        display: none
    }

    .dir-g {
        grid-template-columns: repeat(3, 1fr)
    }

    .proc-g {
        grid-template-columns: repeat(2, 1fr)
    }

    .res-g {
        grid-template-columns: 1fr 1fr
    }

    .pkg-g {
        grid-template-columns: 1fr 1fr
    }

    .faq-g {
        grid-template-columns: 1fr
    }

    .faq-side {
        position: static
    }

    .cta-in {
        text-align: center
    }
}

@media(max-width:768px) {
    .st-g {
        grid-template-columns: 1fr 1fr
    }

    .st-b:nth-child(2) {
        border-right: none
    }

    .st-b:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, .18)
    }

    .dir-g {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc-g,
    .res-g,
    .pkg-g {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .h-btns {
        flex-direction: column
    }

    .h-btns a {
        justify-content: center
    }

    .dir-g {
        grid-template-columns: 1fr 1fr
    }
}