/* ============================================================
   INFLUENCE INTEGRATION — Brand-Compliant Design System
   Source: Influence Integration Brand Identity Guide
   
   Typography: Montserrat (headlines/logo/CTAs) + Inter (body)
   Palette (exact from brand guide):
     Influence Navy   #012052  — primary logo, headings, footer
     Deep Midnight    #020832  — dark overlays, premium contrast
     Integration Blue #0454A8  — secondary accents, links, digital
     Growth Gold      #DAA222  — arrows, CTAs, emphasis, key metrics
     Hero Navy        #002144  — hero overlays, dark web sections
     Hero Gold        #E49F55  — photography warmth, secondary gold
     Warm White       #FDF6EA  — soft backgrounds, cards
     Executive White  #FFFFFF  — clean space, reversed text
   
   Color ratios: 55% Navy · 25% White/warm white · 10% Gold · 10% Blue
   ============================================================ */

/* === IMPORT FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === TOKENS === */
:root {
  /* Brand Colors — exact from brand guide */
  --influence-navy:     #012052;
  --deep-midnight:      #020832;
  --integration-blue:   #0454A8;
  --growth-gold:        #DAA222;
  --hero-navy:          #002144;
  --hero-gold:          #E49F55;
  --warm-white:         #FDF6EA;
  --executive-white:    #FFFFFF;

  /* Semantic aliases */
  --color-bg:           var(--warm-white);
  --color-surface:      var(--executive-white);
  --color-surface-alt:  #EEF2FA;
  --color-text:         #0D1729;
  --color-text-muted:   #4A5568;
  --color-text-faint:   #8A97AA;
  --color-border:       #D2DAEA;
  --color-primary:      var(--influence-navy);
  --color-accent:       var(--growth-gold);
  --color-link:         var(--integration-blue);

  /* Typography — per brand guide */
  --font-headline: 'Montserrat', 'Gotham', 'Proxima Nova', sans-serif;
  --font-body:     'Inter', 'Lato', 'Open Sans', sans-serif;

  /* Type scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   clamp(2rem, 1rem + 3vw, 3rem);
  --text-hero:  clamp(2.75rem, 2rem + 4vw, 5.5rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem;

  /* Radii */
  --r-sm: 0.25rem;  --r-md: 0.5rem;
  --r-lg: 0.75rem;  --r-xl: 1rem;   --r-2xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(1,32,82,0.08);
  --shadow-md: 0 4px 20px rgba(1,32,82,0.12);
  --shadow-lg: 0 12px 48px rgba(1,32,82,0.18);
  --shadow-gold: 0 0 0 3px rgba(218,162,34,0.3);
  --shadow-blue: 0 0 0 3px rgba(4,84,168,0.2);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 500ms;
  --t-reveal: 650ms;
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
ul[role="list"] { list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }
input, button, textarea, select { font: inherit; color: inherit; }
address { font-style: normal; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-5), 5vw, var(--sp-16));
}
.section { padding-block: clamp(var(--sp-16), 7vw, var(--sp-24)); }
.section-header.centered {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(var(--sp-12), 5vw, var(--sp-16));
}

/* === BRAND TYPOGRAPHY === */
/* Eyebrow: Montserrat 700, all-caps, wide tracking, gold */
.section-eyebrow {
  display: block;
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--growth-gold);
  margin-bottom: var(--sp-3);
}

/* Section titles: Montserrat ExtraBold, navy */
.section-title {
  font-family: var(--font-headline);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--influence-navy);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}

.section-sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 62ch;
  margin-inline: auto;
}
.section-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 60ch;
  margin-bottom: var(--sp-5);
}

/* Gold rule accent — used in brand guide for section separators */
.gold-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--growth-gold);
  border-radius: 2px;
  margin-bottom: var(--sp-5);
}
.gold-rule.centered { margin-inline: auto; }

