*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #0052e0;
    --blue-d: #003bb5;
    --blue-l: #dbeafe;
    --blue-xl: #eff6ff;
    --teal: #00bfa8;
    --purple: #7c3aed;
    --green: #16a34a;
    --red: #dc2626;
    --amber: #f59e0b;
    --text: #0a0e1a;
    --sub: #1e293b;
    --muted: #64748b;
    --light: #94a3b8;
    --border: #e2e8f0;
    --off: #f8fafc;
    --white: #fff;
    --display: "Plus Jakarta Sans", sans-serif;
    --body: "Plus Jakarta Sans", sans-serif;
    --mono: "JetBrains Mono", monospace;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 26px;
    --sh-xs: 0 1px 3px rgba(0, 0, 0, .06);
    --sh-sm: 0 2px 8px rgba(0, 0, 0, .07), 0 8px 24px rgba(0, 0, 0, .04);
    --sh-md: 0 4px 20px rgba(0, 0, 0, .08), 0 16px 56px rgba(0, 0, 0, .05);
    --sh-blue: 0 8px 32px rgba(0, 82, 224, .18), 0 2px 8px rgba(0, 82, 224, .1);
    --sh-blue-lg: 0 16px 56px rgba(0, 82, 224, .32);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -.005em
}

a {
    text-decoration: none;
    color: inherit
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4.5vw, 52px)
}

/* ── ANIMATIONS ── */
@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .15
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 224, .35)
    }

    70% {
        box-shadow: 0 0 0 11px rgba(0, 82, 224, 0)
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes floatup {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

@keyframes popin {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.sr {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.sr.in {
    opacity: 1;
    transform: none
}

.sr-l {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .65s ease, transform .65s ease
}

.sr-l.in {
    opacity: 1;
    transform: none
}

.sr-r {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .65s ease, transform .65s ease
}

.sr-r.in {
    opacity: 1;
    transform: none
}

/* ── GLOBAL TAGS & LABELS ── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-family: var(--body);
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 100px;
    padding: .28rem .9rem
}

.tag-b {
    background: var(--blue-xl);
    color: var(--blue)
}

.tag-d {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .65)
}

.tag-g {
    background: rgba(22, 163, 74, .1);
    color: #15803d
}

.tag-p {
    background: rgba(124, 58, 237, .1);
    color: var(--purple)
}

.tag-t {
    background: rgba(0, 191, 168, .1);
    color: #0d7a6e
}

.btn-p {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--body);
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #003fcc 0%, #3630d0 52%, #5254ec 100%);
    border: none;
    border-radius: var(--r-md);
    padding: .95rem 2rem;
    cursor: pointer;
    transition: transform .14s, box-shadow .18s;
    box-shadow: 0 6px 28px rgba(0, 63, 204, .42), inset 0 1px 0 rgba(255, 255, 255, .12);
    letter-spacing: -.01em;
    text-decoration: none
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-blue-lg), inset 0 1px 0 rgba(255, 255, 255, .12)
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--body);
    font-size: .9rem;
    font-weight: 700;
    color: var(--blue);
    background: transparent;
    border: 2px solid var(--blue);
    border-radius: var(--r-md);
    padding: .85rem 1.75rem;
    cursor: pointer;
    transition: background .15s, transform .14s, box-shadow .16s;
    text-decoration: none
}

.btn-o:hover {
    background: var(--blue-xl);
    transform: translateY(-1px);
    box-shadow: var(--sh-blue)
}

.sec-head {
    text-align: center;
    margin-bottom: 3.25rem
}

.sec-head h2 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.05em;
    color: var(--text);
    margin-bottom: .875rem
}

.sec-head p {
    font-size: .96rem;
    color: var(--muted);
    max-width: 54ch;
    margin: 0 auto;
    line-height: 1.9
}

.sec-head .tag {
    margin-bottom: 1rem
}

/* ── HERO ── */
.hero {
    position: relative;
    background: linear-gradient(168deg, #020812 0%, #04091c 46%, #060f28 100%);
    padding: 6rem 0 0;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .07) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse 90% 72% at 50% 0%, #000 22%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 72% at 50% 0%, #000 22%, transparent 100%)
}

.horb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.ho1 {
    top: -18%;
    right: -5%;
    width: clamp(440px, 58vw, 680px);
    height: clamp(440px, 58vw, 680px);
    background: radial-gradient(circle, rgba(0, 82, 224, .2), transparent 65%)
}

.ho2 {
    bottom: -28%;
    left: -7%;
    width: clamp(340px, 44vw, 540px);
    height: clamp(340px, 44vw, 540px);
    background: radial-gradient(circle, rgba(0, 191, 168, .12), transparent 65%)
}

.ho3 {
    top: 32%;
    left: 12%;
    width: clamp(200px, 26vw, 320px);
    height: clamp(200px, 26vw, 320px);
    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
}

/* left */
.hero-badges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem
}

.hbg {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    border-radius: 100px;
    padding: .28rem .9rem;
    font-size: .68rem;
    font-weight: 700
}

.hbg-b {
    background: rgba(0, 82, 224, .18);
    border: 1px solid rgba(0, 82, 224, .38);
    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-family: var(--display);
    font-size: clamp(2.7rem, 5.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
    color: #fff;
    margin-bottom: 1.4rem
}

.gt {
    background: linear-gradient(130deg, #60a5fa 0%, #a78bfa 48%, #00e5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(96, 165, 250, .28))
}

.hero-desc {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, .46);
    line-height: 1.92;
    max-width: 50ch;
    margin-bottom: 2.25rem;
    font-weight: 400
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.chip {
    font-size: .67rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .2rem .7rem
}

/* right — ai card */
.ai-card {
    background: linear-gradient(150deg, #0c1727, #0f1f3c);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(0, 82, 224, .14);
    animation: floatup 7s ease-in-out infinite
}

.ai-topbar {
    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)
}

.ai-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.ai-dot-r {
    background: #ff5f57
}

.ai-dot-y {
    background: #ffbd2e
}

.ai-dot-g {
    background: #28ca41
}

.ai-label {
    font-family: var(--mono);
    font-size: .67rem;
    color: rgba(255, 255, 255, .2);
    margin-left: .4rem;
    flex: 1
}

.ai-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .63rem;
    font-weight: 700;
    color: #4ade80
}

.ai-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 1.8s infinite
}

.ai-platforms {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .875rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    flex-wrap: wrap
}

.ai-plat {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .68rem;
    font-weight: 700;
    padding: .28rem .75rem;
    border-radius: 100px
}

.plat-g {
    background: rgba(234, 67, 53, .15);
    border: 1px solid rgba(234, 67, 53, .3);
    color: rgba(255, 160, 150, .9)
}

.plat-c {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7)
}

.plat-p {
    background: rgba(32, 137, 220, .15);
    border: 1px solid rgba(32, 137, 220, .3);
    color: rgba(120, 190, 255, .9)
}

.plat-m {
    background: rgba(0, 120, 212, .15);
    border: 1px solid rgba(0, 120, 212, .3);
    color: rgba(120, 190, 255, .9)
}

.ai-citations {
    padding: .875rem 1.25rem
}

.ai-cite-lbl {
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .28);
    margin-bottom: .75rem
}

.ai-cite {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.ai-cite:last-child {
    border-bottom: none
}

.ai-cite-rank {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 800;
    flex-shrink: 0
}

.rank-1 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff
}

.rank-2 {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .5)
}

