/* ================================================
   CAMPO-BET.COM.MX — Unique Style System
   Navy #1A3A5E | Green #00A86B | Gold #E8B931
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;600;700&display=swap');

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1A3A5E;
    --navy-dark: #0D1F35;
    --navy-mid: #1E4670;
    --green: #00A86B;
    --green-lt: #00C980;
    --gold: #E8B931;
    --gold-lt: #F5CC50;
    --white: #FFFFFF;
    --off-white: #F4F7FB;
    --gray: #8A9BB0;
    --gray-lt: #C8D5E5;
    --text: #E2EBF5;
    --text-dim: #8A9BB0;
    --surface: #132C4A;
    --surface-2: #1A3A5E;
    --border: rgba(0, 168, 107, .18);
    --font-ui: 'Inter', system-ui, sans-serif;
    --font-head: 'Oswald', sans-serif;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .35);
    --glow: 0 0 24px rgba(0, 168, 107, .22);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ui);
    background: var(--navy-dark);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -999px;
    left: 16px;
    background: var(--green);
    color: #000;
    padding: 8px 16px;
    border-radius: var(--r-sm);
    font-weight: 700;
    z-index: 9999;
}

.skip-link:focus {
    top: 16px;
}

/* ─── CONTAINER ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-md {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 31, 53, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 168, 107, .2);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 0;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
    flex-shrink: 0;
    margin-right: 32px;
}

.logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-campo {
    color: var(--white);
}

.logo-bet {
    color: var(--green);
}

.main-nav {
    display: flex;
    gap: 4px;
    flex: 1;
}

.main-nav a {
    padding: 6px 12px;
    border-radius: var(--r-sm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray);
    transition: all .2s;
}

.main-nav a:hover {
    background: rgba(0, 168, 107, .12);
    color: var(--white);
}

.main-nav a.nav-live {
    color: var(--gold);
    font-weight: 700;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        color: var(--gold);
    }

    50% {
        color: var(--gold-lt);
    }
}

.header-cta {
    background: var(--green);
    color: #000;
    padding: 9px 20px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: .88rem;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--green-lt);
    transform: translateY(-1px);
}

/* Mobile burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    flex-direction: column;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .25s;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 12px 16px;
    border-radius: var(--r-sm);
    color: var(--text);
    font-weight: 500;
}

.mobile-nav a:hover {
    background: var(--surface);
}

.mobile-nav-cta {
    background: var(--green);
    color: #000 !important;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 8px;
    padding: 14px !important;
}

/* ─── HERO — SPLIT LAYOUT (different from competitors) ─── */
.hero {
    padding-top: 64px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-banner.png') center/cover no-repeat;
    opacity: .22;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-dark) 45%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 168, 107, .15);
    border: 1px solid rgba(0, 168, 107, .3);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-lt);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 24px;
}

.hero-label::before {
    content: '●';
    font-size: .6em;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title .accent {
    color: var(--green);
}

.hero-title .gold {
    color: var(--gold);
}

.hero-sub {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #000;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: all .2s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--green-lt);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, .25);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all .2s;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

/* Hero right: Rating panel */
.hero-panel {
    background: rgba(26, 58, 94, .7);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    backdrop-filter: blur(12px);
}

.panel-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--gray-lt);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 24px;
}

.rating-big {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.rating-num {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.rating-desc {
    color: var(--gray);
    font-size: .82rem;
}

/* Horizontal bar rating */
.bar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-item {}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--gray-lt);
    margin-bottom: 6px;
}

.bar-label span:last-child {
    color: var(--gold);
    font-weight: 700;
}

.bar-track {
    height: 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green), var(--green-lt));
    transform-origin: left;
    animation: bar-in 1s ease-out both;
}

@keyframes bar-in {
    from {
        width: 0 !important;
    }
}

/* ─── SECTIONS ─── */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 52px 0;
}

.bg-navy {
    background: var(--navy-dark);
}

.bg-surface {
    background: var(--surface);
}

.bg-navy2 {
    background: var(--navy);
}

