/* ═══════════════════════════════════════════════════════
   McLuck World — Global Stylesheet
   Brand: Dark Navy + Lucky Green + Gold
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ─────────────────────────── */
:root {
    --navy-darkest: #050B14;
    --navy-dark: #0D1B2A;
    --navy-mid: #132236;
    --navy-light: #1C3150;
    --navy-card: #162034;

    --green: #00C853;
    --green-dark: #00A244;
    --green-glow: rgba(0, 200, 83, 0.25);
    --green-mid: #00E676;

    --gold: #FFD600;
    --gold-light: #FFE57F;
    --gold-dark: #F9A825;

    --white: #FFFFFF;
    --off-white: #E8EDF5;
    --muted: #7A8BA0;
    --border: rgba(255, 255, 255, 0.08);
    --border-green: rgba(0, 200, 83, 0.3);

    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-green: 0 0 20px rgba(0, 200, 83, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 214, 0, 0.25);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1240px;
}

/* ── Reset ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--navy-darkest);
    color: var(--off-white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Skip Link ───────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -60px;
    left: 1rem;
    z-index: 9999;
    background: var(--green);
    color: var(--navy-darkest);
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0.5rem;
}

/* ── Top Strip ───────────────────────────────────────── */
.top-strip {
    background: var(--navy-dark);
    border-bottom: 1px solid var(--border-green);
    padding: 0.4rem 1.5rem;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-strip-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--muted);
}

.top-strip-info span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.strip-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: #D32F2F;
    color: white;
}

.strip-badge.green {
    background: var(--green);
    color: var(--navy-darkest);
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--navy-dark);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo img {
    height: 38px;
    width: auto;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.main-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: var(--border);
}

/* Locale Switcher */
.locale-switcher {
    position: relative;
}

.locale-btn {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    color: var(--off-white);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: border-color var(--transition);
}

.locale-btn:hover {
    border-color: var(--green);
}

.locale-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--navy-mid);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-md);
    padding: 0.4rem;
    min-width: 140px;
    display: none;
    z-index: 300;
    box-shadow: var(--shadow-card);
}

.locale-dropdown.open {
    display: block;
}

.locale-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.83rem;
    color: var(--muted);
    transition: background var(--transition), color var(--transition);
}

.locale-dropdown a:hover {
    background: var(--border);
    color: var(--white);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-play {
    background: var(--green);
    color: var(--navy-darkest);
    padding: 0.55rem 1.35rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.btn-play:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-green);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mob-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.mob-nav a:hover {
    color: var(--white);
    border-color: var(--border-green);
    background: var(--navy-mid);
}

.mob-nav .btn-play {
    text-align: center;
    margin-top: 0.75rem;
}

/* ── Page Header / Hero ──────────────────────────────── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, #0A1F1A 100%);
    padding: 5rem 1.5rem 4rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 200, 83, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 30%, rgba(255, 214, 0, 0.05) 0%, transparent 60%);
}

.hero-inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-glow);
    border: 1px solid var(--border-green);
    color: var(--green);
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: normal;
    color: var(--green);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--green);
    color: var(--navy-darkest);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-outline-green {
    border: 2px solid var(--green);
    color: var(--green);
    padding: 0.83rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-green:hover {
    background: var(--green);
    color: var(--navy-darkest);
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.15);
    aspect-ratio: 16/9;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Stats Row ───────────────────────────────────────── */
.stats-row {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem;
}

.stat-item {
    padding: 1rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Section ─────────────────────────────────────────── */
.section {
    padding: 5rem 1.5rem;
}

.section--dark {
    background: var(--navy-dark);
}

.section--card {
    background: var(--navy-card);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-head {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
}

/* ── Cards ───────────────────────────────────────────── */
.card-grid {
    display: grid;
    gap: 1.25rem;
}

.card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    border-color: var(--border-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--green-glow);
    border: 1px solid var(--border-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Bonus Card */
.bonus-card {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-card) 100%);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--green-glow);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.bonus-label {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.bonus-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── Table ───────────────────────────────────────────── */
.data-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table thead th {
    background: var(--navy-mid);
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--border-green);
}

.data-table tbody td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--off-white);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr {
    transition: background var(--transition);
}

.data-table tbody tr:hover {
    background: var(--navy-mid);
}

.td-green {
    color: var(--green);
    font-weight: 600;
}

.td-gold {
    color: var(--gold);
    font-weight: 600;
}

.check {
    color: var(--green);
}

.cross {
    color: #ef5350;
}

/* ── Chart / Diagram ─────────────────────────────────── */
.chart-wrap {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.chart-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

/* Bar chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 120px;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 10px;
    background: var(--navy-mid);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-mid) 100%);
    transition: width 1s ease;
}

.bar-fill.gold-fill {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.bar-val {
    min-width: 44px;
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
}

/* Donut chart CSS */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.donut-svg {
    flex-shrink: 0;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.83rem;
    color: var(--muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── VIP Tier Steps ──────────────────────────────────── */
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tier-item {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.tier-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
}

.tier-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--green);
    background: var(--navy-darkest);
    margin-top: 1rem;
}

.tier-connector {
    flex: 1;
    width: 2px;
    background: var(--border);
    margin: 0 auto;
}

.tier-content {
    flex: 1;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin: 0.25rem 0 0.25rem 0.75rem;
    transition: border-color var(--transition);
}

.tier-content:hover {
    border-color: var(--border-green);
}

.tier-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.tier-points {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--border-green);
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: color var(--transition);
}

.faq-btn:hover {
    color: var(--green);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 0.75rem;
    color: var(--muted);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--green-glow);
    color: var(--green);
}

