/* ============================================================
   crowncoins-sweepstakescasino.de — Design System
   COMPLETELY DIFFERENT from crown-coin.de (gold/purple/dark)
   THIS: Coral-Rose + Midnight Blue + Light Base
   Fonts: Space Grotesk (headers) + Nunito Sans (body)
   Layout: 2-column article grid (NOT sidebar-based)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700;800&family=Nunito+Sans:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
    --coral: #E8445A;
    --coral-l: #FF6B7A;
    --coral-d: #C0293E;
    --coral-bg: rgba(232, 68, 90, 0.08);
    --navy: #0F1B3D;
    --navy-l: #1A2B52;
    --navy-2: #243460;
    --blue: #2563EB;
    --blue-l: #60A5FA;
    --mint: #10B981;
    --warm: #F59E0B;

    --bg: #F5F7FA;
    --bg-card: #FFFFFF;
    --bg-dark: #0F1B3D;
    --border: #E2E8F0;
    --border-dark: #2A3A6A;

    --text1: #0F1B3D;
    --text2: #334155;
    --text3: #64748B;
    --text-light: #F1F5F9;

    --font-h: 'Space Grotesk', system-ui, sans-serif;
    --font: 'Nunito Sans', system-ui, sans-serif;
    --font-mono: 'DM Mono', monospace;

    --radius: 12px;
    --radius-l: 20px;
    --shadow: 0 2px 12px rgba(15, 27, 61, 0.08);
    --shadow-l: 0 8px 32px rgba(15, 27, 61, 0.14);
    --transition: 0.22s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text1);
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--coral);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--coral-d)
}

ul,
ol {
    padding-left: 1.25em
}

table {
    border-collapse: collapse;
    width: 100%
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--coral);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 9999
}

.skip-link:focus {
    top: 16px
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 64px 0
}

.section-light {
    background: var(--bg)
}

.section-white {
    background: #fff
}

.section-dark {
    background: var(--navy);
    color: var(--text-light)
}

.section-dark .text2 {
    color: rgba(241, 245, 249, 0.7)
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(15, 27, 61, 0.06)
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 68px
}

.nav-logo img {
    height: 44px;
    width: auto
}

.nav-menu {
    display: flex;
    gap: 4px;
    margin-left: auto;
    flex-wrap: wrap
}

.nav-menu a {
    font-family: var(--font-h);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text2);
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--coral);
    background: var(--coral-bg)
}

.nav-actions {
    margin-left: 12px;
    display: flex;
    gap: 8px;
    align-items: center
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition)
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 2px solid var(--coral);
    box-shadow: var(--shadow-l);
    padding: 16px
}

.mobile-nav a {
    font-family: var(--font-h);
    font-weight: 600;
    color: var(--text2);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all var(--transition)
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--coral);
    background: var(--coral-bg)
}

.mobile-nav.open {
    display: flex
}

.mobile-cta {
    padding: 12px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 8px
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral)
}

.btn-coral:hover {
    background: var(--coral-d);
    border-color: var(--coral-d);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 68, 90, 0.35)
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.btn-navy:hover {
    background: var(--navy-l);
    color: #fff;
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: var(--coral);
    border-color: var(--coral)
}

.btn-outline:hover {
    background: var(--coral);
    color: #fff
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 16px
}

.btn-md {
    font-size: 0.875rem;
    padding: 10px 20px
}

.btn-lg {
    font-size: 1rem;
    padding: 14px 28px
}

/* ── HERO ────────────────────────────────────────────────── */
.page-hero {
    background: var(--navy);
    color: var(--text-light);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 68, 90, 0.15) 0%, transparent 60%);
    pointer-events: none
}

.breadcrumbs {
    font-size: 0.8rem;
    color: rgba(241, 245, 249, 0.6);
    margin-bottom: 12px;
    display: flex;
    gap: 6px;
    align-items: center
}

.breadcrumbs a {
    color: rgba(241, 245, 249, 0.6);
    transition: color var(--transition)
}

.breadcrumbs a:hover {
    color: var(--coral-l)
}

.breadcrumbs .sep {
    color: rgba(241, 245, 249, 0.35)
}