/* === BUTTONS — per brand guide: Montserrat Bold, navy/white/gold by context === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.8em 1.75em;
  font-family: var(--font-headline);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
/* Gold CTA — primary action (brand guide: gold for CTAs) */
.btn--gold {
  background: var(--growth-gold);
  color: var(--deep-midnight);
  border-color: var(--growth-gold);
}
.btn--gold:hover {
  background: #c4911a;
  border-color: #c4911a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* Ghost — reversed on dark */
.btn--ghost {
  background: transparent;
  color: var(--executive-white);
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--executive-white);
}
/* Outline gold — footer / secondary */
.btn--gold-outline {
  background: transparent;
  color: var(--growth-gold);
  border-color: var(--growth-gold);
  font-size: var(--text-xs);
  padding: 0.65em 1.4em;
}
.btn--gold-outline:hover {
  background: var(--growth-gold);
  color: var(--deep-midnight);
}
/* Blue outlined — digital/tech context (Integration Blue) */
.btn--blue {
  background: var(--integration-blue);
  color: var(--executive-white);
  border-color: var(--integration-blue);
}
.btn--blue:hover {
  background: #034090;
  border-color: #034090;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-reveal) var(--ease),
              transform var(--t-reveal) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }

/* Hero fade-ups */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp var(--t-slow) var(--ease) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease),
              backdrop-filter var(--t-slow) var(--ease);
}
.nav.scrolled {
  background: var(--influence-navy);
  box-shadow: 0 2px 24px rgba(1,32,82,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-5), 5vw, var(--sp-16));
  gap: var(--sp-8);
}

/* Logo — real logo PNG with transparent background */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  /* Logo has navy text — invert to white for dark nav */
  filter: brightness(0) invert(1);
  object-fit: contain;
}
/* Footer logo image */
.footer__logo-img {
  height: 50px;
  width: auto;
  max-width: 240px;
  display: block;
  margin-bottom: var(--sp-4);
  /* Invert navy logo to white on dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
}
.nav__link {
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--growth-gold);
  transition: width var(--t-base) var(--ease);
}
.nav__link:hover { color: var(--executive-white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--growth-gold); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-midnight);
  background: var(--growth-gold);
  padding: 0.6em 1.2em;
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease);
}
.nav__cta:hover {
  background: #c4911a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__mobile-toggle span {
  display: block; height: 2px;
  background: var(--executive-white);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}
.nav__mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO ===
   Brand guide: "white and gold typography over deep navy imagery with growth iconography"
   H1: Montserrat Light/Regular, uppercase, generous spacing
*/
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Overlay: light at top to show golden sky, darker center/bottom for text */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1,32,82,0.25) 0%,
    rgba(1,32,82,0.45) 35%,
    rgba(2,8,50,0.72) 65%,
    rgba(2,8,50,0.88) 100%
  );
}
/* Subtle grid overlay per brand guide's "integrated system" feel */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218,162,34,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218,162,34,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Gold left accent bar */
.hero__accent-bar {
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--growth-gold) 30%, var(--hero-gold) 70%, transparent);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-inline: clamp(var(--sp-5), 6vw, var(--sp-16));
  padding-top: var(--nav-h);
}
/* Brand name above eyebrow — large, elegant, white */
.hero__brand {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 1rem + 1.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--executive-white);
  margin-bottom: var(--sp-3);
}
/* Brand guide: eyebrow in gold, uppercase Montserrat */
.hero__eyebrow {
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--growth-gold);
  margin-bottom: var(--sp-6);
}
/* Brand guide H1: Montserrat Light/Regular, uppercase, white, generous spacing */
.hero__headline {
  font-family: var(--font-headline);
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--executive-white);
  line-height: 1.05;
  margin-bottom: var(--sp-4);
}
/* "Grow." — gold, slightly heavier weight for contrast */
.hero__headline-accent {
  color: var(--growth-gold);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
}
/* Gold rule under headline — brand guide section rule treatment */
.hero__rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, var(--growth-gold), var(--hero-gold));
  border-radius: 2px;
  margin: var(--sp-6) auto;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.scroll-dot { animation: scrollDot 2.5s ease-in-out infinite; }
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(9px); opacity: 0; }
}

