/* ============================================
   Blameo — design tokens
   Brand sage/teal sampled from the company profile
============================================ */
:root {
  --brand-50:  #eef7f3;
  --brand-100: #d6ece3;
  --brand-200: #aedacb;
  --brand-300: #82c5af;
  --brand-400: #5da393;
  --brand-500: #599581;
  --brand-600: #467a69;
  --brand-700: #355c50;
  --brand-800: #243f37;
  --brand-900: #142420;

  --mint-300: #9fd6c2;
  --mint-400: #63c9aa;

  --ink-900: #0c1416;
  --ink-800: #1a262a;
  --ink-700: #2c3b40;
  --ink-600: #4b5b60;
  --ink-500: #6b7a7f;
  --ink-400: #97a3a7;
  --ink-300: #c4ccce;
  --ink-200: #e1e6e7;
  --ink-100: #eef1f1;
  --ink-50:  #f7f8f8;

  --bg: #ffffff;
  --bg-alt: #f6f9f8;
  --border: rgba(12, 20, 22, 0.08);
  --border-strong: rgba(12, 20, 22, 0.14);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(12,20,22,.06), 0 4px 14px rgba(12,20,22,.04);
  --shadow:    0 6px 24px rgba(12,20,22,.08), 0 2px 6px rgba(12,20,22,.04);
  --shadow-lg: 0 30px 60px -20px rgba(12,20,22,.25), 0 12px 30px -10px rgba(12,20,22,.10);
  --shadow-card: 0 4px 16px rgba(12,20,22,.07), 0 1px 4px rgba(12,20,22,.04);

  --transition: .25s cubic-bezier(.2,.7,.2,1);
  --brand-gradient: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-400) 55%, var(--mint-400) 100%);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;

  --easing: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1vw + 8px, 17px);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--brand-200); color: var(--ink-900); }
::-moz-selection { background: var(--brand-200); color: var(--ink-900); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--easing); }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: -.02em; }

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

