/* ═══════════════════════════════════════════════════════════════════
   Kazenor Alliance — style.css
   Colour palette: black / charcoal / white / red accent
   ═══════════════════════════════════════════════════════════════════ */

/* ──────────── CSS Variables ──────────── */
:root {
  --black:       #0a0a0a;
  --char:        #1a1a1a;
  --char-mid:    #242424;
  --char-light:  #2e2e2e;
  --smoke:       #3a3a3a;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --light-grey:  #e8e8e8;
  --mid-grey:    #9a9a9a;
  --text-main:   #111111;
  --text-muted:  #555555;
  --text-light:  #888888;
  --red:         #d42b2b;
  --red-light:   #e84343;
  --red-pale:    #fce8e8;
  --border:      rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.1);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.22);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ──────────── Reset & Base ──────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ──────────── NAVBAR ──────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--light-grey);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--char);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-abbr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo-abbr { color: var(--white); }
.nav-logo-full {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo-full { color: rgba(255,255,255,0.5); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.75); }
.nav-link:hover { color: var(--black); background: var(--off-white); }
.navbar.scrolled .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--black); font-weight: 600; }
.navbar.scrolled .nav-link.active { color: var(--white); }

.nav-link.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-link.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,43,43,0.35);
}
.navbar.scrolled .nav-link.nav-cta { background: var(--red); }
.navbar.scrolled .nav-link.nav-cta:hover { background: var(--red-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-burger span { background: var(--white); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ──────────── HERO ──────────── */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* White zone — banner */
.hero-banner-zone {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 60px;
  flex: 1;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,43,43,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(212,43,43,0); }
}

.hero-banner {
  max-width: 500px;
  width: 100%;
  margin-bottom: 28px;
  /* Banner has white bg — it blends seamlessly */
  animation: banner-in 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes banner-in {
  from { transform: translateY(24px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
  animation: fade-up 0.7s 0.3s both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.7s 0.5s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,43,43,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* Dark stats zone */
.hero-dark-zone {
  background: var(--black);
  padding: 40px 24px;
  display: flex;
  justify-content: center;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  width: 100%;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}

/* ──────────── MARQUEE ──────────── */
.marquee-strip {
  background: var(--char);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────── SECTION BASE ──────────── */
.section { padding: 96px 0; }
.section--dark {
  background: var(--char);
  color: var(--white);
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(212,43,43,0.3);
  background: rgba(212,43,43,0.06);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section--dark .section-tag {
  background: rgba(212,43,43,0.12);
  border-color: rgba(212,43,43,0.4);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section--dark .section-title { color: var(--white); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section--dark .section-desc { color: rgba(255,255,255,0.5); }

/* ──────────── ABOUT ──────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-text p strong { color: var(--black); font-weight: 700; }
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-left: 3px solid var(--black);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar div { display: flex; flex-direction: column; }
.pillar strong { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.pillar span { font-size: 0.83rem; color: var(--text-muted); margin-top: 2px; }

.about-visual { display: flex; flex-direction: column; gap: 18px; }
.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-grey);
  border-left-width: 4px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-card--mission { border-left-color: var(--black); }
.about-card--vision  { border-left-color: var(--red); }
.about-card--values  { border-left-color: var(--smoke); }
.about-card-icon { font-size: 1.7rem; margin-bottom: 10px; }
.about-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ──────────── STEPS ──────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  background: var(--char-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.step-card:hover { background: var(--char-light); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.step-card:hover::after { transform: scaleX(1); }
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
  transition: background var(--transition);
}
.step-card:hover .step-icon { background: rgba(212,43,43,0.15); color: var(--red-light); }
.step-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ──────────── DANGERS ──────────── */
.dangers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.danger-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--black);
  transition: box-shadow var(--transition), transform var(--transition), border-top-color var(--transition);
}
.danger-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-top-color: var(--red); }
.danger-icon { font-size: 2rem; margin-bottom: 14px; }
.danger-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.danger-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ──────────── STATS ──────────── */
.stats-big-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.stat-big-card {
  background: var(--char-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.stat-big-card:hover { background: var(--char-light); transform: translateY(-3px); }
.stat-big-icon { font-size: 1.8rem; margin-bottom: 10px; }
.stat-big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat-big-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-big-bar {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 3px;
  overflow: hidden;
}
.stat-big-fill {
  height: 100%;
  background: var(--red);
  border-radius: 4px;
  width: 0%;
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
}

/* Countries */
.countries-section { text-align: center; }
.countries-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.country-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s ease;
}
.country-tag:hover { background: rgba(212,43,43,0.2); color: var(--white); border-color: rgba(212,43,43,0.4); }

/* ──────────── FAQ ──────────── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--off-white); color: var(--red); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--mid-grey);
  transition: transform var(--transition), color var(--transition);
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--red); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ──────────── REPORT FORM ──────────── */
.report-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}
.report-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.report-steps-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}
.report-steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.report-step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.report-steps-list li div { display: flex; flex-direction: column; }
.report-steps-list li strong { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.report-steps-list li p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.report-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.report-privacy-note svg { flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,0.4); }

/* Form */
.report-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.3);
}
.form-row { margin-bottom: 18px; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--black); }
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-main);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(212,43,43,0.1); }
.form-hint { font-size: 0.76rem; color: var(--mid-grey); margin-top: -3px; }
.form-error { font-size: 0.76rem; color: var(--red); font-weight: 500; min-height: 15px; }

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px; height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  background: var(--off-white);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--black);
  border-color: var(--black);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 5px; height: 8px;
  border: 2px solid var(--white);
  border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.97rem;
  padding: 14px;
  margin-top: 6px;
  border-radius: var(--radius-sm);
}
.form-success {
  text-align: center;
  padding: 28px 0 0;
  animation: fade-up 0.5s both;
}
.success-icon { font-size: 2.8rem; margin-bottom: 14px; }
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-success p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 5px; }
.success-ref strong { color: var(--red); font-size: 0.97rem; }

/* ──────────── PARTNERS ──────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--black); }
.partner-flag { font-size: 2.3rem; margin-bottom: 12px; }
.partner-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.partner-card p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.5; }

/* ──────────── FOOTER ──────────── */
.footer { background: var(--black); color: rgba(255,255,255,0.6); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 64px 0 52px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--char);
}
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-brand-desc { font-size: 0.81rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; }
.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }
.footer-contact-col p { font-size: 0.83rem; margin-bottom: 9px; }
.footer-contact-col a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.15); }

/* ──────────── BACK TO TOP ──────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--red); }

/* ──────────── SCROLL ANIMATIONS ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1024px) {
  .stats-big-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { width: 100%; text-align: center; padding: 12px; font-size: 1rem; color: rgba(255,255,255,0.8) !important; }
  .nav-link.nav-cta { margin-top: 6px; }
  .nav-burger { display: flex; }
  .hero-banner { max-width: 360px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-num { font-size: 1.9rem; }
  .dangers-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-big-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .report-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .form-row--two { grid-template-columns: 1fr; }
  .report-form { padding: 24px 18px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .section { padding: 68px 0; }
  .hero-banner-zone { padding: 96px 16px 48px; }
  .hero-banner { max-width: 300px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stats-row { flex-direction: column; gap: 14px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .dangers-grid { grid-template-columns: 1fr; }
  .stats-big-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
}
