/* ==========================================================================
   TechForge — standalone light theme
   Self-contained. No Webflow, no external frameworks.
   ========================================================================== */

:root {
  /* Brand */
  --brand: #ff4e17;
  --brand-2: #ff811a;
  --brand-3: #ffb347;
  --brand-ink: #b8350f;

  /* Light surfaces — warm off-white base so white cards pop */
  --bg: #f7f5f2;
  --bg-soft: #f0ede8;
  --bg-muted: #e8e3dc;
  --surface: #ffffff;

  /* Text — warm slate */
  --ink: #15130f;
  --ink-2: #4b4740;
  --ink-3: #847d72;

  /* Lines — warm neutral */
  --line: #e7e1d8;
  --line-strong: #d8d1c5;

  /* Effects — warm-tinted shadows */
  --shadow-sm: 0 1px 2px rgba(40, 30, 18, 0.05), 0 1px 3px rgba(40, 30, 18, 0.06);
  --shadow-md: 0 8px 22px rgba(40, 30, 18, 0.08), 0 2px 8px rgba(40, 30, 18, 0.05);
  --shadow-lg: 0 28px 56px rgba(40, 30, 18, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --container: 1160px;
  --header-h: 72px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 88% -8%, rgba(255, 129, 26, 0.08) 0%, transparent 60%),
    radial-gradient(760px 480px at -6% 18%, rgba(255, 179, 71, 0.07) 0%, transparent 55%);
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }
p { margin: 0; }

::selection { background: var(--brand); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--soft {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-muted) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-sub { margin-top: 16px; color: var(--ink-2); font-size: 18px; }

.lede { font-size: 19px; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid rgba(255, 78, 23, .35); outline-offset: 2px; }
.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; box-shadow: 0 8px 20px rgba(255, 78, 23, .28);
}
.btn--primary:hover { box-shadow: 0 12px 28px rgba(255, 78, 23, .38); transform: translateY(-2px); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16.5px; }
/* Animated trailing arrow */
.btn .arw { transition: transform .2s ease; }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.brand img { height: 34px; width: auto; }
.brand span { color: var(--ink); }
.brand span b { color: var(--brand); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px;
  font-weight: 550; font-size: 15.5px; color: var(--ink-2);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); background: var(--bg-soft); }
.nav-link .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.has-menu .submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 540px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-menu:hover .submenu,
.has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 12px 14px; border-radius: 10px; transition: background .15s ease;
  text-align: left; line-height: 1.35;
}
.submenu a:hover { background: var(--bg-soft); }
.submenu .mi-title { display: block; font-weight: 650; font-size: 15px; color: var(--ink); line-height: 1.3; }
.submenu .mi-desc { display: block; font-size: 13px; color: var(--ink-3); line-height: 1.45; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(72px, 11vw, 132px) 0 clamp(64px, 9vw, 104px); }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(255, 129, 26, 0.14) 0%, transparent 60%),
    radial-gradient(50% 45% at 12% 92%, rgba(255, 179, 71, 0.12) 0%, transparent 55%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.hero h1 { font-size: clamp(38px, 6.6vw, 72px); letter-spacing: -0.035em; max-width: 15ch; font-weight: 800; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 55%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--brand);
}
.hero-sub { margin-top: 24px; font-size: clamp(17px, 2vw, 21px); color: var(--ink-2); max-width: 58ch; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 28px 52px; }
.hero-meta .stat .n {
  font-size: 34px; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 140%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-meta .stat .l { font-size: 14px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }

/* Star rating badge in eyebrow */
.hero-eyebrow .stars { color: var(--brand); letter-spacing: 1px; font-size: 12px; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--link { position: relative; overflow: hidden; }
.card--link::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-3) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card--link:hover::before { transform: scaleX(1); }
.card .card-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; font-weight: 800; margin-bottom: 18px; font-size: 20px;
  box-shadow: 0 6px 16px rgba(255, 78, 23, 0.28);
}
.card .card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.card .more { margin-top: 16px; display: inline-flex; gap: 6px; color: var(--brand); font-weight: 600; font-size: 14.5px; }
.card--num { position: relative; }
.card--num .num { font-size: 14px; font-weight: 700; color: var(--brand); letter-spacing: .1em; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split .media {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #14181f 0%, #20262f 100%);
  min-height: 360px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.split .media::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 70% 25%, rgba(255, 129, 26, .35) 0%, transparent 60%),
    radial-gradient(40% 40% at 25% 80%, rgba(255, 179, 71, .22) 0%, transparent 55%);
}
.split .media img { position: relative; width: 56%; max-width: 240px; filter: drop-shadow(0 18px 40px rgba(0,0,0,.4)); }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 16px; }
.checklist .tick { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 78, 23, .12); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 2px; }

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill { padding: 9px 16px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 14.5px; font-weight: 550; color: var(--ink-2); }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.statband .item { text-align: left; }
.statband .item h3 { font-size: 21px; margin-bottom: 8px; }
.statband .item p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- Partners ---------- */
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: stretch; }
.partner {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 96px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.partner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.partner img {
  max-height: 34px; max-width: 80%; width: auto;
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;
}
.partner:hover img { opacity: 1; transform: scale(1.04); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 44px 18px 0; position: relative;
  font-weight: 650; font-size: 17.5px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--brand); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 44px 20px 0; color: var(--ink-2); font-size: 16px; }

