/* ============================================================
   APXE CONSULTANTS — Accenture-inspired design language
   Inter Tight (Graphik substitute), electric violet accent, bold sans
============================================================= */
:root {
  --bg: #FFFFFF;
  --bg-cream: #F5F3EE;
  --bg-pale: #FAF8F3;
  --bg-dark: #0D0D0D;
  --bg-deep: #000000;
  --ink: #0D0D0D;
  --ink-soft: #2B2B2B;
  --ink-muted: #6B6B6B;
  --ink-light: #A0A0A0;
  --on-dark: #FFFFFF;
  --on-dark-soft: rgba(255, 255, 255, 0.72);
  --on-dark-muted: rgba(255, 255, 255, 0.52);
  --line: #E6E3DB;
  --line-soft: #EFECE3;
  --line-dark: rgba(255, 255, 255, 0.14);

  --accent: #0066FF;
  --accent-deep: #0046CC;
  --accent-soft: #3399FF;

  --sans-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --sans-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--sans-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-width: 320px;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.logo-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex-shrink: 0;
  margin-right: 2px;
  transform: translateY(0);
  transition: background .15s var(--ease);
}

.foot-brand .logo-mark,
.mobile-nav-head .logo-mark {
  background: var(--accent);
}

.sep {
  color: var(--accent);
  margin: 0 8px;
  font-weight: 500;
}

.kicker {
  font-family: var(--sans-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.kicker-light {
  color: var(--on-dark-soft);
}

.kicker-accent {
  color: var(--accent);
}

/* ============================================================
   NAV — refined, premium feel with backdrop blur
============================================================= */
.nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 24px;
}

.nav-inner>.logo {
  justify-self: start;
}

.nav-inner>.nav-links {
  justify-self: center;
}

.nav-inner>.nav-actions {
  justify-self: end;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  position: relative;
  min-height: 44px;
  line-height: 1;
  padding: 14px 0;
  transition: opacity .2s var(--ease);
}

.logo:hover {
  opacity: 0.75;
}

.logo:hover .logo-mark {
  background: var(--accent-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(245, 243, 238, 0.5);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  letter-spacing: -0.005em;
  transition: color .2s var(--ease), background .2s var(--ease);
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.nav-links a.is-active {
  color: #FFF;
  background: var(--ink);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  right: -16px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(13, 13, 13, 0.08);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink);
  border-radius: 12px;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-cream);
  color: var(--accent);
}

@media (max-width: 640px) {
  .nav-dropdown-menu {
    left: -12px;
    right: -12px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--sans-display);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all .2s var(--ease);
  min-height: 42px;
  white-space: nowrap;
  border-radius: 999px;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #FFF;
}

.btn-ghost-light {
  background: transparent;
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background: #FFF;
  color: var(--ink);
  border-color: #FFF;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: gap .2s var(--ease), color .2s var(--ease);
  letter-spacing: -0.01em;
}

.arrow-link::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 9 L9 3 M4 3 L9 3 L9 8' stroke='%230D0D0D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: all .2s var(--ease);
}

.arrow-link:hover {
  color: var(--accent);
  gap: 14px;
}

.arrow-link:hover::after {
  background-color: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 9 L9 3 M4 3 L9 3 L9 8' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

.arrow-link-light {
  color: #FFF;
}

.arrow-link-light::after {
  border-color: rgba(255, 255, 255, 0.6);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 9 L9 3 M4 3 L9 3 L9 8' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

.arrow-link-light:hover {
  color: var(--accent-soft);
}

.nav-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  min-height: 42px;
  min-width: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  transition: all .2s var(--ease);
}

.nav-mobile:hover {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}

.nav-mobile svg {
  flex-shrink: 0;
}

@media (max-width: 1080px) {

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-mobile {
    display: inline-flex;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--bg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .3s ease, visibility 0s linear 0s;
}

.mobile-nav-head {
  padding: 0 var(--gutter);
  height: 56px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.mobile-nav-head .logo {
  min-width: 0;
  flex-shrink: 1;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-cream);
  transition: all .2s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}

.mobile-nav-close:hover {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}

.mobile-nav-close svg {
  flex-shrink: 0;
}

.mobile-nav-body {
  flex: 1;
  padding: clamp(24px, 5vw, 48px) var(--gutter);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-body a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--sans-display);
  font-size: clamp(26px, 6.2vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  min-height: 60px;
  line-height: 1.0;
}

.mobile-nav-body a .n {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-family: var(--sans-body);
}

.mobile-nav-body a .arrow {
  color: var(--ink-muted);
  font-size: 18px;
}

.mobile-nav-foot {
  padding: 24px var(--gutter) calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-soft);
  background: var(--bg-cream);
}

/* ============================================================
   HERO
============================================================= */
.hero {
  background: var(--bg);
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 13, 13, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--sans-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  margin-bottom: clamp(20px, 3vw, 32px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vw, 48px);
  max-width: 20ch;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-title .accent {
  color: var(--accent);
  font-weight: 500;
}

.hero-title .lt {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
}

.hero-aside {
  padding-bottom: clamp(8px, 2vw, 24px);
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-sub {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: clamp(24px, 3vw, 36px);
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
}

/* ============================================================
   HERO BLOCKS
============================================================= */
.hero-blocks {
  padding: 0 0 clamp(40px, 5vw, 72px);
}

.hero-blocks-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 16px;
}

.hblock {
  border-radius: 20px;
  padding: 28px 28px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
}

.hblock:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hblock-purple {
  background: var(--accent);
  color: #FFF;
}

.hblock-purple::before {
  content: "";
  position: absolute;
  bottom: -60%;
  right: -20%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.hblock-dark {
  background: var(--ink);
  color: #FFF;
}

.hblock-cream {
  background: var(--bg-cream);
  color: var(--ink);
}

.hblock .tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hblock .tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  opacity: 0.9;
  display: inline-block;
}

.hblock .title {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
}

.hblock .link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: gap .2s var(--ease);
}

.hblock:hover .link {
  gap: 14px;
}

.hblock .link .arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  opacity: 0.9;
}

.hblock .link .arrow-circle svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 1080px) {
  .hero-blocks-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hblock-purple {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .hero-blocks-grid {
    grid-template-columns: 1fr;
  }

  .hblock-purple {
    grid-column: auto;
  }

  .hblock {
    min-height: 240px;
  }
}

/* ============================================================
   IMPACT
============================================================= */
.impact {
  background: var(--bg);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}

.impact-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 3.5vw, 48px);
}

.impact-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.impact-head h2 .accent {
  color: var(--accent);
}

.impact-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.impact-item {
  padding: clamp(24px, 3vw, 36px) clamp(24px, 2.5vw, 36px) clamp(24px, 3vw, 36px) 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.impact-item:last-child {
  border-right: 0;
}

.impact-item:nth-child(n+2) {
  padding-left: clamp(24px, 2.5vw, 36px);
}

.impact-item .num {
  font-family: var(--sans-display);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}

.impact-item .num .accent {
  color: var(--accent);
}

.impact-item .label {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30ch;
  font-weight: 400;
}

@media (max-width: 860px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-left: 0 !important;
  }

  .impact-item:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   FEATURED
============================================================= */
.featured {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-pale);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  gap: 32px;
  flex-wrap: wrap;
}