.rank-3 {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .35)
}

.ai-cite-txt {
    flex: 1
}

.ai-cite-name {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    margin-bottom: .12rem
}

.ai-cite-url {
    font-family: var(--mono);
    font-size: .6rem;
    color: rgba(255, 255, 255, .24)
}

.ai-cite-badge {
    font-size: .58rem;
    font-weight: 700;
    padding: .12rem .45rem;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px
}

.cited {
    background: rgba(22, 163, 74, .2);
    color: #4ade80
}

.not-cited {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .3)
}

.ai-footer {
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .5rem
}

.ai-foot-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: blink 1.5s infinite
}

.ai-foot-txt {
    font-family: var(--mono);
    font-size: .62rem;
    color: rgba(148, 196, 255, .45)
}

/* ── TICKER ── */
.ticker-sec {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative
}

.ticker-sec::before,
.ticker-sec::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ticker-sec::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent)
}

.ticker-sec::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white), transparent)
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 32s linear infinite
}

.ti {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0 2rem;
    font-size: .79rem;
    font-weight: 600;
    color: var(--muted)
}

.ti svg {
    width: 12px;
    height: 12px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

.tdot {
    padding: 0 .5rem;
    color: var(--border)
}

/* ── STATS ── */
.stats-sec {
    background: linear-gradient(180deg, #eef5ff 0%, var(--off) 100%);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border);
    position: relative
}

.stat:last-child {
    border-right: none
}

.stat-ico {
    font-size: 1.5rem;
    margin-bottom: .75rem
}

.stat-val {
    font-family: var(--display);
    font-size: 2.9rem;
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1;
    margin-bottom: .4rem;
    background: linear-gradient(135deg, var(--text), #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-val sup {
    font-size: 1.3rem
}

.stat-lbl {
    font-size: .77rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 18ch;
    margin: 0 auto
}

/* ── EXPLAINER (WHAT IS AEO) ── */
.explainer-sec {
    background: var(--white);
    padding: 7rem 0
}

.explainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.exp-h2 {
    font-family: var(--display);
    font-size: clamp(1.75rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.045em;
    margin-bottom: 1rem
}

.exp-desc {
    font-size: .94rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.75rem
}

.exp-list {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 2rem
}

.exp-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    line-height: 1.65
}

.exp-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 900
}

/* AEO vs SEO cards */
.vs-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.vs-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.375rem;
    transition: border-color .18s, box-shadow .18s, transform .18s;
    box-shadow: var(--sh-xs)
}

.vs-card:hover {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: var(--sh-blue);
    transform: translateX(5px)
}

.vs-label {
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .38rem
}

.vs-card h4 {
    font-family: var(--display);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.vs-card p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6
}

.vs-diff {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    color: var(--light);
    font-size: .78rem;
    font-weight: 600
}

/* ── PROCESS ── */
.proc-sec {
    background: linear-gradient(162deg, #040912, #080f22, #0a1530);
    padding: 7rem 0;
    position: relative;
    overflow: hidden
}

.proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent)
}

