

/* ── CSS Custom Properties ── */
:root {
  --navy: #0A2540;
  --navy-mid: #0D3460;
  --navy-light: #1B4F8A;
  --green: #1A7A4A;
  --green-light: #22A05A;
  --yellow: #F5A623;
  --red: #C0392B;
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --gray-100: #EDF0F4;
  --gray-200: #D6DCE5;
  --gray-400: #8A9BB5;
  --gray-600: #4A5B72;
  --gray-800: #1E2D3D;
  --text: #0A2540;
  --text-muted: #4A5B72;
  --border: #D6DCE5;
  --shadow-sm: 0 1px 3px rgba(10,37,64,.08);
  --shadow-md: 0 4px 16px rgba(10,37,64,.12);
  --shadow-lg: 0 8px 32px rgba(10,37,64,.16);
  --radius: 6px;
  --radius-lg: 12px;
  --teal-blue: #0073AD;
  --teal: #117372;
  --azure-blue: #0074AF;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -99px;
  left: 0;
  background: var(--yellow);
  color: var(--navy);
  padding: .5rem 1rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ── Focus styles (accessibility) ── */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* ── Utility ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 99px;
}

/* ══ TOP BAR ══ */
.topbar {
  background: var(--azure-blue);
  color: var(--gray-200);
  font-size: .78rem;
  border-bottom: 3px solid var(--yellow);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-left a {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--gray-200);
  transition: color .2s;
}

.topbar-left a:hover,
.topbar-left a:focus { color: var(--yellow); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: flex;
  gap: 0;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  overflow: hidden;
}

.lang-toggle button {
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 500;
  padding: .2rem .65rem;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  letter-spacing: .02em;
}

.lang-toggle button:last-child {
  border-right: none;
}

.lang-toggle button.active {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
}

.lang-toggle button:not(.active):hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* ══ TOPBAR SEARCH ══ */
.topbar-search {
  position: relative;
}

.topbar-search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  overflow: visible;
  transition: background .2s, border-color .2s;
}

.topbar-search-wrap:focus-within {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
}

.topbar-search-icon {
  flex-shrink: 0;
  margin-left: .55rem;
  color: rgba(255,255,255,.6);
  pointer-events: none;
}

.topbar-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: .73rem;
  padding: .28rem .45rem .28rem .35rem;
  width: 180px;
  transition: width .25s ease;
}

.topbar-search-input::placeholder { color: rgba(255,255,255,.5); }

.topbar-search-input:focus { width: 220px; }

/* Remove browser native search clear button */
.topbar-search-input::-webkit-search-cancel-button,
.topbar-search-input::-webkit-search-decoration { -webkit-appearance: none; }

.topbar-search-btn {
  background: rgba(255,255,255,.08);
  border: none;
  border-left: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  padding: .28rem .5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background .2s, color .2s;
  align-self: stretch;
}

.topbar-search-btn:hover,
.topbar-search-btn:focus { background: var(--yellow); color: var(--navy); }

/* Live results dropdown */
.topbar-search-results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 300px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 9999;
  padding: .35rem 0;
}

.topbar-search-results[hidden] { display: none; }

.topbar-search-result-item {
  display: block;
}

.topbar-search-result-link {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .6rem 1rem;
  color: var(--navy);
  font-size: .82rem;
  transition: background .15s;
  cursor: pointer;
}

.topbar-search-result-link:hover,
.topbar-search-result-link:focus {
  background: var(--gray-100);
  outline: none;
}

.topbar-search-result-title {
  font-weight: 600;
  color: var(--navy);
}

.topbar-search-result-desc {
  font-size: .74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-search-result-link mark {
  background: rgba(245,166,35,.35);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

.topbar-search-no-results {
  padding: .75rem 1rem;
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ══ SITE SEARCH RESULTS SECTION ══ */
.site-search-results-section {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.site-search-results-section[hidden] { display: none; }

.site-search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
  gap: 1rem;
}

.site-search-results-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.site-search-results-title em { color: var(--azure-blue); font-style: italic; }

.site-search-results-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .35rem .5rem;
  cursor: pointer;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  transition: all .15s;
  flex-shrink: 0;
}

.site-search-results-close:hover { background: var(--gray-100); color: var(--navy); }

.site-search-results-count {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.site-search-results-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  list-style: none;
}

.site-search-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
  display: block;
  color: var(--navy);
}

.site-search-result-card:hover,
.site-search-result-card:focus {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,115,173,.35);
  outline: none;
}

.site-search-result-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--azure-blue);
  margin-bottom: .2rem;
}

.site-search-result-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}

.site-search-result-card-title mark {
  background: rgba(245,166,35,.4);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

.site-search-result-card-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.site-search-result-card-desc mark {
  background: rgba(245,166,35,.4);
  color: inherit;
  border-radius: 2px;
}

.site-search-result-card-url {
  margin-top: .45rem;
  font-size: .73rem;
  color: var(--green);
  font-weight: 500;
}

.site-search-results-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: .9rem;
}

.site-search-results-empty a { color: var(--azure-blue); font-weight: 600; }

/* ══ HEADER ══ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 0 var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 500;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.primary-nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: .5rem .65rem;
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus { color: var(--navy); background: var(--gray-100); }

.primary-nav a.active { color: var(--yellow); font-weight: 800; }

/* License Verification link — moved out of inline style */
.primary-nav a.nav-license {
  color: var(--green);
  font-weight: 600;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .45rem .9rem !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover { background: var(--navy-light) !important; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .4rem .5rem;
  cursor: pointer;
  color: var(--navy);
}

.hamburger svg { display: block; }

/* ══ NOTIFICATION BANNER ══ */
.notif-banner {
  background: #FFF8E1;
  border-left: 4px solid var(--yellow);
  font-size: .82rem;
  color: var(--gray-800);
  padding: .55rem 0;
}

.notif-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.notif-inner svg { flex-shrink: 0; color: var(--yellow); }

.notif-inner a {
  color: var(--navy-light);
  font-weight: 600;
  text-decoration: underline;
}

.notif-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: .2rem;
}

/* ══ HERO ══ */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(10, 37, 64, 0.45) 0%,
      rgba(1, 31, 149, 0.45) 100%
    ),
    url('beautiful-shot-tree-savanna-plains-with-blue-sky.jpg') center 80% / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  /* min-height keeps the section tall even if content is short */
  min-height: 520px;
}

.hero::before {
content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(26,122,74,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(245,166,35,.06) 0%, transparent 50%);
  /* pointer-events: none ensures the overlay doesn't block clicks */
  pointer-events: none;
}

.hero-flag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 25%, var(--green) 25% 50%, var(--white) 50% 75%, var(--yellow) 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gray-200);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.9rem;
  line-height: 1.15;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1.1rem;
}