/* ============================================
   Typography helpers
============================================ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-200);
  display: inline-block;
}
.eyebrow--light { color: var(--mint-300); }
.eyebrow.center { text-align: center; }

.h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink-900);
}
.h2.center { text-align: center; max-width: 22ch; margin-inline: auto; }
.h2--light { color: #fff; }
.h2--sm { font-size: clamp(24px, 2.4vw, 32px); }
.h2--xl { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.02; }

.subtitle {
  font-size: clamp(16px, 1vw + 8px, 19px);
  color: var(--ink-600);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 0 12px;
}
.subtitle.center { text-align: center; margin-inline: auto; }

.lead { font-size: 17px; color: var(--ink-600); }
.lead.center { text-align: center; max-width: 60ch; margin: 0 auto 8px; }

.prose p { margin: 0 0 14px; color: var(--ink-700); font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

.center { text-align: center; }

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s var(--easing), background .25s var(--easing), color .25s var(--easing), border-color .25s var(--easing), box-shadow .25s var(--easing);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%); color: #fff; border-color: var(--ink-900); }
.btn--primary:hover { background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%); border-color: var(--brand-500); box-shadow: 0 12px 30px -10px rgba(89,149,129,.55); }
.btn--secondary { background: transparent; color: var(--brand-700); border-color: var(--brand-400); }
.btn--secondary:hover { background: var(--brand-50); border-color: var(--brand-600); color: var(--brand-800); }
.btn--ghost { background: transparent; color: var(--ink-900); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--ink-900); }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ============================================
   Brand mark
============================================ */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 18px;
  color: var(--ink-900);
}
.brand__logo { height: 36px; width: auto; display: block; }
.brand--light { color: #fff; }

/* ============================================
   Topbar
============================================ */
.topbar {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
}
.topbar__inner { display: flex; align-items: center; gap: 8px; height: 36px; }
.topbar__item { color: rgba(255,255,255,.78); }
.topbar__item:hover { color: var(--mint-400); }
.topbar__sep { color: rgba(255,255,255,.3); }
.topbar__spacer { flex: 1; }
.topbar__lang { background: transparent; color: rgba(255,255,255,.78); border: 0; font-size: inherit; padding: 4px 8px; }
.topbar__lang:hover { color: var(--mint-400); }
@media (max-width: 720px) {
  .topbar__item:not(:first-child), .topbar__sep:not(:first-of-type) { display: none; }
}

/* ============================================
   Nav
============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--easing), background .25s var(--easing), box-shadow .25s var(--easing);
}
.nav.is-scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,.92); box-shadow: 0 1px 8px rgba(12,20,22,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav__links { display: flex; gap: 28px; font-size: 15px; color: var(--ink-700); font-weight: 500; }
.nav__links a:hover { color: var(--brand-600); }
.nav__links a.is-active { color: var(--brand-700); position: relative; }
.nav__links a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--brand-500); border-radius: 1px; }
.nav__cta { padding: 10px 18px; font-size: 14px; }
.nav__toggle {
  display: none; width: 40px; height: 40px;
  background: transparent; border: 0; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--ink-900); transition: transform .25s var(--easing), opacity .25s var(--easing); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff;
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--easing), transform .25s var(--easing);
  }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(89,149,129,.18), transparent 60%),
    radial-gradient(800px 400px at 85% 70%, rgba(89,149,129,.06), transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(12,20,22,.015) 59px, rgba(12,20,22,.015) 60px),
    #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__loop {
  position: absolute; top: -10%; right: -15%;
  width: 800px; height: 800px;
  background:
    radial-gradient(closest-side, rgba(99,201,170,.5), transparent 70%),
    radial-gradient(closest-side, rgba(89,149,129,.42), transparent 70%);
  background-size: 60% 60%, 100% 100%;
  background-position: 30% 50%, 50% 50%;
  background-repeat: no-repeat;
  filter: blur(40px);
  animation: float 14s var(--easing) infinite alternate;
  border-radius: 50%;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(12,20,22,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12,20,22,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000, transparent 75%);
}
@keyframes float {
  0% { transform: translate(0,0) rotate(0); }
  100% { transform: translate(-40px, 40px) rotate(15deg); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; gap: 40px; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    rgba(255,255,255,.7) padding-box,
    linear-gradient(135deg, var(--brand-300), var(--mint-400), var(--brand-500), var(--brand-300)) border-box;
  background-size: 100% 100%, 300% 300%;
  backdrop-filter: blur(8px);
  font-size: 13px; color: var(--ink-700);
  margin-bottom: 22px;
  animation: eyebrow-shift 6s ease-in-out infinite;
}
@keyframes eyebrow-shift {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); box-shadow: 0 0 0 4px rgba(89,149,129,.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(89,149,129,0); } }

.hero__title {
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  margin: 0 0 22px;
  max-width: 14ch;
}
.hero__title span { display: block; }
.hero__title--accent {
  background: linear-gradient(120deg, var(--brand-700) 10%, var(--brand-400) 50%, var(--mint-400) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { max-width: 52ch; font-size: clamp(16px, 1vw + 8px, 19px); color: var(--ink-700); margin: 0 0 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }

.trustbar {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trustbar__avatars { display: flex; }
.ava {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: #fff;
  border: 2.5px solid #fff;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(12,20,22,.12);
}
.ava:first-child { margin-left: 0; }
.ava--1 { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.ava--2 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.ava--3 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.ava--4 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.ava--5 { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); }
.trustbar__text { font-size: 14.5px; color: var(--ink-600); }
.trustbar__text strong { color: var(--ink-900); }

/* Hero client logos row */
.hero__clients { margin-top: 20px; }
.hero__clients-text { font-size: 12.5px; color: var(--ink-500); margin: 0 0 10px; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; }
.hero__client-logos {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.hero__client-logos img {
  height: auto;
  max-height: 26px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter .3s var(--easing);
}
.hero__client-logos img:hover { filter: grayscale(0%) opacity(1); }

/* Stats header */
.stats__header { padding: 24px 0 0; text-align: center; }
.stats__header .eyebrow { margin-bottom: 8px; }

/* Testimonial quote mark */
.t-card__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4em;
  line-height: 0;
  color: var(--brand-300);
  margin-right: 2px;
  vertical-align: -0.15em;
}

/* Hero visual — orbiting tech chips */
.hero__visual { position: relative; min-height: 380px; }
.orbit { position: absolute; inset: 0; display: grid; place-items: center; }
.orbit__core {
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--mint-400), var(--brand-700));
  box-shadow: 0 0 60px rgba(99,201,170,.4);
  position: relative;
  z-index: 2;
}
.orbit__core::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(89,149,129,.4);
}
.orbit__ring { position: absolute; border: 1px solid var(--border); border-radius: 50%; pointer-events: none; }
.orbit__ring--1 { width: 220px; height: 220px; }
.orbit__ring--2 { width: 320px; height: 320px; }
.orbit__ring--3 { width: 440px; height: 440px; }
.orbit__chip {
  position: absolute;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-800);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
}
.orbit__chip--a { top: 20%; left: 12%; }
.orbit__chip--b { top: 18%; right: 8%; }
.orbit__chip--c { top: 64%; left: 5%; }
.orbit__chip--d { top: 70%; right: 14%; }
.orbit__chip--e { top: 42%; right: -2%; background: var(--brand-500); color: #fff; border-color: var(--brand-500); }
@media (max-width: 980px) { .hero__visual { display: none; } }

/* ============================================
   Featured rotating banner
============================================ */
.featured { padding: 48px 0; background: var(--ink-900); color: #fff; }
.featured__rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 120px;
}
.featured__slide {
  grid-column: 1; grid-row: 1;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--easing), transform .5s var(--easing);
  pointer-events: none;
}
.featured__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.featured__tag {
  padding: 4px 12px;
  background: var(--mint-400); color: var(--ink-900);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font-display);
}
.featured__slide h3 {
  margin: 0; font-size: clamp(18px, 1.6vw + 8px, 22px); color: #fff; font-weight: 600;
}
.featured__slide p { margin: 0; color: rgba(255,255,255,.72); flex: 1; min-width: 220px; max-width: 60ch; font-size: 14.5px; }
.featured__cta { color: var(--mint-400); font-weight: 600; white-space: nowrap; }
.featured__cta:hover { color: #fff; }
.featured__dots { display: flex; gap: 8px; margin-top: 18px; justify-content: center; }
.dot-btn {
  width: 26px; height: 4px; border-radius: 2px; border: 0;
  background: rgba(255,255,255,.18);
  transition: background .25s var(--easing), width .25s var(--easing);
}
.dot-btn.is-active { background: var(--mint-400); width: 40px; }

/* ============================================
   Stats row
============================================ */
.stats {
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  border-top: 3px solid var(--brand-400);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
}
.stats__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat-card {
  text-align: center; padding: 18px 12px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: 0; }
.stat-card__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 3vw, 44px); line-height: 1;
  letter-spacing: -.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card__label { margin-top: 8px; font-size: 13px; color: var(--ink-600); }
