@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
    --orange: #FF6B00;
    --orange-l: #FF8C33;
    --orange-bg: rgba(255, 107, 0, 0.09);
    --orange-d: #CC5500;
    --sky: #38BDF8;
    --sky-bg: rgba(56, 189, 248, 0.09);
    --slate: #0F172A;
    --slate-l: #1E293B;
    --slate-2: #273549;
    --slate-3: #334155;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-b: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.09);
    --border-l: rgba(255, 255, 255, 0.05);
    --text1: #F8FAFC;
    --text2: rgba(248, 250, 252, 0.72);
    --text3: rgba(248, 250, 252, 0.42);
    --font-h: 'Syne', system-ui, sans-serif;
    --font: 'Outfit', system-ui, sans-serif;
    --r: 10px;
    --rl: 18px;
    --rx: 28px;
    --sh: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shl: 0 8px 48px rgba(0, 0, 0, 0.55);
    --go: 0 0 28px rgba(255, 107, 0, 0.22);
    --gs: 0 0 28px rgba(56, 189, 248, 0.18);
    --tr: 0.2s ease;
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font);
    background: var(--slate);
    color: var(--text1);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

svg {
    max-width: 100%
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--tr)
}

a:hover {
    color: var(--orange-l)
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: var(--orange);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 9999
}

.skip-link:focus {
    top: 12px
}

/* ── LAYOUT ────────────────────────────────────────────────────────────────── */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.wrap-sm {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px
}

.sec {
    padding: 80px 0
}

.stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--sky), var(--orange))
}

/* ── TOPBAR ────────────────────────────────────────────────────────────────── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-l);
}

.topbar-inner {
    display: flex;
    align-items: center;
    height: 62px;
    gap: 10px;
}

.tlogo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--text1);
    letter-spacing: -0.3px;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.tlogo-mark {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

/* Nav links — auto margin pushes them right */
.tnav {
    display: flex;
    gap: 2px;
    margin-left: auto;
    flex-wrap: nowrap;
    align-items: center;
}

.tnav a {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text2);
    padding: 5px 9px;
    border-radius: 6px;
    transition: color var(--tr), background var(--tr);
    white-space: nowrap;
}

.tnav a:hover,
.tnav a.on {
    color: var(--orange);
    background: var(--orange-bg)
}

/* CTA button in top nav (desktop only) */
.tnav-cta {
    display: inline-flex;
    margin-left: 8px;
    flex-shrink: 0;
}

/* ── BURGER BUTTON — hidden desktop, shown mobile ── */
.tburger {
    display: none;
    /* hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    flex-shrink: 0;
    margin-left: auto;
    /* push to right when nav links hidden */
}

.tburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text1);
    border-radius: 2px;
    transition: all var(--tr);
    pointer-events: none;
}

/* Mobile dropdown */
.tmob {
    display: none;
    flex-direction: column;
    background: var(--slate-l);
    border-bottom: 1px solid var(--border-l);
    padding: 8px 12px;
    gap: 2px;
}

.tmob a {
    display: block;
    color: var(--text2);
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: color var(--tr), background var(--tr);
}

.tmob a:hover {
    color: var(--orange);
    background: var(--orange-bg)
}

.tmob.show {
    display: flex
}

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-h);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--r);
}

.btn-o {
    background: var(--orange);
    color: #fff
}

.btn-o:hover {
    background: var(--orange-l);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--go)
}

.btn-s {
    background: var(--sky);
    color: var(--slate)
}

.btn-s:hover {
    background: #7DD3FC;
    transform: translateY(-2px);
    box-shadow: var(--gs)
}

.btn-out {
    background: transparent;
    color: var(--text1);
    border: 1.5px solid var(--border)
}

.btn-out:hover {
    border-color: var(--orange);
    color: var(--orange)
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.77rem
}

.btn-md {
    padding: 11px 22px;
    font-size: 0.875rem
}

.btn-lg {
    padding: 13px 26px;
    font-size: 1rem
}

