/* =============================================================
   CONQUEST INDUSTRIAL — Design System
   Light industrial B2B. White base · Conquest blue · golden yellow.
   Type: Anton (display) · Oswald (headings/UI) · Inter (body)
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg:        #ffffff;
  --surface:   #f4f6f9;
  --surface-2: #e9edf3;
  --footer:    #0b1b30;

  /* Ink / text */
  --ink:    #0f1e30;   /* headings + primary text */
  --ink-2:  #33475e;   /* body */
  --muted:  #64748b;   /* captions / tertiary */
  --line:   #dde3ec;   /* borders + hairlines */
  --line-2: #ccd4e0;

  /* Brand blue */
  --blue:     #1e56a0;
  --blue-600: #17457f;
  --blue-700: #0f3462;
  --blue-100: #d6e4f5;
  --blue-50:  #eaf1fb;

  /* Energy yellow (fills only — never text on white) */
  --yellow:     #f7b500;
  --yellow-600: #e0a200;
  --yellow-050: #fff6dd;

  /* Feedback */
  --danger: #c0392b;
  --success:#1e874b;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(15,30,48,.06), 0 3px 10px rgba(15,30,48,.05);
  --shadow-2: 0 12px 30px rgba(15,30,48,.10);
  --shadow-blue: 0 16px 34px rgba(30,86,160,.20);

  /* Spacing scale (4pt) */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  /* Layout */
  --maxw: 1220px;
  --pad: clamp(20px, 5vw, 40px);
  --header-h: 76px;

  /* Type families */
  --font-display: "Anton", "Oswald", system-ui, sans-serif;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .28s;

  /* Layering */
  --z-header: 100;
  --z-menu: 200;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-600); }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.eyebrow--on-dark { color: #ffd874; }
.h-md { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; line-height: 1.05; color: var(--ink); font-size: clamp(1.5rem, 2.6vw, 2rem); }
.muted-note { font-weight: 400; color: var(--muted); font-size: .8rem; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .005em;
  color: var(--ink);
}

.h-section {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.6;
}
.mark { color: var(--blue); }
.underline-y {
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% .28em;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: clamp(56px, 9vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--surface { background: var(--surface); }
.section--ink { background: var(--footer); color: #c7d2e0; }

.grid { display: grid; gap: var(--s6); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .lead { margin-top: var(--s4); }
.split-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}
@media (min-width: 900px) {
  .split-head { grid-template-columns: 1.1fr .9fr; gap: var(--s7); }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  --btn-bd: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 48px;
  padding: 0 var(--s5);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--r-sm);
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--yellow); --btn-fg: var(--ink); --btn-bd: var(--yellow); }
.btn--primary:hover { --btn-bg: var(--yellow-600); --btn-bd: var(--yellow-600); box-shadow: 0 16px 30px rgba(224,162,0,.32); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--blue); --btn-bd: var(--line-2); }
.btn--ghost:hover { --btn-bg: var(--blue-50); --btn-bd: var(--blue); color: var(--blue); box-shadow: none; }

.btn--on-dark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); }
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,.08); --btn-bd: #fff; color: #fff; box-shadow: none; }

/* circular arrow button */
.arrow-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  border: 2px solid var(--line-2);
  color: var(--blue);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.arrow-btn svg { width: 20px; height: 20px; }
.arrow-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: rotate(-45deg); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-1); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 34px; width: auto; }

.nav__menu { display: none; }
@media (min-width: 1040px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: var(--s3);
    margin-inline: auto;
  }
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: var(--header-h);
  padding-inline: var(--s3);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--blue); }