@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--border); padding: 18px; }
  .stat-card:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================
   Certifications
============================================ */
.certs { padding: clamp(48px, 6vw, 80px) 0; }
.certs__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin-inline: auto;
}
.cert-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 26px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
}
.cert-badge:hover { transform: translateY(-4px); border-color: var(--brand-300); box-shadow: var(--shadow), 0 0 20px rgba(89,149,129,.15); }
.cert-badge__tag {
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: .12em;
  color: var(--brand-600);
  padding: 3px 10px; border-radius: 6px; background: var(--brand-50);
  margin-bottom: 10px;
}
.cert-badge strong { font-family: var(--font-display); font-size: 24px; color: var(--ink-900); margin-bottom: 4px; }
.cert-badge span { font-size: 12.5px; color: var(--ink-600); }
@media (max-width: 720px) { .certs__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Section base
============================================ */
.section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(135deg, #0e1a1d 0%, #0c2826 50%, #0e3a32 100%);
  color: #fff;
}

/* ============================================
   Why Blameo (image-rich cards)
============================================ */
.why { margin-top: 50px; display: grid; gap: 22px; }
.why__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--easing), box-shadow .35s var(--easing);
}
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.why__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--easing);
}
.why__card:hover .why__media img { transform: scale(1.04); }
.why__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--brand-600);
  margin-bottom: 10px;
}
.why__card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw + 8px, 26px);
  margin: 0 0 12px;
  letter-spacing: -.015em;
}
.why__card p {
  margin: 0;
  color: var(--ink-700);
}
.why__card--rev .why__media { order: 2; }

@media (max-width: 720px) {
  .why__card, .why__card--rev { grid-template-columns: 1fr; }
  .why__card--rev .why__media { order: 0; }
  .why__media { min-height: 200px; }
}

/* ============================================
   Industries grid
============================================ */
.industries {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing), border-left-color .3s var(--easing);
  position: relative;
}
.industry-card:hover { transform: translateY(-6px); border-color: var(--brand-300); border-left-color: var(--brand-500); box-shadow: var(--shadow-card); }
.industry-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-50); color: var(--brand-600);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background .25s var(--easing), color .25s var(--easing);
}
.industry-card:hover .industry-card__icon { background: var(--brand-500); color: #fff; }
.industry-card__icon svg { width: 26px; height: 26px; }
.industry-card h3 { font-size: 20px; margin: 0 0 8px; }
.industry-card p { margin: 0 0 14px; color: var(--ink-700); font-size: 14.5px; }
.industry-card__link {
  font-family: var(--font-display); font-weight: 600;
  color: var(--brand-600); font-size: 13.5px; letter-spacing: .02em;
}
.industry-card__link:hover { color: var(--brand-800); }

@media (max-width: 880px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industries { grid-template-columns: 1fr; } }

/* ============================================
   Solutions tabs + panes
============================================ */
.solutions { margin-top: 50px; }
.solutions__tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.sol-tab {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-700);
  transition: all .25s var(--easing);
  font-family: inherit;
}
.sol-tab:hover { border-color: var(--brand-400); color: var(--brand-700); }
.sol-tab.is-active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.solutions__panes { position: relative; }
.sol-pane {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sol-pane.is-active { display: grid; animation: fadein .35s var(--easing); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }

.sol-pane__media {
  background: linear-gradient(135deg, var(--brand-50), #fff);
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  min-height: 360px;
}
.sol-pane__media img {
  width: 100%; max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(12,20,22,.15));
}
.sol-pane__body { padding: 40px 40px 40px 32px; display: flex; flex-direction: column; justify-content: center; }
.sol-pane__client { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-600); margin: 0 0 10px; }
.sol-pane__body h3 { font-size: clamp(22px, 2vw + 6px, 30px); margin: 0 0 14px; line-height: 1.15; }
.sol-pane__body > p { margin: 0 0 18px; color: var(--ink-700); }
.sol-pane__list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.sol-pane__list li { padding-left: 22px; position: relative; font-size: 14.5px; color: var(--ink-700); }
.sol-pane__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand-500); font-weight: 700;
}
.sol-pane__list strong { color: var(--ink-900); }
.sol-pane__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 18px; border-top: 1px solid var(--border); }
.sol-pane__stats > div { display: flex; flex-direction: column; }
.sol-pane__stats strong { font-family: var(--font-display); font-size: 18px; color: var(--brand-700); letter-spacing: -.01em; }
.sol-pane__stats span { font-size: 12.5px; color: var(--ink-600); }