.featured-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
}

.featured-head h2 .accent {
  color: var(--accent);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.feature-main {
  background: var(--ink);
  color: #FFF;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 4vw, 56px);
  cursor: pointer;
  transition: transform .3s var(--ease);
}

.feature-main:hover {
  transform: translateY(-4px);
}

.feature-main .bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.feature-main .bg svg {
  width: 100%;
  height: 100%;
}

.feature-main .fm-top {
  position: relative;
  z-index: 2;
}

.feature-main .fm-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  margin-bottom: 24px;
  color: var(--on-dark-soft);
}

.feature-main .fm-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-soft);
  display: inline-block;
}

.feature-main h3 {
  font-family: var(--sans-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #FFF;
  max-width: 20ch;
  position: relative;
  z-index: 2;
}

.feature-main h3 .accent {
  color: var(--accent-soft);
}

.feature-main .fm-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-main .fm-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.feature-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
  flex: 1;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateX(4px);
  border-color: var(--line);
}

.feature-card:hover .fc-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  transform: rotate(-45deg);
}

.feature-card .fc-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-card .fc-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  display: inline-block;
}

.feature-card h4 {
  font-family: var(--sans-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.feature-card .fc-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .25s var(--ease);
}

.feature-card .fc-arrow svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 960px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .feature-main {
    min-height: 400px;
  }
}

/* ============================================================
   CAPABILITIES
============================================================= */
.capabilities {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.cap-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.cap-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 12ch;
}

.cap-head h2 .accent {
  color: var(--accent);
}

.cap-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cap-item {
  background: var(--bg-cream);
  border-radius: 20px;
  padding: 28px 24px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}

.cap-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}

.cap-item:hover {
  transform: translateY(-4px);
}

.cap-item:hover::before {
  transform: translateY(0);
}

.cap-item>* {
  position: relative;
  z-index: 2;
  transition: color .25s var(--ease);
}

.cap-item:hover h3,
.cap-item:hover p,
.cap-item:hover .cap-num,
.cap-item:hover .cap-arrow {
  color: #FFF;
}

.cap-item:hover .cap-icon {
  background: #FFF;
  color: var(--accent);
}

.cap-item:hover .cap-arrow {
  border-color: rgba(255, 255, 255, 0.35);
}

.cap-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}

.cap-icon svg {
  width: 22px;
  height: 22px;
}

.cap-num {
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.cap-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cap-item h3 {
  font-family: var(--sans-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 18ch;
}

.cap-item p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 36ch;
}

.cap-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .25s var(--ease);
}

.cap-arrow svg {
  width: 13px;
  height: 13px;
}

.cap-item:hover .cap-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1080px) {
  .cap-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Disable hover effects on touch devices to prevent multi-item highlighting */
@media (hover: none) and (pointer: coarse) {
  .cap-item:hover {
    transform: translateY(0);
  }

  .cap-item:hover::before {
    transform: translateY(100%);
  }

  .cap-item:hover h3,
  .cap-item:hover p,
  .cap-item:hover .cap-num,
  .cap-item:hover .cap-arrow {
    color: var(--ink);
  }

  .cap-item:hover .cap-icon {
    background: #FFF;
    color: var(--ink);
  }

  .cap-item:hover .cap-arrow {
    border-color: var(--line);
  }
}

/* ============================================================
   APPROACH
============================================================= */
.approach {
  background: var(--ink);
  color: #FFF;
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.approach-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.approach-bg svg {
  width: 100%;
  height: 100%;
}

.approach-head {
  max-width: 900px;
  margin-bottom: clamp(32px, 4vw, 56px);
  position: relative;
  z-index: 2;
}

.approach-head .kicker {
  color: var(--accent-soft);
  margin-bottom: 24px;
  display: inline-block;
}

.approach-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #FFF;
  margin-bottom: 24px;
}

.approach-head h2 .accent {
  color: var(--accent-soft);
}

.approach-head .lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 58ch;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  position: relative;
  z-index: 2;
}

.approach-item {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2vw, 32px) clamp(24px, 3vw, 36px) 0;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}

.approach-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.approach-item:not(:first-child) {
  padding-left: clamp(20px, 2vw, 32px);
}

.approach-item .step-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.approach-item .step-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-soft);
  display: inline-block;
}

.approach-item .num {
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #FFF;
}

.approach-item h3 {
  font-family: var(--sans-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #FFF;
}

.approach-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 38ch;
  flex: 1;
}

@media (max-width: 960px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-item:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .approach-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 540px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-item {
    border-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-bottom: 1px solid var(--line-dark);
    min-height: 0;
  }

  .approach-item:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   INDUSTRIES
============================================================= */
.industries {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.ind-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}

.ind-side {
  position: sticky;
  top: 100px;
}

.ind-side .kicker {
  margin-bottom: 20px;
  display: inline-block;
}

.ind-side h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 12ch;
}

.ind-side h2 .accent {
  color: var(--accent);
}

.ind-side p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 28px;
}

.ind-list {
  border-top: 1px solid var(--line);
}

.ind-row {
  display: grid;
  grid-template-columns: 48px 48px 1fr auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding .2s var(--ease);
}

.ind-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .2s var(--ease);
}

.ind-row:hover::before {
  transform: scaleY(1);
}

.ind-row:hover {
  padding-left: 16px;
}

.ind-row:hover .ind-name {
  color: var(--accent);
}

.ind-row:hover .ind-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  transform: rotate(-45deg);
}

.ind-num {
  font-family: var(--sans-display);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ind-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .2s var(--ease);
}

.ind-row:hover .ind-icon {
  background: var(--accent);
  color: #FFF;
}

.ind-icon svg {
  width: 22px;
  height: 22px;
}

.ind-name {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  transition: color .2s var(--ease);
}

.ind-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .2s var(--ease);
}

.ind-arrow svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 960px) {
  .ind-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ind-side {
    position: static;
  }
}

@media (max-width: 540px) {
  .ind-row {
    grid-template-columns: 32px 36px 1fr 32px;
    gap: 12px;
  }

  .ind-icon {
    width: 36px;
    height: 36px;
  }

  .ind-icon svg {
    width: 18px;
    height: 18px;
  }

  .ind-arrow {
    width: 32px;
    height: 32px;
  }
}

/* ============================================================
   CTA BAND
============================================================= */
.cta-band {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--accent);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: end;
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #FFF;
  max-width: 13ch;
}

.cta-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 8px;
}

.cta-aside p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.cta-band .btn-primary {
  background: #FFF;
  color: var(--accent);
  border-color: #FFF;
}

.cta-band .btn-primary:hover {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}

@media (max-width: 860px) {
  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
  }
}

/* ============================================================
   PAGE HEADER (for sub-pages like Services, Contact)
============================================================= */
.page-head {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.page-head-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.page-head-inner.single {
  display: block;
  max-width: 900px;
}

.page-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.page-head h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 18ch;
}