.page-eyebrow {
    font-family: var(--font-h);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral-l);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px
}

.page-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff
}

.page-hero-desc {
    color: rgba(241, 245, 249, 0.75);
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.6
}

.coral {
    color: var(--coral-l)
}

/* ── HOMEPAGE HERO ────────────────────────────────────────── */
.home-hero {
    background: var(--navy);
    overflow: hidden;
    position: relative
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(232, 68, 90, 0.18) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 70%);
    pointer-events: none
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--blue), var(--coral))
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0 72px;
    position: relative;
    z-index: 1
}

.hero-text h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(241, 245, 249, 0.75);
    margin-bottom: 32px;
    line-height: 1.65
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-image img {
    border-radius: var(--radius-l);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4)
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(241, 245, 249, 0.7)
}

.hero-badge span {
    color: var(--coral-l)
}

/* ── SCORE RIBBON ─────────────────────────────────────────── */
.score-ribbon {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0
}

.score-item {
    padding: 16px 20px;
    border-right: 1px solid var(--border);

    last-child {
        border: none
    }
}

.score-item:last-child {
    border-right: none
}

.score-num {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1
}

.score-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text3);
    margin-top: 4px
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 40px
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px
}

.section-header h2 {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 12px
}

.section-dark .section-header h2 {
    color: #fff
}

.section-desc {
    color: var(--text3);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto
}

.section-dark .section-desc {
    color: rgba(241, 245, 249, 0.65)
}

/* ── ARTICLE GRID (2-col with aside) ──────────────────────── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start
}

.article-main {}

.article-aside {}

/* ── CARDS ────────────────────────────────────────────────── */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px
}

.card {
    background: #fff;
    border-radius: var(--radius-l);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all var(--transition);
    box-shadow: var(--shadow)
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-l);
    border-color: var(--coral)
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px
}

.card h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px
}

.card p {
    font-size: 0.875rem;
    color: var(--text3);
    line-height: 1.6
}

.card-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--coral-bg);
    color: var(--coral);
    margin-bottom: 8px
}

/* ── SCORE WIDGET ─────────────────────────────────────────── */
.score-widget {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-l);
    padding: 28px;
    text-align: center;
    position: sticky;
    top: 88px
}

.score-big {
    font-family: var(--font-h);
    font-size: 4rem;
    font-weight: 800;
    color: var(--coral-l);
    line-height: 1
}

.score-sub {
    font-size: 0.85rem;
    color: rgba(241, 245, 249, 0.6);
    margin-top: 4px;
    margin-bottom: 16px
}

.score-stars {
    color: var(--warm);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px
}

.cat-list {
    margin-top: 16px;
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
    text-align: left
}

.cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem
}

.cat-name {
    color: rgba(241, 245, 249, 0.7);
    font-weight: 500
}

.cat-val {
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--coral-l)
}

.cat-bar-wrap {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    flex: 1;
    margin: 0 8px
}

.cat-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--coral), var(--coral-l))
}

/* ── TABLES ────────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #fff
}

table {
    width: 100%;
    border-collapse: collapse
}

caption {
    font-family: var(--font-h);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    background: #F8FAFC
}

thead th {
    background: var(--navy);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 12px 16px;
    text-align: left
}

th.th-coral {
    color: var(--coral-l)
}

tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition)
}

tbody tr:hover {
    background: #F8FAFC
}

tbody tr:last-child {
    border: none
}

td {
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.45
}

.td-best {
    color: var(--mint);
    font-weight: 700
}

.td-ok {
    color: var(--blue);
    font-weight: 600
}

.td-warn {
    color: var(--warm);
    font-weight: 600
}

.td-bad {
    color: var(--coral);
    font-weight: 600
}

/* ── NOTICE BOXES ────────────────────────────────────────── */
.notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--coral);
    background: var(--coral-bg)
}

.notice.info {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.07)
}

.notice.warn {
    border-color: var(--warm);
    background: rgba(245, 158, 11, 0.08)
}

.notice.ok {
    border-color: var(--mint);
    background: rgba(16, 185, 129, 0.08)
}

.notice-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px
}

.notice p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.55;
    margin: 0
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