.faq-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-body {
    display: block;
}

/* ── Author Box ──────────────────────────────────────── */
.author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 3rem;
}

.author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-role {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.author-bio {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Responsible Gaming ──────────────────────────────── */
.rg-bar {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.77rem;
    color: var(--muted);
}

.rg-bar strong {
    color: var(--off-white);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #D32F2F;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--green);
}

.breadcrumb-sep {
    color: var(--border-green);
}

/* ── SEO Text Block ───────────────────────────────────── */
.seo-text {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    padding: 4.5rem 1.5rem;
}

.seo-text .container {
    max-width: 860px;
    margin: 0 auto;
}

.seo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.seo-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0 0.75rem;
}

.seo-text p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-text p a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-text p a:hover {
    color: var(--green-mid);
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.25rem;
}

.footer-legal-note {
    font-size: 0.72rem;
    color: var(--muted);
    background: var(--navy-mid);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a {
    font-size: 0.86rem;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--green);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── SEO Text Section ────────────────────────────────── */
.seo-text {
    padding: 4rem 1.5rem;
    background: var(--navy-card);
}

.seo-text .container {
    max-width: 820px;
}

.seo-text h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0 1rem;
}

.seo-text h3 {
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
}

.seo-text p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-text a {
    color: var(--green);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.seo-text a:hover {
    border-color: var(--green);
}

.seo-text ul,
.seo-text ol {
    margin: 1rem 0 1rem 1.25rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.seo-text li {
    margin-bottom: 0.4rem;
}

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--green);
}

.breadcrumb-sep {
    opacity: 0.4;
}

/* ── Comparison Table ────────────────────────────────── */
.compare-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.compare-col-head {
    background: var(--navy-mid);
    padding: 1rem 1.25rem;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.compare-col-head.highlight {
    background: var(--green);
    color: var(--navy-darkest);
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
}

.compare-row:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

.compare-cell {
    background: var(--navy-card);
    padding: 0.85rem 1.25rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
}

.compare-cell.label {
    text-align: left;
    color: var(--off-white);
    font-weight: 500;
}

.compare-cell.highlight {
    background: rgba(0, 200, 83, 0.08);
    color: var(--green);
    font-weight: 600;
}

/* ── Locale Flags ────────────────────────────────────── */
.locale-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.locale-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    color: var(--muted);
    transition: all var(--transition);
    cursor: pointer;
}

.locale-pill.active,
.locale-pill:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-glow);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-img {
        max-height: 300px;
    }

    .compare-header,
    .compare-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .compare-cell:nth-child(4),
    .compare-col-head:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Hide desktop nav on mobile */
    .main-nav,
    .locale-switcher {
        display: none;
    }

    /* Collapse all inline 2-col grids on mobile */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1.2fr 1fr"],
    [style*="grid-template-columns:1.2fr 1fr"],
    [style*="grid-template-columns: 1fr 1.4fr"],
    [style*="grid-template-columns:1fr 1.4fr"],
    [style*="grid-template-columns: 1.6fr 1fr"],
    [style*="grid-template-columns:200px 1fr"] {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Hero inner always single column */
    .hero-inner {
        grid-template-columns: 1fr !important;
    }

    /* Bar chart label — prevent overflow */
    .bar-label {
        min-width: 80px;
        font-size: 0.75rem;
    }

    /* Hero image cap on mobile */
    .hero-img {
        max-height: 220px;
    }

    /* Hero buttons full width */
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline-green {
        width: 100%;
        justify-content: center;
    }

    .burger {
        display: flex;
        flex-shrink: 0;
    }

    .header-wrap {
        justify-content: flex-start;
        gap: 0;
    }

    .logo {
        flex: 1;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
        margin-right: 0.75rem;
    }

    .header-cta .btn-play {
        font-size: 0.75rem;
        padding: 0.45rem 0.85rem;
        white-space: nowrap;
    }

    .card-grid--3,
    .card-grid--2 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .donut-wrap {
        flex-direction: column;
    }

    .compare-header,
    .compare-row {
        grid-template-columns: 2fr 1fr;
    }

    .compare-cell:nth-child(3),
    .compare-cell:nth-child(4),
    .compare-col-head:nth-child(3),
    .compare-col-head:nth-child(4) {
        display: none;
    }

    .tier-list {
        padding: 0;
    }

    .author-box {
        flex-direction: column;
    }

    .header-cta .btn-play {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .rg-bar {
        font-size: 0.7rem;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero {
        padding: 3rem 1rem 2.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    /* Hero title responsive font */
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    /* Stats 2 col on smallest screens */
    .stat-num {
        font-size: 1.8rem;
    }

    /* Top strip collapse on 480px */
    .top-strip {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    /* Footer bottom column */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* rg-bar stack */
    .rg-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Donut on small screens */
    .donut-wrap {
        flex-direction: column;
        align-items: center;
    }

    /* Visually hidden for captions */
    .visually-hidden {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0,0,0,0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
}