.btn-xl {
    padding: 16px 34px;
    font-size: 1.05rem
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse 65% 65% at 80% 40%, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-2col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 52px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 100px
}

.badge-o {
    background: var(--orange-bg);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 0, 0.3)
}

.badge-s {
    background: var(--sky-bg);
    color: var(--sky);
    border: 1px solid rgba(56, 189, 248, 0.3)
}

.badge-n {
    background: var(--glass-b);
    color: var(--text2);
    border: 1px solid var(--border)
}

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 18px
}

.hero h1 em {
    color: var(--orange);
    font-style: normal
}

.hero h1 strong {
    color: var(--sky)
}

.hero-sub {
    color: var(--text2);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-l);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border-l);
}

.hs-cell {
    background: var(--slate-l);
    padding: 14px 16px;
    text-align: center
}

.hs-num {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange)
}

.hs-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px
}

.hero-img-wrap {
    border-radius: var(--rx);
    overflow: hidden;
    box-shadow: var(--shl), var(--go)
}

/* ── SECTION HEADER ────────────────────────────────────────────────────────── */
.sh {
    text-align: center;
    margin-bottom: 44px
}

.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 10px
}

.sh-tag::before,
.sh-tag::after {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--orange);
    opacity: 0.5
}

.sh h2 {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text1);
    margin-bottom: 12px;
    line-height: 1.15
}

.sh h2 em {
    color: var(--orange);
    font-style: normal
}

.sh h2 strong {
    color: var(--sky)
}

.sh p {
    color: var(--text2);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto
}

/* ── TABLES ────────────────────────────────────────────────────────────────── */
.tw {
    overflow-x: auto;
    border-radius: var(--rl);
    border: 1px solid var(--border-l)
}

table {
    width: 100%;
    border-collapse: collapse
}

caption {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text3);
    padding: 10px 18px;
    text-align: left;
    background: var(--glass);
    border-bottom: 1px solid var(--border-l)
}

thead th {
    background: var(--slate-2);
    color: var(--text1);
    font-family: var(--font-h);
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 13px 16px;
    text-align: left
}

th.oh {
    color: var(--orange)
}

tbody tr {
    border-bottom: 1px solid var(--border-l);
    transition: background var(--tr)
}

tbody tr:hover {
    background: var(--glass)
}

tbody tr:last-child {
    border: none
}

td {
    padding: 12px 16px;
    font-size: 0.865rem;
    color: var(--text2)
}

.tb {
    color: var(--orange);
    font-weight: 700
}

.ts {
    color: var(--sky);
    font-weight: 600
}

.tw2 {
    color: #4ADE80;
    font-weight: 600
}

.td-w {
    color: #FACC15;
    font-weight: 600
}

.td-r {
    color: #F87171;
    font-weight: 600
}

.row-hi {
    background: var(--orange-bg) !important;
    border-left: 3px solid var(--orange)
}

/* ── CARDS ─────────────────────────────────────────────────────────────────── */
.cg3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px
}

.cg2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 22px
}

.cg4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.card {
    padding: 26px;
    border-radius: var(--rl);
    border: 1px solid var(--border-l);
    background: var(--glass);
    transition: all var(--tr);
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: var(--go)
}

.ci {
    font-size: 2rem;
    margin-bottom: 12px
}

.card h3 {
    font-family: var(--font-h);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text1);
    margin-bottom: 8px
}

.card p {
    font-size: 0.86rem;
    color: var(--text2);
    line-height: 1.65
}

.c-num {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 2px
}

.c-sky .ci,
.c-sky .c-num {
    color: var(--sky)
}

.c-sky:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: var(--gs)
}

/* ── SCORE PANEL ───────────────────────────────────────────────────────────── */
.sp {
    background: linear-gradient(135deg, var(--slate-2), var(--slate-3));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--rx);
    padding: 36px;
    box-shadow: var(--go)
}