.hero h1 em { font-style: italic; color: var(--yellow); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  transition: all .2s;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #e09810;
  border-color: #e09810;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.35);
  transition: all .2s;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Hero Visual Panel */
.hero-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-vis-title {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  font-size: .75rem;
  color: rgba(255,255,255,.85);
  padding: .3rem .75rem;
}

.service-pill svg { width: 12px; height: 12px; }

.pill-green {
  background: rgba(26,122,74,.2);
  border-color: rgba(34,160,90,.3);
  color: #7EEAAA;
}

.status-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: .75rem;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.status-row:last-child { border-bottom: none; padding-bottom: 0; }

/* Status indicator colours — moved out of inline styles */
.status-online  { color: #7EEAAA; font-size: .72rem; font-weight: 600; }
.status-maint   { color: var(--yellow); font-size: .72rem; font-weight: 600; }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: .4rem;
}

.dot-green { background: var(--green-light); box-shadow: 0 0 0 2px rgba(34,160,90,.3); }
.dot-yellow { background: var(--yellow); }

/* ══ BREADCRUMB ══ */
.breadcrumb-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
}

.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }

.breadcrumb-sep { color: var(--gray-400); }

/* ══ SECTION COMMONS ══ */
section { padding: 4.5rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .85rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 2.75rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ══ FEATURES ══ */
.features { background: var(--off-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

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

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-navy { background: rgba(10,37,64,.08); color: var(--navy); }
.icon-green { background: rgba(26,122,74,.1); color: var(--green); }
.icon-yellow { background: rgba(245,166,35,.12); color: #B87400; }

.feature-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-link {
  font-size: .8rem;
  color: var(--navy-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.feature-link:hover { gap: .55rem; }
.feature-link svg { transition: transform .2s; }
.feature-link:hover svg { transform: translateX(2px); }

/* ══ HOW IT WORKS ══ */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--navy-light) 50%, var(--border) 100%);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--navy-mid);
  transition: all .3s;
  position: relative;
}

.step-item:hover .step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.step-num-active {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}

.step-item h3 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step-item p  { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  position: absolute;
  right: -12px;
  top: 22px;
  z-index: 2;
}

/* ══ SERVICES ══ */
.services { background: var(--gray-100); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all .25s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
  transform: translateY(-1px);
}

/* Service icon background utilities — replaces inline style="background:…" */
.svc-icon-navy    { background: rgba(10,37,64,.07); }
.svc-icon-green   { background: rgba(26,122,74,.1); }
.svc-icon-yellow  { background: rgba(245,166,35,.12); }
.svc-icon-red     { background: rgba(192,57,43,.09); }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }

.service-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.btn-proceed {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy-light);
  border: 1.5px solid var(--navy-light);
  border-radius: var(--radius);
  padding: .4rem .9rem;
  transition: all .2s;
  cursor: pointer;
  font-family: inherit;
  background: none;
}

.btn-proceed:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ══ TECH & SECURITY ══ */
.tech-section { background: var(--navy); }
.tech-section .section-label { color: var(--yellow); }
.tech-section .section-label::before { background: var(--yellow); }
.tech-section .section-title { color: var(--white); }
.tech-section .section-sub { color: rgba(255,255,255,.65); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-item {
  background: rgba(255,255,255,.04);
  padding: 1.75rem;
  transition: background .2s;
}

.tech-item:hover { background: rgba(255,255,255,.08); }

.tech-item-icon { color: var(--yellow); margin-bottom: .85rem; }

.tech-item h3 { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }

.tech-item p { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ══ COMPLIANCE ══ */
.compliance { background: var(--off-white); }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.compliance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.5rem;
}

.compliance-card .tag {
  background: rgba(26,122,74,.1);
  color: var(--green);
  margin-bottom: .65rem;
}

.compliance-card h3 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }

.compliance-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

/* ══ FAQ ══ */
.faq-section { background: var(--white); }

.faq-cols {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-sidebar h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.faq-sidebar p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-cats {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.faq-cat-btn {
  font-size: .82rem;
  font-weight: 500;
  text-align: left;
  padding: .55rem .9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray-600);
  background: none;
  transition: all .2s;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .2s;
}

.faq-q:hover { background: var(--gray-100); }

.faq-q[aria-expanded="true"] { background: var(--gray-100); color: var(--navy-light); }

.faq-icon { flex-shrink: 0; transition: transform .25s; }

.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}

.faq-a.open { max-height: 300px; padding: .75rem 1.25rem 1.1rem; }

.faq-a p { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* ══ CONTACT ══ */
.contact-section { background: var(--gray-100); 
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
}

.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.contact-item span { color: var(--text-muted); }

/* Helpful resources list — replaces inline styles */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.resource-list a {
  font-size: .82rem;
  color: var(--navy-light);
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
}

.resource-list a:hover { text-decoration: underline; }

/* Grievance Form */
.grievance-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.grievance-form h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .85rem;
}

.form-group label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem .85rem;
  font-size: .85rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(27,79,138,.12);
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: .75rem;
  font-size: .88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.btn-submit:hover { background: var(--navy-light); }

/* Chatbot Widget */
.chatbot-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}

.chatbot-btn:hover { transform: scale(1.08); background: var(--green-light); }

.chatbot-bubble {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  z-index: 400;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  max-width: 240px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: none;
}

.chatbot-bubble.visible { display: block; animation: popIn .2s ease; }

/* Chatbot bubble title — replaces inline style */
.chatbot-title {
  display: block;
  color: var(--navy);
  font-size: .82rem;
  margin-bottom: .3rem;
  font-weight: 700;
}

@keyframes popIn {
  from { transform: scale(.9) translateY(8px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* ══ FOOTER ══ */
.site-footer { background: var(--gray-800); color: rgba(255,255,255,.75); }

.footer-top { padding: 3rem 0 2.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .logo-emblem { background: rgba(255,255,255,.1); }
.footer-brand .logo-text strong { color: var(--white); font-size: .95rem; }
.footer-brand .logo-text span { color: rgba(255,255,255,.4); }

.footer-brand p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: #aab;
  text-decoration: none;
  margin-bottom: 7px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Static footer bottom text (simple layout) */
.footer-bottom-text {
  text-align: center;
  font-size: 11px;
  color: #778;
  padding: 14px 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.4); }

.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.footer-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer-links a:hover { color: rgba(255,255,255,.8); }

.social-row { display: flex; gap: .65rem; margin-top: 1.25rem; }

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}

.social-link:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* Map embed */
.footer-map { margin-bottom: .5rem; }

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

/* Responsive logo image */
.responsive-img {
  max-width: 160px;
  height: auto;
}

/* ══ MOBILE NAV ══ */
.mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}

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

.mobile-nav a {
  display: block;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover { color: var(--navy); background: var(--gray-100); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid       { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid::before { display: none; }
  .tech-grid        { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar       { display: none; }
  .primary-nav  { display: none; }
  .hamburger    { display: flex; }
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .hero h1      { font-size: 2rem; }
  .hero-stats   { gap: 1.25rem; }
  .features-grid    { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .faq-cols         { grid-template-columns: 1fr; }
  .faq-sidebar      { display: none; }
  .contact-grid     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .tech-grid        { grid-template-columns: 1fr; }
  .compliance-grid  { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary,
  .btn-outline  { justify-content: center; }
}


/* ══════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ══════════════════════════════════════════════════ */

/* ── About Hero ── */
.about-hero {
  position: relative;
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,115,173,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,122,74,.2) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero .breadcrumb {
  margin-bottom: 2rem;
}

.about-hero .breadcrumb ol {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  font-size: .8rem;
}

.about-hero .breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}

.about-hero .breadcrumb a:hover { color: var(--yellow); }

.about-hero .breadcrumb-sep { color: rgba(255,255,255,.3); }

.about-hero .breadcrumb li[aria-current] { color: rgba(255,255,255,.8); }

.about-hero-content { position: relative; max-width: 700px; }

.about-hero .section-label {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.about-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.about-hero h1 em {
  color: var(--yellow);
  font-style: italic;
}

.about-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 500;
  padding: .35rem .85rem;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}

/* ── About Profile ── */
.about-profile {
  padding: 5rem 0;
  background: var(--white);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.profile-main .section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-blue);
  margin-bottom: .75rem;
}

.profile-main h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.profile-main h2 em {
  color: var(--green);
  font-style: italic;
}

.profile-main p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: .97rem;
}

.profile-main .btn-primary {
  margin-top: .75rem;
}

.mvv-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mvv-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  border-radius: var(--radius) 0 0 var(--radius);
}

.mvv-mission::before { background: var(--teal-blue); }
.mvv-vision::before  { background: var(--green); }

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

.mvv-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mvv-mission .mvv-icon { background: rgba(0,115,173,.1); color: var(--teal-blue); }
.mvv-vision  .mvv-icon { background: rgba(26,122,74,.1);  color: var(--green); }

.mvv-card h3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: .6rem;
}

.mvv-card p {
  color: var(--navy);
  font-size: .97rem;
  line-height: 1.65;
}

/* ── Values ── */
.about-values {
  padding: 5rem 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

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

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,37,64,.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background .25s, color .25s;
}

.value-card:hover .value-icon {
  background: var(--navy);
  color: var(--white);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
}

.value-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Core Business ── */
.about-business {
  padding: 5rem 0;
  background: var(--white);
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.business-content .section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-blue);
  margin-bottom: .75rem;
}

