*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #0052e0;
    --blue-d: #003bb5;
    --blue-l: #e8f0ff;
    --teal: #00bfa8;
    --purple: #7c3aed;
    --amber: #f59e0b;
    --green: #16a34a;
    --red: #dc2626;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --off: #f8fafc;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
    background: #fff
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px)
}

.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
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font);
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: transform .14s, box-shadow .18s;
    white-space: nowrap;
    font-size: .92rem;
    text-decoration: none
}

.btn-p {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    color: #fff;
    padding: .85rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 82, 224, .38)
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .5)
}

.btn-g {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .88);
    padding: .82rem 1.6rem
}

.btn-g:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-1px)
}

.btn-o {
    background: transparent;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    padding: .78rem 1.5rem
}

.btn-o:hover {
    background: var(--blue-l);
    transform: translateY(-1px)
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    border-radius: 100px;
    padding: .28rem .9rem
}

.tag-b {
    background: var(--blue-l);
    color: var(--blue)
}

.tag-d {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.tag-t {
    background: rgba(0, 191, 168, .12);
    color: #007a6e
}

.tag-pu {
    background: rgba(124, 58, 237, .1);
    color: var(--purple)
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes 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 shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

/* HERO */
.hero {
    background: #060d1a;
    padding: 6.5rem 0 0;
    position: relative;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 30%, transparent 100%)
}

.horb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.ho1 {
    top: -20%;
    right: -6%;
    width: min(680px, 72vw);
    height: min(680px, 72vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .2), transparent 65%)
}

.ho2 {
    bottom: -30%;
    left: -8%;
    width: min(500px, 58vw);
    height: min(500px, 58vw);
    background: radial-gradient(circle, rgba(0, 191, 168, .12), transparent 65%)
}

.ho3 {
    top: 30%;
    left: 15%;
    width: min(260px, 32vw);
    height: min(260px, 32vw);
    background: radial-gradient(circle, rgba(124, 58, 237, .07), transparent 65%)
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 5rem
}

.hbadges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem
}

.hbg {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 100px;
    padding: .26rem .85rem;
    font-size: .7rem;
    font-weight: 700
}

.hbg-b {
    background: rgba(0, 82, 224, .2);
    border: 1px solid rgba(0, 82, 224, .4);
    color: rgba(148, 196, 255, .9)
}

.hbg-g {
    background: rgba(22, 163, 74, .15);
    border: 1px solid rgba(22, 163, 74, .3);
    color: rgba(134, 239, 172, .9)
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite;
    flex-shrink: 0
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.046em;
    color: #fff;
    margin-bottom: 1.4rem
}

.gt {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #00e5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hdesc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.85;
    max-width: 50ch;
    margin-bottom: 2.25rem
}

.hbtns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hchips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.chip {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .2rem .7rem
}

.acard {
    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)
}

.acbar {
    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
}

.aclbl {
    font-family: var(--mono);
    font-size: .68rem;
    color: rgba(255, 255, 255, .2);
    margin-left: .4rem
}

.aclive {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    font-weight: 700;
    color: #4ade80
}

.aclvdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 1.8s infinite
}

.acscore {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.25rem .875rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.rw {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0
}

.rw svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.rn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em
}

.acgrade {
    font-size: 1rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: .18rem
}

.acsub {
    font-size: .74rem;
    color: rgba(255, 255, 255, .36);
    line-height: 1.5
}

.acrows {
    padding: .625rem 1.25rem
}

.acrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.acrow:last-child {
    border-bottom: none
}

.acico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    flex-shrink: 0
}

.acname {
    font-size: .78rem;
    color: rgba(255, 255, 255, .58);
    flex: 1
}

.acr {
    display: flex;
    align-items: center;
    gap: .5rem
}

.pl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .15rem .5rem;
    border-radius: 4px
}

.pl-ok {
    background: rgba(22, 163, 74, .2);
    color: #4ade80
}

.pl-w {
    background: rgba(245, 158, 11, .2);
    color: #fbbf24
}

.pl-f {
    background: rgba(220, 38, 38, .2);
    color: #f87171
}

