/* ═══════════════════════════════════════════════════════
   sweepstakes-casino.de — Dark Premium Design System
   Theme: Midnight Dark · Electric Purple · Cyan · Gold
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg: #080B14;
    --bg2: #0D1120;
    --bg3: #121929;
    --card: #0F1527;
    --card-hover: #162035;
    --border: rgba(123, 47, 190, 0.2);
    --border-bright: rgba(123, 47, 190, 0.5);
    --purple: #7B2FBE;
    --purple-l: #A855F7;
    --purple-xl: #C084FC;
    --cyan: #00D4FF;
    --cyan-l: #67E8F9;
    --gold: #F5C518;
    --gold-l: #FDE68A;
    --red: #FF4757;
    --green: #2ECC71;
    --white: #FFFFFF;
    --text1: #F0F4FF;
    --text2: #A8B4CC;
    --text3: #6B7A99;
    --glow-purple: 0 0 20px rgba(123, 47, 190, 0.4);
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-gold: 0 0 16px rgba(245, 197, 24, 0.35);
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
    --radius: 14px;
    --radius-lg: 20px;
    --trans: 0.25s ease;
    --font-h: 'Space Grotesk', system-ui, sans-serif;
    --font-b: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --container: 1220px;
    --container-sm: 780px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text1);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── Skip Link ──────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--purple);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: top var(--trans);
}

.skip-link:focus {
    top: 0;
}

/* ── Layout ─────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ─────────────────── */
.site-header {
    background: rgba(8, 11, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

.nav-logo img {
    display: block;
    height: 44px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2px;
    flex: 1;
    margin-left: 20px;
}

.nav-menu a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all var(--trans);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(123, 47, 190, 0.15);
    color: var(--purple-l);
}

.nav-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

/* ── Buttons ────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-h);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    white-space: nowrap;
}

.btn-purple {
    background: var(--purple);
    color: var(--white);
    box-shadow: var(--glow-purple);
}

.btn-purple:hover {
    background: var(--purple-l);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(123, 47, 190, 0.5);
}

.btn-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--purple-l));
    color: var(--bg);
    font-weight: 800;
    box-shadow: var(--glow-cyan);
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-gold {
    background: var(--gold);
    color: #1a0a00;
    font-weight: 800;
    box-shadow: var(--glow-gold);
}

.btn-gold:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--purple-l);
    border: 1.5px solid var(--purple);
}

.btn-outline:hover {
    background: rgba(123, 47, 190, 0.15);
    border-color: var(--purple-l);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text2);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text1);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
    border-radius: 10px;
}

/* ── Mobile Nav ─────────────── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--purple-l);
    border-radius: 2px;
    transition: all var(--trans);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 16px;
}

.mobile-nav a {
    padding: 12px 16px;
    color: var(--text1);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background var(--trans);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(123, 47, 190, 0.15);
    color: var(--purple-l);
}

.mobile-nav.open {
    display: flex;
}

.mobile-cta {
    margin-top: 12px;
}

/* ── Hero ───────────────────── */
.site-hero {
    background: linear-gradient(135deg, #0A0315 0%, #0D0825 40%, #080B14 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.site-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(123, 47, 190, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 80% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid var(--border-bright);
    color: var(--purple-xl);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-title .grad {
    background: linear-gradient(135deg, var(--purple-l), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(123, 47, 190, 0.25), 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
}

.hero-img img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-metrics {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-metric .val {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-metric .lbl {
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 2px;
}

/* ── Trust Strip ────────────── */
.trust-strip {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text3);
}

.trust-icon {
    font-size: 1rem;
}

/* ── Sections ───────────────── */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg);
}

.section-card {
    background: var(--bg2);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title .grad {
    background: linear-gradient(135deg, var(--purple-l), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text2);
    max-width: 580px;
    margin: 0 auto;
}

/* ── Casino Cards (Magazine Grid) ── */
.magazine-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.ranking-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
}

.cs-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.05), rgba(0, 212, 255, 0.03));
    transition: opacity var(--trans);
}

.cs-card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-card), var(--glow-purple);
    transform: translateY(-2px);
}

.cs-card:hover::before {
    opacity: 1;
}

.cs-card.featured {
    border-color: var(--purple);
    box-shadow: 0 0 40px rgba(123, 47, 190, 0.2);
}

.cs-card.featured::after {
    content: '★ EDITOR\'S CHOICE';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-l));
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 0 0 0 12px;
    letter-spacing: 1px;
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cs-rank {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple-l);
}

.cs-card.featured .cs-rank {
    background: rgba(123, 47, 190, 0.3);
    color: var(--purple-xl);
}

.cs-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3px;
}

.cs-tagline {
    font-size: 0.78rem;
    color: var(--text3);
}

/* Score bar */
.score-bar-wrap {
    margin: 14px 0;
}

.score-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text3);
    margin-bottom: 6px;
}

.score-bar-label strong {
    color: var(--purple-l);
    font-family: var(--font-mono);
}

.score-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.cs-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(123, 47, 190, 0.12);
    color: var(--purple-xl);
    border: 1px solid var(--border);
}

.pill-cyan {
    background: rgba(0, 212, 255, 0.08);
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.2);
}

.pill-gold {
    background: rgba(245, 197, 24, 0.1);
    color: var(--gold);
    border-color: rgba(245, 197, 24, 0.2);
}

.pill-red {
    background: rgba(255, 71, 87, 0.1);
    color: var(--red);
    border-color: rgba(255, 71, 87, 0.2);
}

.cs-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 0;
}

.cs-stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.cs-stat .v {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cyan);
}

.cs-stat .k {
    font-size: 0.65rem;
    color: var(--text3);
    margin-top: 2px;
}

