/* =====================================================
   ROKING Friends Welfare Association — Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --orange: #F26B3A;
  --orange-dark: #d45a29;
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --teal-light: #5eead4;
  --navy: #0f1c2e;
  --navy-light: #1a2d42;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text: #444c5c;
  --text-dark: #1a2033;
  --text-light: #6b7280;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 18px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg: 0 18px 45px rgba(15,23,42,.08), 0 4px 12px rgba(15,23,42,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --font: 'Geist', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Geist', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

/* ---------- Typography Helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,107,58,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,92,99,.35);
}

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

/* ============================================================
   TOP CONTACT STRIP
   ============================================================ */
.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-strip-left,
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-strip a {
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.top-strip a:hover { color: var(--orange); }

.top-strip .social-links { display: flex; align-items: center; gap: 8px; }
.top-strip .social-links a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  transition: background var(--transition);
}
.top-strip .social-links a:hover { background: var(--orange); color: var(--white); }

.portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.portal-btn:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.portal-btn img { width: 18px; height: 18px; object-fit: contain; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

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

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

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

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--orange); background: rgba(242,107,58,.07); }

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

/* Dropdown */
.dropdown { position: relative; }

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

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .chevron,
.dropdown.open .chevron { transform: rotate(180deg); }

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.dropdown-link:hover { background: rgba(242,107,58,.07); color: var(--orange); }

.dropdown-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .6; }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 6px 4px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu-header img { height: 44px; }
.mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--orange); }
.mobile-nav-link .chevron-icon {
  width: 18px; height: 18px;
  transition: transform var(--transition);
  color: var(--gray-500);
}
.mobile-nav-link.open .chevron-icon { transform: rotate(180deg); }

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-dropdown.open { max-height: 400px; }

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  margin: 2px 0;
  transition: background var(--transition), color var(--transition);
}
.mobile-dropdown-link:hover { background: rgba(242,107,58,.07); color: var(--orange); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  height: 92vh;
  min-height: 580px;
  max-height: 860px;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.active .hero-slide-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8,61,66,.78) 0%,
    rgba(15,28,46,.55) 55%,
    rgba(0,0,0,.30) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .15s, transform .7s .15s;
}
.hero-slide.active .hero-kicker { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  max-width: 720px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s .3s, transform .7s .3s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s .45s, transform .7s .45s;
}
.hero-slide.active .hero-pills { opacity: 1; transform: translateY(0); }

.hero-pill {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s .6s, transform .7s .6s;
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}
.hero-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

.hero-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-arrow svg { width: 18px; height: 18px; }

/* ============================================================
   MARQUEE / VALUES TICKER
   ============================================================ */
.marquee-section {
  background: var(--teal);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: rgba(255,255,255,.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.2);
}
.marquee-item:last-child { border-right: none; }
.marquee-item img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--navy);
}
.page-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8,61,66,.82) 0%,
    rgba(15,28,46,.60) 100%);
}
.page-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.page-banner-content .eyebrow { color: var(--orange); }
.page-banner-content .eyebrow::before { background: var(--orange); }
.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 14px;
}
.page-banner-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ============================================================
   STAT CARDS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   IMAGE + TEXT PANELS
   ============================================================ */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.panel-grid.reverse { direction: rtl; }
.panel-grid.reverse > * { direction: ltr; }

.panel-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.panel-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}
.panel-image:hover img { transform: scale(1.04); }
.panel-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.panel-text { display: flex; flex-direction: column; gap: 20px; }
.panel-body { font-size: 1rem; line-height: 1.75; color: var(--text); }

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: rgba(242,107,58,.1);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* Icon card */
.icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.icon-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(242,107,58,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.icon-card-icon img { width: 28px; height: 28px; }
.icon-card-icon svg { width: 28px; height: 28px; color: var(--orange); }

.icon-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.icon-card-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* Teal icon card variant */
.icon-card.teal { background: var(--teal); border-color: var(--teal); }
.icon-card.teal .icon-card-icon { background: rgba(255,255,255,.15); }
.icon-card.teal .icon-card-title { color: var(--white); }
.icon-card.teal .icon-card-desc { color: rgba(255,255,255,.78); }
.icon-card.teal .icon-card-icon img { filter: brightness(0) invert(1); }

/* ============================================================
   NUMBERED STEP CARDS
   ============================================================ */
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(242,107,58,.12);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================================
   GUIDE SECTION (good/bad/support)
   ============================================================ */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition);
}
.guide-card:hover { transform: translateY(-5px); }