@media (max-width: 880px) {
  .sol-pane.is-active { grid-template-columns: 1fr; }
  .sol-pane__media { min-height: 260px; padding: 24px; }
  .sol-pane__body { padding: 28px; }
}

/* ============================================
   Media / featured-in strip
============================================ */
.media { padding: 48px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.media__strip {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.media__logo {
  display: grid; place-items: center; height: 60px;
  background: #fff; border: 1px dashed var(--border-strong);
  border-radius: 10px;
  color: var(--ink-500);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .04em;
  transition: color .25s var(--easing), border-color .25s var(--easing);
}
.media__logo:hover { color: var(--brand-700); border-color: var(--brand-400); }
@media (max-width: 880px) { .media__strip { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   Services grid (dark)
============================================ */
.services-grid {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: background .3s var(--easing), transform .3s var(--easing), border-color .3s var(--easing), border-left-color .3s var(--easing);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,201,170,.08), transparent 60%);
  opacity: 0; transition: opacity .3s var(--easing);
  pointer-events: none;
}
.svc-card:hover { background: rgba(99,201,170,.06); border-color: rgba(99,201,170,.35); border-left-color: var(--mint-400); transform: translateY(-4px); }
.svc-card:hover::after { opacity: 1; }
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(99,201,170,.14);
  color: var(--mint-400);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 20px; color: #fff; margin: 0 0 10px; }
.svc-card p { margin: 0 0 14px; color: rgba(255,255,255,.72); font-size: 14.5px; }
.svc-card__link { color: var(--mint-400); font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.svc-card__link:hover { color: #fff; }
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   Engagement models
============================================ */
.models { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.model {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .3s var(--easing), border-color .3s var(--easing);
}
.model:hover { transform: translateY(-4px); border-color: var(--brand-300); }
.model__tag {
  display: inline-block;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--brand-600); background: var(--brand-50);
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: .08em;
}
.model h3 { font-size: 20px; margin: 14px 0 12px; }
.model p { margin: 0 0 16px; color: var(--ink-700); font-size: 14.5px; }
.model__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.model__list li { position: relative; padding-left: 22px; color: var(--ink-700); font-size: 14px; }
.model__list li::before { content: "→"; position: absolute; left: 0; color: var(--brand-500); font-weight: 700; }
.model--accent { background: linear-gradient(135deg, var(--brand-700), var(--brand-500)); border-color: transparent; color: #fff; }
.model--accent .model__tag { background: rgba(255,255,255,.18); color: #fff; }
.model--accent p { color: rgba(255,255,255,.85); }
.model__venn { display: flex; gap: 12px; margin-top: 12px; font-size: 12.5px; }
.model__venn span { flex: 1; text-align: center; padding: 10px 12px; border: 1px dashed rgba(255,255,255,.5); border-radius: 12px; }
@media (max-width: 880px) { .models { grid-template-columns: 1fr; } }

/* ============================================
   Testimonials carousel
============================================ */
.testimonials { margin-top: 50px; position: relative; }
.t-rail {
  display: flex; gap: 22px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}
.t-card {
  flex: 0 0 calc(100% / 2 - 11px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--easing), border-color .3s var(--easing);
}
.t-card:hover { transform: translateY(-4px); border-color: var(--brand-300); }
.t-card__stars { color: #f5b800; letter-spacing: 4px; font-size: 16px; margin-bottom: 14px; }
.t-card__quote {
  font-size: clamp(15px, 1vw + 6px, 16.5px); color: var(--ink-800); margin: 0 0 22px; line-height: 1.6;
  position: relative; padding-left: 20px;
}
.t-card__quote::before {
  content: "\201C";
  position: absolute; left: -2px; top: -8px;
  font-family: Georgia, serif; font-size: 48px; line-height: 1;
  color: var(--brand-200); font-weight: 700;
}
.t-card__author { display: flex; align-items: center; gap: 14px; }
.t-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.t-card__author strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink-900); }
.t-card__author span { font-size: 13px; color: var(--ink-600); }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.t-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 18px; color: var(--ink-900);
  display: grid; place-items: center;
  transition: all .25s var(--easing);
}
.t-arrow:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); transform: translateY(-1px); }
.t-dots { display: flex; gap: 8px; }
.t-dots .dot-btn { background: var(--ink-300); }
.t-dots .dot-btn.is-active { background: var(--brand-500); }

@media (max-width: 880px) { .t-card { flex: 0 0 100%; } }

/* ============================================
   Portfolio CTA
============================================ */
.portfolio-cta {
  padding: clamp(48px, 7vw, 80px) 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E"),
    linear-gradient(150deg, #0c1416 0%, #162b28 50%, #2c4a40 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.portfolio-cta::before {
  content: ""; position: absolute; top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,201,170,.4), transparent 70%);
  filter: blur(60px);
}
.portfolio-cta__inner {
  position: relative;
  display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 30px;
}
.portfolio-cta__lede { color: rgba(255,255,255,.7); max-width: 56ch; margin: 6px 0 0; }
.portfolio-cta .btn--primary { background: var(--mint-400); color: var(--ink-900); border-color: var(--mint-400); }
.portfolio-cta .btn--primary:hover { background: #fff; border-color: #fff; }
@media (max-width: 720px) { .portfolio-cta__inner { grid-template-columns: 1fr; } }

/* ============================================
   Partners
============================================ */
.partners {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.partner {
  display: grid; place-items: center; height: 90px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--ink-700);
  transition: transform .3s var(--easing), border-color .3s var(--easing), color .3s var(--easing);
}
.partner:hover { color: var(--brand-600); border-color: var(--brand-300); transform: translateY(-3px); }
@media (max-width: 880px) { .partners { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .partners { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Insights / blog
============================================ */
.insights__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 40px;
}
.insights__head .h2 { margin: 0; }
.insights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.post {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand-50), var(--ink-100));
  display: grid; place-items: center;
  color: var(--ink-400); font-family: var(--font-display); font-size: 13px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.post__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
a.post__cover { transition: opacity .25s var(--easing); }
a.post__cover:hover { opacity: .92; }
.post__body { padding: 22px 24px 26px; }
.post__meta { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--ink-500); margin-bottom: 10px; }
.post__tag { padding: 3px 10px; background: var(--brand-50); color: var(--brand-700); border-radius: 6px; font-weight: 600; }
.post h3 { font-size: 18px; margin: 0 0 8px; line-height: 1.3; }
.post p { margin: 0; color: var(--ink-700); font-size: 14px; }
@media (max-width: 880px) { .insights { grid-template-columns: 1fr; } .insights__head { flex-direction: column; align-items: flex-start; } }

/* ============================================
   About compact
============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.about-grid__pills { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 7px 14px; background: var(--brand-50); color: var(--brand-700); border-radius: 999px; font-size: 13px; font-weight: 600; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA / Contact
============================================ */
.section--cta {
  position: relative; isolation: isolate;
  padding: clamp(72px, 9vw, 110px) 0;
  color: #fff; overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"),
    radial-gradient(800px 400px at 80% 20%, rgba(99,201,170,.4), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(89,149,129,.45), transparent 65%),
    linear-gradient(150deg, #0c1416 0%, #152a28 40%, #1a3d36 70%, #243f37 100%);
}
.cta__lede { max-width: 56ch; color: rgba(255,255,255,.78); font-size: 17px; margin: 0 0 40px; }
.cta__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; }
.cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .cta__row { grid-template-columns: 1fr; } }

.cta__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78); letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff; font: inherit; font-size: 15px;
  transition: border-color .25s var(--easing), background .25s var(--easing);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--mint-400); background: rgba(99,201,170,.08); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field select option { background: var(--ink-900); color: #fff; }
.cta__form .btn--primary { background: var(--mint-400); color: var(--ink-900); border-color: var(--mint-400); margin-top: 6px; }
.cta__form .btn--primary:hover { background: #fff; border-color: #fff; }
.form__note { margin: 12px 0 0; font-size: 13px; color: var(--mint-300); min-height: 18px; }

.cta__info {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid; gap: 20px;
  align-content: start;
  backdrop-filter: blur(10px);
}
.info-item { display: grid; gap: 4px; }
.info-item__label { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--mint-300); text-transform: uppercase; }
.info-item__value { font-size: 15px; color: #fff; }
a.info-item__value:hover { color: var(--mint-400); }
.socials { display: flex; gap: 8px; margin-top: 4px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,.8); font-weight: 700; font-size: 13px;
  transition: all .25s var(--easing);
}
.socials a:hover { background: var(--mint-400); color: var(--ink-900); border-color: var(--mint-400); }
@media (max-width: 880px) { .cta__grid { grid-template-columns: 1fr; } }

/* ============================================
   Placeholders for user-supplied images
============================================ */
[data-placeholder] {
  position: relative;
  background:
    linear-gradient(135deg, var(--brand-50) 0%, var(--ink-100) 100%);
  color: var(--ink-400);
}
[data-placeholder]::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.03) 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  pointer-events: none;
  opacity: .5;
}

