@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b0d1a;
  --bg-card: #121525;
  --bg-card2: #0f1120;
  --bg-header: rgba(9, 11, 20, 0.97);
  --accent: #c8922a;
  --accent-light: #e0a830;
  --accent-blue: #4a9eff;
  --accent-blue-dim: rgba(74,158,255,0.15);
  --text: #dde2f0;
  --text-muted: #7a84a0;
  --text-dim: #55607a;
  --border: #1a1e35;
  --border-accent: #c8922a;
  --font-head: 'Rajdhani', sans-serif;
  --font-sub: 'Exo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.35);
  --transition: 0.24s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--accent-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.loader-ring {
  width: 52px;
  height: 52px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.loader-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: #0b0d1a;
  letter-spacing: -1px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text);
  background: var(--accent-blue-dim);
}

.burger-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--bg-header);
  border-bottom: 2px solid var(--accent);
  z-index: 490;
  padding: 20px 24px 28px;
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: block; }
.mobile-menu-section { margin-bottom: 22px; }
.mobile-menu-section h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--accent-light); padding-left: 8px; }
.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,13,26,0.97) 0%, rgba(11,13,26,0.5) 50%, rgba(11,13,26,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0 52px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  max-width: 680px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 17px;
  color: rgba(221,226,240,0.8);
  max-width: 560px;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #0b0d1a;
}
.btn-primary:hover {
  background: var(--accent-light);
  color: #0b0d1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* SECTION */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 44px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 10px;
  max-width: 560px;
}
.divider { height: 1px; background: var(--border); margin: 0; }

/* ARTICLE CARDS */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: rgba(200,146,42,0.4);
}
.card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .card-thumb img { transform: scale(1.06); }
.card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #0b0d1a;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.card-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--accent-light); }
.card-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  background: var(--bg-card2);
}
.card-footer a {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-footer a:hover { color: var(--accent-light); }
.read-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

/* STATS / HIGHLIGHTS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SPLIT LAYOUT */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.split-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.split-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11,13,26,0.92));
  padding: 24px 18px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.split-content h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  margin-bottom: 16px;
}
.split-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.tags-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
}

/* ARTICLE PAGE */
.article-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.article-header .hero-tag { margin-bottom: 14px; }
.article-header h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.article-meta span strong { color: var(--text-muted); }
.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 36px 0;
  border: 1px solid var(--border);
}
.article-body { font-size: 16px; line-height: 1.85; color: var(--text-muted); }
.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 42px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 30px 0 12px;
}
.article-body p { margin-bottom: 18px; }
.article-body a { color: var(--accent-blue); }
.article-body a:hover { color: var(--accent-light); }
.article-body strong { color: var(--text); }
.article-img-block {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-img-block img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}
.article-img-block figcaption {
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  background: var(--bg-card);
}
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box h4 {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.info-box ul { padding-left: 18px; }
.info-box li { color: var(--text-muted); font-size: 14px; margin-bottom: 6px; }

/* RELATED ARTICLES */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.related-card:hover { border-color: rgba(200,146,42,0.4); transform: translateY(-2px); }
.related-thumb {
  width: 90px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-info { flex: 1; }
.related-info .card-meta { margin-bottom: 6px; }
.related-info h4 { font-size: 15px; font-weight: 600; line-height: 1.3; }
.related-info h4 a { color: var(--text); }
.related-info h4 a:hover { color: var(--accent-light); }

/* BREADCRUMB */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.breadcrumb li a { color: var(--text-muted); }
.breadcrumb li a:hover { color: var(--accent-light); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; }

/* ABOUT PAGE */
.about-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.about-hero h1 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 20px; }
.about-hero p { font-size: 18px; color: var(--text-muted); max-width: 580px; margin: 0 auto 32px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: #0b0d1a;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 18px; margin-bottom: 6px; }
.team-card p { font-size: 14px; color: var(--text-muted); }
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h2 { font-size: 26px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(74,158,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  font-size: 15px;
  padding: 14px;
}
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 18px;
}
.form-msg.success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.35); color: #5dde8b; }
.form-msg.error { background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.35); color: #f47b7b; }
.contact-info h3 { font-size: 22px; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; color: var(--text-muted); }

/* POLICY PAGES */
.policy-content { padding: 60px 0 80px; }
.policy-content h1 { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 12px; }
.policy-content .meta-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.policy-content h2 { font-size: 22px; margin: 40px 0 14px; color: var(--text); }
.policy-content p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { padding-left: 22px; color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: var(--accent-blue); }

/* FOOTER */
.site-footer {
  background: #080a14;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent-light); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #10131f;
  border-top: 1px solid var(--border);
  z-index: 800;
  padding: 20px 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text p { font-size: 14px; color: var(--text-muted); max-width: 640px; }
.cookie-text p a { color: var(--accent-blue); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn { padding: 9px 22px; font-size: 13px; }
.btn-accept { background: var(--accent); color: #0b0d1a; }
.btn-accept:hover { background: var(--accent-light); color: #0b0d1a; }
.btn-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-reject:hover { background: var(--bg-card); color: var(--text); }

/* UTILITIES */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-layout { grid-template-columns: 1fr; gap: 32px; }
  .split-layout.reverse { direction: ltr; }
  .split-img img { height: 280px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 420px; }
  .article-hero-img { height: 240px; }
  .section { padding: 52px 0; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