.acval {
    font-size: .67rem;
    font-family: var(--mono);
    color: rgba(255, 255, 255, .25)
}

.acft {
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .5rem
}

.acfdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: blink 1.5s infinite
}

.acftxt {
    font-size: .63rem;
    font-family: var(--mono);
    color: rgba(148, 196, 255, .5)
}

/* 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 30s 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 — COMPACT + ENHANCED (FIX 1)
   ============================================= */
.stats {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 224, .02) 0%, rgba(0, 191, 168, .02) 100%);
    pointer-events: none;
}

.sgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sitem {
    position: relative;
    text-align: center;
    padding: 2rem 1.25rem 1.75rem;
    border-right: 1px solid var(--border);
    transition: background .2s;
    overflow: hidden;
}

.sitem:last-child {
    border-right: none
}

.sitem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    transition: width .3s ease;
}

.sitem:nth-child(1)::after {
    background: linear-gradient(90deg, #0052e0, #4f46e5)
}

.sitem:nth-child(2)::after {
    background: linear-gradient(90deg, #059669, #0891b2)
}

.sitem:nth-child(3)::after {
    background: linear-gradient(90deg, #7c3aed, #00bfa8)
}

.sitem:nth-child(4)::after {
    background: linear-gradient(90deg, #f59e0b, #ef4444)
}

.sitem:hover {
    background: var(--off)
}

.sitem:hover::after {
    width: 60%
}

.sico-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .875rem;
    font-size: 1.1rem;
}

.sitem:nth-child(1) .sico-wrap {
    background: rgba(0, 82, 224, .08)
}

.sitem:nth-child(2) .sico-wrap {
    background: rgba(5, 150, 105, .08)
}

.sitem:nth-child(3) .sico-wrap {
    background: rgba(124, 58, 237, .08)
}

.sitem:nth-child(4) .sico-wrap {
    background: rgba(245, 158, 11, .08)
}

.sval {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.05em;
    color: var(--text);
    line-height: 1;
    margin-bottom: .3rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
}

.sval b {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue)
}

.sitem:nth-child(1) .sval b {
    color: #0052e0
}

.sitem:nth-child(2) .sval b {
    color: #059669
}

.sitem:nth-child(3) .sval b {
    color: #7c3aed
}

.sitem:nth-child(4) .sval b {
    color: #f59e0b
}

.slbl {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 17ch;
    margin: 0 auto
}

.sdivider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* SPLIT */
.split-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
}

.elist {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.ecard {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    cursor: default
}

.ecard:hover {
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 6px 20px rgba(0, 82, 224, .07);
    transform: translateX(5px)
}

.eico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.etit {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .15rem
}

.edesc {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.45
}

.estat {
    flex-shrink: 0;
    text-align: right
}

.estatv {
    font-size: .78rem;
    font-weight: 800;
    color: var(--blue)
}

.estatl {
    font-size: .63rem;
    color: var(--muted);
    margin-top: .1rem
}

/* =============================================
   TABS — ENHANCED RIGHT SIDE (FIX 2)
   ============================================= */
.tabs-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
}

/* Enhanced 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: 118px;
    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
}

/* Extra content block below bars */
.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
}

/* Snippet preview for Titles tab */
.serp-preview {
    margin: 0 1.25rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.serp-preview-hd {
    padding: .5rem .875rem;
    background: var(--off);
    border-bottom: 1px solid var(--border);
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .35rem
}

.serp-item {
    padding: .875rem 1rem
}

.serp-item+.serp-item {
    border-top: 1px solid var(--off)
}

.serp-label {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .35rem
}

.serp-label.bad {
    color: var(--red)
}

.serp-label.good {
    color: var(--green)
}

.serp-url {
    font-size: .62rem;
    color: #1e8c55;
    margin-bottom: .2rem;
    font-family: var(--mono)
}

.serp-title.bad {
    font-size: .84rem;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1.3;
    margin-bottom: .2rem
}

.serp-title.good {
    font-size: .84rem;
    font-weight: 700;
    color: #0052e0;
    line-height: 1.3;
    margin-bottom: .2rem
}

.serp-desc {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.5
}

/* Schema badge cluster */
.schema-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 1.25rem 1.25rem
}

