/* ============================================================
   COMAPS v4 — Slick Corporate / Legal Stylesheet
   Palette: Midnight #0D1B2A · Electric Teal #00B4C8 · Gold #C89B3C
   Fonts: Barlow Condensed (display) · Open Sans (body)
   ============================================================ */

:root {
  --midnight:    #070F18;
  --mid-dark:    #091929;
  --mid-dark-2:  #0D2236;
  --mid-light:   #0F2840;
  --teal:        #00B4C8;
  --teal-dark:   #008FA0;
  --teal-lt:     #CCF2F6;
  --teal-glow:   rgba(0,180,200,0.25);
  --gold:        #C89B3C;
  --gold-lt:     #E8C870;
  --gold-dark:   #A07828;
  --gold-glow:   rgba(200,155,60,0.15);
  --body-muted:  #A0B8C8;
  --text-dim:    #607888;
  --white:       #FFFFFF;
  --offwhite:    #F4F7F9;
  --lgrey:       #D8E4E8;
  --dgrey:       #3A4D5C;
  --text:        #1C2C3A;
  --navy:        #070F18;
  --navy-mid:    #0F2840;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--teal); color: var(--midnight); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0D1B2A; }
::-webkit-scrollbar-thumb { background: var(--teal-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--midnight);
  padding: 0 56px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,180,200,0.25);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0,180,200,0.20), 0 4px 32px rgba(0,0,0,0.5);
}

.header-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-main {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 10px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.logo-main em { font-style: normal; color: var(--teal); }

.logo-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(0,180,200,0.6);
}

.header-sub {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: right;
  font-weight: 600;
}

/* ============================================================
   NAVIGATION TILES
   ============================================================ */
.nav-tiles {
  background: var(--mid-dark);
  border-bottom: 1px solid rgba(0,180,200,0.22);
  position: sticky;
  top: 80px;
  z-index: 199;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.nav-tile-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.nav-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 6px 13px;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.18s, color 0.18s;
  gap: 7px;
  position: relative;
}
.nav-tile:last-child { border-right: none; }
.nav-tile:hover { background: rgba(0,180,200,0.20); color: var(--white); }
.nav-tile.active {
  background: rgba(0,180,200,0.22);
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}
.nav-tile svg { width: 22px; height: 22px; flex-shrink: 0; }
.nav-tile-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--midnight);
  background-image:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(0,180,200,0.06) 0%, transparent 70%);
  padding: 80px 60px 72px;
  position: relative;
  overflow: hidden;
}

/* Thin accent line at bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0,180,200,0.15) 60%, transparent 100%);
}

/* Large ghost word behind content */
.page-hero::before {
  content: attr(data-ghost);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 220px;
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: rgba(0,180,200,0.03);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.page-hero .crumb {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,180,200,0.7);
  margin-bottom: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .crumb::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--teal);
  opacity: 0.5;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.05;
  max-width: 820px;
  animation: heroIn 0.55s ease both 0.05s;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 14.5px;
  max-width: 680px;
  line-height: 1.75;
  animation: heroIn 0.55s ease both 0.18s;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero-home {
  background: var(--midnight);
  padding: 110px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,180,200,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.hero-home-inner { position: relative; z-index: 1; }
.hero-home h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 104px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 20px;
  text-transform: uppercase;
  line-height: 0.9;
}
.hero-home h1 em { font-style: normal; color: var(--teal); }
.hero-home .hero-tagline {
  font-size: 10px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(0,180,200,0.7);
  font-weight: 700;
  margin-top: 18px;
}
.hero-home .hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 640px;
  margin: 32px auto 0;
  line-height: 1.8;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 56px; }
section { padding: 80px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.two-col.align-c { align-items: center; }
.two-col.align-t { align-items: flex-start; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--teal);
  opacity: 0.7;
  flex-shrink: 0;
}

.gold-bar {
  width: 36px; height: 2px;
  background: var(--gold);
  margin: 10px 0 26px;
  opacity: 0.9;
}
@keyframes barGrow {
  from { width: 0; opacity: 0; }
  to   { width: 36px; opacity: 0.8; }
}
.reveal.visible .gold-bar { animation: barGrow 0.45s ease forwards 0.1s; }

h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--midnight);
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 em { font-style: normal; color: var(--teal); }

/* Dark-section h2 override */
.dark-section h2, .summary-section h2 { color: var(--white); }

h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--midnight);
  margin-bottom: 12px;
}

h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 14px;
}