/* ── Mini card (sidebar ranking) */
.mini-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--trans);
}

.mini-card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--glow-purple);
}

.mini-rank {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(123, 47, 190, 0.15);
    color: var(--purple-l);
}

.mini-info {
    flex: 1;
    min-width: 0;
}

.mini-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text1);
}

.mini-bonus {
    font-size: 0.72rem;
    color: var(--text3);
    margin-top: 2px;
}

.mini-score {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-l);
}

/* ── Feature Grid ───────────── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--trans);
}

.feat-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 18px;
    background: rgba(123, 47, 190, 0.12);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.7;
}

/* ── SVG Chart Section ──────── */
.chart-section {
    background: var(--bg2);
}

.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.chart-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
}

.bar-fill {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--purple-l), var(--purple));
    transition: all 0.6s ease;
    position: relative;
}

.bar-fill.top {
    background: linear-gradient(180deg, var(--cyan), var(--purple-l));
    box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.4);
}

.bar-label {
    font-size: 0.65rem;
    color: var(--text3);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.bar-val {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--purple-xl);
    font-weight: 700;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text2);
}

.legend-score {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple-l);
}

/* ── Table ──────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
}

thead th {
    background: rgba(123, 47, 190, 0.2);
    color: var(--text1);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

thead th:first-child {
    border-radius: 12px 0 0 0;
}

thead th:last-child {
    border-radius: 0 12px 0 0;
}

.th-purple {
    background: rgba(123, 47, 190, 0.4) !important;
    color: var(--purple-xl) !important;
}

tbody td {
    padding: 13px 18px;
    font-size: 0.875rem;
    color: var(--text1);
    border-bottom: 1px solid rgba(123, 47, 190, 0.08);
    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(123, 47, 190, 0.05);
}

.td-good {
    color: var(--cyan);
    font-weight: 700;
}

.td-best {
    color: var(--purple-l);
    font-weight: 700;
}

.td-bad {
    color: var(--red);
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

caption {
    font-size: 0.75rem;
    color: var(--text3);
    padding: 10px;
    text-align: left;
    caption-side: bottom;
}

/* ── FAQ ────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text1);
    text-align: left;
    gap: 16px;
    transition: background var(--trans);
}

.faq-question:hover {
    background: rgba(123, 47, 190, 0.08);
}

.faq-question[aria-expanded="true"] {
    color: var(--purple-l);
}

.faq-icon {
    color: var(--purple);
    font-size: 1.2rem;
    transition: transform var(--trans);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--purple-l);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.75;
}

/* ── Page Hero ──────────────── */
.page-hero {
    background: linear-gradient(135deg, #0A0315 0%, #0D0825 100%);
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 60% at 10% 50%, rgba(123, 47, 190, 0.1), transparent);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text3);
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--text3);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--purple-l);
}

.sep {
    color: var(--border-bright);
}

.page-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 10px;
}

.page-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-hero h1 .grad {
    background: linear-gradient(135deg, var(--purple-l), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    font-size: 0.95rem;
    color: var(--text2);
    max-width: 620px;
}

.page-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.phs {
    display: flex;
    flex-direction: column;
}

.phs .val {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phs .lbl {
    font-size: 0.72rem;
    color: var(--text3);
}

/* ── CTA Section ────────────── */
.cta-section {
    background: linear-gradient(135deg, #130826 0%, #0A1530 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(123, 47, 190, 0.12), transparent);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-section p {
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto 32px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── SEO Article ────────────── */
.seo-article h2 {
    font-family: var(--font-h);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 32px 0 14px;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-l);
    margin: 24px 0 10px;
}

.seo-article p {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-article ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.seo-article li {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 6px;
}

/* ── Notice/Alert ───────────── */
.notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: rgba(123, 47, 190, 0.08);
    border: 1px solid var(--border-bright);
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.65;
}

.notice.warning {
    background: rgba(255, 71, 87, 0.06);
    border-color: rgba(255, 71, 87, 0.2);
}

.notice.success {
    background: rgba(46, 204, 113, 0.06);
    border-color: rgba(46, 204, 113, 0.2);
}

.notice.info {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.2);
}

/* ── Check list ─────────────── */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text2);
}

.check-item::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.check-item.cross::before {
    content: '✗';
    color: var(--red);
}

/* ── Utilities ──────────────── */
.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.text-center {
    text-align: center;
}

.accent {
    color: var(--purple-l);
}

.accent-cyan {
    color: var(--cyan);
}

.accent-gold {
    color: var(--gold);
}

.badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(123, 47, 190, 0.15);
    color: var(--purple-l);
    border: 1px solid var(--border);
    margin: 0 3px;
}

/* ── Footer ─────────────────── */
.site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-link img {
    display: block;
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.83rem;
    color: var(--text3);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-l);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.83rem;
    color: var(--text3);
    text-decoration: none;
    transition: color var(--trans);
}

.footer-col a:hover {
    color: var(--purple-l);
}

.footer-warning {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.15);
    margin-bottom: 28px;
}

.footer-warn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(255, 71, 87, 0.15);
    color: #FF4757;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-warning p {
    font-size: 0.83rem;
    color: var(--text3);
    line-height: 1.65;
}

.footer-warning a {
    color: var(--purple-l);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text3);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-logo a {
    color: var(--text3);
    text-decoration: none;
}

/* ── Animations ─────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ── Responsive ─────────────── */
@media (max-width: 1024px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .magazine-grid {
        grid-template-columns: 1fr;
    }

    .chart-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-img {
        display: none;
    }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 16px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .cs-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .bar-chart {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns {
        flex-direction: column;
    }

    .trust-inner {
        gap: 16px;
    }
}