.business-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.business-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .97rem;
}

.pillars-list {
  list-style: none;
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.pillars-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
}

.pillars-list li svg {
  color: var(--green);
  flex-shrink: 0;
}

.business-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.biz-stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

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

.biz-stat-card:nth-child(2) { background: var(--teal-blue); }
.biz-stat-card:nth-child(3) { background: var(--green); }
.biz-stat-card:nth-child(4) { background: var(--navy-mid); }

.biz-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}

.biz-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  line-height: 1.3;
}

/* ── Board of Directors ── */
.about-board {
  padding: 5rem 0;
  background: var(--off-white);
}

.board-chair-row {
  margin-bottom: 2.5rem;
}

.board-chair-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.board-chair-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}

.board-avatar-lg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(10,37,64,.07);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.board-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10,37,64,.06);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.board-role-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 99px;
  background: rgba(0,115,173,.1);
  color: var(--teal-blue);
  margin-bottom: .6rem;
}

.board-chair-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .25rem;
  font-weight: 400;
}

.board-title-text {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
  font-weight: 500;
}

.board-bio {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.board-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.board-member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

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

.board-member-role {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 99px;
  background: var(--gray-100);
  color: var(--gray-600);
  margin-bottom: .75rem;
}

.board-member-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.board-member-bio {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Executive Management ── */
.about-executive {
  padding: 5rem 0;
  background: var(--white);
}

.exec-ceo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.exec-ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 3rem;
  text-align: center;
  min-width: 260px;
}

.exec-ceo-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exec-ceo-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .25rem;
}

.exec-ceo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.exec-directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.exec-director-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s, background .2s;
}

.exec-director-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: var(--white);
}

.exec-dir-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,37,64,.06);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  transition: background .2s, color .2s;
}

.exec-director-card:hover .exec-dir-avatar {
  background: var(--navy);
  color: var(--white);
}

.exec-director-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
  line-height: 1.3;
}

.exec-director-card p {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ── About CTA ── */
.about-cta {
  padding: 4rem 0;
  background: var(--navy);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .4rem;
  font-weight: 400;
}

.about-cta-text p {
  color: rgba(255,255,255,.65);
  font-size: .97rem;
}

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

.btn-outline-light {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}

/* ── About Page Responsive ── */
@media (max-width: 1024px) {
  .profile-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .mvv-stack           { flex-direction: row; }
  .mvv-card            { flex: 1; }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
  .business-grid       { grid-template-columns: 1fr; }
  .board-members-grid  { grid-template-columns: repeat(2, 1fr); }
  .exec-directors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .about-hero          { padding: 2.5rem 0 2rem; }
  .about-hero h1       { font-size: 2rem; }
  .about-hero-lead     { font-size: .95rem; }
  .about-hero-tags     { gap: .5rem; }
  .profile-grid        { grid-template-columns: 1fr; }
  .mvv-stack           { flex-direction: column; }
  .values-grid         { grid-template-columns: 1fr; }
  .business-grid       { grid-template-columns: 1fr; }
  .business-stats      { grid-template-columns: repeat(2, 1fr); }
  .board-chair-inner   { grid-template-columns: 1fr; text-align: center; }
  .board-avatar-lg     { margin: 0 auto; }
  .board-members-grid  { grid-template-columns: 1fr; }
  .exec-directors-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-inner     { flex-direction: column; text-align: center; }
  .about-cta-actions   { justify-content: center; }
}

@media (max-width: 500px) {
  .exec-directors-grid { grid-template-columns: 1fr; }
  .business-stats      { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — styles (About.html)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ab-hero {
  position: relative;
  background: 
  linear-gradient(
      135deg,
      rgba(10, 37, 64, 0.65) 0%,
      rgba(1, 31, 149, 0.65) 100%
    ),
    url('destinationen-botswana-staedte-gaborone-stadt-shutterstock-consafarity.1762492022.jpg') center 80% / cover no-repeat;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.ab-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ab-hero-canvas::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 55%; height: 140%;
  background: var(--teal-blue);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .18;
}
.ab-hero-canvas::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-blue) 0%, var(--green) 33%, var(--yellow) 66%, var(--red) 100%);
}
.ab-hero-dots {
  position: absolute;
  top: 1.5rem; right: 2rem;
  display: grid;
  grid-template-columns: repeat(8, 10px);
  gap: 12px;
  opacity: .12;
}
.ab-hero-dots span {
  display: block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--white);
}
.ab-hero-ring {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,.15);
  box-shadow: 0 0 0 40px rgba(245,166,35,.05), 0 0 0 80px rgba(245,166,35,.025);
}
.ab-hero-ring::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,115,173,.25);
}
.ab-hero-content {
  position: relative;
  z-index: 1;
  animation: abFadeUp .65s ease both;
}
.ab-hero .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  margin-bottom: 2.5rem;
  list-style: none;
}
.ab-hero .breadcrumb-nav a { color: rgba(255,255,255,.45); transition: color .2s; }
.ab-hero .breadcrumb-nav a:hover { color: var(--yellow); }
.ab-hero .breadcrumb-nav .sep { color: rgba(255,255,255,.2); }
.ab-hero .breadcrumb-nav .current { color: rgba(255,255,255,.8); }
.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.ab-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.ab-hero h1 em { font-style: italic; color: var(--yellow); }
.ab-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.ab-hero-kpis { display: flex; gap: 0; }
.ab-kpi {
  padding: 1.25rem 2rem 1.25rem 0;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.ab-kpi:last-child { border-right: none; }
.ab-kpi strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .2rem;
}
.ab-kpi span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Sector colour band ── */
.ab-sector-band { display: grid; grid-template-columns: repeat(4, 1fr); }
.ab-band-item {
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.ab-band-item:nth-child(1) { background: var(--teal-blue); }
.ab-band-item:nth-child(2) { background: var(--green); }
.ab-band-item:nth-child(3) { background: var(--yellow); color: var(--navy); }
.ab-band-item:nth-child(4) { background: var(--red); }

/* ── Common section label ── */
.ab-section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-blue);
  margin-bottom: .9rem;
}
.ab-section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ── Profile ── */
.ab-profile {
  padding: 5.5rem 0;
  background: var(--white);
}
.ab-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-profile-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.ab-profile-title em { font-style: italic; color: var(--green); }
.ab-profile-body p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: .96rem;
  margin-bottom: 1.1rem;
}
.ab-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: .5rem;
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.ab-dl-btn:hover { background: var(--teal-blue); transform: translateY(-2px); }