.page-head h1 .accent {
  color: var(--accent);
}

.page-head-main p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* Quick contact card in page head (contact page) */
.quick-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quick-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.quick-card .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.08);
  }
}

.quick-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 4px 0;
}

.quick-card-item h5 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.quick-card-item p,
.quick-card-item a {
  font-family: var(--sans-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.quick-card-item a:hover {
  color: var(--accent);
}

.quick-card .btn {
  margin-top: 4px;
}

@media (max-width: 960px) {
  .page-head-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
}

/* ============================================================
   CONTACT FORM
============================================================= */
.contact-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.contact-section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.contact-section-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.contact-section-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-section-head h2 .accent {
  color: var(--accent);
}

.contact-section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.contact-form {
  background: var(--bg-cream);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
}

/* Book-directly card that sits next to the form */
.book-card {
  background: var(--ink);
  color: #FFF;
  border-radius: 20px;
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.book-card::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent 60%);
  pointer-events: none;
}

.book-card>* {
  position: relative;
  z-index: 2;
}

.book-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  align-self: flex-start;
}

.book-card .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent-soft);
  display: inline-block;
}

.book-card h3 {
  font-family: var(--sans-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FFF;
  max-width: 16ch;
}

.book-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 34ch;
}

.book-card .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  align-self: flex-start;
}

.book-card .btn-primary:hover {
  background: #FFF;
  border-color: #FFF;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   "WHAT HAPPENS NEXT" — simple numbered steps
============================================================= */
.next-steps {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-pale);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.next-steps-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.next-steps-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.next-steps-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.next-steps-head h2 .accent {
  color: var(--accent);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.next-step {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2vw, 32px) clamp(24px, 3vw, 36px) 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

.next-step:last-child {
  border-right: 0;
}

.next-step:not(:first-child) {
  padding-left: clamp(20px, 2vw, 32px);
}

.next-step .step-num {
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-step h3 {
  font-family: var(--sans-display);
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.next-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
}

@media (max-width: 860px) {
  .next-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .next-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: clamp(16px, 3vw, 28px) clamp(12px, 2vw, 20px) !important;
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .next-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: clamp(14px, 3vw, 24px) clamp(12px, 2vw, 18px) !important;
    min-height: 0;
  }

  .next-step:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   FOOTER
============================================================= */
footer {
  background: var(--ink);
  color: var(--on-dark-soft);
  padding: clamp(56px, 7vw, 96px) 0 28px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line-dark);
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.foot-brand .logo {
  color: #FFF;
}

.foot-brand p {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.25;
  color: #FFF;
  max-width: 20ch;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.foot-brand p .accent {
  color: var(--accent-soft);
}

.foot-brand .locations {
  font-size: 13px;
  color: var(--on-dark-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.foot-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 18px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-size: 14px;
  color: #FFF;
  transition: color .15s var(--ease);
}

.foot-col a:hover {
  color: var(--accent-soft);
}

.foot-bottom {
  padding-top: 28px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.foot-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: var(--on-dark-muted);
  max-width: 74ch;
}

.foot-meta {
  font-size: 12px;
  color: var(--on-dark-muted);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.foot-socials {
  display: flex;
  gap: 10px;
}

.foot-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-soft);
  transition: all .15s var(--ease);
}

.foot-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
}

.foot-socials svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 1080px) {
  .foot-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  .foot-bottom {
    grid-template-columns: 1fr;
  }

  .foot-meta {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICES OVERVIEW — rich intro + detail cards
============================================================= */
.services-intro {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.services-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.services-intro-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.services-intro-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
}

.services-intro-head h2 .accent {
  color: var(--accent);
}

.services-intro-body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 58ch;
}

.services-intro-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .services-intro-inner {
    grid-template-columns: 1fr;
  }
}

/* Service detail cards on services.html — with sticky CTA */
.service-detail-list {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-pale);
  border-top: 1px solid var(--line);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.service-detail-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-count {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-count .big-num {
  font-family: var(--sans-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
}

.sticky-count .big-num .accent {
  color: var(--accent);
}

.sticky-count .label {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30ch;
}

.sticky-cta {
  background: var(--ink);
  color: #FFF;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.28), transparent 60%);
  pointer-events: none;
}

.sticky-cta>* {
  position: relative;
  z-index: 2;
}

.sticky-cta .kicker {
  color: var(--accent-soft);
  margin: 0;
}

.sticky-cta h3 {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #FFF;
  max-width: 16ch;
}

.sticky-cta p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 32ch;
}

.sticky-cta .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  align-self: flex-start;
}

.sticky-cta .btn-primary:hover {
  background: #FFF;
  color: var(--ink);
  border-color: #FFF;
}

@media (max-width: 960px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-sticky {
    position: static;
    flex-direction: row;
  }

  .sticky-count,
  .sticky-cta {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .service-detail-sticky {
    flex-direction: column;
  }
}

/* ============================================================
   SERVICE HERO VARIANTS — each service page gets a different one
============================================================= */

/* Variant A: STATS — big numbers dominate the hero */
.hero-stats {
  padding: clamp(56px, 7vw, 96px) 0 clamp(32px, 4vw, 48px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-stats::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-stats-inner {
  position: relative;
  z-index: 2;
}

.hero-stats .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-stats h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 20ch;
}

.hero-stats h1 .accent {
  color: var(--accent);
}

.hero-stats-intro {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stat {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2vw, 32px) clamp(24px, 3vw, 36px) 0;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat:not(:first-child) {
  padding-left: clamp(20px, 2vw, 32px);
}

.hero-stat .num {
  font-family: var(--sans-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 12px;
  display: block;
}

.hero-stat .num .accent {
  color: var(--accent);
}

.hero-stat .desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 28ch;
}

@media (max-width: 780px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0 !important;
    padding-right: 0;
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }
}

/* Variant B: QUOTE — pull quote as primary element */
.hero-quote {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-quote-side .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-quote-side h1 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 16px;
}

.hero-quote-side h1 .accent {
  color: var(--accent);
}

.hero-quote-side p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}

.hero-quote-body {
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 3px solid var(--accent);
}

.hero-quote-body blockquote {
  font-family: var(--sans-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-quote-body blockquote .accent {
  color: var(--accent);
  font-weight: 500;
}

.hero-quote-body cite {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-style: normal;
}

@media (max-width: 860px) {
  .hero-quote-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Variant C: SPLIT — title + animated visual */
.hero-split {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-split-text .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-split-text h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 18ch;
}

.hero-split-text h1 .accent {
  color: var(--accent);
}

.hero-split-text p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 24px;
}

.hero-split-text .btn-primary {}

.hero-split-visual {
  aspect-ratio: 1;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #EAE2D3 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 48px);
}

.hero-split-visual svg {
  width: 100%;
  height: auto;
  max-width: 420px;
}

@media (max-width: 860px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }

  .hero-split-visual {
    aspect-ratio: 16 / 10;
  }
}

/* Variant D: DARK — inverted dark hero */
.hero-dark {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--ink);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.hero-dark::before {
  content: "";
  position: absolute;
  right: -15%;
  top: -20%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.22), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-dark .container {
  position: relative;
  z-index: 2;
}

.hero-dark-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.hero-dark .kicker {
  color: var(--accent-soft);
  margin-bottom: 14px;
  display: inline-block;
}

.hero-dark h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #FFF;
  margin-bottom: 20px;
  max-width: 18ch;
}

.hero-dark h1 .accent {
  color: var(--accent-soft);
}

.hero-dark p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 52ch;
}

.hero-dark-side {
  padding-bottom: 8px;
}

.hero-dark-side .mini-stat {
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.hero-dark-side .mini-stat:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.hero-dark-side .mini-stat .k {
  font-size: 13px;
  color: var(--on-dark-muted);
  letter-spacing: 0.04em;
}

.hero-dark-side .mini-stat .v {
  font-family: var(--sans-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #FFF;
}

@media (max-width: 860px) {
  .hero-dark-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
}

/* Variant E: TIMELINE — process-led horizontal hero */
.hero-timeline {
  padding: clamp(56px, 7vw, 96px) 0 clamp(32px, 4vw, 48px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-timeline-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.hero-timeline-head .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-timeline-head h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 18ch;
}

.hero-timeline-head h1 .accent {
  color: var(--accent);
}

.hero-timeline-head p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
}

.hero-timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding-top: 36px;
}

.hero-timeline-track::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--line) 100%);
}

