/* =========================================================
   ProFleet Graphics — Modern Light · Inter · Conversion-first
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Surface */
  --bg:        #FFFFFF;
  --surface:   #F8FAFC;
  --surface-2: #F1F5F9;
  --card:      #FFFFFF;
  --rule:      #E5E7EB;
  --rule-2:    #CBD5E1;

  /* Ink */
  --ink:    #0F172A;
  --ink-2:  #334155;
  --ink-3:  #64748B;
  --ink-4:  #94A3B8;

  /* Brand */
  --brand:      #0083C9;
  --brand-50:   #EAF4FB;
  --brand-100:  #D2E9F6;
  --brand-200:  #A8D3EC;
  --brand-600:  #006FAB;
  --brand-700:  #005F94;

  /* Accents */
  --slate-dark: #0B1220;
  --gold:       #F59E0B;
  --success:    #10B981;

  /* Type */
  --f-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --f-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Scale */
  --t-xs:  12px;
  --t-sm:  14px;
  --t-base:16px;
  --t-md:  18px;
  --t-lg:  20px;
  --t-xl:  clamp(1.35rem, 1.15rem + 0.75vw, 1.55rem);
  --t-2xl: clamp(1.65rem, 1.30rem + 1.3vw, 2.10rem);
  --t-3xl: clamp(2.10rem, 1.50rem + 2.40vw, 3.30rem);
  --t-4xl: clamp(2.60rem, 1.80rem + 3.30vw, 4.50rem);
  --t-5xl: clamp(3.20rem, 2.10rem + 4.80vw, 6.20rem);

  /* Spacing */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;  --s-10: 128px; --s-11: 160px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --sh-2: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --sh-3: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --sh-brand: 0 12px 32px rgba(0, 131, 201, 0.18), 0 2px 6px rgba(0, 131, 201, 0.10);

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);

  /* Layout */
  --container: 1240px;
  --gutter: 24px;
  --nav-h: 72px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--f-sans);
  font-feature-settings: "kern", "liga", "cv11", "ss01";
  background: var(--bg);
  color: var(--ink);
  font-size: var(--t-base);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
