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

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F2F5F7;
  --dark: #162040;
  --steel: #4A5A6E;
  --petrol: #1B6B72;
  --petrol-light: #22838B;
  --white: #ffffff;
  --border: #D0D8E0;
  --border-dark: #B0BCC8;
  --text-muted: #6B7B8E;
  --font-heading: 'Cormorant', Georgia, serif;
  --font-body: 'Work Sans', 'IBM Plex Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

a { color: var(--petrol); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--petrol-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--steel); }
p:last-child { margin-bottom: 0; }

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

.section { padding: 72px 0; }
.section--dark { background: var(--dark); }
.section--steel { background: var(--steel); }
.section--white { background: var(--white); }
.section--alt { background: #EBF0F4; }

.section-divider { width: 100%; height: 1px; background: var(--border); }
.section-divider--dark { background: rgba(255,255,255,0.12); }

/* === TOP BAR === */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar__info {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar__item {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__item a { color: rgba(255,255,255,0.6); }
.topbar__item a:hover { color: var(--petrol-light); }
.topbar__date { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* === HEADER === */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo__mark {
  width: 38px;
  height: 38px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__mark svg { display: block; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.logo__tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--steel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--petrol); background: var(--bg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--petrol);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s;
  z-index: 200;
  padding: 8px 0;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 400;
  transition: color 0.2s, background 0.2s;
}
.nav__dropdown-link:hover { color: var(--petrol); background: var(--bg); }

.nav__cta {
  margin-left: 12px;
  padding: 9px 20px;
  background: var(--dark);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--petrol) !important; color: var(--white); }

/* Mobile toggle */
.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: var(--dark);
  transition: all 0.25s;
}

/* === HERO === */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol-light);
  margin-bottom: 20px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--petrol-light);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__desc { font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {
  background: rgba(22,32,64,0.8);
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__stat:nth-child(even) { border-right: none; }
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-num span { color: var(--petrol-light); }
.hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn--primary { background: var(--petrol); color: var(--white); }
.btn--primary:hover { background: var(--petrol-light); color: var(--white); }
.btn--outline { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--petrol); color: var(--white); }
.btn--light { background: var(--white); color: var(--dark); }
.btn--light:hover { background: var(--bg); color: var(--dark); }
.btn--sm { padding: 8px 18px; font-size: 0.75rem; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 12px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-kicker--center { justify-content: center; }
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--petrol);
}
.section-kicker--center::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--petrol);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 660px; }
.section-header--center p { margin: 0 auto; }

/* === CARDS === */
.card-grid { display: grid; gap: 0; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-right: none;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.card:last-child { border-right: 1px solid var(--border); }
.card:hover { border-color: var(--petrol); }
.card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.card p { font-size: 0.9rem; }
.card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border-dark);
  margin-bottom: 12px;
  line-height: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--petrol);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 16px;
}
.card__link:hover { gap: 10px; }

/* Research card */
.research-card {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.research-card:hover { box-shadow: 0 4px 24px rgba(22,32,64,0.1); }
.research-card__img { height: 200px; overflow: hidden; }
.research-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.research-card:hover .research-card__img img { transform: scale(1.04); }
.research-card__body { padding: 24px; }
.research-card__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.research-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  font-family: var(--font-body);
}
.research-card__date { font-size: 0.78rem; color: var(--text-muted); }
.research-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.research-card p { font-size: 0.88rem; }

