*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #0052e0;
    --blue-d: #003bb5;
    --blue-l: #e8f0ff;
    --teal: #003bb5;
    --teal-d: #0052e0;
    --teal-l: #e0f7f4;
    --purple: #7c3aed;
    --amber: #f59e0b;
    --green: #16a34a;
    --red: #dc2626;
    --orange: #ea580c;
    --cyan: #0891b2;
    --lime: #65a30d;
    --ai: #1a73e8;
    --ai-g: #34a853;
    --ai-y: #fbbc04;
    --ai-r: #ea4335;
    --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 float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 168, .35)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 191, 168, 0)
    }
}

@keyframes aiTyping {
    from {
        opacity: 0;
        transform: translateY(4px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0
    }

    100% {
        background-position: 400px 0
    }
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.08);
        opacity: 1
    }
}

@keyframes citePop {
    0% {
        opacity: 0;
        transform: scale(.8) translateY(3px)
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(0, 191, 168, .3)
    }

    50% {
        box-shadow: 0 0 24px rgba(0, 191, 168, .6)
    }
}

@keyframes lineAppear {
    from {
        width: 0;
        opacity: 0
    }

    to {
        width: 100%;
        opacity: 1
    }
}

/* 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, #0052e0);
    color: #fff;
    padding: .85rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 191, 168, .38)
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 191, 168, .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(--teal);
    color: var(--teal);
    padding: .78rem 1.5rem
}

.btn-o:hover {
    background: var(--teal-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-t {
    background: var(--teal-l);
    color: var(--teal-d)
}

.tag-d {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.tag-pu {
    background: rgba(124, 58, 237, .1);
    color: var(--purple)
}

.tag-g {
    background: rgba(22, 163, 74, .1);
    color: var(--green)
}

/* ===================== HERO ===================== */
.hero {
    background: #060d1a;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 191, 168, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 191, 168, .05) 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: -18%;
    right: -5%;
    width: min(700px, 72vw);
    height: min(700px, 72vw);
    background: radial-gradient(circle, rgba(0, 191, 168, .16), transparent 65%);
    animation: orbPulse 6s ease-in-out infinite
}

.ho2 {
    bottom: -25%;
    left: -7%;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .1), transparent 65%)
}

.ho3 {
    top: 35%;
    left: 12%;
    width: min(260px, 32vw);
    height: min(260px, 32vw);
    background: radial-gradient(circle, rgba(26, 115, 232, .07), transparent 65%)
}