ul, ol { list-style: none; }
::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 3. Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-sans);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.h-display {
  font-size: var(--t-5xl);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.h-1 { font-size: var(--t-4xl); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.h-2 { font-size: var(--t-3xl); font-weight: 700; letter-spacing: -0.028em; line-height: 1.1; }
.h-3 { font-size: var(--t-2xl); font-weight: 600; letter-spacing: -0.022em; line-height: 1.15; }
.h-4 { font-size: var(--t-xl);  font-weight: 600; letter-spacing: -0.018em; line-height: 1.25; }

.lede {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.eyebrow.no-dash::before { display: none; }

.text-ink   { color: var(--ink); }
.text-dim   { color: var(--ink-2); }
.text-quiet { color: var(--ink-3); }
.text-brand { color: var(--brand); }
.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }

/* ---------- 4. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 720px) { :root { --gutter: 18px; } }

.section { padding: var(--s-10) 0; position: relative; }
.section-tight { padding: var(--s-8) 0; }
.section-wide  { padding: var(--s-11) 0; }
@media (max-width: 720px) {
  .section { padding: var(--s-8) 0; }
  .section-tight { padding: var(--s-7) 0; }
  .section-wide { padding: var(--s-9) 0; }
}

.section--soft { background: var(--surface); }
.section--dark { background: var(--slate-dark); color: #E2E8F0; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--brand-200); }
.section--dark .eyebrow::before { background: var(--brand-200); }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.row { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.stack { display: flex; flex-direction: column; }
.gap-2{gap:var(--s-2);} .gap-3{gap:var(--s-3);} .gap-4{gap:var(--s-4);} .gap-5{gap:var(--s-5);} .gap-6{gap:var(--s-6);}
.mt-3{margin-top:var(--s-3);} .mt-4{margin-top:var(--s-4);} .mt-5{margin-top:var(--s-5);} .mt-6{margin-top:var(--s-6);} .mt-7{margin-top:var(--s-7);} .mt-8{margin-top:var(--s-8);}

.hide-sm { display: initial; }
@media (max-width: 720px) { .hide-sm { display: none; } }
.hide-lg { display: none; }
@media (max-width: 720px) { .hide-lg { display: initial; } }

/* ---------- 5. Buttons (conversion-first) ---------- */
.btn {
  --b-bg: transparent;
  --b-bd: var(--rule-2);
  --b-fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: var(--b-bg);
  color: var(--b-fg);
  border: 1.5px solid var(--b-bd);
  transition: background .25s var(--ease-out), color .25s, border-color .25s, transform .2s, box-shadow .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s var(--ease-out); }
.btn:hover { transform: translateY(-1px); }
.btn:hover .arr { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --b-bg: var(--brand);
  --b-bd: var(--brand);
  --b-fg: #fff;
  box-shadow: var(--sh-brand);
}
.btn--primary:hover {
  --b-bg: var(--brand-700);
  --b-bd: var(--brand-700);
  box-shadow: 0 14px 36px rgba(0, 131, 201, 0.28), 0 2px 6px rgba(0, 131, 201, 0.14);
}

.btn--secondary {
  --b-bg: #fff;
  --b-bd: var(--rule-2);
  --b-fg: var(--ink);
  box-shadow: var(--sh-1);
}
.btn--secondary:hover {
  --b-bd: var(--ink);
  --b-fg: var(--ink);
}

.btn--ghost {
  --b-bg: transparent;
  --b-bd: transparent;
  --b-fg: var(--ink);
  padding: 12px 8px;
}
.btn--ghost:hover { color: var(--brand); }

.btn--dark {
  --b-bg: var(--ink);
  --b-bd: var(--ink);
  --b-fg: #fff;
}
.btn--dark:hover {
  --b-bg: var(--slate-dark);
  --b-bd: var(--slate-dark);
}

.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

.btn--block { width: 100%; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
  transition: color .2s, gap .2s;
}
.link:hover { color: var(--brand-700); gap: 10px; }

/* ---------- 6. Top callout bar ---------- */
.topbar {
  background: var(--ink);
  color: #E2E8F0;
  font-size: 13px;
  padding: 10px 0;
}
.topbar__row {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-5); flex-wrap: wrap;
}
.topbar a { color: #E2E8F0; font-weight: 500; }
.topbar a:hover { color: var(--brand-200); }
.topbar__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}
.topbar__phone { font-weight: 600; }
@media (max-width: 720px) {
  .topbar__row { justify-content: center; text-align: center; gap: 10px; }
}

/* ---------- 7. Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--rule);
  box-shadow: var(--sh-1);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  background: var(--slate-dark);
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: background .2s;
}
.nav__brand:hover { background: var(--ink); }
.nav__brand-img {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .nav__brand { padding: 6px 12px; }
  .nav__brand-img { height: 24px; }
}

.nav__list { display: flex; align-items: center; gap: var(--s-1); }
.nav__list a {
  position: relative;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav__list a:hover { color: var(--ink); background: var(--surface); }
.nav__list a[aria-current="page"] { color: var(--brand); }

.nav__cta { display: inline-flex; align-items: center; gap: var(--s-3); }
.nav__phone {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 8px 0;
}
.nav__phone:hover { color: var(--brand); }
.nav__burger {
  width: 42px; height: 42px;
  display: none;
  align-items: center; justify-content: center;
  border-radius: var(--r-md);
  border: 1px solid var(--rule-2);
  background: #fff;
}
.nav__burger span {
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative; display: block;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink);
  transition: transform .3s;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav__list, .nav__cta .nav__phone { display: none; }
  .nav__burger { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 0; background: #fff; z-index: 55;
  padding: calc(var(--nav-h) + 24px) var(--gutter) var(--s-7);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .35s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.mobile-menu .mobile-cta {
  margin-top: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding: var(--s-8) 0 var(--s-9);
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.hero__copy { max-width: 640px; }
.hero__title {
  font-size: var(--t-5xl);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-top: var(--s-5);
  text-wrap: balance;
}
.hero__title em { color: var(--brand); font-style: normal; }
.hero__sub {
  margin-top: var(--s-5);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 56ch;
}
.hero__cta {
  margin-top: var(--s-6);
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}
.hero__trust {
  margin-top: var(--s-7);
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}
.hero__trust-item {
  display: flex; gap: 10px; align-items: flex-start;
}
.hero__trust-item svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.hero__trust-item strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.hero__trust-item span { font-size: 13px; color: var(--ink-3); }

.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-3);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__badge {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--sh-2);
}
.hero__badge svg { color: var(--brand); }
.hero__floater {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--sh-3);
  min-width: 200px;
}
.hero__floater .k { font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.hero__floater .v { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.025em; line-height: 1.1; margin-top: 4px; }
.hero__floater .v small { color: var(--brand); font-weight: 600; font-size: 14px; }
@media (max-width: 720px) {
  .hero__floater { display: none; }
}

/* ---------- 9. Trust strip (logos / proof) ---------- */
.trust-strip {
  padding: var(--s-7) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.trust-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  align-items: center;
}
@media (max-width: 720px) {
  .trust-strip__row { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.trust-strip__item .v {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.trust-strip__item .k {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

/* ---------- 10. Section heads ---------- */
.head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-7);
}
.head--left {
  text-align: left;
  margin: 0 0 var(--s-7);
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: end;
}
.head__title {
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.head__title em { color: var(--brand); font-style: normal; }
.head__copy {
  color: var(--ink-2);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.55;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.head--left .head__copy { margin: 0; }
@media (max-width: 820px) {
  .head--left { grid-template-columns: 1fr; }
}

/* ---------- 11. Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 1020px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s, border-color .35s, transform .35s var(--ease-out);
}
.card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--sh-3);
  transform: translateY(-3px);
}
.card__photo {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--surface);
}
.card__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease-out);
}
.card:hover .card__photo img { transform: scale(1.05); }

.card__body {
  padding: var(--s-5) var(--s-5) var(--s-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s-3);
}
.card__title {
  font-size: var(--t-lg);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1.2;
}
.card__desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  flex: 1;
}
.card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: var(--s-2);
}
.card__tags li {
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-top: var(--s-3);
  transition: gap .2s;
}
.card:hover .card__cta { gap: 10px; }
.card__icon {
  width: 48px; height: 48px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: var(--s-3);
}

/* ---------- 12. Steps (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.step:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); transform: translateY(-2px); }
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
}
.step__title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--s-2);
}
.step__desc { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }

/* ---------- 13. Stat block ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}
.stat-cell {
  padding: var(--s-6);
  border-right: 1px solid var(--rule);
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .v {
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-cell .v sup { font-size: 0.55em; color: var(--brand); margin-left: 2px; font-weight: 600; }
.stat-cell .k {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
  margin-top: var(--s-3);
  max-width: 26ch;
}
@media (max-width: 920px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- 14. Work gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s-4); }
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface);
  display: block;
  transition: box-shadow .35s, transform .35s;
}
.tile:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }
.tile__img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .8s var(--ease-out);
}
.tile:hover .tile__img { transform: scale(1.05); }
.tile--lg { grid-column: span 6; }
.tile--md { grid-column: span 6; }
.tile--sm { grid-column: span 3; }
.tile--wide { grid-column: span 12; }
.tile--wide .tile__img { aspect-ratio: 21 / 8; }
@media (max-width: 920px) {
  .tile--lg, .tile--md { grid-column: span 12; }
  .tile--sm { grid-column: span 6; }
}
@media (max-width: 540px) { .tile--sm { grid-column: span 12; } }

.tile__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: var(--s-7) var(--s-5) var(--s-4);
  background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.85) 100%);
  color: #fff;
}
.tile__title { font-size: var(--t-md); font-weight: 700; letter-spacing: -0.02em; }
.tile__sub { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.tile__tag {
  position: absolute; top: var(--s-4); left: var(--s-4);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--brand);
  background: #fff;
  padding: 4px 10px; border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
}

/* ---------- 15. Pricing tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}
@media (max-width: 920px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: border-color .25s, box-shadow .25s;
}
.tier:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); }
.tier--feature {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: var(--sh-2);
}
.tier--feature::before {
  content: "Most popular";
  position: absolute; top: -12px; left: 24px;
  background: var(--brand); color: #fff;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.tier__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.tier__title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.tier__price {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1;
}
.tier__price small {
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 4px;
}
.tier__desc { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.tier__list { display: flex; flex-direction: column; gap: 10px; padding-top: var(--s-4); border-top: 1px solid var(--rule); }
.tier__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
}
.tier__list li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  background-color: var(--brand-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230083C9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-top: 2px;
}
.tier__cta { margin-top: auto; padding-top: var(--s-3); }

/* ---------- 16. Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.quote__stars {
  display: inline-flex; gap: 2px;
  color: var(--gold);
}
.quote__text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.quote__attr {
  display: flex; gap: var(--s-3); align-items: center;
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.quote__attr strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quote__attr span {
  font-size: 13px;
  color: var(--ink-3);
}

/* Big single testimonial */
.quote-big {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 4vw, var(--s-9));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: var(--s-7);
  align-items: center;
  box-shadow: var(--sh-1);
}
.quote-big__text {
  font-size: clamp(1.3rem, 0.9rem + 1.3vw, 1.8rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-wrap: balance;
}
.quote-big__text::before {
  content: "“";
  font-size: 3em; line-height: 0;
  color: var(--brand);
  margin-right: 2px;
}
.quote-big__attr {
  font-size: 13px;
  color: var(--ink-3);
}
.quote-big__attr strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
@media (max-width: 820px) { .quote-big { grid-template-columns: 1fr; gap: var(--s-5); } }

/* ---------- 17. FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item:hover { border-color: var(--rule-2); }
.faq__item.is-open { border-color: var(--brand); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  letter-spacing: -0.012em;
}
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  display: grid; place-items: center;
  transition: transform .35s var(--ease-out), background .25s, color .25s;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq__a {
  max-height: 0; overflow: hidden;
  color: var(--ink-2); font-size: 15.5px; line-height: 1.6;
  padding: 0 22px;
  transition: max-height .55s var(--ease-out), padding .35s;
}
.faq__a b { color: var(--ink); font-weight: 600; }
.faq__a a { color: var(--brand); font-weight: 600; }
.faq__item.is-open .faq__a { max-height: 500px; padding: 0 22px 20px; }

/* ---------- 18. CTA section ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(var(--s-7), 5vw, var(--s-10)) clamp(var(--s-6), 4vw, var(--s-9));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}
.cta-block__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-block h2 {
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: #fff;
  text-wrap: balance;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.15rem);
  line-height: 1.55;
  margin-top: var(--s-4);
}
.cta-block .btns {
  display: inline-flex; gap: var(--s-3);
  margin-top: var(--s-6);
  flex-wrap: wrap; justify-content: center;
}
.cta-block .btn--primary {
  --b-bg: #fff;
  --b-bd: #fff;
  --b-fg: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-block .btn--primary:hover {
  --b-bg: var(--ink);
  --b-bd: var(--ink);
  --b-fg: #fff;
}
.cta-block .btn--secondary {
  --b-bg: rgba(255, 255, 255, 0.12);
  --b-bd: rgba(255, 255, 255, 0.32);
  --b-fg: #fff;
  box-shadow: none;
}
.cta-block .btn--secondary:hover {
  --b-bg: rgba(255, 255, 255, 0.22);
  --b-bd: rgba(255, 255, 255, 0.5);
}

/* ---------- 19. Footer ---------- */
.footer {
  background: var(--slate-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--s-9) 0 var(--s-5);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.8fr));
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 980px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand .footer__logo {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: var(--r-md);
}
.footer__brand .footer__logo img { height: 30px; }
.footer__brand p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--s-4);
  max-width: 32ch;
  line-height: 1.5;
}

.footer__col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s-4);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
}
.footer__col a:hover { color: var(--brand-200); }
.footer__col .small { color: rgba(255, 255, 255, 0.6); }