/* === PROMISE STRIP — navy band, Integration Blue sparingly === */
.promise-strip {
  background: var(--influence-navy);
  border-top: 1px solid rgba(218,162,34,0.25);
  border-bottom: 1px solid rgba(218,162,34,0.15);
  padding-block: var(--sp-5);
}
.promise-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-5), 5vw, var(--sp-16));
  flex-wrap: wrap;
}
.promise-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.promise-strip__item svg { color: var(--growth-gold); flex-shrink: 0; }
.promise-strip__divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* === ABOUT === */
.about { background: var(--warm-white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: center;
}
.about__visual { position: relative; }
.about__img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
/* Brand-guide badge: gold for key metrics */
.about__img-badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: var(--influence-navy);
  border: 2px solid var(--growth-gold);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  text-align: center;
  backdrop-filter: blur(8px);
}
.badge-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--growth-gold);
  line-height: 1;
}
.badge-label {
  display: block;
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: var(--sp-1);
}
.about__brands-card {
  background: var(--influence-navy);
  border: 1px solid rgba(218,162,34,0.25);
  border-left: 3px solid var(--growth-gold);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-8);
}
.about__brands-label {
  color: rgba(255,255,255,0.55) !important;
}
.about__brands-label {
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--sp-3);
}
.about__brands-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  align-items: stretch;
}
.ecosystem-logo-box {
  width: 140px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--t-fast);
}
.ecosystem-logo-box:hover {
  background: rgba(255,255,255,0.14);
}
.ecosystem-logo {
  max-width: 110px;
  max-height: 36px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.about__pillar {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}
/* Numbers: Inter Display Bold, gold per brand guide */
.pillar-num {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--growth-gold);
  flex-shrink: 0;
  line-height: 1;
  min-width: 2.5rem;
}
.about__pillar strong {
  display: block;
  font-family: var(--font-headline);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--influence-navy);
  margin-bottom: var(--sp-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === WHAT WE SOLVE === */
.solve { background: #F0F4FB; }
.solve__icons-image {
  margin-top: var(--sp-10);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--executive-white);
}
.solve__icons-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* === APPROACH — dark navy section with photo BG ===
   Brand guide: "deep navy imagery" for hero/marketing treatment */
.approach {
  position: relative;
  overflow: hidden;
}
.approach__img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.approach__img-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.approach__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,8,50,0.9) 0%,
    rgba(1,32,82,0.88) 50%,
    rgba(0,33,68,0.92) 100%
  );
}
.approach__container { position: relative; z-index: 1; padding-block: clamp(var(--sp-16), 7vw, var(--sp-24)); }
.approach .section-eyebrow { color: var(--growth-gold); }
.approach .section-title { color: var(--executive-white); }
.approach .section-sub { color: rgba(255,255,255,0.65); }