p { color: var(--dgrey); margin-bottom: 16px; font-size: 14.5px; line-height: 1.72; }
p.lead {
  font-size: 17px;
  color: var(--midnight);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 22px;
}

ul { padding-left: 20px; }
ul li { color: var(--dgrey); margin-bottom: 9px; font-size: 14.5px; }

a { color: var(--teal); }

/* ============================================================
   DARK SECTION
   ============================================================ */
.dark-section {
  background: linear-gradient(160deg, #0D2236 0%, #060E18 100%);
  padding: 80px 0;
}
.dark-section p { color: rgba(255,255,255,0.88); }

/* ============================================================
   ICON TILES (homepage 4-pillar)
   ============================================================ */
.icon-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  border: 1px solid rgba(0,180,200,0.25);
}
.icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-decoration: none;
  color: var(--white);
  background: rgba(9,20,33,0.7);
  border-right: 1px solid rgba(0,180,200,0.20);
  transition: background 0.2s, transform 0.2s;
  gap: 18px;
  text-align: center;
}
.icon-tile:last-child { border-right: none; }
.icon-tile:hover { background: rgba(0,180,200,0.20); transform: translateY(-3px); }
.icon-tile-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,180,200,0.20);
  border: 1px solid rgba(0,180,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-tile-icon svg { width: 26px; height: 26px; color: var(--teal); }
.icon-tile-name {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
}
.icon-tile-desc { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border: 1px solid rgba(0,180,200,0.22);
}
.area-cell {
  background: var(--mid-dark);
  padding: 32px 22px;
  text-align: center;
  border-right: 1px solid rgba(0,180,200,0.20);
  border-bottom: 1px solid rgba(0,180,200,0.20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}
.area-cell:hover { background: rgba(0,180,200,0.06); }
.area-cell-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,180,200,0.20);
  border: 1px solid rgba(0,180,200,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-cell-icon svg { width: 22px; height: 22px; color: var(--teal); }
.area-cell-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}

/* ============================================================
   COMPASS 6-LENS
   ============================================================ */
.compass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid rgba(0,180,200,0.22);
}
.compass-cell {
  background: var(--mid-dark);
  padding: 34px 28px;
  border-right: 1px solid rgba(0,180,200,0.28);
  border-bottom: 1px solid rgba(0,180,200,0.28);
  border-top: 2px solid rgba(0,180,200,0.2);
  transition: border-top-color 0.2s, background 0.2s;
}
.compass-cell:hover { border-top-color: var(--teal); background: rgba(0,180,200,0.04); }
.compass-q {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.compass-sub {
  font-size: 8.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
  font-weight: 700;
}
.compass-cell p { color: rgba(255,255,255,0.8); font-size: 13.5px; margin: 0; line-height: 1.62; }

/* ============================================================
   FIDIC GRID
   ============================================================ */
.fidic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.fidic-tag {
  padding: 16px 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--offwhite);
  border: 1px solid var(--lgrey);
  border-top: 2px solid;
  transition: background 0.2s;
  cursor: default;
}
.fidic-tag:hover { background: var(--lgrey); }

/* ============================================================
   10-PHASE TABLE
   ============================================================ */
.phase-table { margin-top: 36px; overflow-x: auto; }
.phase-table table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 900px; }
.phase-table th {
  background: var(--midnight);
  color: var(--white);
  padding: 0;
  text-align: center;
  border-right: 1px solid rgba(0,180,200,0.22);
  border-bottom: 2px solid var(--teal);
  vertical-align: top;
}
.phase-th-inner { padding: 14px 8px 12px; }
.phase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--midnight);
  font-size: 9.5px;
  font-weight: 900;
  margin: 0 auto 6px;
}
.phase-name {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--white);
}
.phase-table th:last-child { border-right: none; }
.phase-table td {
  padding: 10px 8px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dgrey);
  border-right: 1px solid var(--lgrey);
  border-bottom: 1px solid var(--lgrey);
  background: var(--white);
  line-height: 1.3;
}
.phase-table tr:nth-child(even) td { background: var(--offwhite); }
.phase-table td:last-child { border-right: none; }

/* ============================================================
   STEP SEQUENCE
   ============================================================ */
.step-sequence {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
  margin-top: 44px;
}
.step-box {
  background: var(--mid-dark);
  padding: 36px 22px;
  text-align: center;
  border: 1px solid rgba(0,180,200,0.20);
  border-top: 2px solid var(--teal);
}
.step-num {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.7;
}
.step-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.step-desc { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.62; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--midnight);
  font-size: 16px;
  font-weight: 900;
}

/* ============================================================
   TRAINING EQUATION
   ============================================================ */