.footer__social { display: flex; gap: 10px; margin-top: var(--s-4); }
.footer__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--brand); color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

/* ---------- 20. Forms ---------- */
.form { display: grid; gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.field input, .field select, .field textarea {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-md);
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 131, 201, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio {
  cursor: pointer;
  padding: 10px 16px;
  border: 1.5px solid var(--rule);
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.radio input { display: none; }
.radio:hover { border-color: var(--rule-2); }
.radio:has(input:checked) { background: var(--brand); color: #fff; border-color: var(--brand); }

.form-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  box-shadow: var(--sh-1);
}
.form-card fieldset { border: 0; padding: 0; margin: 0 0 var(--s-6) 0; }
.form-card fieldset:last-of-type { margin-bottom: 0; }
.form-card legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  width: 100%;
}
.form-success {
  padding: var(--s-5);
  background: var(--brand-50);
  border: 1.5px solid var(--brand);
  border-radius: var(--r-md);
  color: var(--ink);
  margin-bottom: var(--s-4);
}
.form-success strong { display: block; margin-bottom: 4px; font-weight: 700; color: var(--brand-700); }

/* ---------- 21. Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-7);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  overflow: hidden;
}
.page-hero__crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: var(--s-5);
}
.page-hero__crumbs .sep { color: var(--ink-4); }
.page-hero__crumbs a:hover { color: var(--brand); }
.page-hero__title {
  font-size: var(--t-4xl);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.page-hero__title em { color: var(--brand); font-style: normal; }
.page-hero__sub {
  margin-top: var(--s-4);
  color: var(--ink-2);
  max-width: 60ch;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.55;
}
.page-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 920px) { .page-hero__row { grid-template-columns: 1fr; } }

.page-hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh-2);
}
.page-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 820px) { .page-hero__photo { aspect-ratio: 16 / 10; } }

/* ---------- 22. Two-column content ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--s-8);
  align-items: start;
}
.split__title {
  font-size: var(--t-2xl);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 16ch;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  text-wrap: balance;
}
.split__title em { color: var(--brand); font-style: normal; }
.split__body { display: flex; flex-direction: column; gap: var(--s-4); color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.split__body p { max-width: 60ch; }
.split__body strong { color: var(--ink); font-weight: 600; }
.split__body h3 { font-size: var(--t-md); color: var(--ink); margin-top: var(--s-3); font-weight: 600; letter-spacing: -0.015em; }

.spec-list { background: #fff; border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.spec-list li {
  padding: var(--s-4) var(--s-5);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s-4);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list li .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spec-list li .body { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.spec-list li .body b { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: var(--s-5); }
  .split__title { position: static; }
  .spec-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- 23. Callout ---------- */
.callout {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: start;
}
.callout__icon {
  width: 44px; height: 44px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.callout__body strong {
  display: block;
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.018em;
}
.callout__body span { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ---------- 24. Contact blocks ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.contact-card:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); transform: translateY(-2px); }
.contact-card__icon {
  width: 44px; height: 44px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: var(--s-2);
}
.contact-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-card__value {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact-card__value:hover { color: var(--brand); }
.contact-card .small { color: var(--ink-2); font-size: 14.5px; }

/* ---------- 25. Quote form layout ---------- */
.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 980px) { .quote-shell { grid-template-columns: 1fr; } }
.quote-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--slate-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--s-7);
  border-radius: var(--r-lg);
}
.quote-aside h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-200);
  margin-bottom: var(--s-3);
}
.quote-aside .title {
  font-size: var(--t-2xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--s-5);
}
.quote-aside ul { display: flex; flex-direction: column; gap: 14px; }
.quote-aside ul li { display: flex; gap: 12px; align-items: flex-start; }
.quote-aside ul li svg { color: var(--brand-200); flex-shrink: 0; margin-top: 2px; }
.quote-aside ul li b { color: #fff; font-weight: 600; }
.quote-aside .ph {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.quote-aside .ph a {
  display: inline-block;
  font-size: var(--t-xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.quote-aside .ph a:hover { color: var(--brand-200); }
.quote-aside .ph p { color: rgba(255, 255, 255, 0.6); font-size: 14px; margin-top: 4px; }

/* ---------- 26. About — timeline & team ---------- */
.timeline {
  position: relative;
  padding-left: var(--s-7);
  border-left: 2px solid var(--brand);
}
.tl-item { position: relative; padding-bottom: var(--s-7); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--s-7) - 8px);
  top: 8px;
  width: 14px; height: 14px;
  background: #fff;
  border: 3px solid var(--brand);
  border-radius: 50%;
}
.tl-year {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tl-title {
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.022em;
  margin: 6px 0 8px;
  line-height: 1.2;
}
.tl-body { color: var(--ink-2); max-width: 60ch; font-size: 15.5px; line-height: 1.6; }

.team-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: border-color .25s, box-shadow .25s;
}
.team-card:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); }
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.team-card .role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.team-card h3 {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.022em;
  margin: 4px 0 6px;
}
.team-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ---------- 27. 404 ---------- */
.notfound {
  min-height: calc(100vh - var(--nav-h) - 60px);
  display: grid; place-items: center;
  text-align: center;
  padding: var(--s-9) var(--gutter);
}
.notfound__num {
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--ink);
}
.notfound__num em { color: var(--brand); font-style: normal; }

/* ---------- 28. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.06s; }
.reveal[data-delay="2"] { transition-delay: 0.12s; }
.reveal[data-delay="3"] { transition-delay: 0.18s; }
.reveal[data-delay="4"] { transition-delay: 0.24s; }
.reveal[data-delay="5"] { transition-delay: 0.30s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
