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

:root {
  --red: #D42B2B;
  --red-dark: #9C1B1B;
  --red-glow: #FF3B3B;
  --bg: #0A0C10;
  --bg2: #12151C;
  --bg3: #1A1E28;
  --text: #F0EDE6;
  --text-muted: #8A8C96;
  --border: rgba(255,255,255,0.08);
  --amber: #E8A020;
  --green: #2ECC8A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--red);
}

.nav-emergency {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.nav-emergency:hover { background: var(--red-dark); }

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,43,43,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,43,43,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,43,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,43,43,0.12);
  border: 1px solid rgba(212,43,43,0.3);
  color: #FF6B6B;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-title span {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text);
  padding: 1rem 2.2rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ─── EMERGENCY STRIP ────────────────────────────────────── */
.emergency-strip {
  background: var(--red);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.emergency-strip-text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
}

.emergency-numbers {
  display: flex;
  gap: 1rem;
}

.e-num {
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

/* ─── SECTION BASE ───────────────────────────────────────── */
section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ─── WARNING SIGNS ──────────────────────────────────────── */
.warning-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.warning-card {
  background: var(--bg2);
  padding: 2rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.warning-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}

.warning-card:hover::before { transform: scaleY(1); }
.warning-card:hover { background: var(--bg3); }

.warning-icon {
  width: 40px; height: 40px;
  margin-bottom: 1rem;
  color: var(--red);
}

.warning-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

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

/* ─── CRITICAL BOX ───────────────────────────────────────── */
.critical-box {
  background: rgba(212,43,43,0.08);
  border: 1px solid rgba(212,43,43,0.3);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.critical-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

.critical-box h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #FF6B6B;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.critical-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.critical-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}

.critical-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ─── STEPS ──────────────────────────────────────────────── */
.steps-section { background: var(--bg); }

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .steps-layout { grid-template-columns: 1fr; }
}

.steps-sticky {
  position: sticky;
  top: 100px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.3s;
  cursor: pointer;
}

.step-item:last-child { border-bottom: none; }

.step-item.active {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(212,43,43,0.05) 0%, transparent 100%);
  border-left: 3px solid var(--red);
  margin-left: 0;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  flex-shrink: 0;
  transition: color 0.3s;
  width: 56px;
  text-align: right;
}

.step-item.active .step-num { color: var(--red); }

.step-content { flex: 1; }

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

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

.step-detail {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  transition: all 0.3s;
}

.step-detail-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(212,43,43,0.12);
  position: absolute;
  top: 1rem;
  right: 2rem;
}

.step-detail-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.1;
}

.step-detail-desc {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(46,204,138,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  width: fit-content;
}

/* ─── STEP TABS ──────────────────────────────────────────── */
.step-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.step-tab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.step-tab:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

.step-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ─── DO NOT ─────────────────────────────────────────────── */
.donot-section { background: var(--bg2); border-top: 1px solid var(--border); }

.donot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.donot-card {
  background: var(--bg2);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.donot-card:hover { background: var(--bg3); }

.donot-x {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,43,43,0.15);
  border: 1px solid rgba(212,43,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.donot-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}

.donot-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── FAQ (details/summary) ──────────────────────────────── */
.faq-section { background: var(--bg); }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details summary {
  list-style: none;
  padding: 1.5rem 0;
  cursor: pointer;
  color: #fff;
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}

.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::marker { display: none; }

.faq-list details summary:hover { color: var(--red); }

.faq-list details summary::after {
  content: '+';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 20px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.faq-list details[open] summary {
  color: var(--red);
}

.faq-list details[open] summary::after {
  content: '−';
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.faq-list details p {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 700px;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 0.8rem;
}

.cta-phones {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.phone-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.phone-card:hover {
  border-color: rgba(212,43,43,0.4);
  transform: translateY(-3px);
}

.phone-card .ph-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.phone-card .ph-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 4px;
  color: var(--red);
  line-height: 1;
}

.phone-card .ph-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ─── INFO SECTION (первый блок) ────────────────────────── */
.info-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.info-block {
  margin-bottom: 0;
}

.info-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

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

.info-block p:last-child { margin-bottom: 0; }

.info-divider {
  width: 48px;
  height: 2px;
  background: rgba(212,43,43,0.35);
  margin: 2.5rem 0;
}

.info-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 1.5rem;
}

.info-organ-card {
  background: var(--bg2);
  padding: 1.5rem;
  transition: background 0.2s;
}

.info-organ-card:hover { background: var(--bg3); }

.info-organ-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.info-organ-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── INFO SECTION (второй блок — сетка статей) ─────────── */
.info-inner { width: 100%; }

.info-header {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.info-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (max-width: 700px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-article {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.info-article:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--border);
}

.info-article:nth-child(even) {
  padding-left: 3rem;
}

.info-article:nth-last-child(-n+2) {
  border-bottom: none;
}

.info-article h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 1rem;
}

.info-article h3::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 3px; height: 15px;
  background: var(--red);
  border-radius: 1px;
}

.info-article p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.info-article p:last-child { margin-bottom: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.sources-section{
    border-top: 1px solid var(--border);
}
.sources-section a{
    color: var(--text-muted);
}
.sources-section a:hover{
    text-decoration: none;
}
/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 600px) {
  nav { padding: 0.8rem 1rem; }
  section { padding: 4rem 1rem; }
  .critical-box { flex-direction: column; }
  .emergency-strip { flex-direction: column; gap: 0.8rem; text-align: center; }
}
