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

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

:root {
  --primary: #2C3E50;
  --accent-orange: #F39C12;
  --accent-teal: #1ABC9C;
  --accent-silver: #BDC3C7;
  --bg-light: #F8F9FA;
  --bg-section: #EFF1F3;
  --text-body: #3D4F5C;
  --text-muted: #6B7D8C;
  --white: #FFFFFF;
  --border-light: #DDE2E7;
  --shadow-card: 0 2px 16px rgba(44,62,80,0.08);
  --shadow-card-hover: 0 6px 28px rgba(44,62,80,0.15);
  --radius: 4px;
}

html { scroll-behavior: smooth; background-color: var(--bg-light); }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', sans-serif;
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.1rem; color: var(--text-body); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-orange); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #d4880e; }

img { max-width: 100%; height: auto; display: block; }

.container-panon { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; color: var(--white); }
.header-logo span { color: var(--accent-orange); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 6px 13px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.main-nav a.active { color: var(--accent-orange); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

body { padding-top: 68px; }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.85) 0%, rgba(44,62,80,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-content h1 { color: var(--white); font-size: 3.4rem; font-weight: 800; margin-bottom: 1.1rem; text-balance: balance; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 640px; margin: 0 auto 1.8rem; line-height: 1.7; }
.hero-tagline {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn-panon {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #d4880e;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(243,156,18,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.btn-dark {
  background-color: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background-color: #243342;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(44,62,80,0.3);
  transform: translateY(-1px);
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background-color: var(--bg-section); }
.section-dark { background-color: var(--primary); }

.section-label {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1.1rem; }
.section-intro { font-size: 1.07rem; color: var(--text-muted); max-width: 620px; line-height: 1.7; margin-bottom: 2.4rem; }

.divider {
  width: 48px;
  height: 3px;
  background-color: var(--accent-orange);
  margin-bottom: 1.8rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── TWO-COLUMN EDITORIAL ── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.editorial-grid.reverse { direction: rtl; }
.editorial-grid.reverse > * { direction: ltr; }
.editorial-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.editorial-img-tall { height: 480px; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-panon {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.card-panon:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card-panon a { text-decoration: none; color: inherit; }

.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.card-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.card-meta { font-size: 0.8rem; color: var(--accent-silver); font-family: 'Barlow', sans-serif; margin-top: auto; }
.card-link {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-link:hover { color: #d4880e; }

/* ── MISCONCEPTION CARDS ── */
.myth-card {
  background: var(--white);
  border-left: 4px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
}
.myth-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.myth-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.myth-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.myth-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.4rem;
}

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--accent-orange); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-orange);
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-orange); color: var(--white); }
.faq-answer {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 20px; }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.comparison-table td {
  padding: 14px 20px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.6;
}
.comparison-table tr:nth-child(even) td { background: var(--bg-section); }
.comparison-table tr:hover td { background: #e8ecef; }

/* ── GLOSSARY ── */
.glossary-rail { display: flex; flex-direction: column; gap: 0; }
.glossary-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.glossary-term {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--primary);
  padding-right: 24px;
}
.glossary-def { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--primary);
  padding: 48px 0;
}
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Barlow', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.4; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -29px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-orange);
}
.timeline-period {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.3rem;
}
.timeline-heading { font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-body { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ── MYTH VS FACT ── */
.myth-fact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.myth-col {
  background: #FFF8EF;
  padding: 24px 28px;
}
.fact-col {
  background: #F0FDFB;
  padding: 24px 28px;
}
.col-badge {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.7rem;
}
.badge-myth { background: var(--accent-orange); color: var(--white); }
.badge-fact { background: var(--accent-teal); color: var(--white); }
.myth-col p, .fact-col p { font-size: 0.93rem; color: var(--text-body); margin: 0; line-height: 1.65; }

/* ── CONTACT BLOCK ── */
.contact-preview {
  background: var(--primary);
  padding: 72px 0;
}
.contact-preview h2 { color: var(--white); margin-bottom: 0.8rem; }
.contact-preview p { color: rgba(255,255,255,0.75); margin-bottom: 1.4rem; }

.contact-form-wrap { max-width: 680px; margin: 0 auto; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent-orange); }
.form-field textarea { resize: vertical; min-height: 130px; }

/* ── CONTACT PAGE ── */
.contact-info-block {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--accent-teal);
}
.contact-info-block h3 { margin-bottom: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.contact-info-item strong { color: var(--primary); display: block; margin-bottom: 2px; }

/* ── SOFT CTA SECTION ── */
.soft-cta {
  background-color: var(--bg-section);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.soft-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.soft-cta-inner { position: relative; z-index: 2; }

/* ── ABOUT PAGE ── */
.mission-highlight {
  background: var(--primary);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.mission-highlight h2 { color: var(--white); margin-bottom: 0.8rem; }
.mission-highlight p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin: 0; line-height: 1.75; }
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--bg-section);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.2rem;
}
.value-text h4 { margin-bottom: 0.3rem; }
.value-text p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ── BLOG ARTICLE ── */
.article-hero { padding: 56px 0 48px; background: var(--primary); }
.article-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.article-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; text-balance: balance; }
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-family: 'Barlow', sans-serif;
}
.article-meta-bar span { display: flex; align-items: center; gap: 6px; }
.article-meta-bar strong { color: rgba(255,255,255,0.9); }