.tl-stop {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  position: relative;
}

.tl-stop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.tl-stop.done::before {
  background: var(--accent);
}

.tl-stop .tl-num {
  font-family: var(--sans-display);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tl-stop h4 {
  font-family: var(--sans-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 14ch;
}

.tl-stop p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 22ch;
}

@media (max-width: 860px) {
  .hero-timeline-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-timeline-track::before {
    display: none;
  }
}

/* Variant F: EDITORIAL — long-form narrative hero */
.hero-editorial {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-pale);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-editorial::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-editorial-side {
  position: sticky;
  top: 100px;
}

.hero-editorial-side .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-editorial-side h1 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 12ch;
  margin-bottom: 16px;
}

.hero-editorial-side h1 .accent {
  color: var(--accent);
}

.hero-editorial-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-editorial-body .lead {
  font-family: var(--sans-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
  max-width: 42ch;
}

.hero-editorial-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero-editorial-body .pull {
  font-family: var(--sans-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--accent);
  padding: 16px 0 16px 20px;
  border-left: 3px solid var(--accent);
  max-width: 36ch;
}

@media (max-width: 860px) {
  .hero-editorial-inner {
    grid-template-columns: 1fr;
  }

  .hero-editorial-side {
    position: static;
  }
}

/* Variant G: GRID — data-heavy hero (for Finance) */
.hero-grid {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.hero-grid-top .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-grid-top h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 18ch;
  margin-bottom: 18px;
}

.hero-grid-top h1 .accent {
  color: var(--accent);
}

.hero-grid-top p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.data-tile {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.data-tile:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.data-tile.feature {
  background: var(--accent);
  color: #FFF;
  border-color: var(--accent);
}

.data-tile .dt-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.data-tile.feature .dt-label {
  color: rgba(255, 255, 255, 0.7);
}

.data-tile .dt-value {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
}

.data-tile.feature .dt-value {
  color: #FFF;
}

.data-tile .dt-hint {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  margin-top: auto;
}

.data-tile.feature .dt-hint {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
  .hero-data-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .hero-data-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .hero-grid-top {
    grid-template-columns: 1fr;
  }
}

/* Variant H: CHECKLIST — compliance-style hero */
.hero-checklist {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-checklist-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.hero-checklist-side .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.hero-checklist-side h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 18ch;
}

.hero-checklist-side h1 .accent {
  color: var(--accent);
}

.hero-checklist-side p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 28px;
}

.hero-checklist-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 2.5vw, 32px);
}

.hero-checklist-card h4 {
  font-family: var(--sans-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.hero-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-checklist-items .item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
}

.hero-checklist-items .item .check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.hero-checklist-items .item .check-dot svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 860px) {
  .hero-checklist-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TESTIMONIAL BLOCK
============================================================= */
.testimonial {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  background: var(--bg-cream);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -40px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 280px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.08;
  pointer-events: none;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.testimonial-meta .kicker {
  color: var(--accent);
}

.testimonial-meta .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.testimonial-meta .who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta .who .name {
  font-family: var(--sans-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.testimonial-meta .who .role {
  font-size: 13.5px;
  color: var(--ink-muted);
}

.testimonial-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-body blockquote {
  font-family: var(--sans-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  max-width: 44ch;
}

.testimonial-body blockquote .accent {
  color: var(--accent);
  font-weight: 500;
}

.testimonial-body .result {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 8px 16px;
  background: var(--bg);
  border-radius: 999px;
  align-self: flex-start;
}

.testimonial-body .result b {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 860px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   THESIS / MANIFESTO — opinionated dark section
============================================================= */
.thesis {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--ink);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.thesis::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -25%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.22), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.thesis::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.14), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.thesis .container {
  position: relative;
  z-index: 2;
}

.thesis-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 32px;
}

.thesis h2 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #FFF;
  max-width: 18ch;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.thesis h2 .accent {
  color: var(--accent-soft);
}

.thesis-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.thesis-point {
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2vw, 32px) clamp(28px, 3.5vw, 40px) 0;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thesis-point:last-child {
  border-right: 0;
  padding-right: 0;
}

.thesis-point:not(:first-child) {
  padding-left: clamp(20px, 2vw, 32px);
}

.thesis-point .tp-mark {
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--accent-soft);
  letter-spacing: 0.08em;
}

.thesis-point h3 {
  font-family: var(--sans-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #FFF;
  max-width: 18ch;
}

.thesis-point p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 38ch;
}

@media (max-width: 860px) {
  .thesis-points {
    grid-template-columns: 1fr;
  }

  .thesis-point {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding-left: 0 !important;
    padding-right: 0;
  }

  .thesis-point:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   "WHAT WE DON'T DO" — contrarian positioning list
============================================================= */
.dont-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.dont-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.dont-side .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.dont-side h2 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 12ch;
  margin-bottom: 18px;
}

.dont-side h2 .accent {
  color: var(--accent);
}

.dont-side p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34ch;
}

.dont-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dont-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.dont-item:last-child {
  border-bottom: 1px solid var(--line);
}

.dont-item .no-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  flex-shrink: 0;
  position: relative;
  transition: all .25s var(--ease);
}

.dont-item .no-mark::before,
.dont-item .no-mark::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
}

.dont-item .no-mark::before {
  transform: rotate(45deg);
}

.dont-item .no-mark::after {
  transform: rotate(-45deg);
}

.dont-item:hover .no-mark {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

.dont-item h4 {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.dont-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
}

@media (max-width: 860px) {
  .dont-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BIG CLAIM — giant statement block
============================================================= */
.big-claim {
  padding: clamp(56px, 8vw, 112px) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.big-claim::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0, 102, 255, 0.02) 0 2px, transparent 2px 24px);
  pointer-events: none;
}

