/* =========================================================
   Apex Strategic Solutions — production stylesheet
   Palette: apex navy + infrastructure slate + conservation teal
            + ROI gold, on warm operating-paper surfaces.
   Type:    Fraunces (display, optical-size), Inter (body)
   ========================================================= */

:root {
  /* color */
  --navy-900: #0b2545;
  --navy-800: #11305b;
  --navy-700: #1c3f74;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #eef2f7;
  --cream: #f6f2ea;
  --cream-2: #ece6da;
  --paper: #fbfaf6;
  --ink: #0e1a2b;
  --water: #176d7e; /* conservation teal — technical, not trendy */
  --water-2: #2595a8;
  --sand: #b99145; /* ROI gold */
  --sand-soft: #ead8b2;
  --positive: #2f6b3f;
  --line: rgba(11, 37, 69, 0.12);
  --line-strong: rgba(11, 37, 69, 0.22);

  /* type */
  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }

a { color: var(--navy-800); text-decoration: none; }
a:hover { color: var(--water); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sand-soft); color: var(--navy-900); }

.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  position: fixed; left: 12px; top: 12px;
  background: var(--navy-900); color: #fff;
  padding: 10px 14px; border-radius: 8px; z-index: 100;
}

/* container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ======== TYPOGRAPHY ======== */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.display {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  font-weight: 500;
  font-variation-settings: "opsz" 80, "SOFT" 30;
  margin: 0 0 24px;
}
.display .accent {
  font-style: italic;
  color: var(--water);
  font-weight: 400;
}
.h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
  margin: 0 0 18px;
  font-variation-settings: "opsz" 48;
}
h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--navy-900);
}
.lede {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: var(--slate-700);
  max-width: 36em;
  margin: 0 0 32px;
}
.body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slate-700);
  max-width: 38em;
}
.eyebrow, .section-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--water);
  margin: 0 0 18px;
}
.section-tag.light { color: var(--sand-soft); }
.brand-statement {
  display: inline-flex;
  width: fit-content;
  margin: -8px 0 22px;
  padding: 8px 12px;
  border-left: 3px solid var(--sand);
  background: rgba(185, 145, 69, 0.12);
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ======== HEADER ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--navy-900);
}
.brand-logo {
  display: block;
  width: 188px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}
.brand-mark { color: var(--navy-900); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  color: var(--navy-900);
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--water);
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
}
.site-nav a:hover { color: var(--navy-900); }
.site-nav .nav-cta {
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--navy-700); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--navy-900);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--navy-900);
}
.mobile-nav a.nav-cta {
  margin-top: 10px;
  background: var(--navy-900);
  color: #fff;
  border: none;
  border-radius: 999px;
  text-align: center;
  padding: 12px 16px;
  font-weight: 600;
}
.mobile-nav.open { display: flex; }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--navy-900);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-light {
  background: var(--sand-soft);
  color: var(--navy-900);
}
.btn-light:hover {
  background: #f0e2c4;
  color: var(--navy-900);
}
.btn.block { width: 100%; justify-content: center; }

/* ======== HERO ======== */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(60px, 8vw, 96px);
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(31, 122, 140, 0.10), transparent 70%),
    linear-gradient(180deg, var(--paper), var(--cream) 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  position: relative;
  z-index: 2;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-assessment-note {
  max-width: 660px;
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 109, 126, 0.22);
  border-left: 4px solid var(--water);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--slate-700);
  font-size: 0.98rem;
  line-height: 1.55;
  box-shadow: 0 14px 32px -30px rgba(11, 37, 69, 0.42);
}
.hero-assessment-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 640px;
}
.hero-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 6px;
}
.hero-meta dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy-900);
  line-height: 1.35;
  font-weight: 500;
}
.outcome-note {
  display: block;
  margin-top: 8px;
  color: var(--slate-700);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 650;
}
.hero-note-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--water);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-note-link:hover {
  color: var(--navy-900);
  text-decoration: underline;
}
.hero-topo {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 320px;
  color: var(--navy-900);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* hero card */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.04), 0 20px 40px -28px rgba(11, 37, 69, 0.25);
}
.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--water);
  box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(31, 122, 140, 0.06); }
}
.card-rows { padding: 14px 0 6px; }
.card-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.card-row:last-child { border-bottom: none; }
.card-row .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.card-row .value {
  font-size: 0.96rem;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.4;
}
.card-foot {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-style: italic;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

/* ======== SECTIONS ======== */
.section {
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate-700);
  max-width: 56ch;
  margin: 0;
}
.section-sub.on-dark { color: rgba(255,255,255,0.78); }
.h2.on-dark { color: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.col-label { position: sticky; top: 92px; }

/* ======== PROBLEM ======== */
.problem { background: var(--paper); border-top: 1px solid var(--line); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy-900);
  font-variation-settings: "opsz" 40;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.93rem;
  color: var(--slate-700);
  line-height: 1.5;
}
.drain-line {
  display: inline-flex;
  margin: 28px 0 0;
  padding: 12px 16px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 28px -24px rgba(11, 37, 69, 0.5);
}

