/* ═══════════════════════════════════════════════════════════
   Betsson México — Design System
   Brand: Green #00a651 · Dark #0f1f14 · Gold #f0c040
   Font: Barlow Condensed (headings) + Inter (body)
   Aesthetic: Sportsbook-first, data-driven, premium green
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --g1: #00a651;
    /* Betsson primary green */
    --g2: #007d3c;
    /* dark green */
    --g3: #004d26;
    /* deeper green */
    --g4: #0f1f14;
    /* background dark */
    --g5: #162b1c;
    /* card bg */
    --g6: #1e3828;
    /* border-ish */
    --gold: #f0c040;
    --lime: #7deb6e;
    --white: #ffffff;
    --off: #e8f5ee;
    --text: #c8ddd1;
    --muted: #7a9987;
    --red: #e84040;
    --font-h: 'Barlow Condensed', sans-serif;
    --font-b: 'Inter', sans-serif;
    --r: 8px;
    --r-lg: 14px;
    --sh: 0 4px 20px rgba(0, 166, 81, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--g4);
    color: var(--text);
    font-family: var(--font-b);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── SKIP ─────────────────── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--g1);
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
    border-radius: 0 0 8px 0;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ── HEADER ───────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(15, 31, 20, .97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--g1);
}

.hdr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 60px;
}

.logo {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-b {
    color: var(--g1);
}

.logo-rest {
    color: var(--white);
}

.logo-mx {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    margin-left: 3px;
    align-self: flex-end;
    margin-bottom: 3px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 11px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color .2s, background .2s;
    font-family: var(--font-h);
    letter-spacing: .3px;
    text-transform: uppercase;
}

nav a:hover,
nav a.active {
    color: var(--g1);
    background: rgba(0, 166, 81, .1);
}

.hdr-cta {
    background: var(--g1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .82rem;
    padding: 8px 20px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-h);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}

.hdr-cta:hover {
    background: var(--g2);
    transform: translateY(-1px);
}

/* Mobile header CTA (between logo and burger on mobile) */
.btn-mob-header {
    display: none;
    background: var(--g1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .75rem;
    padding: 7px 13px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-h);
    text-transform: uppercase;
    margin-left: auto;
    transition: background .2s;
}

.btn-mob-header:hover {
    background: var(--g2);
}

/* Burger */
.burger {
    display: none;
    background: none;
    border: 1px solid var(--g6);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all .25s;
}

/* ── MOBILE MENU ──────────── */
.mob-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--g4);
    z-index: 199;
    overflow-y: auto;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
}

.mob-menu.open {
    display: flex;
}

.mob-cta-top {
    background: var(--g1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--r);
    text-align: center;
    margin-bottom: 12px;
    font-family: var(--font-h);
    font-size: 1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.mob-menu a:not(.mob-cta-top) {
    color: var(--text);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: var(--r);
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background .2s, color .2s;
    font-family: var(--font-h);
    letter-spacing: .3px;
    text-transform: uppercase;
}

.mob-menu a:not(.mob-cta-top):hover {
    background: rgba(0, 166, 81, .1);
    color: var(--g1);
}

/* ── LAYOUT ───────────────── */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TICKER BAR ───────────── */
.ticker-bar {
    background: var(--g1);
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    gap: 32px;
    animation: tick 30s linear infinite;
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.tick-item {
    font-family: var(--font-h);
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tick-score {
    background: rgba(255, 255, 255, .2);
    padding: 1px 6px;
    border-radius: 3px;
}

.tick-live {
    background: var(--red);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: .68rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .6
    }
}

/* ── HERO ─────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 31, 20, .95) 50%, rgba(15, 31, 20, .4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    max-width: 580px;
}

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.hero h1 span {
    color: var(--g1);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text);
    max-width: 460px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── BUTTONS ──────────────── */
.btn-primary {
    display: inline-block;
    background: var(--g1);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: .95rem;
    padding: 12px 28px;
    border-radius: var(--r);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}

.btn-primary:hover {
    background: var(--g2);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--g1);
    color: var(--g1);
    text-decoration: none;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 24px;
    border-radius: var(--r);
    letter-spacing: .4px;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.btn-outline:hover {
    background: rgba(0, 166, 81, .1);
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: .95rem;
    padding: 12px 28px;
    border-radius: var(--r);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: filter .2s, transform .2s;
}

.btn-gold:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ── QUICK-STATS ROW ──────── */
.quickstats {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--g6);
}

.qs-item {
    flex: 1;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid var(--g6);
}

.qs-item:last-child {
    border-right: none;
}

.qs-num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: var(--g1);
    line-height: 1;
}

