/* ================================================================
   JugaBet México — style.css
   Colors: Forest Green #0A5F38 | Black #070D0B | Gold #C9A84C
   Fonts: Montserrat (body) + Playfair Display (headings)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

/* ── TOKENS ────────────────────────────────────────────────────── */
:root {
    --green-dark: #071e14;
    --green-mid: #0A5F38;
    --green-light: #16A86A;
    --green-glow: rgba(10, 95, 56, .25);
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: rgba(201, 168, 76, .15);
    --black: #070D0B;
    --surface: #0d1f16;
    --surface-2: #112319;
    --surface-3: #162d20;
    --border: rgba(10, 95, 56, .35);
    --border-gold: rgba(201, 168, 76, .3);
    --white: #f5f5f0;
    --text-muted: #a8c4b0;
    --text-dim: #5a7a65;
    --red: #e03c3c;
    --green-ok: #2dca72;

    --font-body: 'Montserrat', sans-serif;
    --font-head: 'Playfair Display', serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 10px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .5);
    --shadow-gold: 0 0 30px rgba(201, 168, 76, .2);
    --transition: .24s cubic-bezier(.4, 0, .2, 1);
    --container: 1240px;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ── SKIP LINK ─────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    z-index: 9999;
    background: var(--green-mid);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 8px;
}

/* ── LAYOUT ────────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-xs {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 13, 11, .95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: .02em;
}

.logo-text em {
    color: var(--gold);
    font-style: normal;
}

.main-nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: var(--green-glow);
}

.main-nav a.nav-hot {
    color: var(--gold-light);
}

.header-cta {
    flex-shrink: 0;
    padding: 9px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 12px var(--green-glow);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(22, 168, 106, .4);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 14px 24px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.mobile-nav a:hover {
    color: var(--white);
    background: var(--green-glow);
}

.mobile-cta-wrap {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-cta {
    display: block;
    text-align: center;
    padding: 13px !important;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 800 !important;
    font-size: .82rem !important;
    border-bottom: none !important;
}

/* ── HERO BANNER ───────────────────────────────────────────────── */
.hero-banner {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.hero-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 13, 11, .92) 40%, rgba(7, 13, 11, .4) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 560px;
    padding: 0 48px;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--green-light);
}

.hero-title {
    font-family: var(--font-head);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-title .gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.breadcrumbs a {
    color: var(--green-light);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .sep {
    color: var(--text-dim);
}

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.page-hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7, 13, 11, .9) 0%, rgba(7, 13, 11, .5) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.page-hero-content {
    padding: 32px 48px;
}

.page-hero-content h1 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
}

.page-hero-content h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-meta {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-family: var(--font-mono);
    letter-spacing: .05em;
}

/* ── BADGES / TAGS ─────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(22, 168, 106, .15);
    color: var(--green-light);
    border: 1px solid rgba(22, 168, 106, .25);
}

.badge-gold {
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.badge-red {
    background: rgba(224, 60, 60, .15);
    color: #ff7070;
    border: 1px solid rgba(224, 60, 60, .25);
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white);
    transition: all var(--transition);
    box-shadow: 0 2px 16px var(--green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(22, 168, 106, .4);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #8B6914, var(--gold));
    color: var(--black);
    transition: all var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--green-mid);
    color: var(--white);
}

/* ── STATS STRIP ───────────────────────────────────────────────── */
.stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.stats-strip::-webkit-scrollbar {
    display: none;
}

.stats-strip-inner {
    display: flex;
    min-width: max-content;
    padding: 0;
}

.stat-cell {
    padding: 18px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
    flex-shrink: 0;
    min-width: 140px;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
    display: block;
}

/* ── SECTIONS ──────────────────────────────────────────────────── */
.section {
    padding: 72px 0;
}

.section-sm {
    padding: 48px 0;
}

.bg-surface {
    background: var(--surface);
}

.bg-surface-2 {
    background: var(--surface-2);
}

.bg-black {
    background: var(--black);
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-light);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.section-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--green-mid);
    opacity: .5;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title .gold {
    color: var(--gold);
}

.section-title .green {
    color: var(--green-light);
}

.section-lead {
    font-size: .9rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ── GRID LAYOUTS ──────────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* ── CARDS (multiple variants) ─────────────────────────────────── */
.card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--green-mid);
    box-shadow: 0 8px 32px var(--green-glow);
    transform: translateY(-3px);
}

.card-body {
    padding: 24px;
}

.card-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.card-text {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature card */
.feat-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--green-light);
    transition: height .4s ease;
}

.feat-card:hover::before {
    height: 100%;
}

.feat-card:hover {
    border-color: rgba(22, 168, 106, .4);
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.feat-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 6px;
}