/* ============================================
   Footer
============================================ */
.footer {
  background: #0c1416; color: rgba(255,255,255,.7); padding: 72px 0 28px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--brand-700), var(--mint-400), var(--brand-500)) 1;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__col h4 { font-family: var(--font-display); color: #fff; margin: 0 0 16px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.footer__col a { display: block; padding: 6px 0; color: rgba(255,255,255,.65); font-size: 14px; }
.footer__col a:hover { color: var(--mint-400); }
.footer__col--brand .brand { margin-bottom: 12px; }
.footer__tagline { color: rgba(255,255,255,.72); font-size: 14px; margin: 0 0 12px; max-width: 32ch; }
.footer__addr { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  padding-top: 24px;
}
.footer__legal { margin: 0; font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer__legal-links { display: flex; gap: 18px; font-size: 12.5px; }
.footer__legal-links a { color: rgba(255,255,255,.5); }
.footer__legal-links a:hover { color: var(--mint-400); }

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   Utility classes
============================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 6px;
  background: var(--brand-50); color: var(--brand-700);
}
.badge--dark { background: rgba(255,255,255,.12); color: #fff; }
.badge--accent { background: var(--brand-500); color: #fff; }

.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
  position: relative;
}
.divider::after {
  content: "";
  position: absolute; left: 0; top: -1.5px;
  width: 48px; height: 3px;
  background: var(--brand-gradient);
  border-radius: 2px;
}
.divider--center::after { left: 50%; transform: translateX(-50%); }

/* ============================================
   Reveal-on-scroll
============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--easing), transform .7s var(--easing); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--easing), transform .55s var(--easing); }
.stagger.is-visible > *,
.reveal.is-visible .stagger > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1), .reveal.is-visible .stagger > *:nth-child(1)  { transition-delay: .04s; }
.stagger.is-visible > *:nth-child(2), .reveal.is-visible .stagger > *:nth-child(2)  { transition-delay: .10s; }
.stagger.is-visible > *:nth-child(3), .reveal.is-visible .stagger > *:nth-child(3)  { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4), .reveal.is-visible .stagger > *:nth-child(4)  { transition-delay: .22s; }
.stagger.is-visible > *:nth-child(5), .reveal.is-visible .stagger > *:nth-child(5)  { transition-delay: .28s; }
.stagger.is-visible > *:nth-child(6), .reveal.is-visible .stagger > *:nth-child(6)  { transition-delay: .34s; }
.stagger.is-visible > *:nth-child(7), .reveal.is-visible .stagger > *:nth-child(7)  { transition-delay: .40s; }
.stagger.is-visible > *:nth-child(8), .reveal.is-visible .stagger > *:nth-child(8)  { transition-delay: .46s; }
.stagger.is-visible > *:nth-child(9), .reveal.is-visible .stagger > *:nth-child(9)  { transition-delay: .52s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   ============== INNER-PAGE STYLES (subpages) ================
============================================================ */

/* Page hero — used on all subpages */
.page-hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(99,201,170,.16), transparent 60%),
    radial-gradient(800px 400px at 90% 30%, rgba(89,149,129,.14), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero__inner { max-width: 800px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 14px 0 18px;
  letter-spacing: -.02em;
}
.page-hero h1 .accent {
  background: linear-gradient(120deg, var(--brand-700) 0%, var(--brand-400) 50%, var(--mint-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p { font-size: clamp(16px, 1vw + 8px, 19px); color: var(--ink-700); max-width: 62ch; margin: 0; }
.page-hero__cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Breadcrumb */
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-500);
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.crumb a { color: var(--ink-500); }
.crumb a:hover { color: var(--brand-600); }
.crumb__sep { opacity: .5; }
.crumb__current { color: var(--ink-900); font-weight: 600; }

/* Two-column article layout (case study / blog detail) */
.article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.article-toc {
  position: sticky; top: 100px; align-self: start;
  font-family: var(--font-display);
  font-size: 13.5px;
}
.article-toc__label { font-weight: 700; color: var(--ink-900); letter-spacing: .12em; text-transform: uppercase; font-size: 11.5px; margin-bottom: 14px; }
.article-toc a {
  display: block;
  padding: 8px 0 8px 14px;
  color: var(--ink-600);
  border-left: 2px solid var(--border);
  line-height: 1.4;
}
.article-toc a:hover, .article-toc a.is-active { color: var(--brand-700); border-left-color: var(--brand-500); }

.article-body { max-width: 760px; }
.article-body h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 50px 0 18px;
  scroll-margin-top: 90px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 20px; margin: 36px 0 12px; }
.article-body p { color: var(--ink-700); margin: 0 0 16px; }
.article-body ul, .article-body ol { color: var(--ink-700); padding-left: 22px; margin: 0 0 18px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--brand-500);
  background: var(--brand-50);
  font-style: italic;
  color: var(--ink-800);
  border-radius: 0 12px 12px 0;
}
.article-body code {
  background: var(--ink-100);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: .92em;
  color: var(--brand-700);
}
.article-body strong { color: var(--ink-900); }
.article-body figure { margin: 28px 0; }
.article-body figure img { border-radius: var(--radius); width: 100%; }
.article-body figcaption { margin-top: 10px; font-size: 13.5px; color: var(--ink-500); text-align: center; }
.article-body hr { border: 0; border-top: 1px solid var(--border); margin: 36px 0; }

@media (max-width: 880px) {
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-toc { position: static; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
}

/* Service / industry detail — feature blocks */
.feature-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(40px, 5vw, 70px) 0;
}
.feature-block + .feature-block { border-top: 1px solid var(--border); }
.feature-block--rev .feature-block__media { order: 2; }
.feature-block--rev .feature-block__body { order: 1; }
.feature-block__media {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--ink-100) 100%);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.feature-block__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-block__body h2 { font-size: clamp(24px, 2.4vw, 32px); margin: 0 0 14px; }
.feature-block__body p { color: var(--ink-700); margin: 0 0 16px; }
.feature-block__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-block__list li {
  padding-left: 28px; position: relative;
  color: var(--ink-700);
}
.feature-block__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
}
.feature-block__list strong { color: var(--ink-900); }
@media (max-width: 880px) {
  .feature-block { grid-template-columns: 1fr; gap: 30px; }
  .feature-block--rev .feature-block__media { order: 0; }
  .feature-block--rev .feature-block__body { order: 0; }
  .feature-block__media { min-height: 220px; }
}