.qs-lbl {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── SECTION ──────────────── */
section {
    padding: 64px 0;
}

section.alt {
    background: var(--g5);
}

section.stripe {
    background: linear-gradient(135deg, var(--g5) 0%, var(--g4) 100%);
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 166, 81, .12);
    border: 1px solid rgba(0, 166, 81, .3);
    color: var(--g1);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

h2 em {
    color: var(--g1);
    font-style: normal;
}

h3 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 6px;
}

.lead {
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 28px;
    line-height: 1.75;
}

/* ── SIDEBAR LAYOUT ───────── */
.layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.layout-sidebar-left {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
}

@media(max-width:960px) {

    .layout-sidebar,
    .layout-sidebar-left {
        grid-template-columns: 1fr;
    }
}

/* ── GRIDS ────────────────── */
.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.g3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.g4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media(max-width:900px) {

    .g3,
    .g4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {

    .g2,
    .g3,
    .g4 {
        grid-template-columns: 1fr;
    }
}

/* ── CARDS ────────────────── */
.card {
    background: var(--g5);
    border: 1px solid var(--g6);
    border-radius: var(--r-lg);
    padding: 22px;
    transition: border-color .2s, transform .2s;
}

.card:hover {
    border-color: rgba(0, 166, 81, .4);
    transform: translateY(-2px);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.ci-g {
    background: rgba(0, 166, 81, .12);
}

.ci-gold {
    background: rgba(240, 192, 64, .12);
}

.ci-r {
    background: rgba(232, 64, 64, .12);
}

/* ── ODDS TABLE (sport-specific) */
.odds-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.odds-table th {
    background: var(--g1);
    color: #fff;
    font-family: var(--font-h);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 12px;
    text-align: center;
}

.odds-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--g6);
    text-align: center;
    color: var(--text);
}

.odds-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #fff;
}

.odds-table tr:hover td {
    background: rgba(0, 166, 81, .05);
}

.odd-btn {
    display: inline-block;
    background: rgba(0, 166, 81, .15);
    border: 1px solid rgba(0, 166, 81, .3);
    color: var(--g1);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .82rem;
    transition: background .15s;
}

.odd-btn:hover {
    background: var(--g1);
    color: #fff;
}

.odd-up {
    color: var(--lime);
}

.odd-down {
    color: var(--red);
}

/* ── TABLE ────────────────── */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--r);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
}

caption {
    font-size: .72rem;
    color: var(--muted);
    text-align: left;
    padding: 0 0 8px;
}

thead tr {
    background: rgba(0, 166, 81, .08);
}

th {
    padding: 11px 13px;
    text-align: left;
    font-family: var(--font-h);
    font-weight: 700;
    color: #fff;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--g1);
}

td {
    padding: 10px 13px;
    border-bottom: 1px solid var(--g6);
    color: var(--text);
}

tbody tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.td-g {
    color: var(--g1);
    font-weight: 700;
}

.td-gold {
    color: var(--gold);
    font-weight: 600;
}

.td-r {
    color: var(--red);
    font-weight: 600;
}

.td-m {
    color: var(--muted);
}

.td-w {
    color: #fff;
    font-weight: 600;
}

.td-c {
    text-align: center;
}