/* ── Enhanced Mission & Vision ── */
.ab-mvv { display: flex; flex-direction: column; gap: 1.5rem; }

.ab-mv-card {
  border-radius: 18px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ab-mv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }

.ab-mv-card.mission { background: linear-gradient(140deg, var(--teal-blue) 0%, #004f80 100%); color: var(--white); }
.ab-mv-card.vision  { background: linear-gradient(140deg, var(--green) 0%, #0d4a2a 100%); color: var(--white); }

/* Accent bar left edge */
.ab-mv-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
}
.mission .ab-mv-accent-bar { background: linear-gradient(180deg, var(--yellow), var(--red)); }
.vision  .ab-mv-accent-bar { background: linear-gradient(180deg, var(--yellow), var(--teal-blue)); }

/* Card inner content padding */
.ab-mv-top-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 2rem 2.25rem 1rem 2.5rem;
  position: relative;
  z-index: 1;
}

/* Coloured icon circle */
.ab-mv-icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mission-icon { background: var(--yellow); color: var(--navy); }
.vision-icon  { background: var(--yellow); color: var(--navy); }

.ab-mv-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
}

.ab-mv-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
  padding: 0 2.25rem 0 2.5rem;
  margin-bottom: .65rem;
  position: relative;
  z-index: 1;
}
.ab-mv-card p {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .88;
  padding: 0 2.25rem 1.25rem 2.5rem;
  position: relative;
  z-index: 1;
}

/* Keyword pills */
.ab-mv-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0 2.25rem 2rem 2.5rem;
  position: relative;
  z-index: 1;
}
.ab-mv-pill {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  padding: .22rem .7rem;
  border-radius: 99px;
}

/* Watermark icon */
.ab-mv-icon-bg {
  position: absolute;
  bottom: .75rem; right: 1.25rem;
  opacity: .08;
  z-index: 0;
}

/* ── Core Values ── */
.ab-values {
  padding: 5.5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.ab-values::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,115,173,.15);
}
.ab-values::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(26,122,74,.1);
}
.ab-values .ab-section-label { color: var(--yellow); }
.ab-values-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: .75rem;
}
.ab-values-sub {
  color: rgba(255,255,255,.55);
  font-size: .97rem;
  max-width: 520px;
  margin-bottom: 3.5rem;
}
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.ab-val-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: background .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.ab-val-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .25s;
}
.ab-val-card:nth-child(1)::after { background: var(--teal-blue); }
.ab-val-card:nth-child(2)::after { background: var(--green); }
.ab-val-card:nth-child(3)::after { background: var(--yellow); }
.ab-val-card:nth-child(4)::after { background: var(--red); }
.ab-val-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.ab-val-card:hover::after { opacity: 1; }

/* Yellow solid circle icons for Core Values */
.ab-val-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  flex-shrink: 0;
}
.ab-val-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.ab-val-card p  { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── Core Business ── */
.ab-business { padding: 5.5rem 0; background: var(--off-white); }
.ab-business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.ab-business-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.ab-business-body p { color: var(--text-muted); line-height: 1.8; font-size: .96rem; margin-bottom: 1rem; }
.ab-pillars { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.ab-pillar {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1.1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
}
.ab-pillar:hover { border-color: var(--teal-blue); box-shadow: var(--shadow-sm); }
.ab-pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-blue);
  flex-shrink: 0;
}
.ab-stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ab-stat-tile {
  background: var(--navy);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.ab-stat-tile:nth-child(2) { background: var(--teal-blue); }
.ab-stat-tile:nth-child(3) { background: var(--green); }
.ab-stat-tile:nth-child(4) { background: var(--red); }
.ab-stat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ab-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}
.ab-stat-desc { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; line-height: 1.3; }

/* ── CTA ── */
.ab-cta {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3460 100%);
  position: relative;
  overflow: hidden;
}
.ab-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(0,115,173,.2);
}
.ab-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ab-cta h2 { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--white); font-weight: 400; margin-bottom: .4rem; }
.ab-cta p { color: rgba(255,255,255,.6); }
.ab-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.ab-btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.ab-btn-yellow:hover { background: #ffb83d; transform: translateY(-2px); }
.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 600;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  transition: all .2s;
}
.ab-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); color: var(--white); transform: translateY(-2px); }

/* ── Animation ── */
@keyframes abFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ab-profile-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .ab-business-grid { grid-template-columns: 1fr; }
  .ab-values-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ab-hero-kpis   { flex-wrap: wrap; gap: 1rem; }
  .ab-kpi         { border-right: none; padding-right: 0; margin-right: 0; }
  .ab-sector-band { grid-template-columns: repeat(2, 1fr); }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-stats-block { grid-template-columns: 1fr 1fr; }
  .ab-cta-inner   { flex-direction: column; text-align: center; }
  .ab-cta-btns    { justify-content: center; }
}
@media (max-width: 500px) {
  .ab-sector-band { grid-template-columns: 1fr; }
  .ab-stats-block { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   BOARD & MANAGEMENT PAGE — styles (Board.html)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.bm-hero {
  position: relative;
  background: 
linear-gradient(
      135deg,
      rgba(10, 37, 64, 0.65) 0%,
      rgba(1, 31, 149, 0.65) 100%
    ),
    url('property-gaborone-botswana-real-estate.jpg') center 80% / cover no-repeat;

  padding: 5rem 0 5.5rem;
  overflow: hidden;
}
.bm-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bm-hero-geo {
  position: absolute;
  border-radius: 50%;
}
.bm-hero-geo-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,115,173,.25) 0%, transparent 70%);
}
.bm-hero-geo-2 {
  width: 300px; height: 300px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(26,122,74,.2) 0%, transparent 70%);
}
.bm-hero-geo-3 {
  width: 200px; height: 200px;
  top: 20%; left: 45%;
  background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
}
.bm-hero-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-blue) 0%, var(--green) 33%, var(--yellow) 66%, var(--red) 100%);
}
.bm-hero-content {
  position: relative;
  z-index: 1;
  animation: abFadeUp .65s ease both;
}
.bm-hero .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  margin-bottom: 2.25rem;
  list-style: none;
}
.bm-hero .breadcrumb-nav a { color: rgba(255,255,255,.45); transition: color .2s; }
.bm-hero .breadcrumb-nav a:hover { color: var(--yellow); }
.bm-hero .breadcrumb-nav .sep { color: rgba(255,255,255,.2); }
.bm-hero .breadcrumb-nav .current { color: rgba(255,255,255,.8); }
.bm-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 620px;
}
.bm-hero h1 em { font-style: italic; color: var(--yellow); }
.bm-hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* Quick-nav pills */
.bm-hero-tabs {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.bm-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: 99px;
  transition: all .2s;
}
.bm-tab-pill:hover,
.bm-tab-pill.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