/* Hub page — large cards */
.hub-grid {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
}
.hub-card:hover { transform: translateY(-4px); border-color: var(--brand-300); box-shadow: var(--shadow); }
.hub-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--brand-50); color: var(--brand-700);
  display: grid; place-items: center;
}
.hub-card__icon svg { width: 28px; height: 28px; }
.hub-card h3 { font-size: 22px; margin: 0; }
.hub-card p { margin: 0; color: var(--ink-700); }
.hub-card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 14px; color: var(--ink-600); }
.hub-card__list li { padding-left: 18px; position: relative; }
.hub-card__list li::before { content: "→"; position: absolute; left: 0; color: var(--brand-500); }
.hub-card__cta { margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--brand-700); font-size: 14px; }
.hub-card__cta:hover { color: var(--brand-900); }
@media (max-width: 720px) { .hub-grid { grid-template-columns: 1fr; } }

/* Solutions grid (case studies listing) */
.cases {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing), border-left-color .3s var(--easing);
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-4px); border-color: var(--brand-300); border-left-color: var(--brand-500); box-shadow: var(--shadow-card); }
.case-card__media {
  background: linear-gradient(135deg, var(--brand-50), var(--ink-100));
  aspect-ratio: 16/9;
  display: grid; place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.case-card__body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card__client { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-600); }
