/* ===== ROOT VARIABLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #e8001a;
  --primary-dark: #b00014;
  --primary-light: #ff1f37;
  --accent: #ff6b00;
  --accent2: #ffd700;
  --text: #1a0505;
  --text-muted: #6b4444;
  --bg: #0d0505;
  --bg2: #140808;
  --bg3: #1e0a0a;
  --white: #ffffff;
  --card-bg: #1a0808;
  --card-border: rgba(232,0,26,0.25);
  --shadow: 0 4px 32px rgba(232,0,26,0.18);
  --glow: 0 0 40px rgba(232,0,26,0.35);
  --radius: 12px;
  --font-head: 'Exo 2', sans-serif;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* Animated background grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232,0,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,26,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); text-decoration: none; }

/* ===== HEADER ===== */
header {
  background: rgba(13,5,5,0.95);
  border-bottom: 1px solid rgba(232,0,26,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(232,0,26,0.1);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo span { color: var(--primary); text-shadow: 0 0 20px rgba(232,0,26,0.6); }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}
nav a:hover { color: var(--primary); text-decoration: none; }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,0,26,0.1);
  border: 1px solid rgba(232,0,26,0.3);
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 0.82rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 2px 6px;
  border-radius: 99px;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.lang-btn.active { background: var(--primary); color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: #fff; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 40%, #1a0505 100%);
  color: #fff;
  padding: 90px 24px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,0,26,0.22) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite 2s;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.75; }
}

/* Floating cubes decoration */
.hero-cubes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cube {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(232,0,26,0.4);
  border-radius: 3px;
  animation: float linear infinite;
}
.cube:nth-child(1) { left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; }
.cube:nth-child(2) { left: 25%; top: 60%; animation-duration: 18s; animation-delay: -4s; width: 12px; height: 12px; }
.cube:nth-child(3) { left: 70%; top: 15%; animation-duration: 14s; animation-delay: -2s; width: 24px; height: 24px; }
.cube:nth-child(4) { left: 85%; top: 55%; animation-duration: 10s; animation-delay: -6s; width: 14px; height: 14px; }
.cube:nth-child(5) { left: 50%; top: 75%; animation-duration: 16s; animation-delay: -3s; }
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(-80px) rotate(180deg); opacity: 0; }
}

.hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,26,0.15);
  border: 1px solid rgba(232,0,26,0.5);
  color: #ff8a96;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  animation: fadeDown 0.6s ease 0.1s both;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(232,0,26,0.5);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 38px;
  animation: fadeDown 0.6s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.6s ease 0.3s both;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(232,0,26,0.4), 0 0 0 0 rgba(232,0,26,0.4);
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(232,0,26,0.4), 0 0 0 0 rgba(232,0,26,0.3); }
  50% { box-shadow: 0 8px 40px rgba(232,0,26,0.55), 0 0 0 8px rgba(232,0,26,0); }
}
.btn-download:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232,0,26,0.5);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(232,0,26,0.1);
  text-decoration: none;
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeDown 0.6s ease 0.4s both;
}
.hero-stat {
  text-align: center;
  position: relative;
}
.hero-stat::after {
  content: '';
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(232,0,26,0.25);
}
.hero-stat:last-child::after { display: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(232,0,26,0.4);
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== SECTION ===== */
.section { padding: 80px 24px; position: relative; z-index: 1; }
.section-light { background: var(--bg2); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 580px; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feature-card:hover { 
  border-color: rgba(232,0,26,0.5);
  transform: translateY(-4px); 
  box-shadow: var(--shadow);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(232,0,26,0.12);
  border: 1px solid rgba(232,0,26,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p { color: rgba(255,255,255,0.55); font-size: 0.93rem; line-height: 1.65; }

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  background: linear-gradient(135deg, #1f0000 0%, #2d0000 50%, #1a0000 100%);
  color: #fff;
  text-align: center;
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.download-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,0,26,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.download-section .section-title { color: #fff; }
.download-section .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }
.btn-download-lg {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 52px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(232,0,26,0.45);
  transition: all 0.25s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-download-lg:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(232,0,26,0.55);
  text-decoration: none;
  color: #fff;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { 
  border-color: rgba(232,0,26,0.5);
  transform: translateY(-4px); 
  box-shadow: var(--shadow); 
}
.blog-thumb {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #2d0000, #1a0808);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid rgba(232,0,26,0.2);
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--card-bg));
}
.blog-body { padding: 22px 24px; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  align-items: center;
}
.blog-category {
  background: rgba(232,0,26,0.15);
  color: #ff8a96;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
  color: #fff;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.65; }
.read-more {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.read-more:hover { color: var(--primary-light); }

/* ===== BLOG POST PAGE ===== */
.post-hero {
  background: linear-gradient(135deg, #1f0000, #2d0000, #1a0505);
  color: #fff;
  padding: 64px 24px 80px;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,0,26,0.18) 0%, transparent 70%);
}
.post-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.post-category {
  display: inline-block;
  background: rgba(232,0,26,0.2);
  border: 1px solid rgba(232,0,26,0.4);
  color: #ff8a96;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}
.post-meta { color: rgba(255,255,255,0.5); font-size: 0.88rem; display: flex; gap: 20px; flex-wrap: wrap; }
.post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
  color: rgba(255,255,255,0.82);
}
.post-content h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  margin: 44px 0 18px;
  color: #fff;
}
.post-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #fff;
}
.post-content p { margin-bottom: 18px; font-size: 1.03rem; line-height: 1.82; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 10px; line-height: 1.72; color: rgba(255,255,255,0.75); }
.post-content a { color: var(--primary); }
.post-content a:hover { color: var(--primary-light); }
.post-content .highlight-box {
  background: rgba(232,0,26,0.08);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  color: rgba(255,255,255,0.8);
}

/* ===== ABOUT / CONTACT / POLICY ===== */
.page-hero {
  background: linear-gradient(135deg, #1f0000, #2d0000, #1a0505);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,0,26,0.2) 0%, transparent 65%);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}
.page-hero p { color: rgba(255,255,255,0.62); font-size: 1.05rem; max-width: 560px; margin: 0 auto; position: relative; }
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
  color: rgba(255,255,255,0.82);
}
.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 40px 0 16px;
  color: #fff;
}
.page-content p { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.8; }
.page-content ul { margin: 0 0 18px 22px; }
.page-content li { margin-bottom: 10px; line-height: 1.75; color: rgba(255,255,255,0.72); }
.page-content a { color: var(--primary); }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.contact-info h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(232,0,26,0.12);
  border: 1px solid rgba(232,0,26,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; color: #fff; }
.contact-item p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: rgba(255,255,255,0.75); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1.5px solid rgba(232,0,26,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: #fff;
  background: rgba(232,0,26,0.06);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,0,26,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-submit:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,0,26,0.35); }

/* ===== FAQ ===== */
.faq-list { margin-top: 44px; }
.faq-item {
  border: 1px solid rgba(232,0,26,0.2);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(232,0,26,0.5); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.88);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.78;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-arrow { transition: transform 0.2s; color: rgba(255,255,255,0.4); }

/* ===== VERSIONS TABLE ===== */
.versions-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.93rem;
}
.versions-table th {
  background: rgba(232,0,26,0.15);
  color: var(--primary);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(232,0,26,0.3);
}
.versions-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
}
.versions-table tr:hover td { background: rgba(232,0,26,0.05); }
.badge-new {
  background: rgba(232,0,26,0.2);
  color: #ff8a96;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: #080202;
  border-top: 1px solid rgba(232,0,26,0.15);
  color: rgba(255,255,255,0.5);
  padding: 60px 24px 28px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 0.9rem; max-width: 260px; line-height: 1.75; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--primary); }

/* ===== KEYWORD TAGS ===== */
.keyword-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.keyword-tag {
  background: rgba(232,0,26,0.1);
  border: 1px solid rgba(232,0,26,0.25);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.keyword-tag:hover { border-color: var(--primary); color: #fff; background: rgba(232,0,26,0.18); text-decoration: none; }

/* ===== AD SLOT ===== */
.ad-slot {
  background: rgba(232,0,26,0.04);
  border: 1px dashed rgba(232,0,26,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-align: center;
  padding: 10px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  nav { display: none; }
  nav.open { 
    display: flex; flex-direction: column; 
    position: fixed; top: 68px; left: 0; right: 0; 
    background: rgba(13,5,5,0.98); 
    padding: 24px; 
    border-bottom: 1px solid rgba(232,0,26,0.2); 
    z-index: 99; 
    backdrop-filter: blur(16px);
    gap: 16px;
  }
  nav.open a { font-size: 1rem; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-stat::after { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
}