/* ── BREADCRUMBS ──────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--muted);
    padding: 14px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color .15s;
}

.breadcrumb a:hover {
    color: var(--g1);
}

.breadcrumb span {
    color: var(--g6);
}

.breadcrumb strong {
    color: var(--text);
}

/* ── LIVE MATCH CARD ──────── */
.match-card {
    background: var(--g5);
    border: 1px solid var(--g6);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .2s;
}

.match-card:hover {
    border-color: var(--g1);
}

.match-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}

.match-teams {
    flex: 1;
}

.match-team {
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.match-score {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--g1);
    flex-shrink: 0;
}

.match-time {
    font-size: .72rem;
    color: var(--muted);
    flex-shrink: 0;
    text-align: right;
}

.match-league {
    font-size: .65rem;
    color: var(--g1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── VERTICAL BAR CHART ───── */
.vbar-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 160px;
    padding-bottom: 20px;
    position: relative;
}

.vbar-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--g6);
}

.vbar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vbar-fill {
    width: 100%;
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    background: var(--g1);
    transition: height .8s;
}

.vbar-lbl {
    font-size: .65rem;
    color: var(--muted);
    text-align: center;
    white-space: nowrap;
}

.vbar-val {
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
}

/* ── HBAR CHART ─────────────*/
.hbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hbar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hbar-lbl {
    width: 140px;
    font-size: .78rem;
    color: var(--muted);
    flex-shrink: 0;
    text-align: right;
}

.hbar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
}

.hbar-fill {
    height: 100%;
    border-radius: 4px;
}

.hf-g {
    background: linear-gradient(90deg, var(--g2), var(--g1));
}