.equation {
  display: flex;
  align-items: stretch;
  margin-top: 44px;
  border: 1px solid rgba(0,180,200,0.25);
}
.eq-part {
  flex: 1;
  background: var(--mid-dark);
  padding: 40px 24px;
  text-align: center;
  border-top: 2px solid rgba(0,180,200,0.25);
}
.eq-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 14px;
}
.eq-part p { color: rgba(255,255,255,0.55); font-size: 13px; margin: 0; line-height: 1.58; }
.eq-op {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--midnight);
  font-size: 22px;
  font-weight: 900;
  width: 40px;
  flex-shrink: 0;
}
.eq-result {
  flex: 1.3;
  background: var(--teal);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.eq-result .eq-title { color: var(--midnight); margin-bottom: 10px; font-size: 20px; }
.eq-result p { color: rgba(13,27,42,0.65); font-size: 13px; margin: 0; }

/* ============================================================
   RISK GRID
   ============================================================ */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid rgba(0,180,200,0.22);
}
.risk-cell {
  background: var(--mid-dark);
  padding: 30px 24px;
  border-right: 1px solid rgba(0,180,200,0.28);
  border-bottom: 1px solid rgba(0,180,200,0.28);
  border-top: 2px solid rgba(0,180,200,0.2);
}
.risk-cell.gold { border-top-color: var(--gold); }
.risk-cell.teal { border-top-color: rgba(0,180,200,0.5); }
.risk-cell h4 { color: var(--teal); margin-bottom: 18px; }
.risk-cell ul { list-style: none; padding: 0; }
.risk-cell ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.risk-cell ul li:last-child { border-bottom: none; }

/* ============================================================
   SERVICE GRID
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid var(--lgrey);
}
.service-cell {
  background: var(--white);
  padding: 32px 26px;
  border-right: 1px solid var(--lgrey);
  border-top: 3px solid var(--teal);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-cell:last-child { border-right: none; }
.service-cell:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service-cell h3 { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 18px; }
.service-cell ul { list-style: none; padding: 0; }
.service-cell ul li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dgrey);
  padding: 7px 0;
  border-bottom: 1px solid var(--lgrey);
}
.service-cell ul li:last-child { border-bottom: none; }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.hbox {
  background: var(--offwhite);
  border-left: 2px solid var(--teal);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.hbox:hover {
  background: #e8eff2;
  border-left-color: var(--teal-dark);
  transform: translateX(3px);
}
.hbox h4 { color: var(--midnight); }
.hbox ul { padding-left: 18px; }
.hbox ul li { font-size: 14px; color: var(--dgrey); margin-bottom: 8px; }

/* ============================================================
   SUMMARY / CLOSE-OUT SECTION
   ============================================================ */