.guide-card.good { background: linear-gradient(135deg, #0d5c63, #1a7a83); }
.guide-card.bad { background: linear-gradient(135deg, #7c1d1d, #991b1b); }
.guide-card.support { background: linear-gradient(135deg, #0f1c2e, #1a2d42); }

.guide-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.guide-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.guide-card ul { display: flex; flex-direction: column; gap: 8px; }
.guide-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.guide-card li::before {
  content: '›';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 32px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.value-pill:hover {
  border-color: var(--orange);
  background: rgba(242,107,58,.06);
  transform: translateY(-2px);
}
.value-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(242,107,58,.08);
  top: -100px; right: -80px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -80px; left: -40px;
  pointer-events: none;
}

.cta-eyebrow { color: var(--orange) !important; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 16px;
  position: relative;
}
.cta-body {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   CONTACT HERO (3-column image grid)
   ============================================================ */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  height: 380px;
  position: relative;
}

.contact-hero-col {
  position: relative;
  overflow: hidden;
}
.contact-hero-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.contact-hero-col:hover img { transform: scale(1.06); }

.contact-hero-col-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,61,66,.65);
  transition: background var(--transition);
}
.contact-hero-col:hover .contact-hero-col-overlay { background: rgba(8,61,66,.52); }

.contact-hero-center-overlay {
  background: rgba(13,92,99,.72);
}

.contact-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
}

/* ============================================================
   CONTACT DETAILS CARDS
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(242,107,58,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 24px; height: 24px; color: var(--orange); }

.contact-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-card-sub { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-label span { color: var(--orange); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,92,99,.12);
}
.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  user-select: none;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--teal);
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding-bottom: 18px; }

/* ============================================================
   LEADERSHIP CARDS
   ============================================================ */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.leader-card-avatar {
  width: 100%;
  aspect-ratio: 1;
  max-height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.leader-avatar-placeholder {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 3px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
}

.leader-card-badge {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(8,61,66,.8));
  padding: 20px 16px 10px;
}
.leader-role-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}

.leader-card-body { padding: 20px; }
.leader-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.leader-title {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}
.leader-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.leader-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  cursor: pointer;
  transition: color var(--transition);
}
.leader-view-btn:hover { color: var(--orange); }
.leader-view-btn svg { width: 14px; height: 14px; }

/* ============================================================
   LEADERSHIP MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(24px) scale(.97);
  transition: transform var(--transition);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 32px 28px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.modal-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 3px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.modal-header-text { flex: 1; }
.modal-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.modal-role { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 12px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.28); }

.modal-body { padding: 28px; }
.modal-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.modal-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.modal-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.modal-detail svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--orange); color: var(--white); }

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,.62);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,.62);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }
.footer-powered { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }
.text-teal { color: var(--teal); }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-teal { background: var(--teal); }
.bg-navy { background: var(--navy); }
.bg-orange { background: var(--orange); }

.mt-0 { margin-top: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 40px 0;
}

/* ============================================================
   SOCIAL FOLLOW SECTION
   ============================================================ */
.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.social-follow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.social-follow-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.social-follow-card.fb:hover { border-color: #1877f2; }
.social-follow-card.tw:hover { border-color: #1da1f2; }
.social-follow-card.ig:hover { border-color: #e1306c; }
.social-follow-card.wa:hover { border-color: #25d366; }

.social-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.social-icon-wrap.fb { background: #1877f2; }
.social-icon-wrap.tw { background: #1da1f2; }
.social-icon-wrap.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon-wrap.wa { background: #25d366; }

.social-platform-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.social-handle { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .panel-grid { gap: 40px; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }

  .top-strip { display: none; }

  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero { height: 80vh; min-height: 520px; }

  .panel-grid,
  .panel-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .guide-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .contact-hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .contact-hero-col { height: 160px; }
  .contact-hero-col:nth-child(2) { height: 200px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .cards-grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.85rem; }
  .section-heading { font-size: 1.55rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ============================================================
   React parity polish
   ============================================================ */
.top-strip {
  background: #f8fafc;
  color: #475569;
  border-bottom: 1px solid rgba(226,232,240,.9);
  padding: 0;
}
.top-strip a { color: #475569; }
.top-strip-inner {
  min-height: 72px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.top-strip-left { justify-self: start; }
.top-strip-right {
  margin-left: auto;
}
.top-strip .social-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.top-strip .social-links a {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #64748b;
  box-shadow: 0 8px 18px rgba(148,163,184,.12);
}
.portal-btn {
  min-height: 66px;
  border-radius: 0;
  background: #ffffff;
  color: #334155 !important;
  border: 1px solid #f2d7cc;
  box-shadow: 0 8px 18px rgba(148,163,184,.08);
  padding: 0 28px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.72rem;
}
.portal-btn:hover {
  background: #fff7f3 !important;
  color: var(--orange) !important;
  border-color: rgba(242,107,58,.42);
}
.portal-btn img { width: 42px; height: 28px; }

.navbar {
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  border-bottom-color: #e2e8f0;
}
.navbar-inner { height: 156px; }
.navbar-logo img { height: 104px; }
.nav-link {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: #fff1ec;
  box-shadow: 0 12px 28px rgba(26,26,27,.09);
}
.navbar-nav > .nav-item > a[href="leadership.html"].nav-link { display: none; }
.dropdown-menu {
  border-radius: 0;
  min-width: 260px;
  padding: 12px 0;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.dropdown-link {
  border-radius: 0;
  padding: 12px 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  min-height: 74vh;
  height: 86vh;
  max-height: none;
}
.hero-slide:nth-child(1) .hero-slide-img { object-position: center center; }
.hero-slide:nth-child(2) .hero-slide-img { object-position: center 28%; }
.hero-overlay {
  background:
    linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.25)),
    linear-gradient(180deg, rgba(25,57,63,.2), rgba(25,57,63,.45));
}
.hero-content {
  align-items: center;
  text-align: center;
  justify-content: center;
  padding-top: 12px;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(94,234,212,.9);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .1s, transform .7s .1s;
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-kicker {
  letter-spacing: 0;
  text-transform: none;
  color: rgba(226,232,240,.98);
  margin-bottom: 34px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-title {
  max-width: 620px;
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}
.hero-pills {
  justify-content: center;
  order: 0;
  margin-bottom: 34px;
  gap: 48px;
}
.hero-pill {
  border: 0;
  border-radius: 999px;
  padding: 14px 42px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(2,6,23,.22);
}
.hero-pill:nth-child(1) { background: rgba(190,18,60,.38); color: #fb7185; }
.hero-pill:nth-child(2) { background: rgba(37,99,235,.38); color: #60a5fa; }
.hero-pill:nth-child(3) { background: rgba(5,150,105,.38); color: #34d399; }
.hero-desc {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(226,232,240,.92);
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s .54s, transform .7s .54s;
}
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }
.hero-actions { justify-content: center; }
.hero-controls {
  left: 32px;
  bottom: 28px;
  transform: none;
}
.hero-dot {
  width: 32px;
  height: 8px;
  border-radius: 999px;
}
.hero-dot.active { width: 32px; background: #14b8a6; }

.marquee-section {
  background: rgba(248,250,252,.72);
  border-top: 1px solid rgba(226,232,240,.8);
  border-bottom: 1px solid rgba(226,232,240,.8);
  padding: 28px 0;
}
.marquee-item {
  color: #334155;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 16px;
  background: #ffffff;
  margin: 0 14px;
  padding: 12px 20px;
  box-shadow: 0 4px 14px rgba(15,23,42,.05);
}
.marquee-item img { filter: none; }

.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }
.bg-gray { background: #f8fafc; }
.panel-grid { gap: 48px; }
.panel-image {
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(15,23,42,.10);
  min-height: 360px;
}
.panel-image img { min-height: 360px; }
.panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.78), rgba(15,23,42,.18) 58%, transparent);
  pointer-events: none;
}
.panel-image-badge {
  z-index: 1;
  background: rgba(15,184,166,.95);
  left: 28px;
  bottom: 28px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15,23,42,.24);
}
.stat-card,
.icon-card,
.step-card,
.contact-card,
.leader-card,
.card {
  border-color: rgba(226,232,240,.9);
  box-shadow: 0 16px 34px rgba(15,23,42,.05);
}
.stat-card:hover,
.icon-card:hover,
.step-card:hover,
.contact-card:hover,
.leader-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15,23,42,.09);
}
.guide-card {
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.icon-card,
.step-card,
.contact-card,
.stat-card {
  border-radius: 26px;
}
.icon-card-icon,
.contact-card-icon {
  border-radius: 18px;
  background: #fff1ec;
}
.section-heading {
  letter-spacing: -.01em;
}
.panel-body,
.section-subheading {
  color: #475569;
}
.stats-row {
  gap: 20px;
}
.stat-card {
  text-align: left;
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
}
.stat-number {
  color: #020617;
  font-size: 2rem;
}
.stat-label {
  color: #64748b;
  letter-spacing: .22em;
  font-size: .72rem;
}
.stat-sub {
  color: #475569;
  font-size: .92rem;
  line-height: 1.65;
}

.page-banner {
  height: 420px;
}
.page-banner-img { object-position: center 38%; }
.page-banner-overlay {
  background:
    linear-gradient(90deg, rgba(24,54,60,.82), rgba(24,54,60,.64) 45%, rgba(24,54,60,.48)),
    linear-gradient(180deg, rgba(24,54,60,.14), rgba(24,54,60,.42));
}
.page-banner-content {
  align-items: flex-start;
  text-align: left;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.page-banner-title {
  font-size: clamp(2.5rem, 4.2vw, 3.35rem);
  letter-spacing: -.02em;
}
.page-banner-subtitle {
  max-width: 680px;
  color: rgba(226,232,240,.92);
}

.contact-hero {
  height: 430px;
}
.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(24,54,60,.82) 50%, transparent);
}
.contact-hero::before { left: calc(33.333% - 48px); }
.contact-hero::after { left: calc(66.666% - 48px); }
.contact-hero-col-overlay {
  background:
    linear-gradient(90deg, rgba(24,54,60,.86), rgba(24,54,60,.45)),
    linear-gradient(180deg, rgba(24,54,60,.10), rgba(24,54,60,.45));
}
.contact-hero-text {
  pointer-events: none;
  align-items: flex-start;
  text-align: left;
  padding: 0 24px;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.contact-hero-text > div {
  max-width: 720px;
}
.contact-hero-text .eyebrow {
  color: var(--orange);
  font-size: .72rem;
}
.contact-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.2vw, 3.35rem);
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 12px;
  line-height: 1.15;
}
.contact-hero-text p {
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.7;
}
.contact-hero-text .breadcrumb a,
.contact-hero-text .breadcrumb span {
  color: rgba(255,255,255,.78);
}

.leader-card {
  border-radius: 18px;
  text-align: left;
}
.leader-card-avatar {
  aspect-ratio: auto;
  height: 150px;
  background: #ffffff;
}
.leader-avatar-placeholder {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, #0f766e, #0891b2);
  border: 4px solid #ffffff;
  box-shadow: 0 10px 24px rgba(15,23,42,.16);
}
.leader-card-badge {
  background: linear-gradient(180deg, transparent, rgba(15,23,42,.08));
}
.leader-role-badge {
  background: #fff1ec;
  color: #c65228;
}
.leader-view-btn {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--orange);
}
.leadership-overview-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start;
}
.leadership-notes {
  display: grid;
  gap: 16px;
}
.leadership-note {
  border-left: 4px solid var(--orange);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(15,23,42,.05);
  border-top: 1px solid rgba(226,232,240,.9);
  border-right: 1px solid rgba(226,232,240,.9);
  border-bottom: 1px solid rgba(226,232,240,.9);
  padding: 22px 26px;
  color: #334155;
  font-size: .96rem;
  line-height: 1.7;
}

.accessibility-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2100;
  font-size: 14px;
}
.navbar-inner > .accessibility-widget {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 20;
  margin-left: 28px;
}
.accessibility-toggle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 54px rgba(15,159,149,.22);
  font-size: 1.45rem;
}
.accessibility-panel {
  position: absolute;
  right: 0;
  top: 76px;
  bottom: auto;
  width: 280px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
  padding: 16px;
  display: none;
}
.accessibility-widget.open .accessibility-panel { display: block; }
.accessibility-title {
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 12px;
}
.accessibility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.accessibility-panel button,
.accessibility-panel select {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  padding: 9px 10px;
  font: inherit;
}
.accessibility-panel select { width: 100%; margin-bottom: 10px; }
body.a11y-large { font-size: 18px; }
body.a11y-small { font-size: 14px; }
body.a11y-underline a { text-decoration: underline; text-underline-offset: 3px; }
body.a11y-contrast {
  --orange: #ff7a3d;
  --teal: #005f66;
  --text: #111827;
  --text-dark: #020617;
}
body.theme-dark {
  --white: #0f172a;
  --off-white: #111827;
  --gray-100: #111827;
  --gray-200: #334155;
  --text: #cbd5e1;
  --text-dark: #f8fafc;
}
body.theme-sepia {
  --white: #fbf4e8;
  --off-white: #f8ecd9;
  --gray-100: #f3e4cc;
  --gray-200: #e6d2b5;
  --text: #4b3a2b;
  --text-dark: #2f2419;
}

/* Homepage React-match refinement */
.top-strip-inner {
  min-height: 52px;
}
.top-strip {
  padding: 0;
}
.top-strip .social-links a:nth-child(2),
.top-strip .social-links a:nth-child(3) {
  display: none;
}
.top-strip .social-links a {
  width: 30px;
  height: 30px;
  font-size: .78rem;
}
.portal-btn {
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  letter-spacing: .2em;
}
.portal-btn img {
  width: 28px;
  height: 28px;
}
.navbar {
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.navbar-inner {
  height: 104px;
}
.navbar-logo img {
  height: 96px;
  transform: rotate(24deg);
}
.nav-link {
  padding: 10px 14px;
  font-size: .72rem;
  letter-spacing: .08em;
}
.navbar-inner > .accessibility-widget {
  margin-left: 34px;
}
.accessibility-toggle {
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
}

.hero {
  height: calc(100vh - 156px);
  min-height: 650px;
}
.hero-content {
  padding: 86px 24px 88px;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .42em;
  margin-bottom: 36px;
}
.hero-kicker {
  font-size: 1rem;
  margin-bottom: 26px;
}
.hero-pills {
  gap: 32px;
  margin-bottom: 34px;
}
.hero-pill {
  min-width: 112px;
  padding: 10px 24px;
  font-size: .78rem;
  letter-spacing: .08em;
}
.hero-title {
  max-width: 620px;
  font-size: clamp(2.75rem, 4.35vw, 4rem);
  line-height: 1.08;
}
.hero-desc {
  max-width: 560px;
  font-size: .98rem;
}
.hero .btn-lg {
  padding: 14px 30px;
}
.hero .btn-teal {
  box-shadow: 0 18px 38px rgba(20,184,166,.18), inset 0 0 0 1px rgba(255,255,255,.5);
}
.hero-controls {
  bottom: 22px;
}

.home-intro-section {
  background: #ffffff;
  padding: 48px 0 56px;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 48px;
  align-items: start;
}
.home-intro-copy {
  max-width: 680px;
}
.home-intro-copy .section-heading {
  max-width: 660px;
  margin: 10px 0 18px;
  font-size: clamp(1.85rem, 2.45vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -.035em;
}
.home-intro-copy .panel-body {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.75;
}
.home-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.home-intro-actions .btn {
  min-height: 52px;
  padding: 0 28px;
}
.home-helper-text {
  margin-top: 14px;
  color: #64748b;
  font-size: .94rem;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.home-stat-card {
  border-left: 4px solid var(--orange);
  background: #ffffff;
  padding: 22px 26px;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.home-stat-card:nth-child(3) {
  grid-column: 1 / -1;
}
.home-stat-label {
  margin: 0;
  color: #64748b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.home-stat-value {
  margin: 10px 0 4px;
  color: #020617;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}
.home-stat-desc {
  margin: 0;
  color: #475569;
  font-size: .92rem;
  line-height: 1.65;
}
.home-guide-card {
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15,23,42,.08);
}
.home-guide-head {
  border-bottom: 1px solid rgba(226,232,240,.9);
  background: rgba(248,250,252,.72);
  padding: 26px 32px;
}
.home-guide-head h3 {
  margin: 8px 0 8px;
  color: #020617;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}
.home-guide-head p:last-child {
  margin: 0;
  color: #475569;
  font-size: .95rem;
  line-height: 1.7;
}
.home-guide-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding: 28px 22px 30px 32px;
  scrollbar-width: thin;
}
.home-guide-section {
  margin-bottom: 30px;
}
.home-guide-section h4 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-guide-section ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
}
.home-guide-section li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #334155;
  font-size: .98rem;
  line-height: 1.45;
}
.home-guide-section li span {
  width: 10px;
  height: 10px;
  margin-top: .42em;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
}
.home-guide-note {
  display: grid;
  gap: 10px;
  border-radius: 18px;
  background: #fff7ed;
  padding: 18px 20px;
}
.home-guide-note p {
  margin: 0;
  color: #7c2d12;
  font-size: .92rem;
  line-height: 1.55;
}

.footer-compact {
  padding: 0;
  border-top: 1px solid rgba(15,23,42,.2);
  background: linear-gradient(180deg,#1e293b 0%,#0f172a 100%);
}
.footer-compact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 0;
}
.footer-compact-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}
.footer-compact-brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
}
.footer-compact-brand strong,
.footer-compact-brand small {
  display: block;
}
.footer-compact-brand strong {
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
.footer-compact-brand small {
  margin-top: 2px;
  color: rgba(241,245,249,.78);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer-compact-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-compact-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.footer-compact-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(241,245,249,.78);
  font-size: .9rem;
}
.footer-compact-contact svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--orange);
}
.footer-compact .footer-socials {
  margin-top: 0;
}
.footer-compact .footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.08);
  color: rgba(241,245,249,.7);
}
.footer-compact-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  color: rgba(241,245,249,.68);
  font-size: .78rem;
  text-align: center;
}
.footer-compact-bottom a {
  color: rgba(241,245,249,.58);
}
.footer-compact-bottom a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .navbar-inner { height: 82px; }
  .navbar-logo img { height: 64px; }
  .hero { height: auto; min-height: 620px; }
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .hero-controls { left: 24px; }
  .page-banner { height: 360px; }
  .page-banner-content { left: 0; transform: none; }
  .contact-hero::before,
  .contact-hero::after { display: none; }
  .contact-hero-text { align-items: center; text-align: center; padding: 24px; }
  .accessibility-panel { width: min(280px, calc(100vw - 36px)); }
  .navbar-inner > .accessibility-widget { margin-left: auto; }
  .accessibility-toggle { width: 44px; height: 44px; font-size: 1.1rem; }
  .leadership-overview-grid { grid-template-columns: 1fr; }
  .home-intro-section { padding: 42px 0; }
  .home-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .home-stats-grid { grid-template-columns: 1fr; }
  .home-stat-card:nth-child(3) { grid-column: auto; }
  .home-guide-card { border-radius: 22px; }
  .home-guide-head { padding: 22px; }
  .home-guide-scroll { max-height: 460px; padding: 22px; }
  .footer-compact-main,
  .footer-compact-right,
  .footer-compact-contact {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-compact-main { gap: 22px; }
}

/* ============================================================
   LOGO SPIN ANIMATION
   ============================================================ */
@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.navbar-logo img {
  animation: logo-spin 12s linear infinite;
  transform-origin: center center;
}

/* ============================================================
   MANPOWER-HOVER (fill-from-left animation — React parity)
   ============================================================ */
.manpower-hover {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 280ms cubic-bezier(0.22,1,0.36,1),
    border-color 280ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 280ms cubic-bezier(0.22,1,0.36,1);
}
.manpower-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f26b3a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}
.manpower-hover > * { position: relative; z-index: 1; }
.manpower-hover:hover,
.manpower-hover:focus-visible {
  color: #ffffff !important;
  border-color: rgba(242,107,58,.7) !important;
  box-shadow: 0 14px 28px rgba(242,107,58,.18) !important;
}
.manpower-hover:hover::before,
.manpower-hover:focus-visible::before { transform: scaleX(1); }
.portal-btn.manpower-hover:hover,
.portal-btn.manpower-hover:focus-visible {
  background: transparent !important;
  color: #ffffff !important;
}

