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

:root {
  --blue-deep: #0d1f4c;
  --blue-mid: #1e3a6e;
  --blue-light: #2d5498;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-mid: #e8ecf2;
  --gray-border: #d1d9e6;
  --terracotta: #c4613a;
  --terracotta-light: #e07a55;
  --mint: #4db8a0;
  --mint-light: #6ecfba;
  --text-dark: #0d1f4c;
  --text-mid: #4a5568;
  --text-light: #718096;
  --shadow-sm: 0 1px 3px rgba(13,31,76,0.08);
  --shadow-md: 0 4px 16px rgba(13,31,76,0.12);
  --shadow-lg: 0 8px 32px rgba(13,31,76,0.16);
  --radius: 8px;
  --radius-lg: 16px;
}

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

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

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

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

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

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

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; color: var(--text-mid); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

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

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg { width: 20px; height: 20px; fill: white; }

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--mint); }

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 200;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all 0.15s;
}

.dropdown a:hover { background: var(--gray-light); color: var(--blue-deep); }

.header-cta {
  background: var(--terracotta);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.header-cta:hover { background: var(--terracotta-light); color: white; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  background: var(--blue-deep);
  color: white;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(77,184,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}

.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--mint); }

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 11px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

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

.btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }

.btn-outline { background: transparent; color: var(--blue-deep); border-color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue-deep); color: white; }

.btn-mint { background: var(--mint); color: var(--blue-deep); border-color: var(--mint); font-weight: 700; }
.btn-mint:hover { background: var(--mint-light); border-color: var(--mint-light); color: var(--blue-deep); }

.btn-sm { font-size: 0.8125rem; padding: 8px 16px; }
.btn-lg { font-size: 1rem; padding: 14px 32px; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header-left { text-align: left; margin-bottom: 48px; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.eyebrow-mint { color: var(--mint); }

.section-header .subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: var(--gray-mid);
  margin: 0;
}

.divider-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--mint) 100%);
  width: 60px;
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
}

.card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); transform: translateY(-2px); }

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.card-tag-mint { color: var(--mint); }

.card h3 { margin-bottom: 10px; font-size: 1.125rem; }
.card p { font-size: 0.9375rem; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-mid);
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ── STATS BLOCKS ── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-border); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; }