.summary-section {
  background: linear-gradient(160deg, var(--midnight) 0%, var(--mid-dark) 100%);
  padding: 72px 0;
  border-top: 1px solid rgba(0,180,200,0.2);
  position: relative;
  overflow: hidden;
}
.summary-section::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,200,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.summary-section h3 {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,180,200,0.7);
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--teal);
}
.summary-list { list-style: none; padding: 0; margin-bottom: 32px; }
.summary-list li {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,180,200,0.20);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.summary-list li::before { content: '—'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.summary-link {
  display: inline-block;
  background: var(--teal);
  color: var(--midnight);
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}
.summary-link:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,200,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--mid-dark);
  padding: 56px 56px 0;
  border-top: 1px solid rgba(0,180,200,0.22);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-contact h5 {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer-contact p,
.footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--teal); }
.footer-assoc { text-align: right; }
.footer-assoc p {
  font-size: 8.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-assoc a {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.footer-assoc a:hover { color: var(--teal-dark); }
.footer-assoc .assoc-sub {
  font-size: 8.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  display: block;
}
.footer-nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,180,200,0.28);
}
.footer-nav a {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(0,180,200,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,200,0.2); }
.btn-gold   { background: var(--gold); color: var(--midnight); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-navy   { background: var(--midnight); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn-navy:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-primary { background: var(--teal); color: var(--midnight); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: none; }

.areas-grid.reveal .area-cell:nth-child(1) { transition-delay: 0.04s; }
.areas-grid.reveal .area-cell:nth-child(2) { transition-delay: 0.08s; }
.areas-grid.reveal .area-cell:nth-child(3) { transition-delay: 0.12s; }
.areas-grid.reveal .area-cell:nth-child(4) { transition-delay: 0.16s; }
.areas-grid.reveal .area-cell:nth-child(5) { transition-delay: 0.20s; }
.areas-grid.reveal .area-cell:nth-child(6) { transition-delay: 0.24s; }

/* ============================================================
   BROCHURE FRAMES (legacy — kept for compatibility)
   ============================================================ */
.brochure-frame {
  background: var(--white);
  border-radius: 4px;
  padding: 24px 28px 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,180,200,0.28);
  margin-top: 32px;
  position: relative;
}
.brochure-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0,180,200,0.2) 100%);
}
.brochure-frame img { width: 100%; display: block; }
.brochure-frame-light {
  border: 1px solid var(--lgrey);
  border-top: 2px solid var(--teal);
  border-radius: 2px;
  padding: 20px;
  margin-top: 20px;
  background: var(--offwhite);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.brochure-frame-light img { width: 100%; display: block; }

/* ============================================================
   LEGAL NOTE — small-print callout
   ============================================================ */
.legal-note {
  background: var(--offwhite);
  border: 1px solid var(--lgrey);
  border-left: 2px solid rgba(0,180,200,0.4);
  padding: 14px 20px;
  font-size: 12px;
  color: var(--dgrey);
  line-height: 1.6;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.rule {
  border: none;
  border-top: 1px solid var(--lgrey);
  margin: 40px 0;
}
.rule-teal { border-top-color: rgba(0,180,200,0.2); }

/* ============================================================
   STAT CALLOUT
   ============================================================ */
.stat-callout {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.stat-num {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .site-header { padding: 0 24px; height: 70px; }
  .nav-tiles { top: 70px; }
  .nav-tile-grid { grid-template-columns: repeat(4, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .icon-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .compass-grid { grid-template-columns: 1fr 1fr; }
  .fidic-grid { grid-template-columns: repeat(3, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .step-sequence { grid-template-columns: 1fr; }
  .step-arrow { width: 100%; height: 30px; }
  .equation { flex-direction: column; }
  .eq-op { width: 100%; height: 36px; }
  .hero-home { padding: 72px 28px; }
  .hero-home h1 { font-size: 64px; letter-spacing: 12px; }
  .page-hero { padding: 52px 28px 48px; }
  .page-hero h1 { font-size: 40px; }
  .container { padding: 0 28px; }
  .site-footer { padding: 44px 28px 0; }
  section { padding: 60px 0; }
  .dark-section { padding: 60px 0; }
}

@media (max-width: 600px) {
  .nav-tile-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-tile { padding: 10px 3px 9px; gap: 5px; }
  .nav-tile svg { width: 20px; height: 20px; }
  .nav-tile-lbl { font-size: 7px; letter-spacing: 0.3px; }
  .fidic-grid { grid-template-columns: repeat(2, 1fr); }
  .header-sub { display: none; }
  .hero-home h1 { font-size: 46px; letter-spacing: 7px; }
  .service-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav-tiles, .site-header, .summary-section { display: none; }
  .page-hero { padding: 20px; background: none; }
  .page-hero h1 { color: #000; }
}

/* ============================================================
   PROJECT PHASES STRIP — 9-phase chevron flow
   ============================================================ */
.phases-strip {
  background: var(--mid-dark);
  border-bottom: 1px solid rgba(0,180,200,0.28);
  padding: 0;
  overflow-x: auto;
}
.phases-flow {
  display: flex;
  align-items: stretch;
  height: 64px;
  width: 100%;
}
/* Chevron shape via clip-path */
.phase-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 6px 0 18px;
  background: rgba(15,36,56,0.7);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
  margin-right: 2px;
  text-decoration: none;
  cursor: default;
  transition: background 0.15s;
  position: relative;
  text-align: center;
}
.phase-step:first-child {
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-left: 10px;
}
.phase-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12px 50%);
  margin-right: 0;
  padding-right: 10px;
}
.phase-step:hover { background: rgba(0,180,200,0.22); }

/* Active / highlighted phase */
.phase-step.ph-active {
  background: var(--teal);
}
.phase-step.ph-active .ps-num {
  background: var(--midnight);
  color: var(--teal);
}
.phase-step.ph-active .ps-name { color: var(--midnight); opacity: 1; }

/* Dimmed phases (not active) */
.phase-step.ph-dim { opacity: 0.35; }

.ps-num {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--teal);
  background: rgba(0,180,200,0.15);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.ps-name {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  max-width: 70px;
}

@media (max-width: 960px) {
  .ps-name { font-size: 6.5px; letter-spacing: 0.5px; }
  .phase-step { padding: 0 4px 0 14px; }
}