/* ======== SERVICES ======== */
.services { background: var(--cream); border-top: 1px solid var(--line); }
.service-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 32px 28px 36px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.25s ease;
}
.service:hover { background: #fff; }
.srv-num {
  display: inline-block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24;
  font-size: 0.95rem;
  color: var(--water);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 36;
}
.service p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--slate-700);
}
.service-link {
  background:
    linear-gradient(135deg, rgba(11, 37, 69, 0.04), rgba(11, 121, 136, 0.08)),
    var(--paper);
}
.service-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy-900);
}
.service-inline-link:hover {
  color: var(--water-dark);
}

/* ======== PROCESS ======== */
.process { background: var(--paper); border-top: 1px solid var(--line); }
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 28px 24px 32px;
  border-top: 2px solid var(--navy-900);
  position: relative;
}
.step + .step { border-left: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60;
  font-size: 2rem;
  color: var(--navy-900);
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--slate-700);
}

/* ======== INDUSTRIES ======== */
.industries { background: var(--cream-2); border-top: 1px solid var(--line); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.industry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.industry:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -22px rgba(11, 37, 69, 0.3);
}
.ind-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ind-mark svg { width: 22px; height: 22px; }
.industry h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 30;
}
.industry p { margin: 0; font-size: 0.9rem; color: var(--slate-700); line-height: 1.5; }

/* ======== PARTNERS ======== */
.partners { background: var(--paper); border-top: 1px solid var(--line); }
.sustainability {
  background:
    radial-gradient(760px 460px at 86% 10%, rgba(23, 109, 126, 0.12), transparent 72%),
    linear-gradient(180deg, #fff, var(--paper));
  border-top: 1px solid var(--line);
}
.sustainability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.sustainability-copy {
  position: sticky;
  top: 104px;
}
.sustainability-panel {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 24px 44px -34px rgba(11, 37, 69, 0.48);
  position: relative;
  overflow: hidden;
}
.sustainability-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(185, 145, 69, 0.16), transparent 38%),
    radial-gradient(360px 240px at 100% 0%, rgba(23, 109, 126, 0.34), transparent 70%);
  pointer-events: none;
}
.sustainability-panel h3,
.esg-list {
  position: relative;
  z-index: 1;
}
.sustainability-panel h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.18;
  margin: 0 0 24px;
  font-weight: 500;
}
.funding-intro-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}
.funding-intro-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--water);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.funding-intro-card p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.58;
}
.funding-intro-card p + p { margin-top: 12px; }
.esg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.esg-list li {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-size: 0.96rem;
}
.esg-list span {
  display: block;
  color: var(--sand-soft);
  font-weight: 700;
  margin-bottom: 5px;
}
.funding-finder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin-top: -24px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 37, 69, 0.94), rgba(17, 48, 91, 0.92)),
    radial-gradient(420px 260px at 100% 0%, rgba(23, 109, 126, 0.38), transparent 70%);
  box-shadow: 0 28px 54px -40px rgba(11, 37, 69, 0.62);
}
.funding-copy h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}
.funding-copy p:not(.section-tag) {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.62;
  max-width: 58ch;
}
.funding-tool {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 38px -32px rgba(0,0,0,0.55);
}
.funding-tool label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.funding-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.funding-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--navy-900);
  background: var(--paper);
  font: inherit;
  font-weight: 650;
}
.funding-results {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--slate-700);
  line-height: 1.5;
}
.funding-results p { margin: 0; }
.funding-results h4 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.funding-results h5 {
  margin: 18px 0 8px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.funding-results ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.funding-results li { margin: 8px 0; }
.funding-results a {
  color: var(--navy-900);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.funding-checked {
  margin-top: 16px !important;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 700;
}
.funding-assist {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}
.funding-disclaimer {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.82rem;
  line-height: 1.48;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.partner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: linear-gradient(180deg, #fff, var(--paper));
  position: relative;
  overflow: hidden;
}
.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 134px;
  margin-bottom: 26px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(11, 37, 69, 0.02);
}
.partner-logo-card img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 120px;
  object-fit: contain;
}
.partner-logo-card-tall {
  min-height: 190px;
}
.partner-logo-card-tall img {
  max-height: 172px;
}
.partner-logo-card:hover {
  border-color: rgba(23, 109, 126, 0.34);
  box-shadow: 0 18px 34px -30px rgba(11, 37, 69, 0.5);
}
.partner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--water);
}
.partner-head { margin-bottom: 14px; }
.partner-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: 10px;
  font-weight: 600;
}
.partner h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0;
  color: var(--navy-900);
  font-variation-settings: "opsz" 60;
}
.partner-title-link {
  color: var(--navy-900);
  text-decoration: none;
}
.partner-title-link:hover {
  color: var(--water);
}
.partner > p {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.6;
}
.partner-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.partner-points li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 0.93rem;
  color: var(--navy-900);
}
.partner-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 2px;
  background: var(--water);
}
.partner-site-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
}
.partner-site-link:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.partner-note {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--slate-500);
  font-style: italic;
  max-width: 64ch;
}
.vendor-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.vendor-invite h3 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.vendor-invite p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.5;
}