/* ── ARTICLE TEXT ────────────────────────────────────────── */
.article-text h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin: 32px 0 12px
}

.article-text h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 24px 0 8px
}

.article-text p {
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 12px
}

.article-text ul,
.article-text ol {
    color: var(--text2);
    margin: 12px 0 16px;
    padding-left: 20px;
    line-height: 1.7
}

.article-text li {
    margin-bottom: 4px
}

.prose-lead {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px
}

/* ── LIST ITEMS ──────────────────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0
}

.check-list li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text2);
    border-bottom: 1px solid var(--border)
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: 700
}

.check-list li.no::before {
    content: '✗';
    color: var(--coral)
}

.check-list li.no {
    color: var(--text3)
}

.check-list li:last-child {
    border: none
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--coral-d) 0%, var(--coral) 50%, var(--coral-l) 100%);
    padding: 64px 0;
    text-align: center;
    color: #fff
}

.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

/* ── COMPARISON / DIAGRAM ────────────────────────────────── */
.compare-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border-radius: var(--radius-l);
    overflow: hidden;
    border: 1px solid var(--border)
}

.compare-col {
    padding: 28px;
    background: #fff
}

.compare-col.navy-col {
    background: var(--navy);
    color: #fff
}

.compare-col h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: var(--bg);
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text3);
    writing-mode: vertical-rl
}

/* ── STATS GRID ──────────────────────────────────────────── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-l);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition)
}

.stat-card:hover {
    border-color: var(--coral);
    transform: translateY(-2px)
}

.stat-num {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 4px
}

/* ── PROCESS STEPS ────────────────────────────────────────── */
.steps {
    counter-reset: step;
    list-style: none;
    padding: 0
}

.steps li {
    counter-increment: step;
    padding: 20px 20px 20px 64px;
    position: relative;
    border-left: 2px solid var(--border);
    margin-left: 24px;
    margin-bottom: 8px
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: -20px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.steps li h4 {
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.steps li p {
    font-size: 0.875rem;
    color: var(--text3)
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 8px;
    background: #fff
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.95rem;
    transition: background var(--transition)
}

.faq-q:hover {
    background: var(--coral-bg)
}

.faq-icon {
    color: var(--coral);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    margin-left: 12px
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease
}

.faq-a.open {
    max-height: 600px;
    padding: 0 20px 18px
}

.faq-a p {
    font-size: 0.875rem;
    color: var(--text3);
    line-height: 1.65
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-item.active .faq-q {
    background: var(--coral-bg);
    color: var(--coral-d)
}

/* ── PAGE TABS ────────────────────────────────────────────── */
.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px;
    flex-wrap: wrap
}

.tab-btn {
    font-family: var(--font-h);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text3);
    padding: 10px 16px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition)
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--coral);
    border-bottom-color: var(--coral)
}

.tab-panel {
    display: none
}

.tab-panel.active {
    display: block
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(241, 245, 249, 0.7);
    padding: 56px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(241, 245, 249, 0.5);
    line-height: 1.6;
    margin-top: 12px
}

.footer-col h4 {
    font-family: var(--font-h);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col li {
    margin-bottom: 8px
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(241, 245, 249, 0.6);
    transition: color var(--transition)
}

.footer-col a:hover {
    color: var(--coral-l)
}

.footer-warning {
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 20px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.fw-badge {
    background: var(--coral);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 6px;
    flex-shrink: 0
}

.footer-warning p {
    font-size: 0.8rem;
    line-height: 1.55
}

.footer-warning a {
    color: var(--coral-l)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(241, 245, 249, 0.4)
}

.footer-badges {
    display: flex;
    gap: 6px
}

.badge {
    font-family: var(--font-h);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(241, 245, 249, 0.15);
    color: rgba(241, 245, 249, 0.4)
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width:1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .score-widget {
        position: static;
        order: -1
    }

    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-image {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:768px) {

    .nav-menu,
    .nav-actions {
        display: none
    }

    .burger {
        display: flex
    }

    .section {
        padding: 40px 0
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .score-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .compare-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto
    }

    .compare-vs {
        writing-mode: horizontal-tb;
        padding: 12px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border)
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width:480px) {
    .score-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-btns {
        flex-direction: column
    }
}