/* ═══════════════════════════════════════════
   TwentyThreeHundred — Full Rebuild v4
   Palette: #EA5B0C orange  #003052 navy
            #AFDBF5 sky     #A8C686 green
            #848482 grey
   Font: Noto Sans (brand spec)
═══════════════════════════════════════════ */

:root {
  --orange:  #EA5B0C;
  --orange-d:#C44D0A;
  --navy:    #003052;
  --navy-d:  #001F38;
  --sky:     #AFDBF5;
  --sky-d:   #7BBFE8;
  --green:   #A8C686;
  --green-d: #7EA85A;
  --grey:    #848482;
  --grey-l:  #F0F0EF;
  --ink:     #1A1A1A;
  --muted:   #4D5560;
  --line:    #DCDCDC;
  --white:   #FFFFFF;
  --font:    'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ── HEADER ─────────────────────────────── */
header {
  background: var(--orange);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo-left img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
   margin-top: 8px;
}
.logo-left-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-right img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.logo-right-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo-right-text span { display: block; }

nav {
  display: flex;
  align-items: stretch;
  height: 70px;
  flex: 1;
  justify-content: center;
}
nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
nav a:hover { color: white; border-bottom-color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.08); }
nav a.active { color: white; border-bottom-color: white; }

/* ── ACCENT BAR ─────────────────────────── */
.accent-bar { height: 3px; background: var(--navy); }

/* ── PAGE HERO ──────────────────────────── */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,91,12,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.page-eyebrow::before { content: ""; display: block; width: 28px; height: 2px; background: var(--orange); }
.page-hero h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; max-width: 55ch; margin-bottom: 18px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 55ch; line-height: 1.75; }

/* ── IMAGE HERO ─────────────────────────── */
.img-hero { position: relative; overflow: hidden; }
.img-hero img.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.img-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,30,56,0.88) 0%, rgba(0,30,56,0.55) 55%, rgba(0,30,56,0.15) 100%);
  display: flex; align-items: center;
}
.img-hero-content { padding: 0 40px; }
.img-hero-content h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; color: white; margin-bottom: 16px; }
.img-hero-content p { font-size: 1.02rem; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 55ch; margin-bottom: 28px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); margin-bottom: 18px; }
.hero-eyebrow::before { content: ""; display: block; width: 24px; height: 2px; background: var(--sky); }

/* ── SECTIONS ───────────────────────────── */
.section-white { background: var(--white); padding: 72px 0; }
.section-grey { background: var(--grey-l); padding: 72px 0; }
.section-navy { background: var(--navy); padding: 72px 0; color: white; }
.section-sky { background: var(--sky); padding: 72px 0; }
.section-green { background: var(--green); padding: 72px 0; }
.section-orange { background: var(--orange); padding: 72px 0; color: white; }

.section-eyebrow {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ""; display: block; width: 22px; height: 2px; background: var(--orange); flex-shrink: 0; }
.section-eyebrow.light { color: var(--sky); }
.section-eyebrow.light::before { background: var(--sky); }
.section-eyebrow.white-ey { color: white; }
.section-eyebrow.white-ey::before { background: white; }

.banner-quote {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}

h2 { font-family: var(--font); font-size: 2rem; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 18px; }
h2.white { color: white; }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
h3.white { color: white; }
p.lead { font-size: 1rem; color: var(--muted); line-height: 1.78; margin-bottom: 14px; }
p.lead.white { color: rgba(255,255,255,0.72); }

/* ── BUTTONS ────────────────────────────── */
.btn { display: inline-block; padding: 12px 26px; font-family: var(--font); font-weight: 700; font-size: 0.88rem; border-radius: 3px; transition: all 0.15s; cursor: pointer; letter-spacing: 0.01em; border: none; }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-d); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-d); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--grey-l); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); padding: 12px 26px; font-family: var(--font); font-weight: 700; font-size: 0.88rem; border-radius: 3px; transition: all 0.15s; display: inline-block; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── GRIDS ──────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.start { align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.two-by-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CARDS ──────────────────────────────── */
.card { background: white; border: 1px solid var(--line); border-radius: 4px; padding: 28px; }
.card-top-orange { border-top: 4px solid var(--orange); }
.card-top-sky { border-top: 4px solid var(--sky-d); }
.card-top-green { border-top: 4px solid var(--green-d); }
.card-top-navy { border-top: 4px solid var(--navy); }
.card-top-grey { border-top: 4px solid var(--grey); }
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card h3 { margin-bottom: 10px; }

/* ── APPROACH CARDS ─────────────────────── */
.approach-card { background: white; border-radius: 4px; padding: 24px 26px; border-left: 5px solid var(--orange); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.approach-card.sky { border-left-color: var(--sky-d); }
.approach-card.green { border-left-color: var(--green-d); }
.approach-card.navy { border-left-color: var(--navy); }
.approach-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.approach-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── PILLAR CARDS ───────────────────────── */
.pillar-card { border-radius: 4px; padding: 32px 28px; text-align: center; background: white; border: 1px solid var(--line); }
.pillar-from { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.pillar-to { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.pillar-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── LIFECYCLE CIRCLE ───────────────────── */
.lifecycle-circle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  position: relative;
}
.lifecycle-circle::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--sky-d), var(--green-d), var(--grey), var(--orange));
  opacity: 0.25;
  border-radius: 2px;
}
.lc-node { display: flex; flex-direction: column; align-items: center; text-align: center; width: 150px; }
.lc-circle {
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 0.75rem; font-weight: 700; color: white;
  text-align: center; line-height: 1.3; padding: 10px;
  position: relative; z-index: 1;
}
.lc-node h4 { font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 5px; }
.lc-node p { font-size: 0.74rem; color: rgba(255,255,255,0.52); line-height: 1.5; }