/* ======== DIFFERENTIATORS ======== */
.differentiators { background: var(--cream); border-top: 1px solid var(--line); }
.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}
.diff-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}
.diff-list h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-variation-settings: "opsz" 36;
}
.diff-list p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--slate-700);
  line-height: 1.55;
}

/* ======== INTRANET ======== */
.intranet {
  background:
    radial-gradient(700px 400px at 8% 10%, rgba(31, 122, 140, 0.18), transparent 70%),
    linear-gradient(180deg, var(--navy-900), #08182d);
  color: #fff;
  border-top: 1px solid var(--navy-700);
}
.intranet-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.intranet-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 10px;
}
.intranet-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.84);
  font-size: 0.98rem;
}
.intranet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 2px;
  background: var(--sand);
}
.intranet-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.ic-head { margin-bottom: 14px; }
.ic-pill {
  display: inline-block;
  background: var(--sand-soft);
  color: var(--navy-900);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
.ic-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
  font-variation-settings: "opsz" 48;
}
.ic-body {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.ic-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ======== VENDOR ONBOARDING ======== */
.vendor-onboarding {
  background:
    radial-gradient(720px 420px at 0% 0%, rgba(185, 145, 69, 0.13), transparent 72%),
    linear-gradient(180deg, var(--paper), #fff);
  border-top: 1px solid var(--line);
}
.vendor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.vendor-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.vendor-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 500;
}
.vendor-card p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.55;
}
.vendor-form {
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.vendor-form label,
.vendor-services legend {
  display: block;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.vendor-form input,
.vendor-form select,
.vendor-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 8px;
  color: var(--navy-900);
  background: var(--paper);
  font: inherit;
  line-height: 1.45;
}
.vendor-form textarea {
  resize: vertical;
  margin-bottom: 16px;
}
.vendor-form input:focus,
.vendor-form select:focus,
.vendor-form textarea:focus {
  outline: 3px solid rgba(23, 109, 126, 0.22);
  border-color: var(--water);
}
.vendor-services {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 14px;
}
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.35;
}
.checkbox-grid input {
  width: auto;
  margin: 2px 0 0;
  accent-color: var(--water);
}

/* ======== CONTACT ======== */
.contact { background: var(--paper); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.04), 0 24px 40px -32px rgba(11, 37, 69, 0.2);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 48;
}
.contact-card > p {
  font-size: 0.98rem;
  color: var(--slate-700);
  line-height: 1.55;
  margin: 0 0 22px;
}
.contact-punch {
  display: inline-block;
  margin: 24px 0 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 500;
  border-left: 4px solid var(--sand);
  padding-left: 16px;
}
.roi-description-window {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.roi-description-window label {
  display: block;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.roi-description-window textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--navy-900);
  background: var(--paper);
  font: inherit;
  line-height: 1.5;
  margin-bottom: 16px;
}
.roi-description-window textarea:focus {
  outline: 3px solid rgba(23, 109, 126, 0.22);
  border-color: var(--water);
}
.roi-response {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--water);
  border-radius: 14px;
  background: rgba(23, 109, 126, 0.08);
  color: var(--navy-900);
  font-weight: 650;
  line-height: 1.55;
}
.contact-meta {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
}
.contact-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 3px;
}
.contact-meta dd {
  margin: 0;
  font-size: 0.96rem;
  color: var(--navy-900);
  line-height: 1.4;
}

/* ======== FOOTER ======== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.foot-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #fff;
}
.footer-logo {
  display: block;
  width: 92px;
  height: 62px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 6px;
}
.foot-brand svg { color: #fff; }
.foot-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: #fff;
}
.foot-brand span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.site-footer nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}
.site-footer nav a:hover { color: #fff; }
.foot-meta {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .col-label { position: static; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sustainability-grid { grid-template-columns: 1fr; }
  .sustainability-copy { position: static; }
  .funding-finder { grid-template-columns: 1fr; margin-top: 0; }
  .partner-grid { grid-template-columns: 1fr; }
  .vendor-invite { align-items: flex-start; }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step + .step { border-left: none; }
  .step:nth-child(2) { border-left: 1px solid var(--line); }
  .intranet-grid { grid-template-columns: 1fr; gap: 36px; }
  .vendor-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .diff-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .stat-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid,
  .checkbox-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-assessment-note { padding: 15px; }
  .funding-controls { flex-direction: column; align-items: stretch; }
  .vendor-invite { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .step + .step,
  .step:nth-child(2) { border-left: none; }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}

/* motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