.sp-big {
    font-family: var(--font-h);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1
}

.sp-den {
    font-size: 1.4rem;
    color: var(--text3)
}

.sp-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-top: 6px
}

.sp-stars {
    letter-spacing: 3px;
    font-size: 1.1rem;
    color: var(--orange);
    margin: 8px 0
}

.br {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-l);
    font-size: 0.78rem
}

.br:last-child {
    border: none
}

.br-lbl {
    color: var(--text2);
    flex: 1
}

.br-bar {
    flex: 2;
    height: 4px;
    background: var(--glass-b);
    border-radius: 2px
}

.br-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--orange-d), var(--orange))
}

.br-v {
    color: var(--orange);
    font-weight: 700;
    font-family: var(--font-h);
    min-width: 26px;
    text-align: right
}

/* ── BAR CHART ─────────────────────────────────────────────────────────────── */
.bch {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 160px;
    padding: 0 8px
}

.bch-g {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1
}

.bch-b {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: height 1.1s ease
}

.bch-b.oc {
    background: linear-gradient(to top, var(--orange-d), var(--orange))
}

.bch-b.sc {
    background: linear-gradient(to top, #0284C7, var(--sky))
}

.bch-b.gc {
    background: linear-gradient(to top, #15803D, #4ADE80)
}

.bch-b.gr {
    background: linear-gradient(to top, #374151, #6B7280)
}

.bch-l {
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--text3);
    text-align: center;
    white-space: nowrap
}

.bch-v {
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text2)
}

/* ── RINGS (SVG) ───────────────────────────────────────────────────────────── */
.ring-wrap {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.ring {
    position: relative;
    width: 90px;
    height: 90px
}

.ring svg {
    transform: rotate(-90deg);
    width: 90px;
    height: 90px
}

.ring-bg {
    stroke: var(--glass-b);
    stroke-width: 6;
    fill: none
}

.ring-fill {
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s ease
}

.ring-o .ring-fill {
    stroke: var(--orange)
}

.ring-s .ring-fill {
    stroke: var(--sky)
}

.ring-g .ring-fill {
    stroke: #4ADE80
}

.ring-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.ring-val {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text1);
    line-height: 1
}

.ring-key {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text3);
    margin-top: 2px
}

/* ── STEPS ─────────────────────────────────────────────────────────────────── */
.steps {
    list-style: none;
    padding: 0;
    counter-reset: st
}

.steps li {
    counter-increment: st;
    padding: 18px 18px 18px 58px;
    position: relative;
    border-left: 2px solid var(--border-l);
    margin-left: 20px;
    margin-bottom: 6px;
}

.steps li::before {
    content: counter(st);
    position: absolute;
    left: -18px;
    top: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps li h4 {
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--text1);
    margin-bottom: 3px
}

.steps li p {
    font-size: 0.86rem;
    color: var(--text3)
}

/* ── CHECKLIST ─────────────────────────────────────────────────────────────── */
.cl {
    list-style: none;
    padding: 0
}

.cl li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.86rem;
    color: var(--text2);
    border-bottom: 1px solid var(--border-l)
}

.cl li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 800
}

.cl li.no::before {
    content: '✗';
    color: #F87171
}

.cl li.no {
    color: var(--text3)
}

.cl li:last-child {
    border: none
}

/* ── NOTICE ────────────────────────────────────────────────────────────────── */
.notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 18px;
    border-radius: var(--r);
    border-left: 3px solid var(--orange);
    background: var(--orange-bg)
}

.notice.info {
    border-color: var(--sky);
    background: var(--sky-bg)
}

.notice.warn {
    border-color: #FACC15;
    background: rgba(250, 204, 21, 0.07)
}

.n-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px
}

.notice p {
    font-size: 0.86rem;
    color: var(--text2);
    line-height: 1.6;
    margin: 0
}

/* ── PROVINCE GRID ─────────────────────────────────────────────────────────── */
.pg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 10px
}