.hf-gold {
    background: linear-gradient(90deg, #b38600, var(--gold));
}

.hf-lime {
    background: linear-gradient(90deg, #4db848, var(--lime));
}

.hf-w {
    background: rgba(255, 255, 255, .35);
}

.hbar-val {
    width: 42px;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* ── CHART BOX ────────────── */
.chart-box {
    background: var(--g5);
    border: 1px solid var(--g6);
    border-radius: var(--r-lg);
    padding: 22px;
}

.chart-title {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.chart-sub {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 10px;
}

/* ── DONUT ────────────────── */
.donut-wrap {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.donut {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut::after {
    content: '';
    position: absolute;
    width: 74px;
    height: 74px;
    background: var(--g5);
    border-radius: 50%;
}

.donut-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--text);
}

.dl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── RADIAL PROGRESS ─────── */
.radial-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radial {
    text-align: center;
}

.radial svg {
    width: 80px;
    height: 80px;
}

.radial-val {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 900;
    fill: #fff;
}

.radial-bg {
    fill: none;
    stroke: var(--g6);
    stroke-width: 8;
}

.radial-fg {
    fill: none;
    stroke: var(--g1);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 201;
    transition: stroke-dashoffset .8s;
}

.radial-name {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── STEPS ────────────────── */
.steps-horiz {
    display: flex;
    gap: 0;
    counter-reset: step;
}

.step-h {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 8px;
}

.step-h::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--g6);
    z-index: 0;
}

.step-h:last-child::after {
    display: none;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--g1);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: var(--font-h);
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.step-desc {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── FEATURE BAND ─────────── */
.feature-band {
    background: linear-gradient(135deg, rgba(0, 166, 81, .08), rgba(0, 77, 38, .15));
    border: 1px solid rgba(0, 166, 81, .2);
    border-radius: var(--r-lg);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.feat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* ── IMAGE HELPERS ────────── */
.img-wide {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
}

.img-banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
}

.img-portrait {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
}

.img-card {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--r) var(--r) 0 0;
    display: block;
}

/* ── SEO BLOCK ────────────── */
.seo-block {
    background: var(--g5);
    padding: 56px 0;
}

.seo-wrap {
    max-width: 860px;
}

.seo-wrap h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.seo-wrap h3 {
    color: var(--g1);
    font-size: 1rem;
    margin: 22px 0 8px;
    text-transform: none;
    letter-spacing: 0;
}

.seo-wrap p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: .92rem;
}

.seo-wrap a {
    color: var(--g1);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── CTA SECTION ──────────── */
.cta-sec {
    background: linear-gradient(135deg, var(--g3), var(--g4));
    border-top: 1px solid var(--g6);
    padding: 64px 0;
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-inner p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 28px;
}

/* ── LABEL/BADGE ──────────── */
.badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 6px;
    font-family: var(--font-h);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.badge-live {
    background: var(--red);
    color: #fff;
}

.badge-new {
    background: var(--g1);
    color: #fff;
}

.badge-hot {
    background: var(--gold);
    color: #000;
}

.badge-top {
    background: var(--g2);
    color: var(--lime);
}

/* ── PILLS / TAGS ─────────── */
.pill {
    display: inline-block;
    background: rgba(0, 166, 81, .1);
    color: var(--g1);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 30px;
    border: 1px solid rgba(0, 166, 81, .25);
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── PROMO CARD ───────────── */
.promo-card {
    background: var(--g5);
    border: 1px solid var(--g6);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.promo-body {
    padding: 20px;
}

.promo-tag {
    font-family: var(--font-h);
    font-size: .68rem;
    color: var(--g1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-title {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.promo-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── AUTHOR BOX ───────────── */
.author-box {
    display: flex;
    gap: 16px;
    background: var(--g5);
    border: 1px solid var(--g6);
    border-radius: var(--r-lg);
    padding: 20px;
    margin-top: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.author-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--g1);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-badge {
    font-size: .65rem;
    color: var(--g1);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.author-name {
    font-family: var(--font-h);
    font-size: .98rem;
    color: #fff;
    font-weight: 700;
}

.author-bio {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── QUICK-LINKS ──────────── */
.ql-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ql {
    background: rgba(0, 166, 81, .08);
    color: var(--g1);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(0, 166, 81, .2);
    font-family: var(--font-h);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .15s;
}

.ql:hover {
    background: rgba(0, 166, 81, .2);
}

/* ── FOOTER ───────────────── */
footer {
    background: #080f0a;
    border-top: 2px solid var(--g1);
    padding: 52px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

@media(max-width:800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.foot-brand .logo {
    font-size: 1.3rem;
}

.foot-brand p {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.6;
    max-width: 220px;
}

.age-badge {
    display: inline-block;
    background: rgba(0, 166, 81, .15);
    color: var(--g1);
    border: 1px solid rgba(0, 166, 81, .3);
    font-weight: 800;
    font-size: .7rem;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 12px;
    font-family: var(--font-h);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.foot-col h4 {
    font-family: var(--font-h);
    font-size: .75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.foot-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: .8rem;
    margin-bottom: 7px;
    transition: color .15s;
}

.foot-col a:hover {
    color: var(--g1);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.foot-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.foot-legal a {
    color: var(--muted);
    text-decoration: none;
    font-size: .77rem;
    transition: color .15s;
}

.foot-legal a:hover {
    color: var(--g1);
}

.foot-disc {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 600px;
}

.foot-copy {
    font-size: .75rem;
    color: var(--muted);
}

/* ── RESPONSIVE ───────────── */
@media(max-width:768px) {

    nav,
    .hdr-cta {
        display: none;
    }

    .btn-mob-header {
        display: inline-block;
    }

    .burger {
        display: flex;
    }

    section {
        padding: 44px 0;
    }

    .hero {
        min-height: 320px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .quickstats {
        flex-wrap: wrap;
    }

    .qs-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid var(--g6);
    }

    .steps-horiz {
        flex-direction: column;
        gap: 16px;
    }

    .step-h::after {
        display: none;
    }
}

/* ── UTILS ───────────────── */
.mt-0 {
    margin-top: 0;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.text-center {
    text-align: center;
}

.text-g {
    color: var(--g1);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--muted);
}

.fw-9 {
    font-family: var(--font-h);
    font-weight: 900;
    text-transform: uppercase;
}

.sep {
    border: none;
    border-top: 1px solid var(--g6);
    margin: 28px 0;
}