.sbadge {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .75rem;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    border: 1.5px solid
}

.sbadge-ok {
    background: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0
}

.sbadge-no {
    background: #fff8f8;
    color: #b91c1c;
    border-color: #fecaca
}

.sbadge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.sbadge-ok .sbadge-dot {
    background: #4ade80
}

.sbadge-no .sbadge-dot {
    background: #f87171
}

/* Content tab — topic checklist */
.topic-list {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    margin: 0 1.25rem 1.25rem
}

.tl-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    font-size: .76rem;
    font-weight: 500;
    border: 1px solid
}

.tl-item.covered {
    background: #f0fdf4;
    color: #14532d;
    border-color: #bbf7d0
}

.tl-item.missing {
    background: #fff8f8;
    color: #991b1b;
    border-color: #fecaca
}

.tl-item.added {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe
}

.tl-icon {
    font-size: .8rem;
    flex-shrink: 0
}

/* Internal links — architecture mini map */
.link-map {
    margin: 0 1.25rem 1.25rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem
}

.lm-title {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .75rem
}

.lm-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem
}

.lm-row:last-child {
    margin-bottom: 0
}

.lm-node {
    font-size: .68rem;
    font-weight: 700;
    padding: .3rem .6rem;
    border-radius: 6px;
    white-space: nowrap
}

.lm-home {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    color: #fff
}

.lm-service {
    background: #e8f0ff;
    color: #0052e0;
    border: 1px solid #c7d9ff
}

.lm-blog {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0
}

.lm-case {
    background: #f3e8ff;
    color: #6d28d9;
    border: 1px solid #ddd6fe
}

.lm-arr {
    color: #94a3b8;
    font-size: .75rem
}

/* E-E-A-T signals list */
.eeat-signals {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 0 1.25rem 1.25rem
}

.eeat-sig {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .625rem .875rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--off);
    font-size: .76rem
}

.eeat-ico {
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 1px
}

.eeat-sig-name {
    font-weight: 700;
    margin-bottom: .1rem;
    color: var(--text)
}

.eeat-sig-desc {
    font-size: .68rem;
    color: var(--muted);
    line-height: 1.4
}

.eeat-status {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .62rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 100px
}

.eeat-status.on {
    background: #dcfce7;
    color: #15803d
}

.eeat-status.off {
    background: #fee2e2;
    color: #b91c1c
}

/* BEFORE/AFTER */
.ba-sec {
    background: #fff;
    padding: 6rem 0
}

.bagrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.bacard {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border)
}

.bahd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem
}

.bahd h4 {
    font-size: .85rem;
    font-weight: 700
}

.bachip {
    font-size: .62rem;
    font-weight: 700;
    border-radius: 100px;
    padding: .18rem .6rem
}

.ba-bef .bahd {
    background: #fff8f8
}

.ba-bef .bahd h4 {
    color: var(--red)
}

.ba-bef .bachip {
    background: #fee2e2;
    color: var(--red)
}

.ba-aft .bahd {
    background: #f0fdf4
}

.ba-aft .bahd h4 {
    color: var(--green)
}

.ba-aft .bachip {
    background: #dcfce7;
    color: var(--green)
}

.ba-imp .bahd {
    background: var(--blue-l)
}

.ba-imp .bahd h4 {
    color: var(--blue)
}

.ba-imp .bachip {
    background: #c7d9ff;
    color: var(--blue-d)
}

.babody {
    padding: 1.25rem;
    background: #fff
}

.baitem {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .45rem 0;
    border-bottom: 1px solid var(--off);
    font-size: .79rem;
    line-height: 1.5
}

.baitem:last-child {
    border-bottom: none
}

.badot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px
}

.ba-bef .badot {
    background: #f87171
}

.ba-bef .baitem {
    color: #7f1d1d
}

.ba-aft .badot {
    background: #4ade80
}

.ba-aft .baitem {
    color: #14532d
}

.ba-imp .badot {
    background: #60a5fa
}

.ba-imp .baitem {
    color: #1e40af
}