.section-tag {
    display: inline-block;
    background: rgba(0, 168, 107, .12);
    border: 1px solid rgba(0, 168, 107, .25);
    color: var(--green-lt);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .g {
    color: var(--green);
}

.section-title .gld {
    color: var(--gold);
}

.section-lead {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 640px;
    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-asym {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
}

.grid-asym-rev {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start;
}

/* ─── CARDS ─── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 24px;
    transition: all .25s;
}

.card:hover {
    border-color: rgba(0, 168, 107, .4);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.card-text {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.6;
}

/* Feature card with left border */
.feat-strip {
    display: flex;
    gap: 20px;
    background: var(--surface);
    border-radius: var(--r-md);
    border-left: 4px solid var(--green);
    padding: 20px 24px;
    align-items: flex-start;
    transition: border-color .2s;
}

.feat-strip:hover {
    border-left-color: var(--gold);
}

.feat-strip-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-strip-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.feat-strip-text {
    color: var(--gray);
    font-size: .88rem;
}

/* ─── TABLES ─── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--r-md);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

caption {
    font-size: .78rem;
    color: var(--gray);
    text-align: left;
    padding: 0 0 10px;
    font-style: italic;
}

th {
    background: var(--navy-mid);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--text);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(0, 168, 107, .04);
}

tbody tr:nth-child(even) td {
    background: rgba(0, 0, 0, .12);
}

.td-good {
    color: var(--green-lt);
    font-weight: 700;
}

.td-warn {
    color: var(--gold);
    font-weight: 700;
}

.td-bad {
    color: #FF6B6B;
}

.tr-top td {
    font-weight: 700;
}

.tr-top td:first-child {
    color: var(--gold);
}

.highlight-row td {
    background: rgba(0, 168, 107, .08) !important;
}

/* ─── STAT BLOCKS ─── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.stat-cell {
    background: var(--surface);
    padding: 24px 20px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: .78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ─── PROGRESS BARS (ratings) ─── */
.progress-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.progress-item {}

.progress-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.progress-name {
    font-weight: 600;
    color: var(--white);
    font-size: .92rem;
}

.progress-val {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    font-family: var(--font-head);
}

.progress-track {
    height: 10px;
    background: rgba(255, 255, 255, .07);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--navy-mid), var(--green));
    transition: width 1.2s ease-out;
}

/* ─── COMPARISON STRIP ─── */
.compare-block {
    background: var(--surface);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.compare-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 20px;
    background: var(--navy-mid);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold);
    gap: 8px;
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    font-size: .9rem;
    gap: 8px;
    align-items: center;
    transition: background .15s;
}

.compare-row:hover {
    background: rgba(0, 168, 107, .06);
}

.compare-row.winner {
    background: rgba(0, 168, 107, .08);
}

.compare-row.winner .site-name {
    color: var(--green-lt);
    font-weight: 700;
}

.site-name {
    font-weight: 600;
    color: var(--text);
}

.val-good {
    color: var(--green-lt);
    font-weight: 700;
}

.val-med {
    color: var(--gold);
}

.val-bad {
    color: #FF6B6B;
}

/* ─── TIMELINE (for how-to steps) ─── */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--navy-mid));
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    color: #000;
    border: 3px solid var(--navy-dark);
}

.timeline-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-desc {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.6;
}

/* ─── BADGE ─── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.badge-green {
    background: rgba(0, 168, 107, .15);
    color: var(--green-lt);
    border: 1px solid rgba(0, 168, 107, .3);
}

.badge-gold {
    background: rgba(232, 185, 49, .12);
    color: var(--gold);
    border: 1px solid rgba(232, 185, 49, .3);
}

.badge-navy {
    background: rgba(255, 255, 255, .07);
    color: var(--gray-lt);
}

/* ─── IMAGE FRAMES ─── */
.img-hero {
    width: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 0 1px var(--border);
}