.nav__link .chev { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav__item[aria-current="page"] > .nav__link,
.nav__link.is-active { color: var(--blue); border-bottom-color: var(--yellow); }

/* dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(var(--header-h) - 8px);
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  padding: var(--s2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item:hover .nav__link .chev { transform: rotate(180deg); }
.nav__dropdown a {
  display: block;
  padding: 10px var(--s3);
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--ink-2);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__dropdown a:hover { background: var(--blue-50); color: var(--blue); }

.nav__cta { display: none; align-items: center; gap: var(--s4); flex-shrink: 0; }
@media (min-width: 1040px) { .nav__cta { display: flex; } }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}
.nav__phone svg { width: 18px; height: 18px; color: var(--blue); }
.nav__phone span { font-size: .7rem; color: var(--muted); display: block; letter-spacing: .12em; }
.nav__phone strong { font-size: 1rem; }

/* hamburger */
.nav__toggle {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-left: auto;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
}
@media (min-width: 1040px) { .nav__toggle { display: none; } }
.nav__toggle svg { width: 24px; height: 24px; }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  background: #fff;
  z-index: var(--z-menu);
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__top img { height: 30px; }
.mobile-menu__close { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }
.mobile-menu nav { padding: var(--s4) var(--s5) var(--s7); }
.m-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.m-link:hover { color: var(--blue); }
.mobile-menu .btn { width: 100%; margin-top: var(--s5); }
.mobile-menu__contact { margin-top: var(--s5); color: var(--ink-2); font-size: .95rem; }
.scrim {
  position: fixed; inset: 0;
  background: rgba(11,27,48,.5);
  z-index: var(--z-menu);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.scrim.is-open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* topbar (thin utility strip) */
.topbar {
  background: var(--blue-700);
  color: #cfe0f4;
  font-size: .82rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px; gap: var(--s4); flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar__list { display: flex; gap: var(--s5); flex-wrap: wrap; }
.topbar__list li { display: inline-flex; align-items: center; gap: 6px; }
.topbar__list svg { width: 14px; height: 14px; color: var(--yellow); }
.topbar__promo { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
@media (max-width: 640px) { .topbar { display: none; } }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__ghost {
  position: absolute;
  right: -2%;
  top: 6%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 20rem);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--surface-2);
  text-stroke: 1.5px var(--surface-2);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 88px);
}
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  line-height: .95;
  color: var(--ink);
  text-transform: uppercase;
  margin: var(--s4) 0 var(--s5);
}
.hero__sub { max-width: 46ch; margin-bottom: var(--s6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--s6);
  margin-top: var(--s7);
  padding-top: var(--s6);
  border-top: 1px solid var(--line);
}
.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--blue-700), var(--blue));
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__accent {
  position: absolute;
  z-index: -1;
  width: 62%; height: 62%;
  right: -18px; bottom: -18px;
  background: var(--yellow);
  border-radius: var(--r-lg);
}
.hero__badge {
  position: absolute;
  left: -18px; bottom: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  padding: var(--s4) var(--s5);
  display: flex; align-items: center; gap: var(--s4);
  max-width: 260px;
}
.hero__badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--blue);
  line-height: 1;
}
.hero__badge p { font-size: .82rem; color: var(--ink-2); line-height: 1.35; }

/* ---------- Stat blocks ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5) var(--s6); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--blue);
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.stat__num::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 4px; background: var(--yellow); border-radius: 2px;
}
.stat__label { margin-top: var(--s3); font-size: .9rem; color: var(--muted); line-height: 1.4; }
.stat__label strong { display: block; color: var(--ink); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-family: var(--font-head); font-size: .95rem; }

/* ---------- Guarantee cards ---------- */
.guarantees { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width: 620px) { .guarantees { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .guarantees { grid-template-columns: repeat(4, 1fr); } }
.g-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s6) var(--s5);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.g-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.g-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--blue-100); }
.g-card:hover::before { transform: scaleX(1); }
.g-card__icon {
  width: 54px; height: 54px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue);
  margin-bottom: var(--s5);
}
.g-card__icon svg { width: 28px; height: 28px; }
.g-card h3 { font-size: 1.15rem; margin-bottom: var(--s3); }
.g-card p { font-size: .92rem; color: var(--ink-2); }
.g-card .tag { position: absolute; top: var(--s4); right: var(--s4); font-family: var(--font-head); font-size: .7rem; letter-spacing: .12em; color: var(--muted); }

/* ---------- Numbered list (services / process) ---------- */
.num-list { border-top: 1px solid var(--line); }
.num-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s5);
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease);
}
.num-row:hover { background: linear-gradient(90deg, var(--surface), transparent); }
.num-row__n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: transparent;
  -webkit-text-stroke: 1.4px var(--line-2);
  text-stroke: 1.4px var(--line-2);
  line-height: 1;
  min-width: 2.4ch;
  transition: -webkit-text-stroke-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.num-row:hover .num-row__n { color: var(--blue); -webkit-text-stroke-color: var(--blue); }
.num-row__body h3 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
.num-row__body p { margin-top: 6px; font-size: .95rem; color: var(--ink-2); max-width: 62ch; }
.num-row__tag {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-head); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-50); padding: 4px 10px; border-radius: var(--r-pill);
}
@media (max-width: 620px) {
  .num-row { grid-template-columns: auto 1fr; }
  .num-row .arrow-btn { grid-column: 1 / -1; justify-self: start; }
}