.proc-head {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1
}

.proc-head h2 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.05em;
    color: #fff;
    margin-bottom: .875rem;
    line-height: 1.06
}

.proc-head p {
    font-size: .96rem;
    color: rgba(255, 255, 255, .38);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.9
}

.proc-grid {
    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.875rem;
    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)
}

.pcard-num {
    font-family: var(--mono);
    font-size: .67rem;
    font-weight: 700;
    color: rgba(0, 82, 224, .65);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem
}

.pcard-ico {
    font-size: 1.8rem;
    margin-bottom: .875rem
}

.pcard h4 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.pcard p {
    font-size: .79rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.72
}

.pcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .875rem
}

.ptag {
    font-size: .61rem;
    font-weight: 600;
    color: rgba(148, 196, 255, .6);
    background: rgba(0, 82, 224, .14);
    border: 1px solid rgba(0, 82, 224, .22);
    border-radius: 100px;
    padding: .13rem .52rem
}

/* timeline */
.proc-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    z-index: 1
}

.ptl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 80px;
    position: relative
}

.ptl-item::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .18);
    font-size: .9rem
}

.ptl-item:last-child::after {
    display: none
}

.ptl-day {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em
}

.ptl-lbl {
    font-size: .64rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .18rem;
    font-weight: 500
}

/* ── BEFORE / AFTER ── */
.ba-sec {
    background: var(--white);
    padding: 7rem 0
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.ba-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--sh-xs)
}

.ba-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.375rem
}

.ba-head h4 {
    font-family: var(--display);
    font-size: .88rem;
    font-weight: 700
}

.ba-chip {
    font-size: .62rem;
    font-weight: 700;
    border-radius: 100px;
    padding: .18rem .65rem
}

.ba-bef .ba-head {
    background: #fff8f8
}

.ba-bef .ba-head h4 {
    color: var(--red)
}

.ba-bef .ba-chip {
    background: #fee2e2;
    color: var(--red)
}

.ba-aft .ba-head {
    background: #f0fdf4
}

.ba-aft .ba-head h4 {
    color: var(--green)
}

.ba-aft .ba-chip {
    background: #dcfce7;
    color: var(--green)
}

.ba-imp .ba-head {
    background: var(--blue-xl)
}

.ba-imp .ba-head h4 {
    color: var(--blue)
}

.ba-imp .ba-chip {
    background: var(--blue-l);
    color: var(--blue-d)
}

.ba-body {
    padding: 1.25rem 1.375rem;
    background: var(--white)
}

.ba-item {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .45rem 0;
    border-bottom: 1px solid var(--off);
    font-size: .79rem;
    line-height: 1.55
}

.ba-item:last-child {
    border-bottom: none
}

.ba-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px
}

.ba-bef .ba-dot {
    background: #f87171
}

.ba-bef .ba-item {
    color: #7f1d1d
}

.ba-aft .ba-dot {
    background: #4ade80
}

.ba-aft .ba-item {
    color: #14532d
}