.img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-card {
    width: 100%;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.img-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ─── BONUS BOX ─── */
.bonus-box {
    background: linear-gradient(135deg, var(--navy-mid), #0D3350);
    border: 1px solid rgba(232, 185, 49, .35);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(232, 185, 49, .08) 0%, transparent 70%);
}

.bonus-pct {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 8px 0;
}

.bonus-label {
    font-size: .85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.bonus-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.bonus-code-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, .3);
    border-radius: var(--r-sm);
    border: 1px solid rgba(232, 185, 49, .3);
    overflow: hidden;
    max-width: 240px;
    margin: 0 auto 24px;
}

.bonus-code-val {
    flex: 1;
    padding: 10px 16px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    font-size: 1.1rem;
}

.copy-code-btn {
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    font-weight: 700;
    font-size: .82rem;
    transition: background .2s;
}

.copy-code-btn:hover {
    background: var(--gold-lt);
}

/* ─── FAQ ACCORDION — unique slide-out style ─── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    transition: background .2s;
}

.faq-btn:hover {
    background: rgba(0, 168, 107, .06);
}

.faq-btn[aria-expanded="true"] {
    color: var(--green-lt);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 168, 107, .12);
    border: 1px solid rgba(0, 168, 107, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: transform .25s, background .2s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 168, 107, .25);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 20px;
}

.faq-body.open {
    max-height: 400px;
}

.faq-body p {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.7;
    padding-bottom: 18px;
}

/* ─── AUTHOR BOX ─── */
.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 24px;
    margin-top: 40px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--green);
}

.author-meta {}

.author-role {
    font-size: .75rem;
    color: var(--green-lt);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.author-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.author-bio {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ─── SEO ARTICLE ─── */
.seo-content {}

.seo-content h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 36px 0 14px;
    text-transform: uppercase;
}

.seo-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-lt);
    margin: 24px 0 10px;
}

.seo-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content .text-link {
    color: var(--green-lt);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-content .text-link:hover {
    color: var(--gold);
}

.seo-content ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}

.seo-content ul li {
    color: var(--gray);
    margin-bottom: 6px;
    font-size: .95rem;
}

/* ─── CHECKLIST ─── */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9rem;
}

.check-item::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(0, 168, 107, .15);
    border: 1px solid rgba(0, 168, 107, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--green-lt);
    margin-top: 2px;
}

.check-item span {
    color: var(--gray);
    line-height: 1.5;
}

/* ─── SIDEBAR ─── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 20px;
}

.sidebar-box-title {
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .82rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--green-lt);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .sep {
    color: var(--gray);
    opacity: .5;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    padding-top: 64px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/sports-hero.png') center/cover no-repeat;
    opacity: .08;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding: 48px 20px 52px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.15;
}

.page-hero .lead {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}

/* ─── SCORE CHART (horizontal bar chart) ─── */
.score-chart {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.score-row:last-child {
    border-bottom: none;
}

.score-label {
    width: 140px;
    flex-shrink: 0;
    font-size: .85rem;
    color: var(--gray-lt);
}

.score-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, .07);
    border-radius: 99px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy-mid), var(--green-lt));
    border-radius: 99px;
}

.score-val {
    width: 36px;
    text-align: right;
    font-weight: 700;
    color: var(--gold);
    font-size: .9rem;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--gray);
    font-size: .85rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--gray);
    font-size: .88rem;
    padding: 4px 0;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.footer-legal p {
    font-size: .78rem;
    color: var(--gray);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: .78rem;
    color: var(--gray);
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-warning {
    background: rgba(232, 185, 49, .07);
    border: 1px solid rgba(232, 185, 49, .2);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-panel {
        display: none;
    }

    .grid-2,
    .grid-asym,
    .grid-asym-rev {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
        padding: 7px 10px;
        font-size: .72rem;
        white-space: nowrap;
        margin-left: auto;
        gap: 5px;
    }

    .header-inner {
        justify-content: flex-start;
        gap: 0;
    }

    .header-inner .logo {
        margin-right: 0;
    }

    .compare-header,
    .compare-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .compare-header>*:last-child,
    .compare-row>*:last-child {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-card {
        flex-direction: column;
    }

    .author-avatar {
        align-self: flex-start;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 52px 0;
    }
}