.feat-desc {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Highlight card (gold border) */
.card-gold {
    background: var(--surface-2);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

/* ── DATA TABLES ───────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

.data-table caption {
    font-size: .65rem;
    color: var(--text-dim);
    text-align: left;
    padding: 0 0 10px;
    letter-spacing: .04em;
    font-style: italic;
}

.data-table thead tr {
    background: var(--surface-3);
}

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(10, 95, 56, .12);
    color: var(--text-muted);
    vertical-align: middle;
}

.data-table tbody tr:hover td {
    background: var(--green-glow);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.td-good {
    color: var(--green-ok) !important;
    font-weight: 600;
}

.td-warn {
    color: var(--gold) !important;
    font-weight: 600;
}

.td-bad {
    color: var(--red) !important;
    font-weight: 600;
}

.td-mono {
    font-family: var(--font-mono);
    font-size: .78rem;
}

.tr-featured td {
    background: rgba(201, 168, 76, .05);
}

.tr-featured .col-name {
    color: var(--gold) !important;
    font-weight: 700;
}

/* ── HORIZONTAL BAR CHART ──────────────────────────────────────── */
.h-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.h-bar-row {
    display: grid;
    grid-template-columns: 140px 1fr 56px;
    align-items: center;
    gap: 12px;
}

.h-bar-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: right;
}

.h-bar-track {
    height: 10px;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    overflow: hidden;
}

.h-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    width: 0;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.h-bar-fill.gold {
    background: linear-gradient(90deg, #8B6914, var(--gold));
}

.h-bar-val {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--gold);
    font-weight: 700;
}

/* ── DONUT / RING CHART (CSS only) ────────────────────────────── */
.donut-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.donut-item {
    text-align: center;
    width: 120px;
}

.donut-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--green-light) var(--pct, 0%), rgba(255, 255, 255, .06) 0%);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.donut-ring::before {
    content: '';
    position: absolute;
    inset: 14px;
    background: var(--surface-2);
    border-radius: 50%;
}

.donut-val {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
}

.donut-label {
    font-size: .68rem;
    color: var(--text-dim);
    letter-spacing: .04em;
}

/* ── VERTICAL STEPS ────────────────────────────────────────────── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white);
    font-weight: 800;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-line {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: linear-gradient(to bottom, var(--green-mid), transparent);
    margin: 4px 0;
}

.step-content {
    padding-bottom: 28px;
}

.step-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.step-text {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── CHECKLIST ─────────────────────────────────────────────────── */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(22, 168, 106, .15);
    border: 1px solid rgba(22, 168, 106, .3);
    color: var(--green-light);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ── COMPARISON GRID ───────────────────────────────────────────── */
.compare-card {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare-head-title {
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
}

.compare-head-score {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
}

.compare-header.winner {
    background: rgba(10, 95, 56, .25);
    border-color: var(--green-mid);
}

.compare-header.winner .compare-head-score {
    color: var(--green-light);
}

.compare-rows {
    padding: 8px 0;
}

.compare-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 24px;
    font-size: .82rem;
    border-bottom: 1px solid rgba(10, 95, 56, .1);
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row-label {
    color: var(--text-dim);
}

.compare-row-val {
    font-weight: 600;
    color: var(--white);
}

/* ── PROMO BOX ─────────────────────────────────────────────────── */
.promo-box {
    background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
}

.promo-amount {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.promo-label {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 20px;
}

.promo-code-box {
    background: var(--black);
    border: 1px dashed var(--gold);
    border-radius: 8px;
    padding: 14px 20px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.promo-code-val {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .15em;
}

.copy-btn {
    padding: 7px 14px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    background: transparent;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--gold-dim);
}

.copy-btn.copied {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: var(--white);
}

/* Tags row */
.tags-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

/* ── FAQ ACCORDION ─────────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    text-align: left;
    gap: 12px;
    transition: background var(--transition);
}

.faq-q:hover {
    background: var(--green-glow);
}

.faq-q[aria-expanded="true"] {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--green-light);
    transition: transform var(--transition);
}

.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-a.open {
    display: block;
}

/* ── SEO ARTICLE ───────────────────────────────────────────────── */
.seo-article {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin: 40px 0 16px;
    line-height: 1.25;
}

.seo-article h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 28px 0 10px;
}

.seo-article p {
    margin-bottom: 16px;
}

.seo-article ul {
    margin: 0 0 16px 20px;
}

.seo-article ul li {
    margin-bottom: 6px;
}

.seo-article strong {
    color: var(--white);
    font-weight: 600;
}

.seo-article a.text-link {
    color: var(--green-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-article a.text-link:hover {
    color: var(--gold);
}

.seo-section {
    background: var(--surface);
    padding: 72px 0;
}

/* ── AUTHOR BOX ────────────────────────────────────────────────── */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 48px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--green-mid);
}

.author-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.author-role {
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 6px;
}

.author-desc {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── CTA BAND ──────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--green-dark), var(--surface));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 95, 56, .2) 0%, transparent 70%);
}

.cta-band h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-band p {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    position: relative;
}

.cta-btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: .8rem;
    color: var(--text-dim);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-col h5 {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-responsible {
    background: rgba(224, 60, 60, .08);
    border: 1px solid rgba(224, 60, 60, .2);
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 24px;
}

.footer-responsible strong {
    color: var(--white);
}

.footer-responsible a {
    color: var(--green-light);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom span {
    font-size: .72rem;
    color: var(--text-dim);
}

.footer-bottom nav {
    display: flex;
    gap: 16px;
}

.footer-bottom nav a {
    font-size: .72rem;
    color: var(--text-dim);
    text-decoration: none;
}

.footer-bottom nav a:hover {
    color: var(--green-light);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero-banner img {
        height: 280px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 0 24px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .h-bar-row {
        grid-template-columns: 100px 1fr 48px;
    }

    .page-hero-img {
        height: 220px;
    }

    .page-hero-content {
        padding: 20px 24px;
    }

    .page-hero-content h1 {
        font-size: 1.5rem;
    }

    .section {
        padding: 48px 0;
    }

    .author-box {
        flex-direction: column;
    }

    .donut-grid {
        gap: 16px;
    }

    .promo-amount {
        font-size: 2.4rem;
    }

    .header-cta {
        font-size: .68rem;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .stats-strip-inner {
        flex-wrap: nowrap;
    }

    .stat-cell {
        min-width: 110px;
        padding: 14px 20px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .h-bar-row {
        grid-template-columns: 80px 1fr 44px;
    }
}