/* ---------- CTA band ---------- */
.cta {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #14181f 0%, #23150d 100%);
  color: #fff; padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 80% 10%, rgba(255, 129, 26, .35) 0%, transparent 55%),
              radial-gradient(50% 80% at 12% 100%, rgba(255, 78, 23, .25) 0%, transparent 55%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); }
.cta p { color: rgba(255, 255, 255, .8); max-width: 56ch; margin: 16px auto 0; font-size: 18px; }
.cta .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(56px, 8vw, 96px) 0 clamp(36px, 5vw, 56px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 60% at 85% 0%, rgba(255, 129, 26, .12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 5.2vw, 56px); max-width: 18ch; }
.page-hero .hero-sub { max-width: 64ch; }

/* Image hero background (homepage + inner pages) */
.hero--media {
  background-image:
    linear-gradient(100deg, rgba(8, 6, 4, 0.92) 0%, rgba(12, 9, 5, 0.78) 45%, rgba(18, 12, 6, 0.55) 100%),
    url("hero-network.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 129, 26, 0.25);
}
.hero--media::before {
  background: radial-gradient(70% 90% at 90% 110%, rgba(255, 129, 26, 0.28) 0%, transparent 55%);
}
.hero.hero--media::after { display: none; }
.hero--media h1 { color: #fff; }
.hero--media .hero-sub { color: rgba(255, 255, 255, 0.82); }
.hero--media .eyebrow { color: var(--brand-3); }
.hero--media .eyebrow-row::before { background: var(--brand-3); }
.hero--media .breadcrumb,
.hero--media .breadcrumb a { color: rgba(255, 255, 255, 0.72); }
.hero--media .breadcrumb a:hover { color: var(--brand-3); }
.hero--media .breadcrumb span { color: rgba(255, 255, 255, 0.92); }
.hero--media .btn--ghost {
  background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: none;
}
.hero--media .btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }
/* Homepage-only children on dark hero */
.hero--media .hero-eyebrow {
  background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero--media .hero-meta .stat .n {
  background: linear-gradient(135deg, #fff 0%, var(--brand-3) 130%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero--media .hero-meta .stat .l { color: rgba(255, 255, 255, 0.62); }
.hero--media .trust-strip { border-top-color: rgba(255, 255, 255, 0.2); }
.hero--media .trust-strip .tlabel { color: rgba(255, 255, 255, 0.78); }
.hero--media .trust-logos { gap: 16px 18px; }
.hero--media .trust-logos img {
  height: 26px; width: auto; box-sizing: content-box;
  background: #fff; padding: 12px 18px; border-radius: 10px;
  filter: none; opacity: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero--media .trust-logos img:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34); }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--ink-3); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Careers / jobs ---------- */
.job-list { display: grid; gap: 14px; }
.job-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.job-row:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-row .j-title { font-size: 19px; font-weight: 650; }
.job-row .j-meta { font-size: 14px; color: var(--ink-3); margin-top: 4px; display: flex; gap: 14px; flex-wrap: wrap; }
.job-row .j-go { color: var(--brand); font-weight: 600; white-space: nowrap; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(255,78,23,.1); color: var(--brand-ink); font-size: 12.5px; font-weight: 600; }

.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 36px 0 14px; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p { color: var(--ink-2); margin-bottom: 14px; }
.prose ul { color: var(--ink-2); padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 10px;
  font: inherit; font-size: 15.5px; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,78,23,.14); }
.field textarea { min-height: 140px; resize: vertical; }
.contact-info .ci-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .ci-ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--brand); font-weight: 800; }
.contact-info .ci-item .k { font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.contact-info .ci-item .v { font-size: 17px; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #0e1116; color: #c7cdd6; padding: 64px 0 32px; margin-top: 0; border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--brand) 0%, var(--brand-3) 100%) 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand span { color: #fff; }
.footer-brand p { color: #8b94a3; margin-top: 16px; font-size: 15px; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #aab2bf; font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: var(--brand-2); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #79828f; font-size: 14px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: #aab2bf; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 32px; }
.trust-strip .tlabel { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 36px 48px; }
.trust-logos img { height: 26px; width: auto; filter: grayscale(1) opacity(.55); transition: filter .25s ease, transform .25s ease; }
.trust-logos img:hover { filter: grayscale(0) opacity(1); transform: translateY(-2px); }

/* ---------- Section number / eyebrow row ---------- */
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.eyebrow-row .eyebrow { margin-bottom: 0; }
.eyebrow-row::before { content: ""; width: 28px; height: 2px; background: var(--brand); border-radius: 2px; }

/* ---------- Process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process.process--3 { grid-template-columns: repeat(3, 1fr); }
.process .step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.process .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process .step .sn {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: var(--brand); background: rgba(255, 78, 23, .1);
  border: 1px solid rgba(255, 78, 23, .18); margin-bottom: 18px;
}
.process .step h3 { font-size: 18px; margin-bottom: 8px; }
.process .step p { color: var(--ink-2); font-size: 15px; }
.process .step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -13px; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent); z-index: 2;
}

/* ---------- Metrics band ---------- */
.metrics-band {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(135deg, #14181f 0%, #20140c 100%);
  color: #fff; padding: clamp(40px, 6vw, 64px);
}
.metrics-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 85% 0%, rgba(255,129,26,.3) 0%, transparent 55%),
              radial-gradient(45% 70% at 5% 100%, rgba(255,78,23,.22) 0%, transparent 55%);
}
.metrics-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.metrics-grid .m .mn {
  font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, #fff 0%, var(--brand-3) 130%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.metrics-grid .m .ml { margin-top: 10px; color: rgba(255,255,255,.7); font-size: 15px; }
.metrics-grid .m + .m { border-left: 1px solid rgba(255,255,255,.1); padding-left: 28px; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote-card .mark { font-size: 44px; line-height: .6; color: var(--brand); font-weight: 800; font-family: Georgia, serif; height: 26px; }
.quote-card p { color: var(--ink); font-size: 16.5px; margin: 12px 0 22px; }
.quote-card .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote-card .av {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
}
.quote-card .who .nm { font-weight: 650; font-size: 15px; }
.quote-card .who .rl { font-size: 13.5px; color: var(--ink-3); }

/* ---------- Outcomes (what you get) ---------- */
.outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.outcome { display: flex; gap: 14px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.outcome .oc-ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,78,23,.1); color: var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.outcome .oc-ic svg { width: 20px; height: 20px; }
.outcome h3 { font-size: 16.5px; margin-bottom: 4px; }
.outcome p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- FAQ as cards ---------- */
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  margin-bottom: 12px; padding: 4px 24px; box-shadow: var(--shadow-sm); transition: border-color .18s ease;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary { padding: 20px 44px 20px 0; }
.faq summary::after { right: 2px; }
.faq .answer { padding: 0 44px 20px 0; }

/* ---------- Refined section heading ---------- */
.section-title .accent {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 60%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process.process--3 { grid-template-columns: 1fr; }
  .process .step:not(:last-child)::after { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid .m + .m { border-left: none; padding-left: 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .statband { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open + .mobile-menu { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; gap: 22px; }
  .job-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile menu panel */
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; padding: 14px 24px 24px; }
.mobile-menu a { display: block; padding: 12px 8px; border-radius: 8px; font-weight: 550; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 14px; }
@media (min-width: 721px) { .mobile-menu { display: none !important; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