.article-body { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.article-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}
.article-body h2 { margin-top: 2.4rem; margin-bottom: 0.9rem; font-size: 1.6rem; }
.article-body h3 { margin-top: 1.8rem; margin-bottom: 0.7rem; font-size: 1.2rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.4rem; color: var(--text-body); }
.article-body li { margin-bottom: 0.45rem; line-height: 1.65; }

.highlight-box {
  background: var(--bg-section);
  border-left: 4px solid var(--accent-teal);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.8rem 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

.key-terms-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 2rem 0;
}
.key-terms-block h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.05rem; }

.article-img-featured {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow-card);
}
.article-img-half {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.4rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
}
.back-link:hover { color: #d4880e; }

/* ── BREADCRUMB ── */
.breadcrumb-panon {
  background: none;
  padding: 14px 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.83rem;
  font-family: 'Barlow', sans-serif;
  color: var(--text-muted);
}
.breadcrumb-panon a { color: var(--accent-orange); }
.breadcrumb-panon a:hover { color: #d4880e; }
.breadcrumb-sep { color: var(--accent-silver); }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-wrap h1 { margin-bottom: 0.5rem; }
.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
  font-family: 'Barlow', sans-serif;
}
.legal-wrap h2 { font-size: 1.35rem; margin-top: 2.4rem; margin-bottom: 0.7rem; }
.legal-wrap p { font-size: 0.96rem; line-height: 1.75; color: var(--text-muted); }
.legal-wrap ul { margin: 0.5rem 0 1rem 1.4rem; color: var(--text-muted); }
.legal-wrap li { margin-bottom: 0.4rem; font-size: 0.96rem; line-height: 1.65; }

/* ── THANK YOU PAGE ── */
.thankyou-wrap {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-box { max-width: 520px; }
.thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
}
.thankyou-icon svg { width: 28px; height: 28px; fill: var(--white); }

/* ── FOOTER ── */
#site-footer { background-color: var(--primary); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-brand-name span { color: var(--accent-orange); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1rem; }
.footer-editorial {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.8rem;
}
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-orange); }
.footer-contact-item { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; line-height: 1.55; }
.footer-contact-item strong { color: rgba(255,255,255,0.85); font-family: 'Barlow', sans-serif; font-weight: 600; }
.footer-hours { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-top: 6px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--accent-orange); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--primary);
  border-top: 3px solid var(--accent-orange);
  padding: 18px 24px;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
#cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin: 0; flex: 1; min-width: 240px; line-height: 1.55; }
#cookie-banner a { color: var(--accent-orange); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent-orange);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #d4880e; }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── 404 ── */
.page-404 {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-code {
  font-family: 'Barlow', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  .hero-content h1 { font-size: 2.6rem; }
  .editorial-grid { grid-template-columns: 1fr; gap: 36px; }
  .editorial-grid.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .myth-fact-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-section { min-height: 420px; }
  .section { padding: 56px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { flex-direction: column; gap: 10px; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .article-hero h1 { font-size: 1.8rem; }
  .mission-highlight { padding: 32px 24px; }
  .glossary-item { grid-template-columns: 1fr; gap: 4px; }
  .glossary-term { padding-right: 0; margin-bottom: 4px; }
  .editorial-img, .editorial-img-tall { height: 260px; }
  .article-img-featured { height: 240px; }
  #site-header { position: relative; }
  body { padding-top: 0; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
}