/* ---------- Cards (products / industries / case studies) ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--blue-100); }
.card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: var(--s4); left: var(--s4);
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-xs);
}
.card__body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.card__body h3 { font-size: 1.2rem; }
.card__body p { font-size: .92rem; color: var(--ink-2); flex: 1; }
.card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue);
  margin-top: auto;
}
.card__link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.card:hover .card__link svg { transform: translateX(5px); }

/* media + copy split */
.media-split { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .media-split { grid-template-columns: 1fr 1fr; } }
.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--blue-700), var(--blue));
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame__stat {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--yellow); color: var(--ink);
  border-radius: var(--r-sm); padding: 12px 18px;
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1;
}
.media-frame__stat span { display: block; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

/* card feature list (checklist inside cards) */
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: var(--s4); }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--ink-2); }
.feature-list svg { width: 16px; height: 16px; color: var(--yellow-600); flex-shrink: 0; }

/* branded icon media (category tiles without photos) */
.card__media--brand {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(30,86,160,.10), transparent 60%),
    linear-gradient(160deg, var(--blue-50), #ffffff);
}
.card__media--brand::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,86,160,.10) 1px, transparent 1px);
  background-size: 18px 18px; opacity: .5;
}
.card__media--brand svg { position: relative; width: 84px; height: 84px; color: var(--blue); stroke-width: 1.6; }

/* trusted-by strip */
.trusted { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s5) var(--s7); }
.trusted__label {
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.trusted__name {
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  letter-spacing: .02em; color: var(--ink-2); opacity: .75;
  display: inline-flex; align-items: center; gap: 8px;
}
.trusted__name svg { width: 18px; height: 18px; color: var(--blue); }

/* compact pill grid (industries / categories) */
.pill-grid { display: flex; flex-wrap: wrap; gap: var(--s3); }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  color: var(--ink); letter-spacing: .02em;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); transform: translateY(-2px); }
.pill svg { width: 15px; height: 15px; color: var(--yellow-600); }

/* ---------- 3-step process ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--s5); counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.step__k {
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.step__n {
  font-family: var(--font-display); font-size: 3rem; color: var(--blue); line-height: 1;
  margin: 6px 0 var(--s4);
}
.step h3 { font-size: 1.3rem; margin-bottom: var(--s3); }
.step ul { display: flex; flex-direction: column; gap: 8px; }
.step li { display: flex; align-items: center; gap: 10px; font-size: .94rem; color: var(--ink-2); }
.step li svg { width: 16px; height: 16px; color: var(--yellow-600); flex-shrink: 0; }

/* ---------- Marquee band ---------- */
.marquee {
  background: var(--footer);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(28px, 5vw, 52px);
  border-block: 4px solid var(--yellow);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  padding-inline: var(--s6);
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.55);
  text-stroke: 1.4px rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: var(--s6);
}
.marquee__track span::after {
  content: "";
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--yellow);
  -webkit-text-stroke: 0;
}
.marquee__track span.solid { color: #fff; -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width: 820px) { .tst-grid { grid-template-columns: repeat(2, 1fr); } }
.tst {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s6);
  display: flex; flex-direction: column; gap: var(--s5);
  position: relative;
}
.tst__stars { display: flex; gap: 4px; color: var(--yellow); }
.tst__stars svg { width: 20px; height: 20px; }
.tst__quote { font-size: 1.05rem; line-height: 1.6; color: var(--ink); }
.tst__foot { display: flex; align-items: center; gap: var(--s4); margin-top: auto; }
.tst__avatar {
  width: 48px; height: 48px; border-radius: var(--r-pill);
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
}
.tst__who strong { display: block; color: var(--ink); font-family: var(--font-head); letter-spacing: .02em; }
.tst__who span { font-size: .88rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--blue-700), var(--blue));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 72px);
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,181,0,.28), transparent 70%);
}
.cta-band__grid { position: relative; z-index: 1; display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 860px) { .cta-band__grid { grid-template-columns: 1.4fr 1fr; } }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.cta-band p { color: #cfe0f4; margin-top: var(--s4); max-width: 52ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: flex-start; }
@media (min-width: 860px) { .cta-band .actions { justify-content: flex-end; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--s5); }
.form__row { display: grid; gap: var(--s5); }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .84rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-50);
}
.field .hint { font-size: .8rem; color: var(--muted); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field__error { font-size: .82rem; color: var(--danger); display: none; }
.field.has-error .field__error { display: block; }
.form__note { font-size: .84rem; color: var(--muted); }
.form-status { font-size: .95rem; padding: 12px 16px; border-radius: var(--r-sm); display: none; }
.form-status.is-success { display: block; background: #e7f5ec; color: var(--success); border: 1px solid #b7e0c6; }
.form-status.is-error { display: block; background: #fdecea; color: var(--danger); border: 1px solid #f3c6c0; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: clamp(24px, 4vw, 44px);
}

/* contact layout */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.4fr .9fr; } }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); }
.info-card > h3 { font-size: 1.3rem; margin-bottom: var(--s3); }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.info-row h4 { font-size: .74rem; letter-spacing: .12em; color: var(--muted); margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--ink); font-size: 1rem; }
.info-row a { font-weight: 600; }
.info-row a:hover { color: var(--blue); }