.stat-cell {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span { color: var(--terracotta); }

.stat-label { font-size: 0.875rem; color: var(--text-light); font-weight: 500; }

/* ── INFO BLOCKS ── */
.info-block {
  background: var(--gray-light);
  border-left: 4px solid var(--terracotta);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.info-block-mint { border-left-color: var(--mint); }

.info-block p { margin: 0; font-size: 0.9375rem; }

/* ── INSIGHT PANELS ── */
.insight-panel {
  background: var(--blue-deep);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.insight-panel h3 { color: white; margin-bottom: 12px; }
.insight-panel p { color: rgba(255,255,255,0.75); }

/* ── DATA TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.data-table th { background: var(--blue-deep); color: white; font-weight: 600; padding: 13px 16px; text-align: left; font-size: 0.8125rem; letter-spacing: 0.04em; }
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-mid); color: var(--text-mid); }
.data-table tr:hover td { background: var(--gray-light); }
.data-table .num { font-weight: 700; color: var(--blue-deep); font-family: 'Manrope', sans-serif; }
.data-table .pos { color: var(--mint); font-weight: 600; }
.data-table .neg { color: var(--terracotta); font-weight: 600; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}

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

.breadcrumb-list li { font-size: 0.8125rem; color: var(--text-light); }
.breadcrumb-list li a { color: var(--blue-light); }
.breadcrumb-list li a:hover { color: var(--terracotta); }
.breadcrumb-list li::after { content: '/'; margin-left: 8px; color: var(--gray-border); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: var(--text-mid); font-weight: 500; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--blue-deep);
  padding: 60px 0 52px;
  color: white;
}

.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; max-width: 680px; }

/* ── SIDEBAR LAYOUT ── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-border);
}

.sidebar-widget h4 { margin-bottom: 16px; font-size: 1rem; }

.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--gray-border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 10px 0; font-size: 0.9rem; color: var(--text-mid); transition: color 0.2s; }
.sidebar-links a:hover { color: var(--terracotta); }

/* ── PROGRESS / CHART BARS ── */
.progress-row { margin-bottom: 16px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.progress-bar { height: 8px; background: var(--gray-mid); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: var(--blue-mid); transition: width 1s ease; }
.progress-fill-mint { background: var(--mint); }
.progress-fill-terracotta { background: var(--terracotta); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 0; width: 2px; background: var(--gray-border); }

.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--terracotta); border: 2px solid var(--white); box-shadow: 0 0 0 3px var(--terracotta); }

.timeline-date { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); margin-bottom: 4px; }
.timeline-item h4 { margin-bottom: 6px; }

/* ── ACCORDION ── */
.accordion-item { border: 1px solid var(--gray-border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-deep);
  text-align: left;
  transition: background 0.2s;
}

.accordion-trigger:hover { background: var(--gray-light); }
.accordion-trigger .icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.open .accordion-trigger .icon { transform: rotate(180deg); }
.accordion-trigger.active { background: var(--gray-light); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 20px 20px; }
.accordion-body-inner p { font-size: 0.9375rem; margin: 0; }

/* ── TAGS ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--gray-mid);
  color: var(--text-mid);
  transition: all 0.15s;
  text-decoration: none;
}
.tag:hover { background: var(--blue-deep); color: white; }
.tag-blue { background: rgba(30,58,110,0.1); color: var(--blue-mid); }
.tag-terracotta { background: rgba(196,97,58,0.12); color: var(--terracotta); }
.tag-mint { background: rgba(77,184,160,0.15); color: #2a8a75; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(45,84,152,0.1);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: rgba(77,184,160,0.12);
  border: 1.5px solid var(--mint);
  color: #1d6b59;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  align-items: center;
  gap: 12px;
}

.form-success.visible { display: flex; }

.form-success svg { width: 24px; height: 24px; flex-shrink: 0; fill: var(--mint); }

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

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--mint); }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--mint); margin-top: 2px; }
.footer-contact-item span { font-size: 0.9rem; }

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

.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policy-links a { color: rgba(255,255,255,0.5); }
.footer-policy-links a:hover { color: var(--mint); }

/* ── CALLOUT BOXES ── */
.callout {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.callout-dark { background: var(--blue-deep); }
.callout-dark h2, .callout-dark h3 { color: white; }
.callout-dark p { color: rgba(255,255,255,0.72); }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234db8a0' d='M13.8 3.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L5 10.6l7.3-7.3a1 1 0 0 1 1.5 0z'/%3E%3C/svg%3E") no-repeat center;
}

/* ── PILL METRICS ── */
.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(77,184,160,0.12);
  color: #1d6b59;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.metric-pill-neg { background: rgba(196,97,58,0.12); color: var(--terracotta); }

/* ── TWO-COL CONTENT ── */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-split-reverse { direction: rtl; }
.content-split-reverse > * { direction: ltr; }

/* ── QUOTE BLOCK ── */
.pull-quote {
  border-left: 4px solid var(--mint);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--gray-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--blue-deep);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* ── NUMBERED STEPS ── */
.steps { counter-reset: steps; }
.step-item { display: flex; gap: 20px; margin-bottom: 32px; }
.step-num {
  counter-increment: steps;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-num::before { content: counter(steps); }

/* ── GLOSSARY ── */
.glossary-term {
  border-bottom: 1px solid var(--gray-mid);
  padding: 24px 0;
}

.glossary-term:first-child { padding-top: 0; }
.glossary-term:last-child { border-bottom: none; }

.glossary-word {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.glossary-word span { color: var(--terracotta); font-size: 0.75rem; vertical-align: super; font-family: 'Inter', sans-serif; margin-left: 6px; }

/* ── POLICY PAGES ── */
.policy-content { max-width: 820px; }
.policy-content h2 { font-size: 1.375rem; margin: 40px 0 16px; color: var(--blue-deep); }
.policy-content h3 { font-size: 1.125rem; margin: 28px 0 10px; color: var(--blue-mid); }
.policy-content p { font-size: 0.9625rem; line-height: 1.8; }
.policy-content ul { margin: 12px 0 20px; }
.policy-content ul li { font-size: 0.9625rem; line-height: 1.8; margin-bottom: 6px; color: var(--text-mid); }
.policy-date { font-size: 0.875rem; color: var(--text-light); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-mid); }

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 0.9375rem;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.search-bar button {
  background: var(--blue-deep);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.search-bar button:hover { background: var(--blue-mid); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(196,97,58,0.06);
  border: 1px solid rgba(196,97,58,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.highlight-box-mint {
  background: rgba(77,184,160,0.06);
  border-color: rgba(77,184,160,0.25);
}

/* ── TOP BANNER (cookie) ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.3s;
}

.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner p { font-size: 0.875rem; margin: 0; flex: 1; min-width: 280px; }
.cookie-banner a { color: var(--mint); }
.cookie-banner-actions { display: flex; gap: 10px; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue-deep);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 90;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-wrap { aspect-ratio: 16/9; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--blue-deep); padding: 12px 24px 24px; flex-direction: column; align-items: flex-start; border-top: 1px solid rgba(255,255,255,0.1); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: 0; padding-left: 16px; display: none; }
  .nav-item.open .dropdown { display: block; }
  .section { padding: 56px 0; }
  .hero { padding: 60px 0 48px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .callout { padding: 28px 20px; }
}