/* Data card */
.data-card {
  background: var(--dark);
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.data-card:last-child { border-right: none; }
.data-card__value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.data-card__value span { color: var(--petrol-light); }
.data-card__label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.data-card__desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* === HORIZONTAL DIVIDER SECTIONS === */
.h-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.h-section__img { overflow: hidden; }
.h-section__img img { width: 100%; height: 100%; object-fit: cover; }
.h-section__content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h-section__content--dark {
  background: var(--dark);
}
.h-section__content--dark h2 { color: var(--white); }
.h-section__content--dark p { color: rgba(255,255,255,0.65); }
.h-section__content--dark .section-kicker { color: var(--petrol-light); }
.h-section__content--dark .section-kicker::before { background: var(--petrol-light); }

/* === DATA TABLE === */
.data-table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.data-table th:last-child { border-right: none; }
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--steel);
}
.data-table td:last-child { border-right: none; }
.data-table tr:hover td { background: #EBF0F4; }
.data-table td:first-child { color: var(--dark); font-weight: 500; }
.td-strong { color: var(--petrol) !important; font-weight: 600 !important; }

/* === PROGRESS BARS === */
.progress-item { margin-bottom: 20px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}
.progress-label span:last-child { color: var(--petrol); }
.progress-bar { height: 4px; background: var(--border); }
.progress-fill { height: 4px; background: var(--petrol); transition: width 1.2s ease; }

/* === REGION BLOCKS === */
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.region-block {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.region-block:hover { background: var(--white); }
.region-block:nth-child(3n) { border-right: none; }
.region-block__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.region-block__type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 12px;
}
.region-block__val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}
.region-block__val span { font-size: 0.9rem; font-weight: 400; font-family: var(--font-body); color: var(--text-muted); }

/* === TIMELINE === */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--petrol);
  border: 2px solid var(--white);
  outline: 1px solid var(--petrol);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 6px;
}
.timeline-item h4 { margin-bottom: 6px; font-size: 1.1rem; }
.timeline-item p { font-size: 0.88rem; }

/* === QUOTE BLOCK === */
.quote-block {
  border-left: 3px solid var(--petrol);
  padding: 20px 28px;
  background: var(--white);
}
.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 12px;
}
.quote-block cite { font-size: 0.8rem; color: var(--text-muted); font-style: normal; }

/* === INFO BOXES === */
.info-box {
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: 16px;
}
.info-box--petrol { border-left: 3px solid var(--petrol); }
.info-box--dark { border-left: 3px solid var(--dark); }
.info-box__title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--petrol); margin-bottom: 8px; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb__list { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb__item { font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb__item a { color: var(--text-muted); }
.breadcrumb__item a:hover { color: var(--petrol); }
.breadcrumb__sep { color: var(--border-dark); }

/* === PAGE HERO === */
.page-hero {
  background: var(--dark);
  padding: 56px 0;
  border-bottom: 2px solid var(--petrol);
}
.page-hero__kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol-light);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 700px; font-size: 1.05rem; }

/* === SIDEBAR LAYOUT === */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.sidebar-layout--reverse { grid-template-columns: 320px 1fr; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}
.sidebar-widget__head {
  padding: 14px 20px;
  background: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.sidebar-widget__body { padding: 20px; }
.sidebar-link {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--steel);
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--petrol); padding-left: 6px; }

/* === CONTENT ARTICLE === */
.article-body h2 { font-size: 1.8rem; margin: 36px 0 14px; }
.article-body h3 { font-size: 1.35rem; margin: 28px 0 12px; }
.article-body p { font-size: 0.95rem; color: var(--steel); margin-bottom: 1.1rem; }
.article-body ul { margin: 0 0 1.1rem 20px; list-style: disc; }
.article-body ul li { font-size: 0.95rem; color: var(--steel); margin-bottom: 6px; }
.article-body ol { margin: 0 0 1.1rem 20px; list-style: decimal; }
.article-body ol li { font-size: 0.95rem; color: var(--steel); margin-bottom: 6px; }

/* === CONTACT FORM === */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--petrol);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input { margin-top: 3px; accent-color: var(--petrol); }
.form-check label { font-size: 0.85rem; color: var(--steel); }
.form-success {
  display: none;
  padding: 20px 24px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  font-size: 0.95rem;
  font-weight: 500;
}

