@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

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

:root {
  --primary: #2C3E50;
  --secondary: #F2F2F2;
  --accent-blue: #7FB3D5;
  --accent-orange: #F0B27A;
  --accent-teal: #A2D9CE;
  --neutral-light: #E0E0E0;
  --neutral-mid: #C0C0C0;
  --text-main: #2C3E50;
  --text-muted: #6B7A8D;
  --text-light: #9AACBD;
  --bg-page: #F7F8FA;
  --bg-card: #FFFFFF;
  --shadow-soft: 0 2px 12px rgba(44, 62, 80, 0.08);
  --shadow-hover: 0 6px 24px rgba(44, 62, 80, 0.14);
  --radius: 4px;
  --max-width: 1280px;
}

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

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

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

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary);
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h4 { font-size: 1rem; font-weight: 500; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-lg {
  padding: 96px 0;
}

.section-bg-primary {
  background-color: var(--primary);
  color: #fff;
}

.section-bg-secondary {
  background-color: var(--secondary);
}

.section-bg-white {
  background-color: var(--bg-card);
}

.section-bg-teal {
  background-color: var(--accent-teal);
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.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; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #fff;
  border: 2px solid var(--accent-blue);
}

.btn-primary:hover {
  background-color: #6aa3c9;
  border-color: #6aa3c9;
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
  background-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background-color: #fff;
  color: var(--primary);
  border: 2px solid #fff;
}

.btn-white:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.accent-line-orange {
  background-color: var(--accent-orange);
}

.accent-line-teal {
  background-color: var(--accent-teal);
}

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

.divider {
  border: none;
  border-top: 1px solid var(--neutral-light);
  margin: 48px 0;
}

/* NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(44, 62, 80, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

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

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo:hover {
  color: #fff;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background-color: rgba(127, 179, 213, 0.15);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.25s ease;
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.82) 0%, rgba(44,62,80,0.45) 60%, rgba(44,62,80,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-content h1 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* PAGE HERO (inner pages) */
.page-hero {
  background-color: var(--primary);
  padding: 80px 0 56px;
  margin-top: 68px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: rgba(255,255,255,0.9);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

/* CARDS */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

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

.card-body {
  padding: 28px;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-img-sm {
  height: 180px;
}

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.6rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.grid-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

.col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.col-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.col-img-tall img {
  height: 480px;
}

/* SECTION INTRO */
.section-intro {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro.centered .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* QUOTE BLOCK */
.quote-block {
  border-left: 3px solid var(--accent-teal);
  padding: 20px 28px;
  background-color: rgba(162, 217, 206, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.quote-block p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: var(--neutral-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-blue);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent-blue);
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.4rem;
}

.timeline-item h4 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* FAQ ACCORDION */
.accordion-item {
  border-bottom: 1px solid var(--neutral-light);
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.accordion-toggle:hover {
  color: var(--accent-blue);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--accent-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  margin-left: 16px;
  line-height: 1;
}

.accordion-toggle.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 0 20px;
}

.accordion-body.open {
  display: block;
}

.accordion-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* STAT STRIP */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--neutral-light);
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* FURTHER EXPLORATION */
.further-section {
  position: relative;
  overflow: hidden;
}

.further-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.further-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.78);
  z-index: 1;
}

.further-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.further-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.further-link-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.further-link-btn:hover {
  border-color: var(--accent-blue);
  background-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* BLOG CARDS */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-meta-author {
  font-weight: 500;
  color: var(--text-main);
}

/* CONTACT */
.contact-info-block {
  padding: 36px;
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  height: 100%;
}

.contact-info-block h3 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(127,179,213,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-blue);
  font-size: 0.85rem;
}

.contact-item-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.2rem;
}

/* FORM */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(127,179,213,0.18);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-style: italic;
}

/* GLOSSARY RAIL */
.glossary-rail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.glossary-sidebar {
  position: sticky;
  top: 88px;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.glossary-sidebar h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.glossary-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.glossary-index li a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--neutral-light);
  transition: all 0.2s ease;
}

.glossary-index li a:hover {
  background-color: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
}

.glossary-term-block {
  padding: 28px;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  border-left: 3px solid var(--accent-blue);
}