.approach__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-block: clamp(var(--sp-10), 5vw, var(--sp-16));
}
.approach__step {
  flex: 1;
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(218,162,34,0.2);
  border-radius: var(--r-xl);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base) var(--ease);
}
.approach__step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(218,162,34,0.5);
  transform: translateY(-5px);
}
.approach__connector {
  width: 28px; flex-shrink: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(218,162,34,0.3), rgba(228,159,85,0.5));
  margin-top: calc(var(--sp-8) + 40px + var(--sp-8));
  position: relative;
}
.approach__connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(228,159,85,0.5);
}
/* Step number: large ghost — navy for base metrics per brand guide */
.approach__step-num {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(218,162,34,0.15);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.approach__step-icon {
  width: 56px; height: 56px;
  background: rgba(218,162,34,0.1);
  border: 1.5px solid rgba(218,162,34,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
  color: var(--growth-gold);
  transition: background var(--t-base), color var(--t-base);
}
.approach__step:hover .approach__step-icon {
  background: var(--growth-gold);
  color: var(--deep-midnight);
}
.approach__step h3 {
  font-family: var(--font-headline);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--executive-white);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.approach__step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 28ch;
  margin-inline: auto;
}
.approach__cta { text-align: center; }

/* === SERVICES === */
.services { background: var(--warm-white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.services__card {
  background: var(--executive-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
/* Gold top-bar: brand guide "emphasis lines" in gold */
.services__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--growth-gold), var(--hero-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.services__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.services__card:hover::before { transform: scaleX(1); }

/* Ghost number: brand guide large display numbers */
.services__card-num {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: rgba(1,32,82,0.06);
  line-height: 1;
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-5);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.services__card h3 {
  font-family: var(--font-headline);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--influence-navy);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.01em;
  position: relative;
}
.services__card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.services__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.services__list li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-left: var(--sp-5);
  position: relative;
  font-family: var(--font-body);
}
/* Gold bullet — brand guide "icon rings" in gold */
.services__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--growth-gold);
  background: transparent;
}

/* === MISSION / VISION / PROMISE === */
.mvp { background: #F0F4FB; }
.mvp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.mvp__block {
  background: var(--executive-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.mvp__block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mvp__icon {
  width: 60px; height: 60px;
  background: var(--influence-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  color: var(--growth-gold);
}
.mvp__block h3 {
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--influence-navy);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.mvp__block .gold-rule.centered { margin-bottom: var(--sp-4); }
.mvp__block p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 38ch;
  margin-inline: auto;
}

/* === WHO WE SERVE === */
.who { background: var(--warm-white); }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: start;
}
.who__right { display: flex; flex-direction: column; gap: var(--sp-4); }
.who__img-wrap {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(218,162,34,0.25);
}
.who__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.who__types { display: flex; flex-direction: column; gap: var(--sp-3); }
.who__type {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--executive-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  transition: border-color var(--t-base), transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.who__type:hover {
  border-color: var(--growth-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.who__type svg { color: var(--growth-gold); flex-shrink: 0; }
.who__type span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--influence-navy);
}

/* === CONTACT ===
   Brand guide: "executive backgrounds" in Influence Navy */
.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--deep-midnight) 0%,
    var(--influence-navy) 45%,
    var(--hero-navy) 100%
  );
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218,162,34,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218,162,34,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Integration Blue accent line at top per brand guide */
.contact::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--integration-blue), var(--growth-gold));
}
.contact__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__panel {
  padding: clamp(var(--sp-8), 4vw, var(--sp-12));
}
.contact__panel--left {
  padding-left: 0;
}
.contact__panel--right {
  padding-right: 0;
}
.contact__divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(218,162,34,0.35) 15%,
    rgba(218,162,34,0.35) 85%,
    transparent 100%
  );
  align-self: stretch;
  margin-inline: clamp(var(--sp-8), 4vw, var(--sp-12));
}
.contact__panel-title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--executive-white);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.contact .section-title { color: var(--executive-white); }
.contact .section-body { color: rgba(255,255,255,0.75); }

.contact__promise {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-block: var(--sp-6);
}
.contact__promise-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}
.contact__promise-icon {
  width: 28px; height: 28px;
  background: rgba(218,162,34,0.15);
  border: 1px solid rgba(218,162,34,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--growth-gold);
  flex-shrink: 0;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}
.contact__detail svg { color: var(--hero-gold); flex-shrink: 0; }

/* Contact form */
.contact__form {
  background: var(--executive-white);
  border-radius: var(--r-2xl);
  padding: clamp(var(--sp-8), 4vw, var(--sp-12));
  box-shadow: var(--shadow-lg);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.form__group label {
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--influence-navy);
}
.form__group label span { color: var(--growth-gold); }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  background: var(--warm-white);
  color: var(--color-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--growth-gold);
  box-shadow: var(--shadow-gold);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--sp-3);
}
.form__success {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-4);
  color: #166534;
}
.form__success p { font-size: var(--text-sm); font-weight: 500; }
.form__success[hidden] { display: none; }