/* ── Section header shared ── */
.bm-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.bm-section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: .75rem;
}
.bm-section-header p {
  color: var(--text-muted);
  font-size: .97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.bm-section-header.light h2 { color: var(--white); }
.bm-section-header.light p  { color: rgba(255,255,255,.55); }

.bm-section-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.bm-section-badge.teal   { background: rgba(0,115,173,.12); color: var(--teal-blue); border: 1px solid rgba(0,115,173,.25); }
.bm-section-badge.yellow { background: rgba(245,166,35,.18); color: var(--yellow); border: 1px solid rgba(245,166,35,.3); }
.bm-section-badge.green  { background: rgba(26,122,74,.12); color: var(--green); border: 1px solid rgba(26,122,74,.25); }

/* ── Board section ── */
.bm-board {
  padding: 5.5rem 0;
  background: var(--white);
}

/* Circle placeholders – shared base */
.bm-circle-xl,
.bm-circle-md,
.bm-circle-sm,
.bm-circle-ceo {
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bm-circle-xl  { width: 150px; height: 150px; border: 4px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.bm-circle-md  { width: 110px; height: 110px; border: 3px solid var(--border); background: var(--gray-100); margin: 0 auto 1.25rem; transition: border-color .25s; }
.bm-circle-sm  { width: 72px;  height: 72px;  border: 2px solid var(--border); background: var(--gray-100); margin: 0 auto 1rem;   transition: border-color .22s; }
.bm-circle-ceo { width: 100px; height: 100px; border: 3px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); }

.bm-circle-xl img,
.bm-circle-md img,
.bm-circle-sm img,
.bm-circle-ceo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Placeholder inner */
.bm-circle-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  gap: .3rem;
}
.bm-circle-placeholder.ceo { color: rgba(255,255,255,.4); }
.bm-circle-xl .bm-circle-placeholder { color: rgba(255,255,255,.35); }

/* Chairperson feature card */
.bm-chair-wrap { margin-bottom: 3.5rem; }
.bm-chair-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--navy);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.bm-chair-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,115,173,.3));
  pointer-events: none;
}
.bm-chair-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-blue), var(--green), var(--yellow));
}
.bm-chair-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.bm-chair-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.bm-chair-body {
  position: relative;
  z-index: 1;
}
.bm-chair-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.85rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: .25rem;
}
.bm-chair-title-sub {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.bm-chair-body p {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: .85rem;
}
.bm-chair-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.bm-chair-tags span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  padding: .2rem .7rem;
  border-radius: 99px;
}

/* Board members grid */
.bm-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bm-member-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.bm-member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.bm-member-card:nth-child(1)::before { background: var(--teal-blue); }
.bm-member-card:nth-child(2)::before { background: var(--green); }
.bm-member-card:nth-child(3)::before { background: var(--yellow); }
.bm-member-card:nth-child(4)::before { background: var(--red); }
.bm-member-card:nth-child(5)::before { background: var(--teal-blue); }
.bm-member-card:nth-child(6)::before { background: var(--green); }
.bm-member-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  background: var(--white);
  border-color: rgba(0,115,173,.2);
}
.bm-member-card:hover .bm-circle-md { border-color: var(--teal-blue); }

.bm-member-role-tag {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 99px;
  margin-bottom: .9rem;
}
.bm-member-role-tag.teal   { background: rgba(0,115,173,.1);  color: var(--teal-blue); }
.bm-member-role-tag.green  { background: rgba(26,122,74,.1);  color: var(--green); }
.bm-member-role-tag.yellow { background: rgba(245,166,35,.15); color: #b87a00; }
.bm-member-role-tag.red    { background: rgba(192,57,43,.1);  color: var(--red); }

.bm-member-card h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; line-height: 1.35; }
.bm-member-card p  { font-size: .83rem; color: var(--text-muted); line-height: 1.65; }

/* ── Executive section ── */
.bm-exec {
  padding: 5.5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.bm-exec-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(0,115,173,.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,122,74,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* CEO card */
.bm-ceo-row { display: flex; justify-content: center; margin-bottom: 3rem; }
.bm-ceo-card {
  background: linear-gradient(135deg, var(--teal-blue) 0%, #004f80 100%);
  border-radius: 18px;
  padding: 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  min-width: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.bm-ceo-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.bm-ceo-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}
.bm-ceo-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.bm-ceo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.bm-ceo-divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
}

/* Directors grid */
.bm-directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.bm-director-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background .22s, transform .22s, border-color .22s;
}
.bm-director-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(245,166,35,.4);
  transform: translateY(-4px);
}
.bm-director-card:hover .bm-circle-sm { border-color: var(--yellow); }
.bm-director-card h3 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; line-height: 1.3; }
.bm-director-card p  { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ── Board page responsive ── */
@media (max-width: 1024px) {
  .bm-members-grid   { grid-template-columns: repeat(2, 1fr); }
  .bm-directors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .bm-chair-card { grid-template-columns: 1fr; text-align: center; }
  .bm-chair-photo-col { margin: 0 auto; }
  .bm-chair-tags { justify-content: center; }
  .bm-members-grid { grid-template-columns: 1fr; }
  .bm-directors-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-ceo-card { min-width: unset; width: 100%; max-width: 320px; }
}
@media (max-width: 500px) {
  .bm-directors-grid { grid-template-columns: 1fr; }
}


/* ══ NAV DROPDOWN ══ */
.nav-item {
  position: relative;
}

.nav-parent {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: .5rem .65rem;
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-parent svg {
  transition: transform .25s;
  flex-shrink: 0;
}

.nav-item:hover .nav-parent,
.nav-item:focus-within .nav-parent {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-item:hover .nav-parent svg,
.nav-item:focus-within .nav-parent svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .4rem;
  list-style: none;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 600;
}

/* Show on hover OR when focus is anywhere inside .nav-item */
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: .55rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: all .15s;
  white-space: nowrap;
}

.nav-dropdown li a:hover,
.nav-dropdown li a:focus {
  background: var(--gray-100);
  color: var(--navy);
}

/* ══ MOBILE NAV DROPDOWN ══ */
.mobile-nav-item {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color .15s, background .15s;
}

.mobile-nav-parent:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.mobile-nav-parent svg {
  transition: transform .25s;
  flex-shrink: 0;
}

.mobile-nav-parent[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-nav-dropdown {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--gray-100);
}

.mobile-nav-dropdown.open {
  max-height: 300px;
}

.mobile-nav-dropdown li a {
  display: block;
  padding: .6rem 1.5rem .6rem 2.25rem;
  font-size: .85rem;
  color: var(--gray-600);
  transition: color .15s;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-dropdown li:last-child a {
  border-bottom: none;
}

.mobile-nav-dropdown li a:hover {
  color: var(--navy);
}


/* ══════════════════════════════════════════════════════
   PROJECTS PAGE  (projects.html)
   All selectors are prefixed with .page-hero, .projects-*,
   .project-*, .sidebar-* so they are fully isolated from
   existing styles and will not affect any other page.
   ══════════════════════════════════════════════════════ */

/* ── Page Hero Banner ── */
.page-hero {
  background:
    linear-gradient(
      135deg,
      rgba(10, 37, 64, 0.82) 0%,
      rgba(0, 115, 173, 0.78) 100%
    ),
    url('beautiful-shot-tree-savanna-plains-with-blue-sky.jpg') center 40% / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  border-bottom: 3px solid var(--yellow);
}

.page-hero .hero-flag {
  /* reuses the existing .hero-flag stripe but in context of .page-hero */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 25%, var(--green) 25% 50%, var(--white) 50% 75%, var(--yellow) 75%);
}

/* Breadcrumb inside page hero */
.page-hero .breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.page-hero .breadcrumb a:hover {
  color: var(--yellow);
}

.page-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, .3);
}