.case-card h3 { font-size: 22px; margin: 0; line-height: 1.2; }
.case-card p { margin: 0; color: var(--ink-700); font-size: 14.5px; }
.case-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-card__tags span { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--ink-50); color: var(--ink-700); }
.case-card__cta { margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--brand-700); font-size: 14px; }
@media (max-width: 720px) { .cases { grid-template-columns: 1fr; } }

/* Team grid (about page) */
.team {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: transform .3s var(--easing), border-color .3s var(--easing);
}
.member:hover { transform: translateY(-4px); border-color: var(--brand-300); }
.member__avatar {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
}
.member h4 { margin: 0 0 4px; font-size: 17px; }
.member__role { font-size: 13.5px; color: var(--ink-600); margin: 0 0 12px; }
.member__bio { font-size: 13px; color: var(--ink-700); margin: 0; line-height: 1.5; }
@media (max-width: 880px) { .team { grid-template-columns: repeat(2, 1fr); } }

/* Timeline (about) */
.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 28px;
}
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--brand-300);
}
.tl-item { position: relative; padding: 0 0 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -28px; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%; background: #fff;
  border: 3px solid var(--brand-500);
}
.tl-item__year { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--brand-600); letter-spacing: .12em; margin-bottom: 4px; }
.tl-item h4 { margin: 0 0 6px; font-size: 18px; }
.tl-item p { margin: 0; color: var(--ink-700); font-size: 14.5px; }

/* Stat strip — used in detail pages */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.stat-strip__item {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 8px;
}
.stat-strip__item:last-child { border-right: 0; }
.stat-strip__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); color: var(--brand-700); line-height: 1; }
.stat-strip__label { font-size: 13px; color: var(--ink-600); margin-top: 6px; }
@media (max-width: 720px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } .stat-strip__item:nth-child(2) { border-right: 0; } .stat-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 16px; } }

