/* ============================================================
   NORTHWELL — AI AUTOMATION ADVISORY
   Shared Stylesheet
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #1B2B4B;
  --navy-mid:   #243554;
  --gold:       #8B6914;
  --gold-light: #C49A28;
  --cream:      #F7F4EF;
  --white:      #FFFFFF;
  --text-dark:  #1B2B4B;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --border:     #E2E0DB;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --max-width: 1200px;
  --section-pad: 5rem 1.5rem;
  --section-pad-sm: 3rem 1.5rem;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(27,43,75,0.10);
  --shadow-lg: 0 8px 40px rgba(27,43,75,0.15);

  --transition: 0.25s ease;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; }

p { color: var(--text-mid); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 700px;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── Section Backgrounds ── */
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p  { color: rgba(255,255,255,0.75); }
.bg-navy .eyebrow { color: var(--gold-light); }
.bg-gold   { background: var(--gold); }

/* ── Section Padding ── */
.section     { padding: var(--section-pad); }
.section-sm  { padding: var(--section-pad-sm); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(196,154,40,0.30), 0 2px 20px rgba(27,43,75,0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 1px 0 rgba(196,154,40,0.35), 0 6px 40px rgba(27,43,75,0.12);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Logo: show original colours on a white chip so it pops on the dark nav */

/* Text shown only as fallback when image fails to load */
.nav-logo-text {
  display: none;
  flex-direction: column;
}
.nav-logo.logo-fallback .nav-logo-text {
  display: flex;
}

.nav-logo-wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 3px;
  text-transform: uppercase;
}
.nav-logo-wordmark { color: var(--navy); }
.nav-logo-sub { color: var(--gold); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  color: var(--text-dark);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-links .btn { color: var(--white); padding: 0.6rem 1.4rem; font-size: 0.85rem; box-shadow: 0 2px 12px rgba(139,105,20,0.25); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  aria-label: "Toggle menu";
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(27,43,75,0.12);
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .btn { margin-top: 1rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.80);
  padding: 4rem 1.5rem 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo img { height: 48px; width: auto; background: #ffffff; padding: 4px 8px; border-radius: 5px; }
.footer-logo-text .footer-wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-logo-text .footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 500;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col p, .footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  display: block;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.70); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.footer-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  background: #0E182C url('../assets/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 9rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Dark overlay so background image doesn't fight text */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 36, 0.87);
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  margin-bottom: 1.75rem;
  line-height: 1.07;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual — Unsplash Image */
.hero-visual {
  position: relative;
  height: clamp(520px, 72vh, 740px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border-left: 3px solid var(--gold-light);
  border-bottom: 3px solid var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(196,154,40,0.20),
    0 32px 80px rgba(0,0,0,0.70);
  display: block;
}

/* Vignette: darken bottom edge and blend into the dark hero background */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    160deg,
    rgba(10,17,36,0.10) 0%,
    transparent 40%,
    rgba(10,17,36,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Attribution tag */
.hero-visual-credit {
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  z-index: 2;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* Trust Bar */
.trust-bar {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 1.25rem 1.5rem;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.trust-bar-flags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-bar-flags span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   SECTION 2 — PROBLEM (dark navy)
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
}

/* ============================================================
   SECTION 3 — WHAT WE DO
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.pillar-card {
  border-left: 4px solid var(--gold);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.pillars-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   SECTION 4 — ABOUT SPLIT (shared homepage + about page)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-body { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }
.about-body p + p { margin-top: 1rem; }

.about-cta { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Differentiator grid (homepage Section 4 right column) */
.differentiator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.diff-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.diff-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.diff-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.diff-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Why stats column (about page Section 2) */
.why-stats-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-stat {
  padding: 1.5rem;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.why-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.why-stat-label {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Legacy credential card — kept for compatibility */
.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.credential-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.credential-card .cred-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.credential-card .cred-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   SECTION 5 — INDUSTRIES
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Primary featured industry cards (homepage) */
.industry-grid-primary { margin-bottom: 2rem; }

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.industry-card-primary {
  border-top: 3px solid var(--gold);
}

.industry-outcomes {
  list-style: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.industry-outcomes li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.industry-outcomes li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

/* Secondary verticals strip */
.industry-secondary-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.industry-also {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.industry-secondary-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.industry-chip:hover {
  border-color: var(--gold);
  background: rgba(139,105,20,0.06);
  color: var(--gold);
}

.industry-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.industry-card p {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================
   ABOUT PAGE — APPROACH / SECTOR / CAPABILITIES SECTIONS
   ============================================================ */

/* Approach cards (3-col, navy bg) */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}

.approach-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.approach-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.approach-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.approach-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
}

.approach-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
}

.approach-list li::before {
  content: '✓';
  color: var(--gold-light);
  flex-shrink: 0;
  font-weight: 700;
}

/* Sector deep-dive cards (about page) */
.sector-deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.sector-deep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.sector-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.sector-deep-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.sector-deep-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sector-use-cases {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.sector-use-cases strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.sector-use-cases ul { list-style: none; }

.sector-use-cases ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
}

.sector-use-cases ul li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

/* Credentials strip (about page capabilities section) */
.credentials-strip {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cred-strip-item {
  flex: 1;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.cred-strip-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cred-strip-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
  line-height: 1.4;
}

.cred-strip-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 6 — STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

.stats-source {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
}

/* ============================================================
   SECTION 7 — SERVICE TIERS PREVIEW
   ============================================================ */
.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-preview-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(139,105,20,0.08);
}

.badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.service-preview-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.service-preview-card p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-preview-card .btn {
  align-self: flex-start;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
}

/* ============================================================
   SECTION 8 — CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gold);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.90);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.cta-banner .btn-navy {
  background: var(--navy);
  border-color: var(--navy);
}
.cta-banner .btn-navy:hover {
  background: var(--navy-mid);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.page-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.page-hero-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: translateX(-50%);
}

.timeline-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.2rem;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px rgba(139,105,20,0.3);
  z-index: 1;
}

.timeline-entry:nth-child(odd) .timeline-content { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-entry:nth-child(odd) .timeline-spacer { grid-column: 2; grid-row: 1; }
.timeline-entry:nth-child(even) .timeline-spacer { grid-column: 1; grid-row: 1; }
.timeline-entry:nth-child(even) .timeline-content { grid-column: 2; grid-row: 1; }

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.timeline-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Credentials */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.cred-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
}

.cred-block h3 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.cred-block .cred-inst {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}

.cred-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* Competencies */
.competency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.competency-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.competency-col ul li:last-child { border-bottom: none; }

.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.philosophy-card .phil-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.philosophy-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.philosophy-card p { font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

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

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

.delivery-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.delivery-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.delivery-card p { font-size: 0.82rem; line-height: 1.6; }

/* Full pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}

.pricing-card.featured-gold {
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(139,105,20,0.03) 0%, var(--white) 100%);
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.pricing-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.pricing-desc {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.pricing-deliverables {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-deliverables li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(226,224,219,0.5);
  line-height: 1.5;
}

.pricing-deliverables li:last-child { border-bottom: none; }
.pricing-deliverables .check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.pricing-best {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.pricing-card .btn {
  align-self: stretch;
  text-align: center;
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.process-step {
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}

.step-num {
  width: 5rem; height: 5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}

.process-step h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.process-step p { font-size: 0.875rem; line-height: 1.65; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-q {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-q::before {
  content: 'Q.';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-left: 1.75rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-col h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

/* Calendly Placeholder */
.calendly-placeholder {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.calendly-placeholder .cal-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.calendly-placeholder h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.calendly-placeholder p { font-size: 0.9rem; margin-bottom: 1.25rem; max-width: 360px; margin-left: auto; margin-right: auto; }

/* Contact Details */
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-detail-item .icon { font-size: 1.1rem; flex-shrink: 0; color: var(--gold); margin-top: 1px; }
.contact-detail-item a { color: var(--navy); font-weight: 500; }
.contact-detail-item a:hover { color: var(--gold); }

.expect-list { margin-top: 0.75rem; }
.expect-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.expect-list li:last-child { border-bottom: none; }
.expect-list .dot { color: var(--gold); flex-shrink: 0; font-weight: 700; }

.timezone-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(139,105,20,0.10);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}

.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #c0392b; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.55;
}

.form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid #2ecc71;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: #1a7a4a;
  font-weight: 500;
}

/* FAQ Quick strip */
.faq-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-quick-card .faq-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.faq-quick-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--navy); }
.faq-quick-card p { font-size: 0.875rem; line-height: 1.65; }

/* Industries compact */
.industry-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.industry-compact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.industry-compact-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  /* Trust bar: pull out of absolute flow on smaller screens */
  .hero {
    padding: 8rem 1.5rem 0;
    min-height: auto;
  }
  .hero-inner { padding-bottom: 3.5rem; }
  .trust-bar { position: relative; bottom: auto; left: auto; right: auto; }

  .problem-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .differentiator-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid-primary { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-preview-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .delivery-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .competency-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-quick { grid-template-columns: 1fr; }
  .industry-compact-grid { grid-template-columns: repeat(2, 1fr); }

  /* About page */
  .approach-grid { grid-template-columns: 1fr; }
  .sector-deep-grid { grid-template-columns: 1fr; }
  .credentials-strip { flex-wrap: wrap; }
  .cred-strip-item { flex: 1 1 calc(50% - 1px); }
  .cred-strip-divider:nth-child(4) { display: none; }
  .why-stats-col { gap: 1rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 7rem 1.25rem 0; }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .hero-sub { font-size: 1rem; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .trust-bar-flags { gap: 0.75rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .differentiator-grid { grid-template-columns: 1fr 1fr; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; text-align: center; }
  .industry-compact-grid { grid-template-columns: 1fr; }
  .industry-secondary-row { flex-direction: column; align-items: flex-start; }
  .credentials-strip { flex-direction: column; }
  .cred-strip-item { width: 100%; }
  .cred-strip-divider { width: 100%; height: 1px; }
  .service-preview-grid { max-width: 100%; }
  .cta-banner { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 7rem 1.25rem 3.5rem; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .differentiator-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .trust-bar-flags { flex-direction: column; gap: 0.4rem; }
  .section-header h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .why-stat-num { font-size: 1.8rem; }
  .nav-inner { height: 72px; }
  .nav-logo img { height: 54px; }
}

/* ── Focus States ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