.hero-in {
    position: relative;
    z-index: 2;
    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-t {
    background: rgba(0, 191, 168, .2);
    border: 1px solid rgba(0, 191, 168, .4);
    color: rgba(153, 255, 244, .9)
}

.hbg-g {
    background: rgba(22, 163, 74, .15);
    border: 1px solid rgba(22, 163, 74, .3);
    color: rgba(134, 239, 172, .9)
}

.hbg-b {
    background: rgba(26, 115, 232, .2);
    border: 1px solid rgba(26, 115, 232, .4);
    color: rgba(147, 197, 253, .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, #5eead4 0%, #67e8f9 40%, #60a5fa 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
}

/* ===== GOOGLE AI OVERVIEW SIMULATION CARD ===== */
.aio-card {
    background: linear-gradient(150deg, #0a1525, #0d1f38);
    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, 191, 168, .1);
    animation: float 6s ease-in-out infinite
}

/* Google search bar */
.aio-search {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: .75rem
}

.aio-g-logo {
    display: flex;
    gap: 1px;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: -.02em;
    flex-shrink: 0
}

.aio-g-b {
    color: #1a73e8
}

.aio-g-r {
    color: #ea4335
}

.aio-g-y {
    color: #fbbc04
}

.aio-g-g {
    color: #34a853
}

.aio-searchbar {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: .4rem .875rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: .4rem
}

.aio-search-icon {
    width: 12px;
    height: 12px;
    opacity: .4;
    flex-shrink: 0
}

.aio-search-cursor {
    display: inline-block;
    width: 1.5px;
    height: .8em;
    background: rgba(255, 255, 255, .6);
    animation: blink 1s step-end infinite;
    margin-left: 1px;
    vertical-align: middle
}

/* AI Overview box */
.aio-box {
    margin: .875rem 1.25rem;
    background: linear-gradient(135deg, rgba(26, 115, 232, .06), rgba(0, 191, 168, .04));
    border: 1px solid rgba(26, 115, 232, .2);
    border-radius: 14px;
    overflow: hidden
}

.aio-box-hd {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem .875rem;
    background: rgba(26, 115, 232, .06);
    border-bottom: 1px solid rgba(26, 115, 232, .12)
}

.aio-spark {
    font-size: .85rem
}

.aio-hd-txt {
    font-size: .7rem;
    font-weight: 700;
    color: rgba(147, 197, 253, .8);
    letter-spacing: .04em
}

.aio-hd-badge {
    margin-left: auto;
    font-size: .58rem;
    font-weight: 700;
    background: rgba(0, 191, 168, .15);
    border: 1px solid rgba(0, 191, 168, .3);
    color: #5eead4;
    border-radius: 100px;
    padding: .12rem .5rem;
    animation: glow 3s ease-in-out infinite
}

/* AI-generated answer text */
.aio-answer {
    padding: .875rem
}

.aio-ans-p {
    font-size: .74rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.72;
    margin-bottom: .5rem
}

.aio-ans-p:last-child {
    margin-bottom: 0
}

.aio-highlight {
    background: rgba(0, 191, 168, .15);
    border-bottom: 1px solid rgba(0, 191, 168, .4);
    color: #5eead4;
    padding: .03rem .18rem;
    border-radius: 2px;
    font-weight: 600
}

.aio-ans-line {
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    margin-bottom: .45rem;
    animation: shimmer 2.5s infinite linear;
    background-size: 400px 10px
}

.aio-ans-line.short {
    width: 65%
}

/* Citation sources */
.aio-cites {
    display: flex;
    gap: .5rem;
    padding: .75rem .875rem;
    border-top: 1px solid rgba(26, 115, 232, .1);
    flex-wrap: wrap
}

.aio-cite {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: .3rem .625rem;
    font-size: .62rem;
    color: rgba(255, 255, 255, .5);
    animation: citePop .4s ease both;
    cursor: default;
    transition: background .15s, border-color .15s
}

.aio-cite:hover {
    background: rgba(0, 191, 168, .1);
    border-color: rgba(0, 191, 168, .3);
    color: #5eead4
}

.aio-cite-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0
}

.aio-cite-num {
    font-size: .55rem;
    font-weight: 700;
    background: rgba(0, 191, 168, .2);
    color: #5eead4;
    border-radius: 3px;
    padding: .05rem .3rem;
    margin-left: .1rem
}

/* Organic results below */
.aio-results {
    padding: .625rem 1.25rem .875rem
}

.aio-res-lbl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .2);
    margin-bottom: .5rem
}

.aio-res-item {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.aio-res-item:last-child {
    border-bottom: none
}

.aio-res-pos {
    font-size: .62rem;
    font-weight: 800;
    font-family: var(--mono);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.pos-1 {
    color: #5eead4
}

.pos-2 {
    color: rgba(255, 255, 255, .3)
}

.pos-3 {
    color: rgba(255, 255, 255, .2)
}

.aio-res-fav {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    flex-shrink: 0
}

.aio-res-title {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(147, 197, 253, .8);
    margin-bottom: .1rem;
    line-height: 1.2
}

.aio-res-url {
    font-size: .6rem;
    font-family: var(--mono);
    color: rgba(52, 168, 83, .7)
}

.aio-ft {
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .5rem
}

.aio-fdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 1.5s infinite
}

.aio-ftxt {
    font-size: .63rem;
    font-family: var(--mono);
    color: rgba(94, 234, 212, .4)
}

/* ===================== 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(--teal);
    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, #0891b2)
}

.sitem:nth-child(2)::after {
    background: linear-gradient(90deg, #0052e0, #4f46e5)
}

.sitem:nth-child(3)::after {
    background: linear-gradient(90deg, #16a34a, #0052e0)
}

.sitem:nth-child(4)::after {
    background: linear-gradient(90deg, #7c3aed, #0052e0)
}

.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, 191, 168, .08)
}

.sitem:nth-child(2) .sico-wrap {
    background: rgba(0, 82, 224, .08)
}

.sitem:nth-child(3) .sico-wrap {
    background: rgba(22, 163, 74, .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: #0052e0
}

.sitem:nth-child(3) .sval b {
    color: #16a34a
}

.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
}

/* ===================== WHY AI OVERVIEW ===================== */
.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, #0052e0);
    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
}

/* eligibility card */
.elig-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.elig-hd {
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.elig-hd h4 {
    font-size: .82rem;
    font-weight: 700
}

.elig-badge {
    font-size: .62rem;
    font-weight: 700;
    background: var(--teal-l);
    color: var(--teal-d);
    border-radius: 100px;
    padding: .18rem .6rem
}

.elig-list {
    padding: .5rem 0
}

.elig-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s
}

.elig-row:last-child {
    border-bottom: none
}

.elig-row:hover {
    background: #fff
}

.elig-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.elig-name {
    font-size: .84rem;
    font-weight: 600;
    flex: 1
}