.glossary-term-block .term-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.glossary-term-block .term-origin {
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.glossary-term-block p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* MYTH VS REALITY */
.myth-reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.myth-block {
  padding: 24px;
  border-radius: var(--radius);
}

.myth-block-misconception {
  background-color: rgba(240, 178, 122, 0.1);
  border-top: 3px solid var(--accent-orange);
}

.myth-block-clarification {
  background-color: rgba(162, 217, 206, 0.12);
  border-top: 3px solid var(--accent-teal);
}

.myth-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.myth-block-label.misconception {
  color: var(--accent-orange);
}

.myth-block-label.clarification {
  color: #3dab96;
}

.myth-block p {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.65;
}

/* FRAMEWORK MATRIX */
.framework-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.framework-cell {
  padding: 28px;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--accent-teal);
}

.framework-cell.orange { border-top-color: var(--accent-orange); }
.framework-cell.blue { border-top-color: var(--accent-blue); }

.framework-cell h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.framework-cell p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* BLOG POST */
.blog-post-header {
  background-color: var(--primary);
  padding: 80px 0 56px;
  margin-top: 68px;
}

.blog-post-header .section-label {
  color: var(--accent-teal);
}

.blog-post-header h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-featured-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  margin-bottom: 2.5rem;
}

.blog-content {
  max-width: 760px;
}

.blog-content h2 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 1.01rem;
  line-height: 1.8;
}

.blog-content ul li {
  font-size: 1rem;
  line-height: 1.75;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 2rem;
  transition: gap 0.2s ease;
}

.back-link:hover {
  gap: 12px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: rgba(255,255,255,0.88);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 700px;
}

.cookie-banner p a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.cookie-btn-accept {
  background-color: var(--accent-blue);
  color: #fff;
}

.cookie-btn-accept:hover {
  background-color: #6aa3c9;
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-decline:hover {
  background-color: rgba(255,255,255,0.06);
  color: #fff;
}

/* CONTENT PAGE */
.content-page {
  padding: 72px 0 96px;
}

.content-page h1 {
  margin-bottom: 0.75rem;
}

.content-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-light);
}

.content-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 2rem;
}

.content-page .last-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ABOUT */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.value-item {
  padding: 28px 24px;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-top: 2px solid var(--accent-teal);
}

.value-item.orange { border-top-color: var(--accent-orange); }
.value-item.blue { border-top-color: var(--accent-blue); }

.value-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  font-size: 7rem;
  font-weight: 700;
  color: var(--neutral-light);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

/* BLOG ROUTINE INFOGRAPHIC */
.routine-infographic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
}

.routine-block {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--neutral-light);
}

.routine-block:last-child {
  border-right: none;
}

.routine-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.routine-block h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.routine-block p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--neutral-light); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--neutral-light); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .routine-infographic { grid-template-columns: repeat(2, 1fr); }
  .routine-block:nth-child(2) { border-right: none; }
  .routine-block:nth-child(3) { border-top: 1px solid var(--neutral-light); }
  .routine-block:nth-child(4) { border-top: 1px solid var(--neutral-light); }
  .glossary-rail { grid-template-columns: 1fr; }
  .glossary-sidebar { position: static; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 16px 24px 24px;
    gap: 4px;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    font-size: 0.95rem;
    padding: 10px 12px;
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .two-col,
  .grid-2,
  .grid-equal,
  .grid-2-1,
  .grid-1-2,
  .two-col-reverse { grid-template-columns: 1fr; gap: 32px; }

  .col-img img, .col-img-tall img { height: 260px; }

  .grid-3 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .myth-reality-grid { grid-template-columns: 1fr; }
  .framework-matrix { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero { min-height: 72vh; }
  .hero-meta { display: none; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .routine-infographic { grid-template-columns: repeat(2, 1fr); }

  .two-col-reverse { direction: ltr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.65rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--neutral-light); }
  .stat-item:last-child { border-bottom: none; }
  .routine-infographic { grid-template-columns: 1fr; }
  .routine-block { border-right: none; border-bottom: 1px solid var(--neutral-light); }
  .routine-block:last-child { border-bottom: none; }
  .myth-reality-grid { grid-template-columns: 1fr; }
  .further-links { flex-direction: column; align-items: center; }
  .further-link-btn { width: 100%; max-width: 320px; text-align: center; }
}