/* === FOOTER === */
.footer {
  background: var(--deep-midnight);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
  border-top: 3px solid var(--influence-navy);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(var(--sp-8), 4vw, var(--sp-16));
  margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16));
  align-items: start;
}
.footer__tagline {
  font-family: var(--font-headline);
  font-size: var(--text-base);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--growth-gold);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 38ch;
}
.footer__links h4,
.footer__ecosystem h4,
.footer__contact h4 {
  font-family: var(--font-headline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--growth-gold);
  margin-bottom: var(--sp-5);
}
.footer__links ul,
.footer__ecosystem ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a,
.footer__ecosystem a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer__links a:hover,
.footer__ecosystem a:hover { color: var(--growth-gold); }
.footer__contact address {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.footer__contact address p,
.footer__contact address a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer__contact address a:hover { color: var(--growth-gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}
/* Integration Blue accent on footer legal line */
.footer__legal { color: rgba(4,84,168,0.6) !important; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services__grid,

  .footer__grid   { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .approach__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }
  .approach__connector { display: none; }
}

@media (max-width: 768px) {
  /* Stats band: stack vertically on tablet/mobile */
  .solve__stats {
    grid-template-columns: 1fr;
    padding: var(--sp-8) var(--sp-6);
    gap: 0;
  }
  .solve__stat-div {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: var(--sp-5) auto;
    align-self: auto;
  }
  .solve__stat {
    text-align: center;
    align-items: center;
  }
  .solve__grid { grid-template-columns: repeat(2, 1fr); }
  :root { --nav-h: 64px; }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--deep-midnight);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-8);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: var(--text-base); }
  .nav__mobile-toggle { display: flex; }

  .about__grid,
  .who__grid,
  .contact__split {
    grid-template-columns: 1fr;
  }
  .contact__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(218,162,34,0.35) 15%,
      rgba(218,162,34,0.35) 85%,
      transparent 100%
    );
    margin-block: var(--sp-6);
    margin-inline: 0;
  }
  .contact__panel--left,
  .contact__panel--right {
    padding-inline: 0;
  }

  .about__visual { order: -1; }

  .services__grid,
  .mvp__grid,
  .approach__steps { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn {
    max-width: 340px;
    width: 100%;
    justify-content: center;
    white-space: normal;      /* allow text to wrap on small screens */
    text-align: center;
    font-size: 0.7rem;        /* slightly smaller so long labels fit in one line */
    padding: 0.85em 1.2em;
    line-height: 1.3;
  }
  .promise-strip__divider { display: none; }
  .promise-strip__inner { justify-content: flex-start; gap: var(--sp-4); }
}

@media (max-width: 480px) {
  .solve__grid { grid-template-columns: 1fr; }
  .services__card,
  .mvp__block { padding: var(--sp-6); }
  .hero__headline { letter-spacing: 0.04em; }

  /* ── Mobile logo fix (320–480px) ──────────────────────────────────
     The horizontal logo PNG is 3:2 ratio. At height:44px it renders
     only 66px wide — too small to read the wordmark on small screens.
     Switch to width-based sizing so the full logo fills the available
     space between the left edge and the hamburger menu.
     Allow up to 55% of viewport width (leaves ~44% for hamburger +
     breathing room), override height to auto so aspect ratio holds.
  ──────────────────────────────────────────────────────────────────── */
  :root { --nav-h: 60px; }

  .nav__inner {
    padding-inline: 12px;
    gap: 0;
  }

  .nav__logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav__logo-img {
    height: auto;
    width: min(55vw, 180px);
    max-width: none;
    max-height: 40px;   /* prevent overflow of 60px nav bar */
    width: auto;        /* let max-height drive sizing */
    min-width: 130px;  /* ensure wordmark always readable */
  }

  /* Keep hamburger fixed-size and right-aligned */
  .nav__mobile-toggle {
    flex-shrink: 0;
    width: 36px;
    padding: 6px;
    margin-left: auto;
  }

  /* Hero body text: prevent word runoff at 320px */
  .hero__sub {
    font-size: clamp(0.85rem, 3.8vw, 1rem);
    padding-inline: var(--sp-4);
  }
}

/* ── SERVICES PROGRAM CARDS ─────────────────────────────────────── */
.services__programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.services__program-card {
  border: 1.5px solid #d0d8e4;
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: var(--executive-white);
}

.services__program-card--featured {
  background: var(--influence-navy);
  border-color: var(--influence-navy);
  color: var(--executive-white);
}

.services__program-card--featured h3,
.services__program-card--featured p {
  color: var(--executive-white);
}

.services__program-card--featured .services__list li {
  color: rgba(255,255,255,0.82);
}

.services__program-card--featured .services__list li::before {
  color: var(--growth-gold);
}

.services__program-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--growth-gold);
}

.services__program-card h3 {
  font-family: var(--font-headline);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--influence-navy);
  line-height: 1.2;
  margin: 0;
}

.services__program-tracks {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.services__track-chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(218,162,34,0.15);
  color: var(--growth-gold);
  border: 1px solid rgba(218,162,34,0.3);
}