.page-hero .breadcrumb [aria-current="page"] {
  color: var(--yellow);
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .65rem;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Projects Layout: two-column grid ── */
.projects-layout {
  padding: 3.5rem 0 5rem;
  background: var(--off-white);
}

.projects-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  max-width: 820px;
}

/* ── Main article area ── */
.projects-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}

.project-article:last-child {
  margin-bottom: 0;
}

.project-article:hover {
  box-shadow: var(--shadow-md);
}

.project-article-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gray-100);
  line-height: 1.3;
}

.project-article p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.project-article p:last-of-type {
  margin-bottom: 0;
}

.project-sub-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 .75rem;
}

/* Styled bullet list within articles */
.project-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.project-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.project-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* Inline link inside article body */
.project-inline-link {
  color: var(--azure-blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}

.project-inline-link:hover {
  color: var(--navy);
}

/* Document / action link at bottom of article */
.project-action-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.25rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--azure-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}

.project-action-link:hover {
  color: var(--navy);
}

/* ── Projects page responsive ── */
@media (max-width: 960px) {
  .projects-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 2.5rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .project-article {
    padding: 1.5rem 1.25rem;
  }

  .project-article-title {
    font-size: 1.25rem;
  }

  .projects-layout {
    padding: 2rem 0 3rem;
  }
}



/* ══════════════════════════════════════════════════════
   CAREERS PAGE  (careers.html)
   All selectors prefixed with .careers-* or .vacancy-*
   to remain fully isolated from existing page styles.
   ══════════════════════════════════════════════════════ */

/* ── Page hero (re-uses .page-hero from projects) ── */
.page-hero h1 em {
  font-style: italic;
  color: var(--yellow);
  
}

/* ── Shared section typography helpers ── */
.careers-section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azure-blue);
  margin-bottom: .5rem;
}

.careers-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .85rem;
}

.careers-section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Intro section ── */
.careers-intro-section {
  padding: 4rem 0;
  background: var(--white);
}

.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.careers-intro-text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .85rem;
}

.careers-intro-text p:last-child { margin-bottom: 0; }

/* Stats panel */
.careers-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.careers-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  text-align: center;
  gap: .3rem;
  transition: background .2s;
}

.careers-stat-item:hover { background: var(--gray-100); }

.careers-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.careers-stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
  line-height: 1.3;
}

/* ── Benefits section ── */
.careers-benefits-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.careers-benefits-header {
  margin-bottom: 2.5rem;
}

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.careers-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

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

.careers-benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--azure-blue) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.careers-benefit-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.careers-benefit-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Vacancies section ── */
.careers-vacancies-section {
  padding: 4rem 0 5rem;
  background: var(--white);
}

.careers-vacancies-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Filter row */
.careers-filter-row {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.careers-filter-btn {
  background: var(--gray-100);
  border: 1px solid var(--border);
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 99px;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
  white-space: nowrap;
}

.careers-filter-btn:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.careers-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Vacancy list */
.careers-vacancies-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Vacancy card */
.vacancy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.vacancy-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--azure-blue);
  border-radius: 4px 0 0 4px;
}

.vacancy-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--azure-blue);
}

.vacancy-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.vacancy-meta {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.vacancy-tag {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 99px;
}

.vacancy-tag--technical { background: #E8F4FD; color: #0A6EBD; }
.vacancy-tag--legal     { background: #EEF2FF; color: #4338CA; }
.vacancy-tag--corporate { background: #FFF7ED; color: #C2410C; }
.vacancy-tag--consumer  { background: #ECFDF5; color: #065F46; }
.vacancy-tag--type      { background: var(--gray-100); color: var(--gray-600); }

.vacancy-closing {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.vacancy-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.vacancy-summary {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.vacancy-details {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.vacancy-detail-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--gray-600);
  font-weight: 500;
}

.vacancy-detail-item svg { flex-shrink: 0; color: var(--azure-blue); }

.vacancy-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-vacancy-apply {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--azure-blue);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.3rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s;
}

.btn-vacancy-apply:hover,
.btn-vacancy-apply:focus {
  background: var(--navy);
  transform: translateY(-1px);
}

.btn-vacancy-details {
  background: none;
  border: none;
  color: var(--azure-blue);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color .2s;
}

.btn-vacancy-details:hover { color: var(--navy); }

/* Full description accordion */
.vacancy-full-desc {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  animation: fadeSlideIn .2s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vacancy-full-desc h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0 .5rem;
  letter-spacing: .02em;
}

.vacancy-full-desc h4:first-child { margin-top: 0; }

.vacancy-full-desc ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.vacancy-full-desc ul li {
  position: relative;
  padding-left: 1.2rem;
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.vacancy-full-desc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azure-blue);
}

/* No results */
.careers-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.careers-no-results svg {
  margin: 0 auto 1rem;
  color: var(--gray-400);
}

.careers-no-results p {
  font-size: .95rem;
  margin-bottom: .35rem;
}

.careers-no-results a {
  color: var(--azure-blue);
  font-weight: 600;
  text-decoration: underline;
}

/* ── CTA section ── */
.careers-cta-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.careers-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.careers-cta-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
}

.careers-cta-text p {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.7;
}

.btn-cta-register {
  background: var(--yellow);
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta-register:hover,
.btn-cta-register:focus {
  background: #e09810;
}

/* ── Office section ── */
.careers-office-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.careers-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.careers-office-address {
  font-style: normal;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.careers-office-address strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .25rem;
}

.careers-office-address a {
  color: var(--azure-blue);
  transition: color .2s;
}

.careers-office-address a:hover { color: var(--navy); }

.careers-office-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 240px;
}

.careers-office-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══ APPLICATION MODAL ══ */
.careers-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: overlayIn .2s ease;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.careers-modal-overlay[hidden] { display: none; }

.careers-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(10,37,64,.25);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.careers-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.careers-modal-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--azure-blue);
  margin-bottom: .2rem;
}

.careers-modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
}