.elig-desc {
    font-size: .7rem;
    color: var(--muted)
}

.elig-status {
    font-size: .62rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 100px;
    flex-shrink: 0;
    white-space: nowrap
}

.es-must {
    background: #fee2e2;
    color: #b91c1c
}

.es-high {
    background: #fff7ed;
    color: #c2410c
}

.es-boost {
    background: var(--teal-l);
    color: var(--teal-d)
}

/* ===================== WHAT WE DO — TABS ===================== */
.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(--teal);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 191, 168, .35)
}

.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, #0052e0, #0052e0);
    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 vis 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: 44px;
    text-align: right;
    flex-shrink: 0
}

.tvextra {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border)
}

.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
}

/* schema code block */
.schema-block {
    margin: 0 1.25rem 1.25rem;
    background: #0f172a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1e293b
}

.sb-hd {
    padding: .5rem .875rem;
    background: #1e293b;
    font-size: .62rem;
    font-weight: 700;
    color: #475569;
    font-family: var(--mono);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sb-tag {
    font-size: .58rem;
    font-weight: 700;
    background: rgba(0, 191, 168, .15);
    color: #5eead4;
    border-radius: 4px;
    padding: .1rem .4rem
}

.sb-body {
    padding: .875rem;
    font-family: var(--mono);
    font-size: .65rem;
    line-height: 1.8
}

.sk {
    color: #7dd3fc
}

.sv {
    color: #86efac
}

.ss {
    color: #fbbf24
}

.sc {
    color: #94a3b8
}

.sr2 {
    color: #f9a8d4
}

/* AIO preview mini */
.aio-mini {
    margin: 0 1.25rem 1.25rem;
    background: linear-gradient(135deg, #f0fdfa, #eff6ff);
    border: 1.5px solid rgba(0, 191, 168, .25);
    border-radius: 12px;
    overflow: hidden
}

.aio-mini-hd {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .875rem;
    background: rgba(0, 191, 168, .06);
    border-bottom: 1px solid rgba(0, 191, 168, .15);
    font-size: .62rem;
    font-weight: 700;
    color: var(--teal-d)
}

.aio-mini-body {
    padding: .875rem
}

.aio-mini-q {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem
}

.aio-mini-a {
    font-size: .71rem;
    color: var(--muted);
    line-height: 1.65
}

.aio-mini-cite {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-top: .5rem;
    font-size: .6rem;
    font-weight: 700;
    background: rgba(0, 191, 168, .1);
    border: 1px solid rgba(0, 191, 168, .25);
    color: var(--teal-d);
    border-radius: 6px;
    padding: .18rem .5rem
}

/* content structure viz */
.content-struct {
    margin: 0 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .375rem
}

.cs-row {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .55rem .875rem;
    border-radius: 8px;
    font-size: .75rem;
    border: 1px solid
}

.cs-row.has {
    background: #f0fdfa;
    color: #134e4a;
    border-color: rgba(0, 191, 168, .25)
}

.cs-row.missing {
    background: #fff8f8;
    color: #991b1b;
    border-color: #fecaca
}

.cs-row.added {
    background: #eff6ff;
    color: #1e3a8a;
    border-color: #bfdbfe
}

.cs-ico {
    font-size: .82rem;
    flex-shrink: 0
}

.cs-name {
    flex: 1;
    font-weight: 600
}

.cs-tag {
    font-size: .6rem;
    font-weight: 700;
    padding: .12rem .45rem;
    border-radius: 4px
}

/* SERP feature table */
.serp-feat-table {
    margin: 0 1.25rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.sft-hd {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    padding: .5rem .875rem;
    background: var(--off);
    border-bottom: 1px solid var(--border);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted)
}

.sft-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    padding: .625rem .875rem;
    border-bottom: 1px solid #f8fafc;
    font-size: .73rem;
    align-items: center;
    transition: background .15s
}

.sft-row:last-child {
    border-bottom: none
}

.sft-row:hover {
    background: #fafbff
}

.sft-name {
    font-weight: 600
}

.sft-has {
    font-size: .62rem;
    font-weight: 700;
    padding: .13rem .45rem;
    border-radius: 4px;
    width: fit-content
}

.has-yes {
    background: #dcfce7;
    color: #15803d
}

.has-no {
    background: #fee2e2;
    color: #b91c1c
}

.has-part {
    background: #fff7ed;
    color: #c2410c
}

/* competitor SERP viz */
.comp-serp {
    margin: 0 1.25rem 1.25rem
}

.cs-serp-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .875rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: .375rem;
    transition: border-color .2s
}

.cs-serp-row.you {
    background: #f0fdfa;
    border-color: rgba(0, 191, 168, .3)
}