.ba-imp .ba-dot {
    background: #60a5fa
}

.ba-imp .ba-item {
    color: #1e40af
}

/* ── COMPARISON TABLE ── */
.cmp-sec {
    background: var(--off);
    padding: 7rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.cmp-box {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white)
}

.cmp-scroll {
    overflow-x: auto
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px
}

.cmp-table th {
    padding: .9rem 1.375rem;
    font-size: .69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    background: var(--off);
    border-bottom: 2px solid var(--border);
    text-align: left
}

.cmp-table th.hl {
    background: var(--blue-xl);
    color: var(--blue)
}

.cmp-table td {
    padding: .9rem 1.375rem;
    font-size: .84rem;
    border-bottom: 1px solid var(--off);
    text-align: left
}

.cmp-table tr:last-child td {
    border-bottom: none
}

.cmp-table tr:hover td {
    background: #fafbff
}

.cmp-table td:first-child {
    font-weight: 600;
    color: var(--sub)
}

.td-no {
    color: #94a3b8
}

.td-meh {
    color: #d97706
}

.td-yes {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 700
}

.td-yes,
.cmp-table th.hl {
    border-left: 2px solid rgba(0, 82, 224, .1)
}

.ico-x {
    color: var(--red);
    font-weight: 900
}

.ico-o {
    color: var(--green);
    font-weight: 900
}

.ico-m {
    color: #d97706;
    font-weight: 900
}

/* ── FAQ ── */
.faq-sec {
    background: linear-gradient(180deg, var(--off) 0%, #edf2ff 100%);
    padding: 7rem 0;
    border-top: 1px solid var(--border)
}

.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start
}

.faq-sticky {
    position: sticky;
    top: 5rem
}

.faq-sticky h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.045em;
    margin-bottom: .875rem;
    line-height: 1.1
}

.faq-sticky p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.88;
    margin-bottom: 1.75rem
}

.faq-contact-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.375rem;
    box-shadow: var(--sh-xs)
}

.faq-contact-box h4 {
    font-family: var(--display);
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.faq-contact-box p {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: .5rem
}

.faq-contact-box a {
    font-size: .8rem;
    color: var(--blue);
    font-weight: 700
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-xs);
    transition: border-color .16s, box-shadow .16s
}

.faq-item.open {
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 4px 24px rgba(0, 82, 224, .1)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.375rem;
    cursor: pointer;
    user-select: none;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45
}

.faq-ico {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--blue-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
    transition: background .14s, transform .24s
}

.faq-item.open .faq-ico {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 1.375rem 1.15rem;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.88
}

.faq-item.open .faq-a {
    display: block
}

/* ── CTA SECTION ── */
.cta-sec {
    background: linear-gradient(162deg, #040912, #080f22, #0a1530);
    padding: 7rem 0;
    position: relative;
    overflow: hidden
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent)
}

.cta-orb-1 {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .18), transparent 65%);
    pointer-events: none
}

.cta-orb-2 {
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 168, .1), transparent 65%);
    pointer-events: none
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto
}

.cta-inner h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.055em;
    color: #fff;
    margin-bottom: 1rem
}

.cta-inner h2 em {
    font-style: normal;
    background: linear-gradient(130deg, #60a5fa 0%, #a78bfa 48%, #00e5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta-inner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .44);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem;
    flex-wrap: wrap
}

.btn-g-dark {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--body);
    font-size: .9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--r-md);
    padding: .9rem 1.75rem;
    cursor: pointer;
    transition: background .15s, border-color .15s, transform .14s;
    backdrop-filter: blur(8px);
    text-decoration: none
}

.btn-g-dark:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-1px)
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .32);
    font-weight: 500
}

.cta-trust-item svg {
    width: 13px;
    height: 13px;
    stroke: rgba(0, 191, 168, .7);
    fill: none;
    stroke-width: 2.5
}

/* ── RESPONSIVE ── */
@media(max-width:1060px) {

    .hero-in,
    .explainer-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-in {
        padding-bottom: 4rem
    }

    .proc-grid {
        grid-template-columns: 1fr 1fr
    }

    .faq-layout {
        grid-template-columns: 1fr
    }

    .faq-sticky {
        position: static
    }
}

@media(max-width:860px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat {
        border-bottom: 1px solid var(--border)
    }

    .stat:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .stat:nth-child(even) {
        border-right: none
    }

    .ba-grid,
    .proc-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:580px) {
    .cmp-table {
        min-width: 520px
    }
}