.careers-modal-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-600);
  padding: .35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.careers-modal-close:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.careers-modal-body {
  padding: 1.5rem 1.75rem 2rem;
}

/* Step indicator */
.app-steps {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
  gap: 0;
}

.app-step {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.app-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.app-step.active .app-step-num,
.app-step.done .app-step-num {
  background: var(--azure-blue);
  color: var(--white);
}

.app-step-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
}

.app-step.active .app-step-label { color: var(--navy); }
.app-step.done  .app-step-label  { color: var(--azure-blue); }

.app-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  min-width: 1.5rem;
  transition: background .3s;
  margin: 0 .4rem;
}

.app-step-line.done { background: var(--azure-blue); }

/* Form groups (modal) */
.careers-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.careers-modal .form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.careers-modal .form-group:last-of-type { margin-bottom: 0; }

.careers-modal label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.req-star { color: var(--red); }

.careers-modal input,
.careers-modal select,
.careers-modal textarea {
  padding: .6rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .88rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.careers-modal input:focus,
.careers-modal select:focus,
.careers-modal textarea:focus {
  outline: none;
  border-color: var(--azure-blue);
  box-shadow: 0 0 0 3px rgba(0,115,173,.12);
}

.form-hint {
  font-size: .75rem;
  color: var(--gray-400);
}

/* File upload area */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.file-upload-area:hover,
.file-upload-area:focus-within {
  border-color: var(--azure-blue);
  background: #F0F8FD;
}

.file-upload-area svg { margin: 0 auto .6rem; }
.file-upload-area p { font-size: .87rem; margin-bottom: .25rem; }
.file-upload-area p:last-of-type { margin-bottom: 0; }
.file-upload-hint { font-size: .75rem; color: var(--gray-400); }
.file-upload-link { color: var(--azure-blue); font-weight: 600; cursor: pointer; text-decoration: underline; }

.file-upload-chosen {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .85rem;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius);
  font-size: .85rem;
  color: #065F46;
  font-weight: 500;
}

.file-upload-chosen[hidden] { display: none; }
.file-upload-chosen svg { color: #059669; flex-shrink: 0; }

.file-remove-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
  padding: 0 .2rem;
  font-family: inherit;
  transition: color .2s;
}

.file-remove-btn:hover { color: var(--red); }

/* Form navigation */
.app-form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.btn-outline-nav {
  background: none;
  border: 1px solid var(--border);
  color: var(--gray-600);
  font-size: .85rem;
  font-weight: 600;
  padding: .6rem 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}

.btn-outline-nav:hover {
  background: var(--gray-100);
  color: var(--navy);
}

/* Review section */
.app-review-section {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .87rem;
}

.app-review-row {
  display: flex;
  gap: .5rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.app-review-row:last-child { border-bottom: none; }

.app-review-key {
  font-weight: 600;
  color: var(--navy);
  min-width: 160px;
  flex-shrink: 0;
}

.app-review-val { color: var(--text-muted); }

/* Declaration */
.app-declaration {
  margin-bottom: 1.25rem;
}

.checkbox-label {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .83rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: .1rem;
  accent-color: var(--azure-blue);
  cursor: pointer;
}

/* Success state */
.app-success {
  text-align: center;
  padding: 2rem 1rem;
}

.app-success[hidden] { display: none; }

.app-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 1.25rem;
}

.app-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.app-success p {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  line-height: 1.65;
}

.app-success-ref {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .4rem .85rem;
  font-size: .83rem;
  margin: .5rem 0 1.5rem;
}

/* ── Careers page responsive ── */
@media (max-width: 1024px) {
  .careers-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .careers-intro-grid {
    grid-template-columns: 1fr;
  }
  .careers-stats-panel { order: -1; }
  .careers-vacancies-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .careers-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .careers-cta-text p { max-width: 100%; }
  .careers-office-grid { grid-template-columns: 1fr; }
  .careers-modal .form-row { grid-template-columns: 1fr; }
  .app-step-label { display: none; }
}

@media (max-width: 640px) {
  .careers-benefits-grid { grid-template-columns: 1fr; }
  .vacancy-card { padding: 1.25rem 1.25rem 1.25rem 1.5rem; }
  .careers-modal { border-radius: var(--radius) var(--radius) 0 0; max-height: 95vh; }
  .careers-modal-overlay { align-items: flex-end; padding: 0; }
  .vacancy-details { flex-direction: column; gap: .4rem; }
}


/* ══════════════════════════════════════════════════════
   DOCUMENTS PAGE  (documents.html)
   All selectors prefixed with .docs-* to remain fully
   isolated from existing page styles.
   ══════════════════════════════════════════════════════ */

/* ── Stats bar ── */
.docs-stats-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--yellow);
}

.docs-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.docs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .4rem 2.5rem;
  gap: .15rem;
}

.docs-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
}

.docs-stat-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.docs-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Main layout ── */
.docs-main-section {
  padding: 2.5rem 0 5rem;
  background: var(--off-white);
}

.docs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Sidebar ── */
.docs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;
}

.docs-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.docs-sidebar-heading {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.docs-filter-group {
  margin-bottom: 1.25rem;
}

.docs-filter-group:last-of-type {
  margin-bottom: 0;
}

.docs-filter-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .6rem;
}

/* Search input */
.docs-search-wrap {
  position: relative;
}