.big-claim .container {
  position: relative;
  z-index: 2;
}

.big-claim .eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: inline-block;
}

.big-claim h2 {
  font-family: var(--sans-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 18ch;
  margin: 0 auto;
}

.big-claim h2 .accent {
  color: var(--accent);
}

.big-claim h2 .line {
  display: block;
}

.big-claim .sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 28px auto 0;
}

/* ============================================================
   WORK PAGE — case studies + articles hybrid
============================================================= */
.work-filter {
  padding: 0 0 clamp(24px, 3vw, 40px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.work-filter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.work-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.work-tab {
  padding: 10px 22px;
  font-family: var(--sans-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
  cursor: pointer;
  border: 0;
  background: transparent;
}

.work-tab:hover {
  color: var(--ink);
}

.work-tab.is-active {
  color: #FFF;
  background: var(--ink);
}

.work-count {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

.work-grid {
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 7vw, 96px);
  background: var(--bg);
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s var(--ease);
  border-radius: 20px;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card:hover .work-card-cover {
  border-color: var(--accent);
}

.work-card:hover .work-card-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  transform: rotate(-45deg);
}

.work-card-cover {
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease);
}

.work-card-cover.cv-1 {
  background: linear-gradient(135deg, #0066FF 0%, #0046CC 100%);
  color: #FFF;
}

.work-card-cover.cv-2 {
  background: linear-gradient(135deg, #0D0D0D 0%, #2B2B2B 100%);
  color: #FFF;
}

.work-card-cover.cv-3 {
  background: linear-gradient(135deg, #F5F3EE 0%, #E6E3DB 100%);
  color: var(--ink);
}

.work-card-cover.cv-4 {
  background: linear-gradient(135deg, #120033 0%, #1E0066 100%);
  color: #FFF;
}

.work-card-cover.cv-5 {
  background: linear-gradient(135deg, #3399FF 0%, #0066FF 100%);
  color: #FFF;
}

.work-card-cover.cv-6 {
  background: linear-gradient(135deg, #FAF8F3 0%, #EFECE3 100%);
  color: var(--ink);
}

.work-card-cover::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.work-card-cover.cv-3::after,
.work-card-cover.cv-6::after {
  background: radial-gradient(circle, rgba(0, 102, 255, 0.14), transparent 60%);
}

.work-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.work-card-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.work-card-cover.cv-3 .work-card-type,
.work-card-cover.cv-6 .work-card-type {
  background: rgba(13, 13, 13, 0.08);
}

.work-card-cover .big-metric {
  font-family: var(--sans-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  position: relative;
  z-index: 2;
}

.work-card-cover .big-metric-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  margin-top: 6px;
}

.work-card-body {
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  padding: clamp(20px, 2.5vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s var(--ease);
}

.work-card:hover .work-card-body {
  border-color: var(--accent);
}

.work-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.work-card-meta span+span::before {
  content: "·";
  margin-right: 10px;
  color: var(--ink-light);
}

.work-card-body h3 {
  font-family: var(--sans-display);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.work-card-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}

.work-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
}

.work-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.work-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding: 3px 10px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 999px;
}

.work-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .25s var(--ease);
  flex-shrink: 0;
}

.work-card-arrow svg {
  width: 13px;
  height: 13px;
}

.work-card.is-hidden {
  display: none;
}

@media (max-width: 1080px) {
  .work-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .work-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CASE STUDY DETAIL PAGE
============================================================= */
.case-hero {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.case-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.case-hero-meta .c-type {
  color: var(--accent);
}

.case-hero h1 {
  font-family: var(--sans-display);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 20ch;
  margin-bottom: 20px;
}

.case-hero h1 .accent {
  color: var(--accent);
}

.case-hero-lead {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 58ch;
}

.case-stats {
  padding: clamp(40px, 5vw, 72px) 0;
  background: var(--bg-pale);
  border-bottom: 1px solid var(--line);
}

.case-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-stat {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2vw, 28px) clamp(24px, 3vw, 36px) 0;
  border-right: 1px solid var(--line);
}

.case-stat:last-child {
  border-right: 0;
}

.case-stat:not(:first-child) {
  padding-left: clamp(20px, 2vw, 28px);
}

.case-stat .s-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.case-stat .s-value {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
}

.case-stat .s-value .accent {
  color: var(--accent);
}

@media (max-width: 860px) {
  .case-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .case-stats-grid {
    grid-template-columns: 1fr;
  }

  .case-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0 !important;
    padding-right: 0;
  }

  .case-stat:last-child {
    border-bottom: 0;
  }
}

.case-body {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.case-body-inner {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.case-body-nav {
  position: sticky;
  top: 100px;
}

.case-body-nav .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.case-body-nav ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: cs-step;
}

.case-body-nav a {
  padding: 10px 0;
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s var(--ease);
}

.case-body-nav a:hover {
  color: var(--accent);
}

.case-body-nav a::before {
  counter-increment: cs-step;
  content: counter(cs-step, decimal-leading-zero);
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-width: 24px;
}

.case-chapter {
  padding-bottom: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.case-chapter:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.case-chapter .c-num {
  font-family: var(--sans-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.case-chapter h2 {
  font-family: var(--sans-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 22ch;
}

.case-chapter h2 .accent {
  color: var(--accent);
}

.case-chapter p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 18px;
}

.case-chapter p:last-child {
  margin-bottom: 0;
}

.case-chapter ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 18px;
}

.case-chapter ul li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 28px;
  position: relative;
  max-width: 58ch;
}

.case-chapter ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 2px;
  background: var(--accent);
}

.case-chapter .pullquote {
  font-family: var(--sans-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 24px 0;
  max-width: 44ch;
}

@media (max-width: 860px) {
  .case-body-inner {
    grid-template-columns: 1fr;
  }

  .case-body-nav {
    position: static;
  }
}

.case-up-next {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
}

.up-next-head {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
  display: inline-block;
}

.up-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .up-next-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .up-next-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT PAGE
============================================================= */
.about-values {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.about-values-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.about-values-head .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.about-values-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.about-values-head h2 .accent {
  color: var(--accent);
}

.about-values-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.value-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.value-card .v-num {
  font-family: var(--sans-display);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.value-card h3 {
  font-family: var(--sans-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
}

@media (max-width: 780px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.team-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-pale);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.team-head .kicker {
  margin-bottom: 14px;
  display: inline-block;
}

.team-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.team-head h2 .accent {
  color: var(--accent);
}

.team-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-member {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-member .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.team-member h3 {
  font-family: var(--sans-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.team-member .role {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -6px;
}

.team-member p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOME IMPROVEMENTS — client-row testimonial for homepage
============================================================= */
.home-proof {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

/* ============================================================
   LEGAL PAGES — Privacy, Terms, Cookies
============================================================= */
.legal-body {
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 120px);
  background: var(--bg);
}

.legal-inner {
  display: grid;
  grid-template-columns: 0.9fr 2.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
}

.legal-toc .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc-item;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc a {
  padding: 10px 0;
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s var(--ease);
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-toc a::before {
  counter-increment: toc-item;
  content: counter(toc-item, decimal-leading-zero);
  font-family: var(--sans-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-width: 24px;
}

.legal-content {
  max-width: 68ch;
}

.legal-meta {
  padding: 16px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-muted);
}

.legal-meta strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-intro {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 58ch;
}

.legal-content h2 {
  font-family: var(--sans-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 48px 0 16px;
  scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--sans-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.legal-content ul li,
.legal-content ol li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

.legal-content ol {
  counter-reset: legal-item;
}

.legal-content ol li::before {
  counter-increment: legal-item;
  content: counter(legal-item) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 500;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s var(--ease);
}

.legal-content a:hover {
  color: var(--accent-deep);
}

.legal-content strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-content .callout {
  background: var(--bg-cream);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

.legal-content .callout p:last-child {
  margin-bottom: 0;
}

.legal-content .callout p {
  font-size: 15px;
  color: var(--ink);
}

@media (max-width: 860px) {
  .legal-inner {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE FIXES — tablet and mobile
============================================================= */

/* Tablet (up to 1080px): adjust nav-inner to 2-column since nav-links is hidden */
@media (max-width: 1080px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
    height: 68px;
    gap: 16px;
  }

  .nav-inner>.nav-actions {
    justify-self: end;
  }
}

/* Tablet (768px-1024px) general */
@media (max-width: 1024px) {
  :root {
    --gutter: clamp(18px, 3.5vw, 32px);
  }

  .hero-title {
    font-size: clamp(32px, 5.5vw, 56px);
  }

  .page-head h1 {
    font-size: clamp(30px, 5vw, 48px);
  }
}

/* Tablet (up to 960px): improve responsiveness */
@media (max-width: 960px) {
  :root {
    --gutter: clamp(16px, 3vw, 28px);
  }

  body {
    font-size: 15px;
  }

  .container {
    padding-inline: var(--gutter);
  }

  .hero {
    padding: clamp(28px, 4vw, 48px) 0 clamp(32px, 4vw, 56px);
  }

  .hero-inner {
    flex-direction: column;
    gap: 24px;
  }

  .page-head {
    padding: clamp(28px, 4vw, 48px) 0 clamp(24px, 3vw, 40px);
  }

  .page-head-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Small tablet / large mobile (up to 860px) */
@media (max-width: 860px) {
  :root {
    --gutter: clamp(14px, 2.5vw, 24px);
  }

  .hero {
    padding: clamp(24px, 4vw, 48px) 0 clamp(32px, 4vw, 56px);
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(28px, 6vw, 48px);
    max-width: 100%;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-head {
    padding: clamp(24px, 4vw, 48px) 0 clamp(20px, 3vw, 40px);
  }

  .page-head h1 {
    font-size: clamp(26px, 6vw, 40px);
    max-width: 100%;
    line-height: 1.1;
  }

  .page-head p {
    font-size: 14.5px;
  }

  .quick-card {
    padding: 18px;
    border-radius: 16px;
  }

  .quick-card-row {
    gap: 12px;
  }

  /* Thesis section */
  .thesis {
    padding: clamp(40px, 6vw, 72px) 0;
  }

  .thesis h2 {
    font-size: clamp(28px, 6.5vw, 48px);
    max-width: 100%;
  }

  /* Big claim */
  .big-claim h2 {
    font-size: clamp(32px, 7vw, 64px);
  }

  /* All hero variants */
  .hero-stats h1,
  .hero-quote-side h1,
  .hero-split-text h1,
  .hero-dark h1,
  .hero-timeline-head h1,
  .hero-grid-top h1,
  .hero-checklist-side h1 {
    font-size: clamp(30px, 6.5vw, 48px);
    max-width: 100%;
  }

  .hero-editorial-side h1 {
    font-size: clamp(28px, 6vw, 42px);
  }

  /* Sticky sidebars stack on mobile */
  .faq-head,
  .case-body-nav,
  .legal-toc,
  .hero-editorial-side,
  .ind-side {
    position: static !important;
  }

  /* Remove sticky behaviour on mobile; keep relative so ::before stays clipped */
  .book-card {
    position: relative;
    top: 0;
  }

  .service-detail-sticky {
    position: static;
  }

  /* Stack service-detail layout */
  .service-detail-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* Mobile (up to 640px) */
@media (max-width: 640px) {
  :root {
    --gutter: 14px;
  }

  body {
    font-size: 14.5px;
  }

  .container {
    padding-inline: var(--gutter);
  }

  .nav-inner {
    height: 56px;
    gap: 8px;
  }

  .logo {
    font-size: 17px;
    padding: 8px 0;
    min-height: 36px;
  }

  .logo-mark {
    width: 6px;
    height: 6px;
  }

  .nav-mobile,
  .mobile-nav-close {
    padding: 8px 14px;
    min-height: 38px;
    font-size: 12px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 13px;
    min-height: 40px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Hero: tighter */
  .hero-title {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 15.5px;
  }

  .hero-cta-row {
    gap: 10px;
  }

  .hero-cta-row .btn {
    flex: 1 1 auto;
  }

  /* Page heads: tighter */
  .page-head h1 {
    font-size: clamp(26px, 7.5vw, 38px);
    line-height: 1.1;
  }

  .page-head p {
    font-size: 15px;
  }

  .page-head-inner {
    gap: 24px;
  }

  /* Kickers slightly smaller */
  .kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  /* Buttons stack full width where grouped */
  .hero-cta-row .btn,
  .cta-aside .btn,
  .page-head .btn {
    width: 100%;
    justify-content: center;
  }

  /* Quick card */
  .quick-card {
    padding: 18px;
    border-radius: 16px;
  }

  .quick-card-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .quick-card-item h5 {
    font-size: 10px;
  }

  .quick-card-item p,
  .quick-card-item a {
    font-size: 14px;
  }

  /* Impact, approach, big-claim, etc. */
  .impact-item .num,
  .hero-stat .num {
    font-size: clamp(36px, 9vw, 56px);
  }

  .big-claim h2 {
    font-size: clamp(28px, 9vw, 52px);
  }

  .thesis h2 {
    font-size: clamp(26px, 8vw, 42px);
  }

  .approach-head h2,
  .cap-head h2,
  .cta-inner h2,
  .impact-head h2,
  .featured-head h2 {
    font-size: clamp(24px, 7.5vw, 38px) !important;
  }

  /* Service rows more compact */
  .service-row {
    padding: 18px 0;
  }

  .service-row:hover {
    padding-left: 12px;
  }

  /* Work cards */
  .work-card-cover {
    padding: 20px;
  }

  .work-card-cover .big-metric {
    font-size: clamp(40px, 12vw, 56px);
  }

  .work-card-body {
    padding: 18px 20px;
  }

  .work-card-body h3 {
    font-size: 18px;
  }

  /* Legal pages */
  .legal-inner {
    gap: 24px;
  }

  .legal-content h2 {
    font-size: clamp(20px, 6vw, 26px);
    margin: 36px 0 12px;
  }

  .legal-content p,
  .legal-content ul li,
  .legal-content ol li {
    font-size: 15px;
  }

  .legal-meta {
    flex-direction: column;
    gap: 8px;
  }

  /* Case study chapters */
  .case-chapter h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  /* Contact form + page */
  .contact-form {
    padding: 18px;
    border-radius: 12px;
  }

  .form-row {
    gap: 12px;
  }

  .form-field {
    margin-bottom: 12px;
  }

  .form-field label {
    font-size: 10.5px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
    /* prevents iOS zoom */
    padding: 12px 12px;
    border-radius: 8px;
  }

  .contact-section-head {
    margin-bottom: 18px;
  }

  .contact-section-head h2 {
    font-size: clamp(20px, 6.5vw, 30px);
  }

  .contact-section-head p {
    font-size: 13.5px;
  }

  .next-steps-head {
    margin-bottom: 18px;
  }

  .next-steps-head h2 {
    font-size: clamp(20px, 6.5vw, 30px);
  }

  .contact-section {
    padding: clamp(20px, 5vw, 40px) 0;
  }

  .next-steps {
    padding: clamp(20px, 5vw, 40px) 0;
  }

  .book-card {
    padding: 18px;
    border-radius: 12px;
    gap: 12px;
  }

  .book-card h3 {
    font-size: 18px;
    max-width: 100%;
  }

  .book-card p {
    font-size: 13px;
  }

  /* Footer compact */
  footer {
    padding: clamp(40px, 8vw, 72px) 0 20px;
  }

  .foot-brand p {
    font-size: 17px;
  }

  .foot-top {
    gap: 32px;
  }

  .foot-col h5 {
    margin-bottom: 12px;
  }

  /* Mobile nav body items smaller */
  .mobile-nav-body a {
    padding: 18px 0;
    font-size: clamp(22px, 7vw, 30px);
    min-height: 52px;
  }

  /* Testimonial card */
  .testimonial-card {
    padding: 24px;
    border-radius: 16px;
  }

  .testimonial-body blockquote {
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .testimonial-card::before {
    font-size: 180px;
    top: -24px;
    right: 12px;
  }

  /* Thesis points stack tight */
  .thesis-point h3 {
    font-size: 19px;
  }

  /* Team avatars and cards */
  .team-member .avatar {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .team-member h3 {
    font-size: 18px;
  }

  /* Breadcrumb compact */
  .breadcrumb {
    font-size: 12px;
  }

  /* Sticky counts on services page */
  .sticky-count .big-num {
    font-size: clamp(44px, 12vw, 64px);
  }

  /* Remove aspect ratio lock on visuals if getting squished */
  .hero-split-visual {
    aspect-ratio: 16 / 10;
    padding: 20px;
  }
}

/* ============================================================
   SERVICE PAGE SPECIFIC — mobile fixes for all hero variants
============================================================= */
@media (max-width: 860px) {

  /* All hero variants — consistent padding and stacking */
  .hero-stats,
  .hero-quote,
  .hero-split,
  .hero-dark,
  .hero-timeline,
  .hero-editorial,
  .hero-grid,
  .hero-checklist {
    padding: clamp(32px, 5vw, 56px) 0 clamp(32px, 5vw, 56px);
  }

  /* hero-split visual shouldn't dominate on mobile */
  .hero-split-visual {
    aspect-ratio: 16 / 10;
    max-width: 480px;
    padding: 20px;
    margin: 0 auto;
  }

  /* hero-dark side stats */
  .hero-dark-side {
    padding-bottom: 0;
  }

  .hero-dark-side .mini-stat .v {
    font-size: 18px;
  }

  /* hero-timeline stacks: show connector dots but not the horizontal line */
  .hero-timeline-track {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding-top: 8px !important;
  }

  .hero-timeline-track::before {
    display: none !important;
  }

  .tl-stop {
    padding-top: 44px;
    padding-left: 0;
  }

  .tl-stop::before {
    top: 0;
    left: 0;
  }

  /* hero-stats stack */
  .hero-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-stat {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 !important;
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .hero-stat .num {
    font-size: clamp(40px, 10vw, 64px);
  }

  /* hero-grid data tiles */
  .hero-data-grid {
    grid-template-columns: 1fr 1fr;
  }

  .data-tile {
    min-height: 120px;
    padding: 20px;
  }

  .data-tile .dt-value {
    font-size: clamp(24px, 7vw, 36px);
  }

  /* hero-quote blockquote */
  .hero-quote-body {
    padding-left: 16px;
    border-left-width: 2px;
  }

  .hero-quote-body blockquote {
    font-size: clamp(19px, 5vw, 24px);
  }

  /* hero-editorial body */
  .hero-editorial-body .lead {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .hero-editorial-body .pull {
    font-size: clamp(18px, 4.8vw, 22px);
    padding-left: 16px;
  }

  /* hero-checklist card */
  .hero-checklist-card {
    padding: 20px;
  }

  .hero-checklist-items .item {
    font-size: 14.5px;
  }

  /* Service overview sections */
  .service-overview-side h2 {
    font-size: clamp(26px, 6.5vw, 36px);
    max-width: 100%;
  }

  .service-overview-body p {
    font-size: 15.5px;
  }

  /* Challenges grid */
  .challenge-item {
    padding: 22px;
  }

  .challenge-item h3 {
    font-size: 17px;
  }

  /* Deliverables list */
  .deliverables-head h2 {
    font-size: clamp(26px, 6.5vw, 36px);
  }

  .deliverable-text h4 {
    font-size: 16px;
  }

  /* Who-for cards */
  .who-for-head h2 {
    font-size: clamp(26px, 7vw, 40px);
  }

  .fit-card {
    padding: 20px;
  }

  .fit-card h3 {
    font-size: 17px;
  }

  /* FAQ */
  .faq-head h2 {
    font-size: clamp(26px, 6.5vw, 36px);
  }

  .faq-item summary {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  /* Related grid */
  .related-head h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .related-card {
    padding: 20px;
  }
}

@media (max-width: 540px) {

  /* Very tight mobile: Stack everything */
  .hero-data-grid {
    grid-template-columns: 1fr;
  }

  .hero-split-visual {
    aspect-ratio: 4 / 3;
  }

  /* Contact page tweaks */
  .contact-grid {
    gap: 20px;
  }

  .contact-section-head h2 {
    font-size: clamp(18px, 7vw, 28px);
  }

  .next-steps-head h2 {
    font-size: clamp(18px, 7vw, 28px);
  }

  .contact-section-head {
    margin-bottom: 16px;
  }

  .next-steps-head {
    margin-bottom: 16px;
  }

  .book-card {
    gap: 12px;
  }

  .book-card .btn-primary {
    align-self: stretch;
    justify-content: center;
    width: 100%;
  }

  /* hero-dark mini stats stack tighter */
  .hero-dark-side .mini-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
  }

  /* Service hero should be focused on text */
  .hero-split-inner,
  .hero-dark-inner,
  .hero-grid-top,
  .hero-checklist-inner,
  .hero-quote-inner,
  .hero-editorial-inner,
  .hero-timeline-head {
    gap: 24px !important;
  }
}

/* Very small (up to 380px) */
@media (max-width: 380px) {
  :root {
    --gutter: 12px;
  }

  .quick-card-row {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .nav-mobile,
  .mobile-nav-close {
    padding: 6px 10px;
    font-size: 11px;
  }

  /* Contact page at smallest screens */
  .contact-form {
    padding: 14px;
    border-radius: 10px;
  }

  .book-card {
    padding: 14px;
    border-radius: 10px;
  }

  .contact-section-head h2 {
    font-size: clamp(16px, 8vw, 24px);
  }

  .next-steps-head h2 {
    font-size: clamp(16px, 8vw, 24px);
  }

  .form-row {
    gap: 10px;
  }

  .form-field {
    margin-bottom: 10px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    padding: 10px 10px;
    font-size: 16px;
  }
}

/* Touch-friendly tap targets on touch devices */
@media (hover: none) and (pointer: coarse) {

  .nav-links a,
  .footer a,
  .btn,
  .arrow-link,
  .service-row,
  .cap-item,
  .work-card,
  .feature-card,
  .ind-row,
  .dont-item,
  .challenge-item,
  .fit-card a,
  .related-card {
    min-height: 44px;
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: .08s;
}

.reveal[data-delay="2"] {
  transition-delay: .16s;
}

.reveal[data-delay="3"] {
  transition-delay: .24s;
}

.reveal[data-delay="4"] {
  transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-detail-head {
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 680px;
}

.service-detail-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.service-detail-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-detail-head h2 .accent {
  color: var(--accent);
}

.service-detail-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
}

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 56px 2fr 3fr auto;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .2s var(--ease);
  cursor: pointer;
  position: relative;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform .25s var(--ease);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row:hover {
  padding-left: 16px;
}

.service-row:hover .service-row-name {
  color: var(--accent);
}

.service-row:hover .service-row-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  transform: rotate(-45deg);
}

.service-row-num {
  font-family: var(--sans-display);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.service-row-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .25s var(--ease);
}

.service-row:hover .service-row-icon {
  background: var(--accent);
  color: #FFF;
}

.service-row-icon svg {
  width: 22px;
  height: 22px;
}

.service-row-name {
  font-family: var(--sans-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  transition: color .25s var(--ease);
}

.service-row-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 42ch;
}

.service-row-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .25s var(--ease);
}

.service-row-arrow svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 960px) {
  .service-row {
    grid-template-columns: 48px 48px 1fr 40px;
    grid-template-areas:
      "num icon name arrow"
      "desc desc desc desc";
    gap: 12px 16px;
    row-gap: 10px;
    align-items: center;
  }

  .service-row-num {
    grid-area: num;
  }

  .service-row-icon {
    grid-area: icon;
  }

  .service-row-name {
    grid-area: name;
  }

  .service-row-arrow {
    grid-area: arrow;
  }

  .service-row-desc {
    grid-area: desc;
    padding-left: 64px;
    padding-right: 0;
  }
}

@media (max-width: 540px) {
  .service-row {
    grid-template-columns: 32px 40px 1fr 36px;
    gap: 10px 12px;
    padding: 16px 0;
  }

  .service-row-icon {
    width: 40px;
    height: 40px;
  }

  .service-row-icon svg {
    width: 18px;
    height: 18px;
  }

  .service-row-arrow {
    width: 36px;
    height: 36px;
  }

  .service-row-desc {
    padding-left: 52px;
    font-size: 13.5px;
  }

  .service-row-name {
    font-size: 17px;
  }
}

/* ============================================================
   SERVICE DETAIL PAGE COMPONENTS
============================================================= */
.breadcrumb {
  padding: clamp(16px, 2vw, 24px) 0 clamp(24px, 3vw, 40px);
  background: var(--bg);
  font-size: 13px;
  color: var(--ink-muted);
}

.breadcrumb a {
  color: var(--ink-muted);
  transition: color .15s var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep-arrow {
  margin: 0 10px;
  color: var(--ink-light);
}

.breadcrumb .current {
  color: var(--ink);
}

/* Overview intro section */
.service-overview {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.service-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.service-overview-side .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.service-overview-side h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
}

.service-overview-side h2 .accent {
  color: var(--accent);
}

.service-overview-body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 58ch;
}

.service-overview-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .service-overview-inner {
    grid-template-columns: 1fr;
  }
}

/* Challenges / Problems we solve */
.challenges {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-pale);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.challenges-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.challenges-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.challenges-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.challenges-head h2 .accent {
  color: var(--accent);
}

.challenges-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.challenge-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.challenge-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.challenge-item .ch-num {
  font-family: var(--sans-display);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.challenge-item h3 {
  font-family: var(--sans-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.challenge-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}

@media (max-width: 960px) {
  .challenges-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }
}

/* Deliverables — what you get */
.deliverables {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.deliverables-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.deliverables-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.deliverables-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 20px;
}

.deliverables-head h2 .accent {
  color: var(--accent);
}

.deliverables-head p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.deliverable {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.deliverable-check svg {
  width: 13px;
  height: 13px;
}

.deliverable-text h4 {
  font-family: var(--sans-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.deliverable-text p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
}

@media (max-width: 860px) {
  .deliverables-inner {
    grid-template-columns: 1fr;
  }
}

/* Who it's for */
.who-for {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--ink);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.who-for::before {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -30%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.who-for .container {
  position: relative;
  z-index: 2;
}

.who-for-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.who-for-head .kicker {
  color: var(--accent-soft);
  margin-bottom: 16px;
  display: inline-block;
}

.who-for-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #FFF;
  margin-bottom: 16px;
}

.who-for-head h2 .accent {
  color: var(--accent-soft);
}

.who-for-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 56ch;
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-card h3 {
  font-family: var(--sans-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fit-card.good h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent-soft);
  border-radius: 50%;
}

.fit-card.bad h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--ink-muted);
  border-radius: 50%;
}

.fit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-card li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-dark-soft);
  padding-left: 20px;
  position: relative;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1.5px;
  background: var(--on-dark-muted);
}

@media (max-width: 720px) {
  .who-for-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.faq-head {
  position: sticky;
  top: 100px;
}

.faq-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.faq-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 12ch;
  margin-bottom: 16px;
}

.faq-head h2 .accent {
  color: var(--accent);
}

.faq-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 32ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  transition: color .2s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--sans-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--accent);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item .faq-body {
  padding: 14px 0 4px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}

@media (max-width: 860px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-head {
    position: static;
  }
}

/* Related services */
.related {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-pale);
  border-top: 1px solid var(--line);
}

.related-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.related-head .kicker {
  margin-bottom: 16px;
  display: inline-block;
}

.related-head h2 {
  font-family: var(--sans-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.related-head h2 .accent {
  color: var(--accent);
}

.related-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.related-card:hover .related-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  transform: rotate(-45deg);
}

.related-card-text h4 {
  font-family: var(--sans-display);
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.related-card-text span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.related-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .25s var(--ease);
  flex-shrink: 0;
}

.related-arrow svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 860px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}