.cs-serp-pos {
    font-size: .75rem;
    font-weight: 800;
    font-family: var(--mono);
    width: 26px;
    text-align: center;
    flex-shrink: 0
}

.cs-serp-info {
    flex: 1
}

.cs-serp-name {
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: .08rem
}

.cs-serp-url {
    font-size: .6rem;
    color: var(--green);
    font-family: var(--mono)
}

.cs-serp-badges {
    display: flex;
    gap: .3rem;
    flex-shrink: 0
}

.cs-badge {
    font-size: .55rem;
    font-weight: 700;
    padding: .1rem .4rem;
    border-radius: 3px
}

.cb-aio {
    background: rgba(0, 191, 168, .15);
    color: var(--teal-d)
}

.cb-rich {
    background: #e8f0ff;
    color: #0052e0
}

.cb-feat {
    background: rgba(124, 58, 237, .12);
    color: #7c3aed
}

/* ===================== 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, 191, 168, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 191, 168, .04) 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(3, 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
}

.pcard:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(0, 191, 168, .3);
    transform: translateY(-4px)
}

.pnum {
    font-size: .68rem;
    font-weight: 800;
    font-family: var(--mono);
    color: rgba(0, 191, 168, .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(94, 234, 212, .65);
    background: rgba(0, 191, 168, .15);
    border: 1px solid rgba(0, 191, 168, .25);
    border-radius: 100px;
    padding: .12rem .5rem
}

.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
}

/* ===================== 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: #f0fdfa
}

.ba-aft .bahd h4 {
    color: var(--teal-d)
}

.ba-aft .bachip {
    background: var(--teal-l);
    color: var(--teal-d)
}

.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: var(--teal)
}

.ba-aft .baitem {
    color: #134e4a
}

.ba-imp .badot {
    background: #60a5fa
}

.ba-imp .baitem {
    color: #1e40af
}

/* ===================== AIO ELIGIBILITY 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
}

.sim-panel {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.sim-ph {
    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;
    justify-content: space-between;
    align-items: center
}

.sim-ph-pct {
    font-size: .72rem;
    font-weight: 800;
    color: var(--teal);
    background: var(--teal-l);
    border-radius: 100px;
    padding: .1rem .55rem
}

.sim-rows {
    padding: .375rem 0
}

.sim-row {
    display: flex;
    align-items: center;
    gap: .875rem;
    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-sub {
    font-size: .68rem;
    color: var(--muted)
}

.sim-weight {
    font-size: .7rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--teal);
    width: 40px;
    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(--teal)
}

.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
}

/* eligibility meter */
.elig-meter {
    margin-bottom: 1.5rem
}

.em-track {
    height: 16px;
    background: var(--off);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: .5rem
}

.em-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #dc2626, #f59e0b 40%, #0052e0);
    transition: width .8s cubic-bezier(.34, 1.56, .64, 1)
}

.em-labels {
    display: flex;
    justify-content: space-between;
    font-size: .6rem;
    color: var(--muted);
    font-weight: 600
}

/* AIO likelihood */
.aio-likelihood {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--off);
    border-radius: 14px
}

.al-sd {
    text-align: center
}

.al-lbl {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .25rem
}

.al-val {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    transition: color .4s
}

.al-arr {
    font-size: 1.5rem;
    color: #cbd5e1
}

/* signal chips */
.sig-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    min-height: 28px;
    margin-bottom: 1rem
}

.sig-chip {
    font-size: .63rem;
    font-weight: 700;
    padding: .18rem .6rem;
    border-radius: 100px;
    background: var(--teal-l);
    color: var(--teal-d);
    animation: fadein .2s ease
}

.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(--teal-l);
    color: var(--teal-d)
}

.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: #f0fdfa;
    color: var(--teal-d);
    font-weight: 700
}

.tdyes,
.cmpt th.thus {
    border-left: 2px solid rgba(0, 191, 168, .2)
}

.ix {
    color: var(--red);
    font-weight: 800
}

.io {
    color: var(--teal);
    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, 191, 168, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 191, 168, .04) 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, 191, 168, .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
}

/* ===================== 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(--teal);
    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, 191, 168, .35);
    box-shadow: 0 4px 16px rgba(0, 191, 168, .08)
}

.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(--teal-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--teal-d);
    flex-shrink: 0;
    transition: background .15s, transform .25s
}

.faqitem.open .faqico {
    background: var(--teal);
    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
    }

    .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
    }

    .bagrid,
    .resgrid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {

    .rgrid,
    .procgrid {
        grid-template-columns: 1fr
    }

    .hbtns {
        flex-direction: column
    }

    .hbtns .btn {
        justify-content: center
    }
}