/* === NEWS ITEMS === */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.news-item:hover { box-shadow: 0 2px 16px rgba(22,32,64,0.08); }
.news-item__img { height: 160px; overflow: hidden; }
.news-item__img img { width: 100%; height: 100%; object-fit: cover; }
.news-item__body { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.news-item__meta { display: flex; gap: 16px; margin-bottom: 8px; }
.news-item__tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--petrol); }
.news-item__date { font-size: 0.78rem; color: var(--text-muted); }
.news-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.news-item p { font-size: 0.85rem; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.team-card {
  border-right: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
  transition: background 0.2s;
}
.team-card:last-child { border-right: none; }
.team-card:hover { background: var(--bg); }
.team-card__img { height: 260px; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-card__img img { transform: scale(1.04); }
.team-card__body { padding: 24px; }
.team-card__name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.team-card__role { font-size: 0.75rem; color: var(--petrol); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; }

/* === REPORT ITEMS === */
.report-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.report-item:first-child { padding-top: 0; }
.report-icon {
  width: 44px;
  height: 56px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--petrol-light);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
}
.report-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.report-info p { font-size: 0.83rem; margin-bottom: 8px; }
.report-meta { font-size: 0.75rem; color: var(--text-muted); display: flex; gap: 16px; }

/* === FOOTER === */
.footer { background: var(--dark); padding: 64px 0 0; border-top: 2px solid var(--petrol); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--petrol);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer__desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer__contact-line a { color: rgba(255,255,255,0.5); }
.footer__contact-line a:hover { color: var(--petrol-light); }
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__link {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--petrol-light); }
.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__policy-link { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__policy-link:hover { color: var(--petrol-light); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 2px solid var(--petrol);
  padding: 20px 0;
  z-index: 500;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }
.cookie-banner p a { color: var(--petrol-light); }
.cookie-banner__btns { display: flex; gap: 12px; flex-shrink: 0; }

/* === HIGHLIGHT STRIP === */
.highlight-strip {
  background: var(--petrol);
  padding: 20px 0;
}
.highlight-strip__inner {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-text { }
.highlight-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.highlight-text span { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

/* === POLICY PAGES === */
.policy-body { max-width: 820px; }
.policy-body h2 { font-size: 1.6rem; margin: 40px 0 14px; color: var(--dark); }
.policy-body h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--dark); }
.policy-body p { font-size: 0.95rem; color: var(--steel); margin-bottom: 1rem; }
.policy-body ul { margin: 0 0 1rem 20px; list-style: disc; }
.policy-body ul li { font-size: 0.95rem; color: var(--steel); margin-bottom: 6px; }
.policy-body ol { margin: 0 0 1rem 20px; list-style: decimal; }
.policy-body ol li { font-size: 0.95rem; color: var(--steel); margin-bottom: 6px; }
.policy-meta { font-size: 0.8rem; color: var(--text-muted); padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; display: flex; gap: 24px; }

/* === TABS === */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 32px; }
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s;
}
.tab-btn.active { color: var(--petrol); border-bottom-color: var(--petrol); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* === MOBILE MENU === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--dark);
  z-index: 300;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
  flex-direction: column;
  padding: 20px;
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  margin-bottom: 24px;
}
.mobile-nav__link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.mobile-nav__link:hover { color: var(--petrol-light); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 250;
}
.mobile-nav-overlay.open { display: block; }

/* === UTILITY === */
.text-petrol { color: var(--petrol); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; max-width: 640px; }
  .hero__stats { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .card:last-child { border-right: 1px solid var(--border); }
  .card:nth-child(even) { border-right: 1px solid var(--border); }
  .card:nth-child(odd) { border-right: none; }
  .h-section { grid-template-columns: 1fr; }
  .h-section__img { height: 300px; }
  .sidebar-layout, .sidebar-layout--reverse { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card:nth-child(2n) { border-right: none; }
  .news-item { grid-template-columns: 160px 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .hero { min-height: auto; }
  .hero__inner { padding: 56px 0; }
  .card-grid--3, .card-grid--2, .card-grid--4 { grid-template-columns: 1fr; }
  .card { border-right: 1px solid var(--border) !important; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__info { display: none; }
  .news-item { grid-template-columns: 1fr; }
  .news-item__img { height: 200px; }
  .region-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none !important; }
  .h-section__content { padding: 40px 24px; }
}