/* Job listings (careers) */
.jobs { margin-top: 50px; display: grid; gap: 12px; }
.job {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: transform .25s var(--easing), border-color .25s var(--easing);
}
.job:hover { transform: translateY(-2px); border-color: var(--brand-300); }
.job__title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink-900); margin: 0 0 6px; }
.job__meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13.5px; color: var(--ink-600); }
.job__meta span::before { content: "•"; margin-right: 8px; color: var(--ink-300); }
.job__meta span:first-child::before { content: ""; margin: 0; }
.job__apply {
  white-space: nowrap;
  padding: 10px 18px;
  background: var(--ink-900); color: #fff;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  transition: background .25s var(--easing);
}
.job__apply:hover { background: var(--brand-600); }
@media (max-width: 600px) { .job { grid-template-columns: 1fr; } }

/* FAQ accordion (services / industries detail) */
.faq { margin-top: 50px; display: grid; gap: 12px; max-width: 900px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  transition: transform .25s var(--easing), background .25s var(--easing);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--brand-500); color: #fff; }
.faq-item__body { padding: 0 26px 22px; color: var(--ink-700); line-height: 1.65; }

/* Blog post metadata */
.post-header {
  text-align: center;
  padding: clamp(48px, 5vw, 80px) 0 clamp(36px, 4vw, 60px);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(89,149,129,.08), transparent 70%),
    #fff;
}
.post-header__meta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-600); margin-bottom: 16px; }
.post-header__tag { background: var(--brand-50); color: var(--brand-700); padding: 4px 12px; border-radius: 999px; font-weight: 600; }
.post-header h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; margin: 0 auto 18px; max-width: 24ch; }
.post-header__author { display: flex; gap: 12px; justify-content: center; align-items: center; font-size: 14px; color: var(--ink-600); }
.post-header__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}

/* Related posts (blog detail bottom) */
.related { padding-top: 40px; border-top: 1px solid var(--border); }
.related__title { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-600); margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.related-card { display: flex; gap: 14px; padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .25s var(--easing); }
.related-card:hover { border-color: var(--brand-300); }
.related-card__cover { width: 90px; height: 90px; flex-shrink: 0; border-radius: 8px; background: linear-gradient(135deg, var(--brand-50), var(--ink-100)); }
.related-card__body { display: flex; flex-direction: column; gap: 6px; }
.related-card h4 { margin: 0; font-size: 15px; line-height: 1.3; }
.related-card__tag { font-size: 11.5px; color: var(--brand-700); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* CTA strip — bottom of detail pages */
.cta-strip {
  margin-top: 60px;
  padding: clamp(40px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--ink-900), var(--brand-700));
  color: #fff;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
}
.cta-strip h2 { color: #fff; margin: 0 0 8px; font-size: clamp(22px, 2.2vw, 30px); }
.cta-strip p { color: rgba(255,255,255,.78); margin: 0; max-width: 60ch; }
.cta-strip .btn--primary { background: var(--mint-400); color: var(--ink-900); border-color: var(--mint-400); }
.cta-strip .btn--primary:hover { background: #fff; border-color: #fff; }
@media (max-width: 720px) { .cta-strip { grid-template-columns: 1fr; } }

/* Certification logo badges (real images) */
.certs__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 40px;
  margin-top: 40px;
}
.cert-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 120px;
}
.cert-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .3s var(--easing), transform .3s var(--easing);
}
.cert-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}
.cert-logo span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-600);
  text-align: center;
  letter-spacing: .02em;
}

/* Client logos grid (real images) */
.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-inline: auto;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 8px 12px;
}
.client-logo img {
  max-height: 34px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter .3s var(--easing), transform .3s var(--easing);
}
.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .client-logos { grid-template-columns: repeat(3, 1fr); gap: 16px 20px; }
  .client-logo { height: 44px; padding: 6px 8px; }
  .client-logo img { max-height: 26px; max-width: 100px; }
  .certs__logos { gap: 20px 28px; }
  .cert-logo img { height: 60px; }
}

/* Contact page — light-theme form & info overrides */
.cta__grid--light .cta__form {
  background: #fff;
  border-color: var(--border);
}
.cta__grid--light .cta__form .field span {
  color: var(--ink-700);
}
.cta__grid--light .cta__form input,
.cta__grid--light .cta__form select,
.cta__grid--light .cta__form textarea {
  background: var(--bg-alt);
  color: var(--ink-900);
  border-color: var(--border);
}
.cta__grid--light .cta__form .btn--primary {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}
.cta__grid--light .cta__form .btn--primary:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
}
.cta__info--light {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--ink-900);
}
.cta__info--light .info-item__label {
  color: var(--brand-600);
}
.cta__info--light .info-item__value,
.cta__info--light .info-item__value a {
  color: var(--ink-900);
}

/* Technology stack rows (blockchain, etc.) */
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack__row { display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.stack__label { min-width: 160px; font-weight: 600; color: var(--ink-700); font-size: .95rem; flex-shrink: 0; }
.stack__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  padding: 5px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-700);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .stack__row { flex-direction: column; gap: 8px; }
  .stack__label { min-width: auto; }
}
