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

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

:root {
  --primary: #2C3E50;
  --primary-light: #3d5166;
  --accent-blue: #3498DB;
  --accent-red: #E74C3C;
  --accent-green: #2ECC71;
  --bg-alt: #DCE3E8;
  --bg-light: #f4f6f8;
  --text-main: #2C3E50;
  --text-muted: #6b7e8f;
  --text-light: #a0b0bc;
  --border: #c8d4dc;
  --white: #ffffff;
  --card-shadow: 0 2px 12px rgba(44,62,80,0.10);
  --card-shadow-hover: 0 6px 24px rgba(44,62,80,0.18);
  --radius: 4px;
  --max-width: 1400px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { line-height: 1.72; color: var(--text-main); margin-bottom: 1rem; }
a { color: var(--accent-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

.text-balance { text-wrap: balance; }
.text-muted { color: var(--text-muted); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(44,62,80,0.35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.site-logo:hover { color: var(--accent-blue); }

.site-logo span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.09); }
.main-nav a.active { color: var(--white); background: rgba(52,152,219,0.22); }

.nav-cta {
  background: var(--accent-blue) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover { background: #2980b9 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 2rem;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

/* ===== PAGE OFFSET ===== */
.page-offset { padding-top: 68px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,62,80,0.82) 0%, rgba(44,62,80,0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  max-width: 680px;
  padding-left: 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(52,152,219,0.14);
  border: 1px solid rgba(52,152,219,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #2980b9;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(52,152,219,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover { background: var(--primary-light); color: var(--white); }

/* ===== SECTION COMMONS ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary); }
.section-light { background: var(--bg-light); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title { margin-bottom: 1rem; }

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

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent-blue);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.grid-text-img { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-text-img.reverse { direction: rtl; }
.grid-text-img.reverse > * { direction: ltr; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
  display: block;
}

.card h2, .card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-link:hover { color: var(--primary); }

/* ===== STAT STRIP ===== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary);
  border-top: 3px solid var(--accent-blue);
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-blue);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ===== MYTH/FACT ===== */
.myth-fact-grid { display: flex; flex-direction: column; gap: 1.5rem; }

.myth-fact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); }

.myth-block, .fact-block { padding: 1.75rem 2rem; }

.myth-block {
  background: #fef5f4;
  border-right: 3px solid var(--accent-red);
}

.fact-block {
  background: #f2fbf6;
  border-left: none;
}

.myth-label, .fact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.myth-label { color: var(--accent-red); }
.fact-label { color: var(--accent-green); }

.myth-block p, .fact-block p { font-size: 0.93rem; margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-block { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--primary);
  transition: color 0.2s;
  list-style: none;
  gap: 1rem;
}

.faq-question:hover { color: var(--accent-blue); }

.faq-question .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent-blue);
  transition: background 0.2s, transform 0.2s;
}

.faq-item.open .faq-icon { background: var(--accent-blue); color: var(--white); transform: rotate(45deg); }

.faq-answer { display: none; padding: 0 0 1.25rem; font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ===== GLOSSARY RAIL ===== */
.glossary-rail {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent-blue);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.glossary-rail h3 { font-size: 1rem; margin-bottom: 1.25rem; color: var(--primary); }

.glossary-term { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.glossary-term:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.glossary-term dt { font-weight: 700; font-size: 0.88rem; color: var(--accent-blue); margin-bottom: 0.2rem; }
.glossary-term dd { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.1rem; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent-blue); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--accent-blue); }
.timeline-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-blue); text-transform: uppercase; margin-bottom: 0.3rem; display: block; }
.timeline-item h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--primary); color: var(--white); padding: 0.85rem 1rem; text-align: left; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.data-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-main); }
.data-table tr:nth-child(even) td { background: var(--bg-light); }
.data-table tr:hover td { background: var(--bg-alt); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--card-shadow); }

/* ===== QUOTE BLOCK ===== */
.quote-block {
  border-left: 4px solid var(--accent-blue);
  padding: 1.25rem 1.75rem;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.quote-block p { font-style: italic; font-size: 1.02rem; color: var(--primary-light); margin-bottom: 0; }

/* ===== HIGHLIGHT BOXES ===== */
.highlight-box {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.highlight-box.blue { background: rgba(52,152,219,0.08); border: 1px solid rgba(52,152,219,0.25); }
.highlight-box.green { background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.25); }
.highlight-box.red { background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.25); }

.highlight-box h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.highlight-box.blue h4 { color: #2471a3; }
.highlight-box.green h4 { color: #1e8449; }
.highlight-box.red h4 { color: #c0392b; }
.highlight-box p { font-size: 0.88rem; margin-bottom: 0; color: var(--text-muted); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-blue); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ===== ARTICLE META ===== */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 1rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.article-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ===== CONTACT FORM ===== */
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }

.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 0.45rem; letter-spacing: 0.03em; }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.12);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.contact-info-block h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.contact-info-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9rem; }
.contact-info-item strong { color: var(--primary); }
.contact-info-item span { color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo { color: var(--white); font-size: 1.5rem; margin-bottom: 0.75rem; display: inline-block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-editorial {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 0.4rem; }

.footer-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 2px solid var(--accent-blue);
  z-index: 9999;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden { display: none; }

.cookie-banner p { color: rgba(255,255,255,0.8); font-size: 0.84rem; margin: 0; max-width: 700px; }
.cookie-banner a { color: var(--accent-blue); }

.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.btn-cookie-accept {
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover { background: #2980b9; }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--primary);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--accent-blue); }

/* ===== BLOG HERO ===== */
.blog-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  box-shadow: var(--card-shadow-hover);
}

/* ===== ARTICLE LAYOUT ===== */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.article-layout .article-aside { position: sticky; top: 90px; }

/* ===== LEGAL PAGES ===== */
.legal-content h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.legal-content p { font-size: 0.95rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.4rem; line-height: 1.65; }

/* ===== THANK YOU ===== */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-box {
  max-width: 520px;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-hover);
}

.thankyou-box .check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46,204,113,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--accent-green);
  font-size: 1.4rem;
  color: var(--accent-green);
}

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }

/* ===== SECTION DECORATIVE LINE ===== */
.section-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  margin-bottom: 3rem;
}

/* ===== PILL ===== */
.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-right: 0.3rem;
}

.pill-blue { background: rgba(52,152,219,0.12); color: #2471a3; }
.pill-green { background: rgba(46,204,113,0.12); color: #1e8449; }
.pill-red { background: rgba(231,76,60,0.12); color: #c0392b; }

/* ===== EDITORIAL NOTE ===== */
.editorial-note {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 3rem;
}

.editorial-note strong { color: var(--primary); }

/* ===== 404 ===== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.error-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-layout .article-aside { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-text-img { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-text-img.reverse { direction: ltr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .myth-fact-row { grid-template-columns: 1fr; }
  .myth-block { border-right: none; border-bottom: 3px solid var(--accent-red); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 440px; }
  .hero-content { max-width: 100%; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 3.5rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero-actions .btn { width: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}