.services__program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.services__program-card--featured .services__program-footer {
  border-top-color: rgba(255,255,255,0.12);
}

.services__program-ideal {
  font-size: 0.72rem;
  color: var(--warm-white, #8a9bb0);
  line-height: 1.45;
  flex: 1;
  min-width: 160px;
}

.services__program-card--featured .services__program-ideal {
  color: rgba(255,255,255,0.55);
}

.services__supporting-label {
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--growth-gold);
  margin-bottom: var(--sp-5);
  margin-top: var(--sp-2);
}

/* ── SOLVE STATS BAND ────────────────────────────────────────────── */
.solve__stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--deep-midnight) 0%, var(--influence-navy) 60%, var(--hero-navy) 100%);
  border-radius: var(--r-2xl);
  padding: clamp(var(--sp-8), 4vw, var(--sp-12)) clamp(var(--sp-8), 5vw, var(--sp-16));
  margin-bottom: var(--sp-12);
  align-items: center;
  border: 1px solid rgba(218,162,34,0.2);
  box-shadow: 0 8px 40px rgba(1,8,50,0.25);
}

.solve__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: 0 var(--sp-6);
}
.solve__stat-num {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--growth-gold);
  line-height: 1;
}

.solve__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.solve__stat-label em {
  font-style: normal;
  color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .services__programs { grid-template-columns: 1fr; }
  .services__program-footer { flex-direction: column; align-items: flex-start; }
}

/* ── NAV ICON + WORDMARK COMBO ───────────────────────────────────── */
.nav__logo-icon-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
  /* Original icon colors preserved — navy/blue/gold show on dark nav */
}

/* Nav wordmark — icon + two-line text */
.nav__wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.nav__wordmark-top {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--executive-white);
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}
.nav__wordmark-sub {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #7ABAFF;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  border-top: 1px solid rgba(74,144,217,0.4);
  padding-top: 3px;
}

/* ── SERVICES TRIPTYCH ───────────────────────────────────────────── */
.services__triptych {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(1,32,82,0.13);
  margin-bottom: var(--sp-10);
}

.triptych__col {
  background: var(--executive-white);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.triptych__col--center {
  background: var(--influence-navy);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
  text-align: center;
}

.triptych__col--right {
  background: var(--executive-white);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-left: 1px solid #e8edf3;
}

.triptych__eyebrow {
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--integration-blue);
}
.triptych__eyebrow-center {
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--growth-gold);
}

.triptych__name {
  font-family: var(--font-headline);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--influence-navy);
  line-height: 1.2;
  margin: 0;
}
.triptych__name-center {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--executive-white);
  line-height: 1.2;
  margin: 0;
}

.triptych__badges {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
}
.triptych__badge-pill {
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(218,162,34,0.15);
  color: var(--growth-gold);
  border: 1px solid rgba(218,162,34,0.3);
}

.triptych__desc {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.65;
  flex: 1;
}
.triptych__desc-center {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  flex: 1;
}

.triptych__ideal {
  font-size: 0.78rem;
  color: #6b7a8d;
  line-height: 1.5;
  padding: 12px 14px;
  background: var(--warm-white, #F8F4EC);
  border-left: 3px solid var(--growth-gold);
}

.triptych__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.triptych__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  line-height: 1.55;
}

.triptych__link {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--integration-blue);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(4,84,168,0.25);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;
}

/* Capability chips */
.services__caps {
  text-align: center;
}
.services__caps-label {
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a97a8;
  margin-bottom: var(--sp-4);
}
.services__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}
.chip {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid #c8d4e0;
  color: var(--influence-navy);
  background: var(--executive-white);
}

/* Responsive */
@media (max-width: 900px) {
  .services__triptych { grid-template-columns: 1fr; }
  .triptych__col--right { border-left: none; border-top: 1px solid #e8edf3; }
  .triptych__col--center { border-top: none; border-bottom: none; }
  /* Mobile: program options first, Assessment card at the bottom */
  .triptych__col--left   { order: 1; }
  .triptych__col--right  { order: 2; border-top: 1px solid #e8edf3; }
  .triptych__col--center { order: 3; border-top: 2px solid rgba(218,162,34,0.4); border-bottom: none; }
}
