/* === ЩИТ75 — Тёмная ведомственная тема === */

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

:root {
    /* Фоны */
    --bg: #060b18;
    --bg-deep: #0a1228;
    --bg-card: #0c1630;
    --bg-card-hover: #101d3d;
    --bg-input: #0e1a38;
    --bg-header: #080e20;
    --bg-section-alt: #081020;
    /* Границы */
    --border: #1a2744;
    --border-light: #152038;
    --border-glow: rgba(201,168,76,0.15);
    /* Текст */
    --text: #dce4f0;
    --text-secondary: #8a9cc0;
    --text-muted: #5a6d94;
    --text-dim: #3d4f72;
    --text-white: #ffffff;
    /* Акценты */
    --gold: #c9a84c;
    --gold-bright: #e8c860;
    --gold-dim: #a88a3a;
    --gold-glow: rgba(201,168,76,0.12);
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --blue-light: rgba(59,130,246,0.08);
    --blue-glow: rgba(59,130,246,0.15);
    --red: #ef4444;
    --red-light: rgba(239,68,68,0.08);
    --red-border: rgba(239,68,68,0.25);
    --orange: #f59e0b;
    --orange-light: rgba(245,158,11,0.08);
    --green: #22c55e;
    --green-light: rgba(34,197,94,0.08);
    --purple: #a855f7;
    --purple-light: rgba(168,85,247,0.08);
    /* UI */
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(201,168,76,0.06);
    --transition: 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* === ВЕРХНЯЯ ПОЛОСА === */
.gov-topbar {
    background: var(--bg-header);
    color: var(--text-white);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.gov-topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.gov-topbar a { color: rgba(255,255,255,0.7); text-decoration: none; }
.gov-topbar a:hover { color: #fff; }
.gov-hotline { display: flex; align-items: center; gap: 6px; }
.gov-hotline strong { color: var(--gold); font-size: 13px; }

/* === НАВИГАЦИЯ === */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6,11,24,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 20px; font-weight: 900; letter-spacing: 0.5px; }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0e1a; padding: 8px 20px; border-radius: 6px;
    text-decoration: none; font-size: 13px; font-weight: 700;
    transition: all var(--transition);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #0a0e1a; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.3); }

/* === ГЕРОЙ === */
.hero {
    background: linear-gradient(135deg, var(--bg-header) 0%, #162d5a 100%);
    color: var(--text-white);
    padding: 80px 24px 60px;
    position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero-glow { display: none; }
.glow-1, .glow-2 { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 800px; text-align: center; margin: 0 auto; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 18px; border-radius: 100px;
    font-size: 12px; font-weight: 600; color: #68d391;
    letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #68d391; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(104,211,145,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(104,211,145,0); }
}

h1 { font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.gradient-text { background: linear-gradient(135deg, var(--gold-bright), var(--red), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 700;
    text-decoration: none; cursor: pointer; transition: all var(--transition); border: none;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0e1a; }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); box-shadow: 0 4px 15px rgba(201,168,76,0.3); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--text-white); border-color: var(--gold); }

.hero-stats {
    display: flex; gap: 48px; justify-content: center;
    margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 36px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* === ПРОВЕРКА === */
.check-section { padding: 60px 0; background: var(--bg-deep); border-bottom: 1px solid var(--border); }
.section-title { text-align: center; font-size: 24px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.section-sub { text-align: center; color: var(--text-muted); font-size: 15px; margin-bottom: 32px; }

.check-tabs {
    display: flex; gap: 2px; justify-content: center; margin-bottom: 16px;
    background: var(--bg); border-radius: 8px; padding: 3px;
    max-width: 520px; margin-left: auto; margin-right: auto;
    border: 1px solid var(--border);
}
.check-tab {
    flex: 1; padding: 8px 16px; background: transparent; border: none;
    color: var(--text-muted); font-size: 13px; font-weight: 600;
    border-radius: 6px; cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.check-tab.active { background: var(--gold); color: #0a0e1a; }
.check-box {
    max-width: 680px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow);
}
.check-input-wrap { display: flex; gap: 10px; }
.check-input, .check-textarea {
    flex: 1; padding: 12px 16px; background: var(--bg);
    border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text); font-size: 15px; font-family: inherit;
    transition: border-color var(--transition); outline: none;
}
.check-input:focus, .check-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.check-textarea { resize: vertical; min-height: 100px; }
.check-btn {
    padding: 12px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0e1a;
    border: none; border-radius: var(--radius); font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all var(--transition); font-family: inherit; white-space: nowrap;
}
.check-btn:hover { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); box-shadow: 0 4px 15px rgba(201,168,76,0.3); }

/* === РЕЗУЛЬТАТЫ === */
.result-box { max-width: 680px; margin: 16px auto 0; border-radius: var(--radius-lg); overflow: hidden; animation: slideIn 0.3s ease-out; box-shadow: var(--shadow-md); }
@keyframes slideIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.result-header { padding: 14px 20px; font-size: 15px; font-weight: 700; }
.result-header.danger { background: var(--red-light); border-left: 4px solid var(--red); color: var(--red); }
.result-header.warning { background: var(--orange-light); border-left: 4px solid var(--orange); color: var(--orange); }
.result-header.success { background: var(--green-light); border-left: 4px solid var(--green); color: var(--green); }
.result-header.verbovka { background: var(--red-light); border-left: 4px solid var(--red); color: var(--red); }
.result-body { padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-top: none; }
.result-body .finding { padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.result-body .finding:last-child { border-bottom: none; }
.result-actions { padding: 12px 20px; background: var(--bg); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); display: flex; gap: 10px; flex-wrap: wrap; }
.result-actions .action-btn {
    padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 6px; color: var(--text); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.result-actions .action-btn:hover { border-color: var(--gold); color: var(--gold); }

/* === МОДУЛИ === */
.modules-section { padding: 60px 0; }
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    transition: all var(--transition); position: relative; box-shadow: var(--shadow);
}
.module-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.module-card.featured { border-color: var(--red); background: var(--red-light); }
.module-badge { position: absolute; top: 14px; right: 14px; background: var(--red); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
.module-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: var(--blue-light); border-radius: 10px; margin-bottom: 16px; }
.module-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.module-card p { color: var(--text-secondary); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.module-features { list-style: none; margin-bottom: 16px; }
.module-features li { padding: 4px 0; font-size: 13px; color: var(--text-secondary); }
.module-features li::before { content: '▸ '; color: var(--blue); font-weight: 700; }
.module-stat { padding-top: 14px; border-top: 1px solid var(--border-light); display: flex; align-items: baseline; gap: 8px; }
.module-stat-num { font-size: 28px; font-weight: 900; color: var(--blue); }
.module-stat span:last-child { font-size: 13px; color: var(--text-muted); }

/* === КАК РАБОТАЕТ === */
.how-section { padding: 60px 0; background: var(--bg-section-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border-light); }
.how-grid { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.how-step { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; max-width: 260px; text-align: center; }
.how-num { font-size: 42px; font-weight: 900; color: var(--blue); opacity: 0.2; margin-bottom: 10px; }
.how-step h3 { margin-bottom: 6px; font-weight: 700; font-size: 14px; }
.how-step p { color: var(--text-muted); font-size: 13px; }
.how-arrow { font-size: 20px; color: var(--text-dim); }

/* === ПАТТЕРНЫ === */
.patterns-section { padding: 60px 0; }
.patterns-filter { display: flex; gap: 6px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.patterns-filter button {
    padding: 7px 16px; border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-muted); border-radius: 6px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.patterns-filter button.active { background: var(--gold); color: #0a0e1a; border-color: var(--gold); }
.patterns-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pattern-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px; transition: all var(--transition); box-shadow: var(--shadow);
}
.pattern-card:hover { box-shadow: var(--shadow-md); }
.pattern-card.cat-fraud { border-left: 3px solid var(--red); }
.pattern-card.cat-verbovka { border-left: 3px solid var(--orange); }
.pattern-card.cat-drugs { border-left: 3px solid var(--purple); }
.pattern-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.pattern-name { font-size: 14px; font-weight: 700; }
.pattern-weight { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: var(--blue-light); color: var(--blue); }
.pattern-example {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: 6px; padding: 10px 14px; margin: 8px 0;
    font-size: 13px; color: var(--text-secondary); font-style: italic; line-height: 1.6;
}
.pattern-example::before { content: '💬 '; font-style: normal; }
.pattern-advice { font-size: 13px; color: var(--blue); margin-top: 6px; }
.pattern-advice::before { content: '💡 '; }

/* === СХЕМЫ И ДЕЛА === */
.schemes-section, .cases-section { padding: 60px 0; background: var(--bg-section-alt); border-top: 1px solid var(--border); }
.schemes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.scheme-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: all var(--transition); box-shadow: var(--shadow); }
.scheme-card:hover { box-shadow: var(--shadow-md); }
.scheme-card.danger { border-left: 4px solid var(--red); }
.scheme-card.critical { border-left: 4px solid var(--orange); }
.scheme-level { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; color: var(--text-muted); }
.scheme-card h3 { margin-bottom: 8px; font-weight: 700; font-size: 16px; }
.scheme-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.scheme-result { padding: 10px 14px; background: var(--red-light); border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--red); }

/* === СЕКЦИЯ ОБРАЩЕНИЙ === */
.contacts-section { padding: 60px 0; background: var(--bg); }

.report-urgent { margin-bottom: 32px; background: var(--red-light); border: 2px solid var(--red); border-radius: var(--radius-lg); overflow: hidden; }
.report-urgent-inner { display: flex; align-items: center; }
.report-urgent-left { padding: 28px 36px; text-align: center; min-width: 220px; border-right: 1px solid var(--red-border); }
.report-urgent-label { font-size: 11px; font-weight: 800; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.report-urgent-number { font-size: 64px; font-weight: 900; color: var(--red); line-height: 1; }
.report-urgent-text { font-size: 11px; color: var(--text-muted); margin-top: 6px; }
.report-urgent-right { padding: 20px 28px; flex: 1; }
.report-urgent-right p { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.report-urgent-right ul { list-style: none; }
.report-urgent-right li { padding: 3px 0; font-size: 13px; color: var(--text-secondary); }
.report-urgent-right li::before { content: '▸ '; color: var(--red); font-weight: 700; }

.report-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.report-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

.report-card-header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
.report-card-header.mvd { background: var(--blue-light); border-left: 4px solid var(--gold); }
.report-card-header.fsb { background: var(--red-light); border-left: 4px solid var(--red); }
.report-card-header.rkn { background: var(--purple-light); border-left: 4px solid var(--purple); }
.report-card-header.cb { background: #fffff0; border-left: 4px solid var(--gold); }
.report-card-icon { font-size: 28px; }
.report-card-header h3 { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.report-card-tag { font-size: 11px; color: var(--text-muted); }

.report-card-body { padding: 16px 20px; }
.report-when { padding: 10px 14px; background: var(--bg); border-radius: 6px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; border-left: 3px solid var(--border); }
.report-when-urgent { border-left-color: var(--red); background: var(--red-light); }

.report-steps { margin-bottom: 14px; }
.report-step { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.report-step-num { min-width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; border-radius: 50%; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.report-step a { color: var(--blue); }

.report-contacts-row { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.report-contact-item { background: var(--bg); border: 1px solid var(--border-light); border-radius: 6px; padding: 8px 12px; flex: 1; min-width: 110px; }
.report-contact-label { display: block; font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.report-contact-value { font-size: 13px; font-weight: 700; color: var(--text); }

.report-gen-btn {
    width: 100%; padding: 10px; border: 1px solid var(--border); background: var(--bg);
    color: var(--text); border-radius: 6px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.report-gen-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.report-gen-urgent { border-color: var(--red-border); color: var(--red); }
.report-gen-urgent:hover { background: var(--red-light); border-color: var(--red); }

.report-extra { margin-top: 32px; }
.report-extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.report-extra-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; font-size: 14px; box-shadow: var(--shadow); }

/* === СТАТИСТИКА === */
.stats-section { padding: 60px 0; background: var(--bg-section-alt); border-top: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.stat-card-big { grid-row: span 1; background: var(--bg-header); color: #fff; }
.stat-card-big .stat-card-num { font-size: 48px; color: #fbd38d; }
.stat-card-big .stat-card-label { color: rgba(255,255,255,0.8); }
.stat-card-big .stat-card-sub { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 4px; }
.stat-card-num { font-size: 32px; font-weight: 900; color: var(--blue); margin-bottom: 4px; }
.stat-card-label { font-size: 12px; color: var(--text-muted); }

.stats-schemes { max-width: 800px; margin: 0 auto; }
.stats-schemes-grid { display: flex; flex-direction: column; gap: 12px; }
.stats-scheme-item { display: flex; gap: 16px; align-items: flex-start; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.stats-scheme-num { min-width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--red); color: #fff; border-radius: 50%; font-weight: 900; font-size: 14px; flex-shrink: 0; }
.stats-scheme-item strong { font-size: 14px; display: block; margin-bottom: 4px; }
.stats-scheme-item p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* === САМОЗАПРЕТ === */
.selfban-section { padding: 60px 0; background: var(--bg); }
.selfban-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; max-width: 900px; margin: 0 auto 24px; }
.selfban-what { background: var(--blue-light); border: 1px solid rgba(0,102,255,0.15); border-radius: var(--radius-lg); padding: 24px; }
.selfban-what h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--blue); }
.selfban-what p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.selfban-steps { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.selfban-steps h3 { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.selfban-note { margin-top: 14px; padding: 12px 16px; background: var(--bg); border-radius: 8px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; border-left: 3px solid var(--blue); }
.selfban-warning {
    max-width: 900px; margin: 0 auto; padding: 16px 24px;
    background: var(--red-light); border: 1px solid var(--red-border);
    border-radius: var(--radius); font-size: 14px; color: var(--red);
    text-align: center; line-height: 1.6;
}

/* === ЖЕРТВА — ТАЙМЛАЙН === */
.victim-section { padding: 60px 0; background: var(--bg-section-alt); border-top: 1px solid var(--border); }
.victim-timeline { max-width: 700px; margin: 0 auto 24px; position: relative; padding-left: 24px; }
.victim-timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.victim-step { display: flex; gap: 16px; margin-bottom: 20px; position: relative; }
.victim-step::before { content: ''; position: absolute; left: -18px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); border: 2px solid var(--bg-card); z-index: 1; }
.victim-step.urgent::before { background: var(--red); }
.victim-step-time { min-width: 90px; font-size: 12px; font-weight: 700; color: var(--text-muted); padding-top: 4px; text-align: right; }
.victim-step.urgent .victim-step-time { color: var(--red); }
.victim-step-content { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.victim-step.urgent .victim-step-content { border-color: var(--red-border); background: var(--red-light); }
.victim-step-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.victim-step-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.victim-step-content a { color: var(--blue); }
.victim-save {
    max-width: 700px; margin: 0 auto; padding: 16px 24px;
    background: var(--blue-light); border: 1px solid rgba(0,102,255,0.15);
    border-radius: var(--radius); font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}

/* === КВИЗ === */
.quiz-section { padding: 60px 0; background: var(--bg); }
.quiz-box { max-width: 700px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.quiz-progress { height: 6px; background: var(--border-light); border-radius: 3px; margin-bottom: 16px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 3px; transition: width 0.4s ease; }
.quiz-counter { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.quiz-question { font-size: 16px; font-weight: 700; line-height: 1.6; margin-bottom: 20px; padding: 16px 20px; background: var(--bg); border-radius: var(--radius); border-left: 4px solid var(--gold); }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
    display: block; width: 100%; text-align: left; padding: 14px 18px;
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    cursor: pointer; font-size: 14px; line-height: 1.5; transition: all 0.2s;
}
.quiz-option:hover:not(.selected) { border-color: var(--gold); background: var(--gold-glow); }
.quiz-option.correct { background: rgba(34,197,94,0.1); border-color: var(--green); color: var(--green); }
.quiz-option.wrong { background: rgba(239,68,68,0.1); border-color: var(--red); color: var(--red); }
.quiz-option.selected { font-weight: 700; }
.quiz-feedback { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius); font-size: 13px; line-height: 1.6; }
.quiz-feedback.correct { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: var(--green); }
.quiz-feedback.wrong { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: var(--red); }
.quiz-next-btn { 
    margin-top: 16px; padding: 12px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0e1a;
    border: none; border-radius: var(--radius); cursor: pointer; font-size: 14px; font-weight: 600;
    transition: all 0.2s;
}
.quiz-next-btn:hover { background: var(--gold-bright); }
.quiz-result { max-width: 700px; margin: 0 auto; text-align: center; padding: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.quiz-result-score { font-size: 64px; font-weight: 900; color: var(--gold); margin-bottom: 12px; }
.quiz-result-text { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.quiz-restart-btn { padding: 12px 32px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0e1a; border: none; border-radius: var(--radius); cursor: pointer; font-size: 14px; font-weight: 600; }

/* === КИБЕРДРУЖИНА === */
.cybersquad-section { padding: 60px 0; background: var(--bg-section-alt); border-top: 1px solid var(--border); }
.cybersquad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cybersquad-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow);
}
.cybersquad-card.highlight { background: var(--blue-light); border-color: rgba(0,102,255,0.2); }
.cybersquad-card-icon { font-size: 32px; margin-bottom: 12px; }
.cybersquad-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.cybersquad-card ul { list-style: none; padding: 0; margin: 0; }
.cybersquad-card li { font-size: 13px; color: var(--text-secondary); padding: 5px 0; padding-left: 16px; position: relative; line-height: 1.5; }
.cybersquad-card li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.cybersquad-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.cybersquad-join-btn {
    
    background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #0a0e1a; text-decoration: none;
    border-radius: var(--radius); font-size: 14px; font-weight: 600;
    transition: all 0.2s;
}
.cybersquad-join-btn:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* === РЕСУРСЫ === */
.resources-section { padding: 60px 0; background: var(--bg); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px; text-decoration: none; color: var(--text);
    transition: all var(--transition); box-shadow: var(--shadow);
}
.resource-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.resource-icon { font-size: 28px; margin-bottom: 10px; }
.resource-card strong { font-size: 14px; margin-bottom: 6px; }
.resource-card span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* === НОВОСТИ === */
.news-section { padding: 60px 0; background: var(--bg-section-alt); border-top: 1px solid var(--border); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 20px; box-shadow: var(--shadow); transition: all 0.2s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card.urgent { border-left: 4px solid var(--red); }
.news-date { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.news-badge {
    display: inline-block; padding: 3px 10px; border-radius: 12px;
    font-size: 11px; font-weight: 700; margin-bottom: 10px;
}
.news-badge.danger { background: var(--red-light); color: var(--red); }
.news-badge.warning { background: rgba(245,158,11,0.1); color: var(--orange); }
.news-badge.info { background: var(--blue-light); color: var(--blue); }
.news-card h3 { font-size: 14px; font-weight: 800; line-height: 1.5; margin-bottom: 8px; }
.news-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.news-action {
    font-size: 12px; color: var(--text-muted); padding-top: 12px;
    border-top: 1px solid var(--border-light); line-height: 1.5;
}

/* === ПОДВАЛ === */
.footer { background: var(--bg-header); color: rgba(255,255,255,0.7); padding: 40px 0 20px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 8px; max-width: 300px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 11px; margin-bottom: 3px; }

/* === АДАПТИВ === */
@media (max-width: 768px) {
    .nav-links, .gov-topbar { display: none; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .modules-grid, .schemes-grid, .patterns-grid, .report-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .selfban-box { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .cybersquad-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .report-urgent-inner { flex-direction: column; }
    .report-urgent-left { border-right: none; border-bottom: 1px solid var(--red-border); padding: 20px; }
    .report-extra-grid { grid-template-columns: 1fr; }
    .how-arrow { display: none; }
    .how-grid { flex-direction: column; }
    .check-input-wrap { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
    h1 { font-size: 24px; }
}