/* location cards */
.loc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: var(--s5); }
.loc--primary { border-color: var(--blue); box-shadow: var(--shadow-1); }
.loc__badge { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: var(--yellow); padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 12px; }
.loc h3 { font-size: 1.15rem; margin-bottom: 8px; }
.loc p { font-size: .92rem; color: var(--ink-2); margin-bottom: 8px; }
.loc a { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--blue-700), var(--blue));
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .6;
}
.page-hero__ghost {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(5rem, 16vw, 14rem);
  color: rgba(255,255,255,.06); line-height: .8; pointer-events: none; user-select: none;
}
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(48px, 8vw, 96px); }
.page-hero h1 { color: #fff; font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-hero .lead { color: #cfe0f4; max-width: 56ch; margin-top: var(--s4); }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: #a9c3e4; margin-bottom: var(--s4); }
.breadcrumb a { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; color: var(--yellow); }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s5) 0;
  text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 2vw, 1.2rem);
  text-transform: uppercase; letter-spacing: .02em; color: var(--ink);
}
.acc-trigger:hover { color: var(--blue); }
.acc-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: var(--r-pill);
  border: 2px solid var(--line-2); display: grid; place-items: center; position: relative;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.acc-icon::before { width: 14px; height: 2px; }
.acc-icon::after { width: 2px; height: 14px; transition: transform var(--dur) var(--ease); }
.acc-trigger[aria-expanded="true"] .acc-icon { background: var(--blue); border-color: var(--blue); color: #fff; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease); }
.acc-trigger[aria-expanded="true"] + .acc-panel { grid-template-rows: 1fr; }
.acc-panel__inner { overflow: hidden; min-height: 0; padding-bottom: var(--s5); color: var(--ink-2); max-width: 76ch; }
.acc-panel__inner > * + * { margin-top: var(--s3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); color: #9fb2c9; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: var(--s7); padding-block: clamp(48px, 7vw, 80px); }
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer__brand .brandmark { margin-bottom: var(--s5); }
.footer__brand p { max-width: 40ch; font-size: .94rem; }
.footer__social { display: flex; gap: var(--s3); margin-top: var(--s5); }
.footer__social a {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #fff;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--yellow); color: var(--ink); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; margin-bottom: var(--s4); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: #9fb2c9; font-size: .92rem; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: var(--s4); font-size: .92rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: var(--s5);
  display: flex; flex-wrap: wrap; gap: var(--s4);
  align-items: center; justify-content: space-between;
  font-size: .84rem;
}
.footer__bottom-links { display: flex; gap: var(--s5); flex-wrap: wrap; }

/* brandmark (CSS logo for dark bg) */
.brandmark { display: inline-flex; align-items: center; gap: 10px; }
.brandmark__ring {
  width: 30px; height: 30px; border-radius: 50%;
  border: 4px solid var(--yellow);
  border-right-color: transparent;
  transform: rotate(-45deg);
}
.brandmark__word {
  font-family: var(--font-head); font-weight: 600; font-size: 1.5rem;
  letter-spacing: .02em; color: #fff; text-transform: lowercase;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-2 { transition-delay: .08s; }
.reveal-3 { transition-delay: .16s; }
.reveal-4 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mt-6 { margin-top: var(--s6); }
.mt-7 { margin-top: var(--s7); }
.max-720 { max-width: 720px; }
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 1000; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; transform: none; justify-content: center; width: 100%; flex-wrap: wrap; }
  .reveal { opacity: 1; transform: none; }
  .arrow-btn:hover { transform: none; }
}
