/* ===== iMEC CORE — shared styles ===== */

:root {
  --navy: #000853;
  --navy-2: #001c6b;
  --cyan: #01b1e0;
  --cyan-light: #7fe3f5;
  --green: #7fb800;
  --deep-green: #5f8e00;
  --ink: #0b121e;
  --soft-cyan: #e8f8fc;
  --soft-green: #f3f9e8;
  --neutral: #f3f6f9;
  --white: #ffffff;
  --border: #e7ecf1;
  --muted: #5a6779;
  --muted-2: #3a4557;
  --footer-muted: #a9b6c9;
  --footer-faint: #8492a6;
  --max-width: 1312px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: var(--navy); }
a:hover { opacity: 0.78; }

h1, h2, h3, p { margin: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

/* ===== buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); padding: 13.5px 26.5px; }
.btn-on-dark { background: var(--cyan); color: var(--navy); font-weight: 700; }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); padding: 13.5px 26.5px; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== header ===== */

.utility-bar {
  background: var(--navy);
  padding: 9px 64px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.utility-link {
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav {
  background: var(--white);
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}

.logo-link { display: block; flex-shrink: 0; }
.logo-link img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover { color: var(--cyan); border-bottom-color: var(--cyan); opacity: 1; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-login {
  padding: 13.5px 22px;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}
.nav-toggle-label svg { display: block; }
.nav-toggle { display: none; }

/* ===== nav dropdown ===== */

.has-dropdown { position: relative; display: flex; align-items: center; }
.dropdown-caret { display: inline-block; margin-left: 3px; transform: translateY(1px); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px -12px rgba(0, 8, 83, 0.18);
  padding: 10px;
  min-width: 240px;
  z-index: 20;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--neutral); opacity: 1; }

/* ===== hero ===== */

.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--neutral) 100%);
  padding: 80px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; gap: 22px; max-width: 560px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan);
}

.h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.lede { font-size: 18px; line-height: 1.6; color: var(--muted-2); }

.proof-strip {
  display: flex;
  gap: 0;
  margin-top: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.proof-strip span {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-green);
  padding: 0 20px;
  border-left: 1px solid #d7dee7;
}
.proof-strip span:first-child { padding-left: 0; border-left: none; }