.docs-search-wrap svg {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.docs-search-wrap input {
  width: 100%;
  padding: .6rem .75rem .6rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .86rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.docs-search-wrap input:focus {
  outline: none;
  border-color: var(--azure-blue);
  box-shadow: 0 0 0 3px rgba(0,115,173,.1);
}

/* Category buttons */
.docs-cat-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.docs-cat-btn {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: none;
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all .18s;
}

.docs-cat-btn:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.docs-cat-btn.active {
  background: #EBF5FC;
  border-color: #B3D9F0;
  color: var(--azure-blue);
  font-weight: 700;
}

.docs-cat-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: background .18s, color .18s;
}

.docs-cat-btn.active .docs-cat-icon { background: var(--azure-blue); color: var(--white); }
.docs-cat-icon--legislation  { background: #EEF2FF; color: #4338CA; }
.docs-cat-icon--guidelines   { background: #FFF7ED; color: #C2410C; }
.docs-cat-icon--reports      { background: #ECFDF5; color: #065F46; }
.docs-cat-icon--consultation { background: #FFF1F2; color: #BE123C; }
.docs-cat-icon--forms        { background: #F0FDF4; color: #166534; }
.docs-cat-icon--statistics   { background: #FFFBEB; color: #92400E; }
.docs-cat-btn.active .docs-cat-icon--legislation,
.docs-cat-btn.active .docs-cat-icon--guidelines,
.docs-cat-btn.active .docs-cat-icon--reports,
.docs-cat-btn.active .docs-cat-icon--consultation,
.docs-cat-btn.active .docs-cat-icon--forms,
.docs-cat-btn.active .docs-cat-icon--statistics { background: var(--azure-blue); color: var(--white); }

.docs-cat-count {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: .1rem .45rem;
  border-radius: 99px;
  min-width: 22px;
  text-align: center;
  transition: background .18s, color .18s;
}

.docs-cat-btn.active .docs-cat-count { background: var(--azure-blue); color: var(--white); }

/* Year select */
.docs-filter-group select,
.docs-sort-select {
  width: 100%;
  padding: .6rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .86rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238A9BB5' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2rem;
}

.docs-filter-group select:focus,
.docs-sort-select:focus {
  outline: none;
  border-color: var(--azure-blue);
  box-shadow: 0 0 0 3px rgba(0,115,173,.1);
}

/* Reset button */
.docs-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  padding: .55rem 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: none;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  font-family: inherit;
  margin-top: 1rem;
  transition: all .2s;
}

.docs-reset-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: #FFF5F5;
}

/* Quick links */
.docs-sidebar-quicklinks { padding-top: 1.25rem; }

.docs-quicklink-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.docs-quicklink-list li a {
  display: block;
  font-size: .83rem;
  color: var(--gray-600);
  padding: .45rem .5rem;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  line-height: 1.4;
}

.docs-quicklink-list li a:hover {
  color: var(--azure-blue);
  background: var(--gray-100);
}

.docs-quicklink-list li a::before {
  content: '→ ';
  color: var(--azure-blue);
  font-weight: 700;
}

/* ── Documents panel ── */
.docs-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Toolbar */
.docs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.docs-results-count {
  font-size: .86rem;
  color: var(--text-muted);
}

.docs-results-count strong { color: var(--navy); }

.docs-toolbar-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.docs-sort-select {
  width: auto;
  font-size: .82rem;
  padding: .45rem 2rem .45rem .75rem;
}

.docs-view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.docs-view-btn {
  background: none;
  border: none;
  padding: .4rem .6rem;
  cursor: pointer;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  transition: all .15s;
  border-right: 1px solid var(--border);
}

.docs-view-btn:last-child { border-right: none; }
.docs-view-btn:hover { background: var(--gray-100); color: var(--navy); }
.docs-view-btn.active { background: var(--navy); color: var(--white); }

/* ── Document grid (card view) ── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  transition: all .2s;
}

.docs-grid.list-view {
  grid-template-columns: 1fr;
}

/* Document card */
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .25s, border-color .25s, transform .2s;
  position: relative;
  overflow: hidden;
  animation: docFadeIn .3s ease both;
}

@keyframes docFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.doc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--azure-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.doc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,115,173,.3);
  transform: translateY(-2px);
}

.doc-card:hover::after {
  transform: scaleX(1);
}

/* List-view card */
.docs-grid.list-view .doc-card {
  flex-direction: row;
  align-items: center;
  padding: 1rem 1.4rem;
  transform: none !important;
}

.docs-grid.list-view .doc-card::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 3px;
  height: auto;
  transform: scaleY(0);
  transform-origin: top;
}

.docs-grid.list-view .doc-card:hover::after {
  transform: scaleY(1);
}

.docs-grid.list-view .doc-card-body {
  flex: 1;
  min-width: 0;
}

.docs-grid.list-view .doc-card-footer {
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
}

/* Card icon */
.doc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.doc-card-icon--pdf  { background: #FEE2E2; color: #B91C1C; }
.doc-card-icon--word { background: #DBEAFE; color: #1D4ED8; }
.doc-card-icon--xls  { background: #D1FAE5; color: #065F46; }

.docs-grid.list-view .doc-card-icon { display: flex; }

/* Card header row */
.doc-card-header {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.docs-grid.list-view .doc-card-header {
  flex: 1;
  min-width: 0;
}

.doc-card-meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
  min-width: 0;
}

/* Tags */
.doc-cat-tag {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 99px;
  width: fit-content;
}

.doc-cat-tag--legislation  { background: #EEF2FF; color: #4338CA; }
.doc-cat-tag--guidelines   { background: #FFF7ED; color: #C2410C; }
.doc-cat-tag--reports      { background: #ECFDF5; color: #065F46; }
.doc-cat-tag--consultation { background: #FFF1F2; color: #BE123C; }
.doc-cat-tag--forms        { background: #F0FDF4; color: #166534; }
.doc-cat-tag--statistics   { background: #FFFBEB; color: #92400E; }

/* Card title */
.doc-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

.docs-grid.list-view .doc-card-title { font-size: .9rem; }

/* Card body */
.doc-card-body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}

.doc-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.docs-grid.list-view .doc-card-desc { display: none; }

.doc-card-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.doc-info-item {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.doc-info-item svg { flex-shrink: 0; }

/* Card footer */
.doc-card-footer {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  padding-top: .65rem;
  border-top: 1px solid var(--gray-100);
}

.doc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--azure-blue);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.doc-download-btn:hover,
.doc-download-btn:focus {
  background: var(--navy);
  transform: translateY(-1px);
}

.doc-size-badge {
  font-size: .73rem;
  color: var(--gray-400);
  font-weight: 500;
}

.doc-new-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .12rem .5rem;
  border-radius: 99px;
  text-transform: uppercase;
}

/* ── No results ── */
.docs-no-results {
  text-align: center;
  padding: 4rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.docs-no-results[hidden] { display: none; }

.docs-no-results svg {
  margin: 0 auto 1rem;
  color: var(--gray-200);
}

.docs-no-results h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.docs-no-results p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ── Pagination ── */
.docs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
  padding: .5rem 0;
}

.docs-page-btn {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-600);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 0 .5rem;
  transition: all .15s;
  white-space: nowrap;
}

.docs-page-btn:hover:not(:disabled) {
  background: var(--gray-100);
  color: var(--navy);
  border-color: var(--gray-400);
}

.docs-page-btn.active {
  background: var(--azure-blue);
  border-color: var(--azure-blue);
  color: var(--white);
}

.docs-page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .docs-layout {
    grid-template-columns: 240px 1fr;
  }
  .docs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }
  .docs-sidebar {
    position: static;
  }
  .docs-stats-inner { gap: 0; }
  .docs-stat { padding: .5rem 1.25rem; }
  .docs-stat-divider { height: 28px; }
}

@media (max-width: 480px) {
  .docs-toolbar { flex-direction: column; align-items: flex-start; }
  .docs-stat-num { font-size: 1.35rem; }
  .docs-stat-label { font-size: .65rem; }
}

/* ═══════════════════════════════════════════════════════
   TELCOSTATS PAGE — extra shared overrides added to main.css
   Full page-specific styles live in telcostats.css
   ═══════════════════════════════════════════════════════ */

/* Breadcrumb utility (used on inner pages) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  flex-wrap: wrap;
}

/* Active nav link style for inner pages */
.primary-nav a[aria-current="page"] {
  color: var(--yellow);
  font-weight: 700;
}

/* Sticky controls backdrop blur for modern browsers */
@supports (backdrop-filter: blur(4px)) {
  .stats-controls {
    backdrop-filter: blur(4px);
  }
}