.pc {
    padding: 13px 16px;
    border-radius: var(--r);
    border: 1px solid var(--border-l);
    background: var(--glass);
    display: flex;
    align-items: center;
    gap: 10px
}

.pc.ok {
    border-color: rgba(255, 107, 0, 0.2)
}

.pc-ico {
    font-size: 1.3rem
}

.pc-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text1)
}

.pc-st {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange)
}

/* ── CTA BAND ──────────────────────────────────────────────────────────────── */
.cta {
    padding: 72px 0;
    text-align: center;
    background: linear-gradient(160deg, var(--slate-l) 0%, var(--slate-2) 60%, var(--slate) 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.15);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 70%)
}

.cta h2 {
    font-family: var(--font-h);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text1);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative
}

.cta p {
    color: var(--text2);
    margin-bottom: 26px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative
}

.cta-note {
    font-size: 0.72rem;
    color: var(--text3);
    margin-top: 14px;
    position: relative
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border-l);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 8px;
    background: var(--glass)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--text1);
    cursor: pointer;
    font-size: 0.92rem;
    transition: background var(--tr)
}

.faq-q:hover {
    background: var(--glass-b)
}

.faq-icon {
    color: var(--orange);
    font-size: 1.3rem;
    transition: transform 0.25s ease;
    margin-left: 12px;
    flex-shrink: 0
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease
}

.faq-a.open {
    max-height: 500px;
    padding: 0 22px 18px
}

.faq-a p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.7
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-item.active {
    border-color: rgba(255, 107, 0, 0.25)
}

.faq-item.active .faq-q {
    color: var(--orange)
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.foot {
    background: var(--slate-l);
    border-top: 1px solid var(--border-l);
    padding: 48px 0 24px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 32px
}

.foot-brand p {
    font-size: 0.78rem;
    color: var(--text3);
    margin-top: 10px;
    line-height: 1.6
}

.foot-col h4 {
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.foot-col ul {
    list-style: none;
    padding: 0
}

.foot-col li {
    margin-bottom: 7px
}

.foot-col a {
    font-size: 0.8rem;
    color: var(--text2)
}

.foot-col a:hover {
    color: var(--orange)
}

.foot-warn {
    border-top: 1px solid var(--border-l);
    border-bottom: 1px solid var(--border-l);
    padding: 16px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px
}

.fw-t {
    background: var(--orange);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 9px;
    border-radius: 5px;
    flex-shrink: 0
}

.foot-warn p {
    font-size: 0.76rem;
    color: var(--text3);
    line-height: 1.5
}

.foot-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.foot-bot p {
    font-size: 0.72rem;
    color: var(--text3)
}

.fbadges {
    display: flex;
    gap: 5px
}

.fbadge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 7px;
    border-radius: 3px;
    border: 1px solid var(--border-l);
    color: var(--text3)
}

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */
.fi {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.fi.on {
    opacity: 1;
    transform: none
}

/* ── UTILS ─────────────────────────────────────────────────────────────────── */
.mt16 {
    margin-top: 16px
}

.mt24 {
    margin-top: 24px
}

.mt32 {
    margin-top: 32px
}

.mt48 {
    margin-top: 48px
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-2col {
        grid-template-columns: 1fr;
        padding: 60px 0 40px
    }

    .hero-img-wrap {
        display: none
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .vs-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {

    /* Hide desktop nav links and CTA */
    .tnav {
        display: none
    }

    .tnav-cta {
        display: none
    }

    .btn-out {
        display: none
    }

    /* Show burger — it already has margin-left:auto so it goes right */
    .tburger {
        display: flex
    }

    /* Other layout */
    .sec {
        padding: 48px 0
    }

    .bch {
        height: 110px;
        gap: 8px
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .sp {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr
    }

    .cta-row,
    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .cg3,
    .cg2 {
        grid-template-columns: 1fr
    }

    .tlogo span:last-child {
        display: none
    }

    /* hide long text, keep icon */
}