/* ── SERVICE LIST ───────────────────────── */
.svc-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.svc-row {
  display: grid;
  grid-template-columns: 64px 190px 1fr;
  align-items: start;
  gap: 28px;
  padding: 26px 32px;
  background: white;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: #FAFBFC; }
.svc-row-icon { width: 52px; height: 52px; object-fit: contain; margin-top: 4px; }
.svc-row-name { font-size: 0.98rem; font-weight: 700; color: var(--navy); line-height: 1.3; padding-top: 4px; }
.svc-row-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.svc-tag { font-size: 0.7rem; font-weight: 600; color: var(--orange); background: rgba(234,91,12,0.08); border: 1px solid rgba(234,91,12,0.22); padding: 3px 9px; border-radius: 100px; }
.svc-row:nth-child(1) { border-left: 5px solid var(--orange); }
.svc-row:nth-child(2) { border-left: 5px solid var(--sky-d); }
.svc-row:nth-child(3) { border-left: 5px solid var(--green-d); }
.svc-row:nth-child(4) { border-left: 5px solid var(--navy); }
.svc-row:nth-child(5) { border-left: 5px solid var(--grey); }
.svc-row:nth-child(6) { border-left: 5px solid var(--orange); }
.svc-row:nth-child(7) { border-left: 5px solid var(--sky-d); }
.svc-row:nth-child(8) { border-left: 5px solid var(--green-d); }
.svc-row:nth-child(9) { border-left: 5px solid var(--navy); }
.svc-row:nth-child(10) { border-left: 5px solid var(--grey); }

/* ── STATS ROW ──────────────────────────── */
.stats-row { display: flex; gap: 0; background: var(--orange); }
.stat { flex: 1; padding: 26px 32px; border-right: 1px solid rgba(255,255,255,0.2); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* ── IMAGE BLOCKS ───────────────────────── */
.img-block { border-radius: 4px; overflow: hidden; }
.img-block img { width: 100%; height: 300px; object-fit: cover; display: block; }
.img-block-tall img { height: 400px; }

/* ── CONTACT CARDS ──────────────────────── */
.contact-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-card-logo {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  text-align: right;
  letter-spacing: -0.02em;
}
.contact-card h3 { color: white; margin-bottom: 4px; font-size: 1.1rem; }
.contact-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.contact-row svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.55; fill: currentColor; }
.contact-row a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.contact-row a:hover { color: white; }

/* ── FOOTER ─────────────────────────────── */
footer { background: var(--navy-d); color: rgba(255,255,255,0.5); border-top: 4px solid var(--orange); }
.footer-main { padding: 48px 0 36px; display: grid; grid-template-columns: 280px 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.42); margin-top: 16px; line-height: 1.65; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.52); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 8px; }
.footer-cert { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge { background: rgba(168,198,134,0.15); border: 1px solid rgba(168,198,134,0.4); color: var(--green); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.03em; }

/* ── SHARED FOOTER HTML ─────────────────── */
.footer-brand-name { font-weight: 800; font-size: 1.1rem; color: white; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 52px 1fr; }
  .svc-row-name { grid-column: 2; }
  .svc-row-body { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .two-col, .three-col { grid-template-columns: 1fr; gap: 28px; }
  .two-by-two { grid-template-columns: 1fr; }
  .page-hero h1, .img-hero-content h1 { font-size: 1.9rem; }
  h2 { font-size: 1.7rem; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .wrap { padding: 0 20px; }
  nav a { padding: 0 9px; font-size: 0.78rem; }
  .stats-row { flex-wrap: wrap; }
  .stat { min-width: 50%; }
}
@media (max-width: 640px) {
  nav a:not(.active) { display: none; }
  .lifecycle-circle::before { display: none; }
}

@media (max-width: 640px) {
  nav a:not(.active) { display: none; }
  .lifecycle-circle::before { display: none; }
}