/* ============================================================
   ACCESSIBILITY: enhanced body-state classes
   ============================================================ */
.a11y-section-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 10px 0 6px;
}
.a11y-slider-row { margin-bottom: 10px; }
.a11y-slider-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.a11y-slider-row input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: #14b8a6;
  cursor: pointer;
}
.accessibility-panel { max-height: calc(100vh - 140px); overflow-y: auto; }
.accessibility-panel button.a11y-active {
  border-color: #0f766e !important;
  background: #14b8a6 !important;
  color: #ffffff !important;
}
body.a11y-high-contrast { filter: contrast(1.5); }
body.a11y-grayscale { filter: grayscale(1); }
body.a11y-negative { filter: invert(1) hue-rotate(180deg); }
body.a11y-light-bg { background-color: #ffffee !important; --white: #ffffee; }
body.a11y-line-spacing * { line-height: 2 !important; }
body.a11y-readable-font,
body.a11y-readable-font * { font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif !important; }

/* ============================================================
   HOMEPAGE — CORE VALUES SECTION
   ============================================================ */
.home-values-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.home-values-notes {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.home-values-note { border-left: 2px solid #e2e8f0; padding-left: 16px; }
.home-values-note.orange { border-color: rgba(242,107,58,.7); }
.home-values-note-title { font-size: .9rem; font-weight: 600; color: #020617; margin-bottom: 4px; }
.home-values-note-body { font-size: .88rem; color: #475569; line-height: 1.7; margin: 0; }
.home-values-img-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 32px;
  min-height: 320px;
  border: 1px solid rgba(226,232,240,.7);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.home-values-img-panel img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; object-position: center 28%; display: block;
}
.home-values-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.72) 0%, rgba(15,23,42,.18) 58%, transparent 100%);
}
.home-values-img-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; color: #fff; }
.home-values-img-eyebrow {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: #5eead4; margin-bottom: 12px;
}
.home-values-img-title { font-size: 1.1rem; font-weight: 600; line-height: 1.4; max-width: 320px; margin: 0; }

.home-values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.home-value-card {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(15,23,42,.05);
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s, border-color .28s;
}
.home-value-card:hover { transform: translateY(-4px); border-color: rgba(242,107,58,.35); box-shadow: 0 24px 50px rgba(15,23,42,.09); }
.home-value-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.home-value-icon {
  width: 48px; height: 48px; border-radius: 16px; background: #fff1ec; color: #f26b3a;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .28s;
}
.home-value-card:hover .home-value-icon { background: #ffe5da; }
.home-value-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.home-value-accent {
  display: inline-flex; align-items: center; border-radius: 999px; background: #f1f5f9;
  padding: 4px 12px; font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #64748b; transition: background .28s, color .28s;
}
.home-value-card:hover .home-value-accent { background: #fff1ec; color: #c95a31; }
.home-value-bar { width: 48px; height: 4px; border-radius: 999px; background: rgba(242,107,58,.75); margin-bottom: 16px; }
.home-value-card h3 { font-size: 1.1rem; font-weight: 700; color: #020617; margin-bottom: 8px; }
.home-value-desc { font-size: .88rem; font-weight: 600; color: #334155; margin-bottom: 10px; line-height: 1.6; }
.home-value-detail { font-size: .86rem; color: #475569; line-height: 1.7; margin: 0; }

/* ============================================================
   HOMEPAGE — MEMBERSHIP JOURNEY (step cards)
   ============================================================ */
.home-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.home-step-card { background: #ffffff; border: 1px solid #e7e5e4; padding: 28px; }
.home-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.home-step-num { font-size: .88rem; font-weight: 700; letter-spacing: .24em; color: #f26b3a; text-transform: uppercase; }
.home-step-icon { width: 44px; height: 44px; background: #fff1ec; color: #f26b3a; display: flex; align-items: center; justify-content: center; }
.home-step-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.home-step-card h3 { font-size: 1.1rem; font-weight: 700; color: #020617; margin-bottom: 12px; }
.home-step-card p { font-size: .88rem; color: #475569; line-height: 1.75; margin: 0; }

/* ============================================================
   HOMEPAGE — KEY BENEFITS (feature cards, top border)
   ============================================================ */
.home-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.home-feature-card { background: #ffffff; border-top: 4px solid #f26b3a; padding: 28px; }
.home-feature-icon { width: 48px; height: 48px; background: #ffffff; color: #f26b3a; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.home-feature-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.home-feature-card h3 { font-size: 1.1rem; font-weight: 700; color: #020617; margin-bottom: 12px; }
.home-feature-card p { font-size: .88rem; color: #475569; line-height: 1.75; margin: 0; }

/* ============================================================
   HOMEPAGE — PROGRAMS & ACTIVITIES (left copy + right list)
   ============================================================ */
.home-programs-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.home-programs-list { display: grid; gap: 24px; }
.home-program-card { background: #ffffff; border-left: 4px solid #f26b3a; padding: 24px; box-shadow: 0 16px 34px rgba(15,23,42,.06); }
.home-program-card h3 { font-size: 1.1rem; font-weight: 600; color: #020617; margin-bottom: 12px; }
.home-program-card p { font-size: .88rem; color: #475569; line-height: 1.75; margin: 0; }

/* ============================================================
   HOMEPAGE — MEMBERSHIP (left copy + right panel)
   ============================================================ */
.home-membership-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 32px; align-items: center; }
.home-membership-panel { border: 1px solid #e2e8f0; background: #ffffff; padding: 28px 32px; }
.home-membership-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: #f26b3a; margin-bottom: 24px; display: block; }
.home-membership-points { display: grid; gap: 0; }
.home-membership-point { display: flex; gap: 16px; align-items: flex-start; border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; margin-bottom: 20px; }
.home-membership-point:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.home-membership-dot { width: 10px; height: 10px; background: #f26b3a; flex-shrink: 0; margin-top: 7px; }
.home-membership-point p { font-size: .88rem; color: #334155; line-height: 1.75; margin: 0; }

/* ============================================================
   HOMEPAGE — CTA (clean border-top, centered)
   ============================================================ */
.home-cta-section { border-top: 1px solid #e7e5e4; padding: 56px 0 64px; text-align: center; }
.home-cta-inner { max-width: 720px; margin: 0 auto; }
.home-cta-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ============================================================
   HOMEPAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-values-grid { grid-template-columns: 1fr; }
  .home-programs-grid { grid-template-columns: 1fr; }
  .home-membership-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .home-values-cards { grid-template-columns: 1fr; }
  .home-steps-grid { grid-template-columns: 1fr; }
  .home-features-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .home-values-cards { grid-template-columns: 1fr 1fr; }
  .home-steps-grid { grid-template-columns: repeat(3,1fr); }
  .home-features-grid { grid-template-columns: repeat(3,1fr); }
}