.hero--centered {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.hero--centered .h1 { max-width: 820px; font-size: 46px; line-height: 1.14; }
.hero--centered .lede { max-width: 660px; }

/* ===== product mockup card (exception queue) ===== */

.mockup-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 28px 64px -16px rgba(0, 8, 83, 0.22);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mockup-titlebar {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-titlebar span { color: var(--white); font-size: 13px; font-weight: 600; }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 7px; height: 7px; border-radius: 50%; display: block; }

.mockup-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; background: #fbfcfd; }

.queue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  gap: 12px;
}
.queue-row-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.severity-dot { width: 8px; height: 8px; border-radius: 50%; display: block; flex-shrink: 0; }
.queue-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.queue-sub { font-size: 12px; color: #6b7a8f; }
.status-pill { font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 20px; white-space: nowrap; }
.status-pill--info { color: #01697e; background: var(--soft-cyan); }
.status-pill--ok { color: var(--deep-green); background: var(--soft-green); }

.mockup-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.mockup-footer-row span:first-child { font-size: 12px; color: #6b7a8f; }
.mockup-footer-row span:last-child { font-size: 12px; font-weight: 600; color: var(--cyan); }

/* ===== generic text section ===== */

.text-section {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.text-section .h3 { font-size: 32px; line-height: 1.25; font-weight: 700; color: var(--navy); }
.text-section p { font-size: 17px; line-height: 1.7; color: var(--muted-2); }

.h3 { font-size: 32px; font-weight: 700; color: var(--navy); }
.h3-lead { margin-bottom: 40px; }

/* ===== grids ===== */

.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.grid-6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
}
.card-icon { color: var(--cyan); }
.card-title { font-size: 16px; font-weight: 700; color: var(--navy); }
.card-body { font-size: 14px; line-height: 1.6; color: var(--muted); }

.step-card { display: flex; flex-direction: column; gap: 14px; padding: 32px 28px; border-radius: 10px; }
.step-card--cyan { background: var(--soft-cyan); }
.step-card--neutral { background: var(--neutral); }
.step-card--green { background: var(--soft-green); }
.step-num { font-size: 34px; font-weight: 800; }
.step-title { font-size: 18px; font-weight: 700; color: var(--navy); }
.step-body { font-size: 14px; line-height: 1.65; }

.mini-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
}
.mini-step-num { font-size: 22px; font-weight: 800; color: var(--cyan); }
.mini-step-title { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.mini-step-body { font-size: 12.5px; line-height: 1.55; color: var(--muted); }

.capability-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
.capability-tile-title { font-size: 14.5px; font-weight: 700; color: var(--white); }
.capability-tile-body { font-size: 12.5px; line-height: 1.55; color: #aab6c9; }

.role-tile {
  background: var(--white);
  border-radius: 10px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--cyan);
}
.role-tile-title { font-size: 15.5px; font-weight: 700; color: var(--navy); }
.role-tile-body { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-item svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.check-item span { font-size: 15px; line-height: 1.6; color: var(--muted-2); }

.industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.industry-tile {
  background: var(--neutral);
  border-radius: 8px;
  padding: 18px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.industry-tile--accent { background: var(--soft-cyan); font-weight: 700; color: #01697e; }

/* ===== section backgrounds ===== */

.bg-white { background: var(--white); }
.bg-neutral { background: var(--neutral); }
.bg-navy { background: var(--navy); }
.bg-soft-cyan { background: var(--soft-cyan); }

.on-navy .h3 { color: var(--white); }
.on-navy p { color: #aab6c9; }

/* ===== final CTA band ===== */

.cta-band {
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band--navy { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); }
.cta-band--neutral { background: var(--neutral); }
.cta-band-copy { display: flex; flex-direction: column; gap: 10px; max-width: 640px; }
.cta-band-copy h3 { font-size: 28px; font-weight: 700; }
.cta-band-copy p { font-size: 16px; line-height: 1.6; }
.cta-band--navy .cta-band-copy h3 { color: var(--white); }
.cta-band--navy .cta-band-copy p { color: #b9c4d6; }
.cta-band--neutral .cta-band-copy h3 { color: var(--navy); }
.cta-band--neutral .cta-band-copy p { color: var(--muted-2); }

/* ===== architecture diagram (Platform page) ===== */

.arch-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px 40px;
}
.arch-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.arch-col { display: flex; flex-direction: column; gap: 10px; }
.arch-col-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.arch-tile { background: var(--neutral); border-radius: 8px; padding: 11px 14px; font-size: 13px; font-weight: 600; color: var(--navy); }
.arch-tile--accent { background: var(--soft-cyan); color: #01697e; }
.arch-arrow { padding: 0 20px; }
.arch-center {
  background: var(--navy);
  border-radius: 12px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.arch-center img { height: 26px; width: auto; }
.arch-center span:first-of-type { font-size: 14px; font-weight: 700; color: var(--white); text-align: center; }
.arch-center span:last-of-type { font-size: 11.5px; color: #aab6c9; text-align: center; }
.arch-caption { font-size: 13px; color: var(--footer-faint); text-align: center; margin-top: 32px; }

/* ===== solutions page: solution cards ===== */

.solution-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.solution-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.solution-art { background: var(--soft-cyan); height: 168px; display: flex; align-items: center; justify-content: center; }
.solution-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.solution-title { font-size: 19px; font-weight: 700; color: var(--navy); }
.solution-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.solution-link { font-size: 13.5px; font-weight: 700; color: var(--cyan); margin-top: auto; }

.solution-banner {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--neutral);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  margin-top: 24px;
}
.solution-banner-icon {
  background: var(--white);
  border-radius: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-banner-copy { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.solution-banner-copy strong { font-size: 16.5px; font-weight: 700; color: var(--navy); }
.solution-banner-copy span { font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.solution-banner-link { font-size: 13.5px; font-weight: 700; color: var(--cyan); flex-shrink: 0; }

/* ===== breadcrumb / page kicker ===== */

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 20px 0 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan); opacity: 1; }

/* ===== capability groups (Capabilities page) ===== */

.cap-group { padding: 48px 0; border-top: 1px solid var(--border); }
.cap-group:first-child { border-top: none; padding-top: 0; }
.cap-group-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; max-width: 720px; }
.cap-group-title { font-size: 24px; font-weight: 700; color: var(--navy); }
.cap-group-sub { font-size: 15px; color: var(--muted); }
.cap-bullets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 32px; }
.cap-bullet { display: flex; gap: 12px; align-items: flex-start; }
.cap-bullet svg { flex-shrink: 0; margin-top: 3px; color: var(--cyan); }
.cap-bullet span { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); }

/* ===== integration source categories ===== */

.source-table { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.source-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; background: var(--white); padding: 18px 22px; }
.source-row-label { font-size: 14px; font-weight: 700; color: var(--navy); }
.source-row-value { font-size: 14px; line-height: 1.6; color: var(--muted-2); }

/* ===== profile cards (Company page) ===== */

.profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.profile-card { display: flex; gap: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.profile-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--soft-cyan); color: #01697e;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
}
.profile-name { font-size: 15.5px; font-weight: 700; color: var(--navy); }
.profile-role { font-size: 13px; line-height: 1.6; color: var(--muted); margin-top: 4px; }

/* ===== resource cards (Resources page) ===== */

.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-chip { font-size: 13px; font-weight: 600; color: var(--navy); background: var(--neutral); border-radius: 20px; padding: 9px 16px; }
.topic-chip--accent { background: var(--soft-cyan); color: #01697e; }

.resource-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.resource-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--white); padding: 18px 22px; }
.resource-row-num { font-size: 13px; font-weight: 700; color: var(--cyan); flex-shrink: 0; width: 24px; }
.resource-row-title { font-size: 14.5px; font-weight: 600; color: var(--ink); flex: 1; }
.resource-row-cat { font-size: 12.5px; color: var(--muted); flex-shrink: 0; }

.case-study-note {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--neutral);
}

/* ===== FAQ accordion ===== */

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; background: var(--white); padding: 4px 22px; }
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--cyan);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { font-size: 14.5px; line-height: 1.7; color: var(--muted-2); padding: 0 0 20px; }
.faq-item p a { color: var(--cyan); font-weight: 600; }

/* ===== forms ===== */

.form-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; box-shadow: 0 20px 48px -20px rgba(0, 8, 83, 0.16); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 2px solid var(--cyan); outline-offset: 1px; }
.form-consent { font-size: 12.5px; line-height: 1.6; color: var(--muted); margin: 4px 0 18px; }
.expect-list { display: flex; flex-direction: column; gap: 22px; }
.expect-item { display: flex; gap: 16px; align-items: flex-start; }
.expect-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--soft-cyan); color: #01697e;
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px; font-weight: 700;
}
.expect-item span { font-size: 14.5px; line-height: 1.65; color: var(--muted-2); }