/* 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;
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent);
    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(3, 1fr);
    gap: 1.5rem;
    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.75rem;
    transition: background .2s, border-color .2s, transform .2s
}

.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: 1rem
}

.pico {
    font-size: 1.75rem;
    margin-bottom: .875rem
}

.pcard h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.pcard p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7
}

.ptags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .875rem
}

.ptag {
    font-size: .62rem;
    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: .14rem .55rem
}

.ptl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    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
}

/* RANK SIMULATOR */
.sim-sec {
    background: var(--off);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.simlyt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start
}

.simpnl {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.simpnh {
    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)
}

.simrows {
    padding: .375rem 0
}

.simrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem 1.5rem;
    border-bottom: 1px solid #f8fafc;
    transition: background .15s
}

.simrow:last-child {
    border-bottom: none
}

.simrow:hover {
    background: #fafbff
}

.simrl {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex: 1
}

.sico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.sname {
    font-size: .84rem;
    font-weight: 600;
    margin-bottom: .1rem
}

.ssub {
    font-size: .71rem;
    color: var(--muted)
}

.simrr {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex-shrink: 0
}

.sgain {
    font-size: .77rem;
    font-weight: 800;
    color: var(--green);
    font-family: var(--mono);
    width: 48px;
    text-align: right
}

.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)
}

.simres {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 6rem
}

.simlbl {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1.25rem
}

.serptrack {
    position: relative;
    height: 52px;
    background: var(--off);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem
}

.serpzones {
    display: flex;
    height: 100%
}

.szone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    border-right: 1px solid var(--border)
}

.szone:last-child {
    border-right: none
}

.ztop {
    background: rgba(22, 163, 74, .08);
    color: var(--green)
}

.zp1 {
    background: rgba(0, 82, 224, .05);
    color: var(--blue)
}

.zp2 {
    background: rgba(100, 116, 139, .05);
    color: var(--muted)
}

.serpdot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 82, 224, .2);
    transition: left .6s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 2;
    animation: pulse 2s infinite
}

.posdisp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--off);
    border-radius: 14px
}

.possd {
    text-align: center
}

.poslbl {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .25rem
}

.posval {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1
}

.posarr {
    font-size: 1.5rem;
    color: #cbd5e1
}

.simchips {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem;
    min-height: 28px;
    margin-bottom: 1rem
}

.simchip {
    font-size: .64rem;
    font-weight: 700;
    padding: .2rem .65rem;
    border-radius: 100px;
    background: var(--blue-l);
    color: var(--blue);
    animation: fadein .2s ease
}

.simnote {
    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;
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent);
    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: 120px;
    height: 120px;
    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.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em
}

.rwas {
    font-size: .65rem;
    color: rgba(255, 255, 255, .28);
    margin-top: .18rem
}

.rlbl {
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .35rem
}

.rsub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .36);
    line-height: 1.55
}

/* TOOLS */
.tools-sec {
    background: var(--off);
    padding: 5.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.toolgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

.toolcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color .18s, box-shadow .18s, transform .18s
}

.toolcard:hover {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 8px 24px rgba(0, 82, 224, .07);
    transform: translateY(-3px)
}

.toolico {
    font-size: 1.6rem;
    margin-bottom: .75rem
}

.toolcard h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.toolcard p {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.6
}

.tooltag {
    display: inline-block;
    margin-top: .625rem;
    font-size: .62rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-l);
    border-radius: 4px;
    padding: .14rem .5rem
}

/* 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
}

/* 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 {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-in {
        padding-bottom: 4rem
    }

    .tpanel.act {
        grid-template-columns: 1fr
    }

    .simlyt {
        grid-template-columns: 1fr
    }

    .simres {
        position: static
    }

    .faqlyt {
        grid-template-columns: 1fr
    }

    .faqstk {
        position: static
    }

    .rgrid {
        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
    }

    .bagrid,
    .procgrid {
        grid-template-columns: 1fr
    }

    .toolgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .resgrid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .rgrid {
        grid-template-columns: 1fr 1fr
    }

    .toolgrid {
        grid-template-columns: 1fr
    }

    .hbtns {
        flex-direction: column
    }

    .hbtns .btn {
        justify-content: center
    }
}