/* ===== contact inquiry types ===== */

.inquiry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.inquiry-tile { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.direct-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.direct-contact-card { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; background: var(--navy); border-radius: 10px; padding: 20px 22px; }
.direct-contact-label { color: var(--cyan-light); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.direct-contact-link { color: var(--white); font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }
.direct-contact-link:hover { color: var(--cyan-light); opacity: 1; }
.notice-box { background: var(--soft-green); border-radius: 10px; padding: 20px 22px; font-size: 13.5px; line-height: 1.65; color: #3d4c33; }

/* ===== simple centered page (thank you / 404 / legal stub) ===== */

.simple-page { padding: 96px 0 120px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.simple-page .h1 { font-size: 38px; max-width: 760px; }
.simple-page p { font-size: 16.5px; line-height: 1.7; color: var(--muted-2); max-width: 640px; }
.legal-stub {
  max-width: 640px; margin: 0 auto; text-align: left;
  background: var(--neutral); border: 1px dashed var(--border); border-radius: 10px;
  padding: 24px 28px; font-size: 14px; line-height: 1.7; color: var(--muted);
}

/* ===== footer ===== */

.footer { background: var(--navy); color: #c9d3e0; padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.footer-brand img { height: 28px; width: auto; align-self: flex-start; }
.footer-tagline { font-size: 14px; font-weight: 600; color: var(--cyan-light); }
.footer-statement { font-size: 13.5px; line-height: 1.65; color: var(--footer-muted); }

.footer-cols { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12.5px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { font-size: 13.5px; color: var(--footer-muted); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 12.5px; color: var(--footer-faint); }
.footer-credit-link { color: var(--footer-muted); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: var(--footer-faint); }

/* ===== responsive ===== */

@media (max-width: 1080px) {
  .container { padding: 0 32px; }
  .utility-bar, .main-nav { padding-left: 32px; padding-right: 32px; }
  .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 16px; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .arch-grid { grid-template-columns: 1fr; gap: 20px 0; }
  .arch-arrow { transform: rotate(90deg); padding: 4px 0; justify-self: center; }
  .arch-center { max-width: 320px; margin: 0 auto; }
  .h1 { font-size: 42px; }
  .cap-bullets { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .form-split { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .direct-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 32px 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle-label { display: block; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .main-nav { position: relative; flex-wrap: wrap; }
  .nav-cta .btn { padding: 11px 18px; font-size: 13.5px; }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 4px 14px;
    min-width: 0;
    display: block;
  }
  .dropdown-menu a { padding: 8px 0; font-size: 13.5px; color: var(--muted); }
  .source-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .utility-bar, .main-nav { padding-left: 20px; padding-right: 20px; }
  .main-nav { gap: 14px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn { padding: 9px 12px; font-size: 12.5px; }
  .h1 { font-size: 34px; }
  .hero--centered .h1 { font-size: 32px; }
  .lede { font-size: 16px; }
  .h3 { font-size: 26px; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .proof-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .proof-strip span { border-left: none; padding-left: 0; }
  .solution-banner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .resource-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .profile-card { flex-direction: column; }
}
