:root {
  --bg: #eef3f8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #fbfcfe;
  --surface-dark: #010707;
  --surface-dark-soft: #16384f;
  --text: #010707;
  --muted: #5f6977;
  --line: rgba(22, 56, 79, 0.1);
  --brand: #3f7fbe;
  --brand-deep: #16384f;
  --brand-blue: #3f7fbe;
  --brand-blue-deep: #16384f;
  --brand-soft: rgba(63, 127, 190, 0.12);
  --accent: #f68e2f;
  --brand-orange: #f68e2f;
  --accent-soft: rgba(246, 142, 47, 0.14);
  --teal: #4fa0bf;
  --magenta: #d92d62;
  --credibility: #a7a7a7;
  --text-muted: #5f6977;
  --shadow: 0 22px 55px rgba(18, 41, 60, 0.08);
  --shadow-soft: 0 12px 26px rgba(18, 41, 60, 0.06);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --content-width: 1180px;
  --font: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 0 0 12px 0;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(63, 127, 190, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(246, 142, 47, 0.12), transparent 22%),
    linear-gradient(135deg, #f7fafc 0%, #eef4f9 42%, #e6eef6 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding-bottom: 20px;
}

.topbar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  padding: 16px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2f4c71, #537db6);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.topbar-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.topbar-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.topbar-copy {
  margin: 0;
  justify-self: end;
  text-align: right;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  height: 58px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--surface-dark);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  border-radius: 2px;
  background: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand) 0%, var(--surface-dark-soft) 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(63, 127, 190, 0.2);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(63, 127, 190, 0.22);
}

.button-secondary {
  border-color: rgba(22, 56, 79, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.nav-cta {
  background: linear-gradient(135deg, #e79c4b 0%, #df8a36 100%);
  box-shadow: 0 12px 24px rgba(223, 138, 54, 0.2);
}

.hero,
.section,
.trust-bar,
.page-hero {
  margin-top: 26px;
  border-radius: var(--radius-lg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    linear-gradient(140deg, rgba(63, 127, 190, 0.11), rgba(246, 142, 47, 0.06));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-home {
  min-height: 560px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.82) 46%, rgba(20, 47, 92, 0.28) 100%),
    url("./assets/imagery/hero-enterprise-delivery.jpg") center/cover no-repeat;
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.82) 46%, rgba(20, 47, 92, 0.28) 100%),
    image-set(
      url("./assets/imagery/hero-enterprise-delivery.webp") type("image/webp"),
      url("./assets/imagery/hero-enterprise-delivery.jpg") type("image/jpeg")
    ) center/cover no-repeat;
}

.hero-inner {
  min-height: 460px;
  align-items: start;
}

.hero-inner h1,
.hero-inner .hero-text,
.hero-inner .hero-eyebrow {
  color: rgba(255, 255, 255, 0.96);
}

.hero-inner h1 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.12;
  font-weight: 300;
}

.hero-inner .hero-text {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.hero-inner .hero-panel {
  justify-items: end;
  align-content: start;
}

.hero-about {
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.8) 48%, rgba(20, 47, 92, 0.22) 100%),
    url("./assets/imagery/about-delivery-v2.jpg") center/cover no-repeat;
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.8) 48%, rgba(20, 47, 92, 0.22) 100%),
    image-set(
      url("./assets/imagery/about-delivery-v2.webp") type("image/webp"),
      url("./assets/imagery/about-delivery-v2.jpg") type("image/jpeg")
    ) center/cover no-repeat;
}

.hero-services {
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.8) 48%, rgba(20, 47, 92, 0.22) 100%),
    url("./assets/imagery/services-planning-v2.jpg") center/cover no-repeat;
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.8) 48%, rgba(20, 47, 92, 0.22) 100%),
    image-set(
      url("./assets/imagery/services-planning-v2.webp") type("image/webp"),
      url("./assets/imagery/services-planning-v2.jpg") type("image/jpeg")
    ) center/cover no-repeat;
}

.hero-contact {
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.8) 48%, rgba(20, 47, 92, 0.24) 100%),
    url("./assets/imagery/contact-consultation-v2.jpg") center/cover no-repeat;
  background:
    linear-gradient(90deg, rgba(11, 28, 58, 0.92) 0%, rgba(20, 47, 92, 0.8) 48%, rgba(20, 47, 92, 0.24) 100%),
    image-set(
      url("./assets/imagery/contact-consultation-v2.webp") type("image/webp"),
      url("./assets/imagery/contact-consultation-v2.jpg") type("image/jpeg")
    ) center/cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -100px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 127, 190, 0.08), transparent 68%);
  pointer-events: none;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  font-weight: 600;
  color: #10273b;
}

.hero-home h1,
.hero-home .hero-text,
.hero-home .hero-eyebrow {
  color: rgba(255, 255, 255, 0.96);
}

.hero-home h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 300;
}

.hero-text,
.section p,
.service-card p,
.industry-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 72ch;
  color: #445465;
}

.hero-home .hero-text {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li,
.hero-card,
.service-card,
.industry-grid article,
.trust-bar,
.section,
.cta-section {
  border: 1px solid rgba(12, 21, 36, 0.07);
}

.hero-metrics li,
.hero-card,
.service-card,
.industry-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong,
.hero-card strong,
.service-card h3,
.industry-grid h3 {
  display: block;
  margin-bottom: 8px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-home .hero-panel {
  justify-items: end;
  align-content: start;
}

.hero-orb {
  width: min(38vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(141, 207, 255, 0.22);
  background:
    radial-gradient(circle, rgba(101, 182, 255, 0.22) 0%, rgba(22, 56, 79, 0.08) 42%, transparent 66%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 80px rgba(64, 140, 220, 0.18);
  backdrop-filter: blur(2px);
}

.hero-card {
  box-shadow: var(--shadow-soft);
}

.hero-card p {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-card-accent {
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-soft));
  color: white;
}

.hero-card-accent p {
  color: rgba(255, 255, 255, 0.7);
}

.trust-bar,
.section,
.cta-section,
.page-hero {
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(140deg, rgba(63, 127, 190, 0.08), rgba(246, 142, 47, 0.05));
}

.page-hero h1 {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.12rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #10273b;
}

.page-hero p:last-child {
  max-width: 88ch;
  color: #4c5c6c;
}

.page-hero-compact {
  max-width: none;
}

.page-hero-compact h1 {
  max-width: 34ch;
  font-size: clamp(1.06rem, 1.8vw, 1.5rem);
  line-height: 1.06;
}

.page-hero-compact p:last-child {
  max-width: 88ch;
}

.section-dark {
  background: linear-gradient(180deg, var(--surface-dark), var(--surface-dark-soft));
  color: white;
  box-shadow: 0 24px 50px rgba(9, 25, 39, 0.18);
}

.section-dark .section-heading p,
.section-dark .industry-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .industry-grid article {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
}

.section-dark .industry-grid h3 {
  color: var(--surface-dark);
}

.section-dark .industry-grid p {
  color: rgba(1, 7, 7, 0.72);
}

.section-heading {
  max-width: 1120px;
  margin-bottom: 24px;
}

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading.compact h2 {
  max-width: 36ch;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-tile {
  height: 72px;
  width: 100%;
  padding: 0 4px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(12, 21, 36, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.client-logo {
  width: auto;
  max-width: 96%;
  max-height: 68px;
  display: block;
  object-fit: contain;
  transform-origin: center;
  filter: none;
  opacity: 1;
}

.logo-standard-bank {
  transform: scale(1.95);
}

.logo-t-systems {
  transform: scale(1.5);
}

.logo-tech-mahindra {
  transform: scale(1.75);
}

.logo-transnet {
  transform: scale(2);
}

.logo-tcta {
  transform: scale(1.95);
}

.logo-momentum {
  transform: scale(2.05);
}

.logo-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-section {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 28px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #5b86c1, #678fd0);
  box-shadow: var(--shadow);
  color: white;
  text-align: center;
}

.stats-grid article {
  padding: 10px 18px;
}

.stats-grid strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(380px, 1fr);
  gap: 24px;
}

.about-copy-panel,
.about-image-panel {
  padding: 6px;
}

.about-copy-panel p {
  max-width: 72ch;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-copy-panel h2 {
  max-width: 72ch;
  font-weight: 600;
  line-height: 1.15;
}

.about-image-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  justify-items: start;
}

.about-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(22, 56, 79, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-single {
  position: static;
  width: min(100%, 460px);
  height: 280px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-weight: 600;
  color: var(--brand-deep);
}

.services-grid .service-card {
  min-height: 260px;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.process-section .section-heading {
  text-align: center;
  margin-inline: auto;
}

.process-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  margin-top: 36px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 21, 36, 0.07);
  box-shadow: var(--shadow-soft);
}

.process-image {
  width: 100%;
  height: 176px;
  margin: 0 auto 14px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(12, 21, 36, 0.06);
  background: #f7f9fc;
}

.process-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.process-badge {
  width: 120px;
  min-height: 74px;
  margin: 0 auto 16px;
  padding: 12px 12px 10px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  gap: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 252, 0.94));
  border: 1px solid rgba(91, 134, 193, 0.14);
}

.process-badge span {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-blue);
}

.process-badge small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 600;
  color: #5b86c1;
}

.process-step p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.process-step-featured {
  background: linear-gradient(180deg, rgba(91, 134, 193, 0.08), rgba(255, 255, 255, 0.96));
  border-color: rgba(91, 134, 193, 0.16);
}

.home-cta {
  align-items: stretch;
  padding: 38px 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(246, 142, 47, 0.08), rgba(91, 134, 193, 0.08)),
    #f8fbff;
  border: 1px solid rgba(12, 21, 36, 0.08);
  box-shadow:
    0 28px 70px rgba(22, 50, 78, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--text);
}

.home-cta .eyebrow,
.home-cta h2,
.home-cta p {
  color: inherit;
}

.home-cta p {
  color: var(--text-muted);
}

.home-cta h2 {
  margin-bottom: 14px;
  max-width: 18ch;
  color: #0f2238;
}

.home-cta .eyebrow {
  color: var(--brand-blue-deep);
}

.home-cta .cta-copy {
  max-width: 760px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 50, 82, 0.96), rgba(33, 71, 108, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-cta .cta-copy .eyebrow,
.home-cta .cta-copy h2,
.home-cta .cta-copy p {
  color: #ffffff;
}

.home-cta .cta-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.cta-action-panel {
  min-width: 300px;
  max-width: 340px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 21, 36, 0.08);
  box-shadow: 0 22px 40px rgba(10, 24, 39, 0.12);
  align-self: center;
}

.cta-panel-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue-deep);
}

.cta-panel-copy {
  margin: 0 0 18px;
  color: #53667d;
  line-height: 1.7;
}

.home-cta .cta-actions {
  display: grid;
  gap: 14px;
}

.home-cta .nav-cta {
  width: 100%;
  justify-content: center;
}

.home-cta .button-secondary {
  background: #ffffff;
  border-color: rgba(12, 21, 36, 0.08);
  color: #11253c;
  width: 100%;
  justify-content: center;
}

.home-cta .button-secondary:hover {
  background: #f6f9fc;
}

.site-footer {
  margin-top: 26px;
  padding: 30px 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 21, 36, 0.07);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.7fr);
  gap: 24px 44px;
  align-items: start;
}

.site-footer .eyebrow {
  color: var(--brand-blue-deep);
  margin-bottom: 10px;
}

.footer-column,
.footer-contact,
.footer-links,
.footer-primary {
  min-width: 0;
}

.footer-primary {
  max-width: 880px;
}

.footer-primary h2 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.2;
  color: #10273b;
}

.footer-contact p {
  margin: 0 0 8px;
  color: #5f6f83;
  line-height: 1.65;
}

.footer-address {
  font-size: 0.93rem;
}

.footer-address strong {
  color: #10273b;
}

.footer-contact a {
  color: var(--brand-blue-deep);
  font-weight: 600;
}

.footer-cta {
  margin-top: 14px;
  width: fit-content;
  min-width: 170px;
  background: linear-gradient(135deg, #e79c4b 0%, #df8a36 100%);
  box-shadow: 0 12px 24px rgba(223, 138, 54, 0.18);
}

.footer-links {
  display: grid;
  gap: 14px;
  justify-content: start;
  align-content: start;
  padding-top: 2px;
}

.footer-links a {
  color: #5c6d82;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand-blue-deep);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  margin-top: 4px;
  border-top: 1px solid rgba(12, 21, 36, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #6b7989;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-legal a {
  color: var(--brand-blue-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.card-grid,
.industry-grid {
  display: grid;
  gap: 16px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
  gap: 28px;
}

.feature-split {
  align-items: center;
}

.feature-copy p {
  max-width: 68ch;
}

.feature-media {
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(12, 21, 36, 0.07);
  box-shadow: var(--shadow-soft);
  background: #eef4fa;
}

.feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(246, 142, 47, 0.1), rgba(63, 127, 190, 0.12)),
    rgba(255, 255, 255, 0.86);
}

.logo-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.client-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.client-highlight {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 21, 36, 0.07);
  box-shadow: var(--shadow-soft);
}

.client-highlight h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.client-highlight p {
  margin: 0;
  color: var(--text-muted);
}

.service-detail p,
.contact-card p,
.logo-option p,
.footer-summary {
  max-width: 82ch;
}

.logo-option,
.contact-card,
.service-detail {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(12, 21, 36, 0.07);
  box-shadow: var(--shadow-soft);
}

.logo-option img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 18px;
}

.logo-option h3,
.contact-card h2,
.service-detail h2 {
  margin-top: 0;
}

.service-stack,
.contact-grid {
  display: grid;
  gap: 16px;
}

.service-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.contact-form span {
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(12, 21, 36, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  color: var(--text);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(63, 127, 190, 0.34);
  box-shadow: 0 0 0 4px rgba(63, 127, 190, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 12px;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-row span {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form-full,
.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}

.contact-form-actions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-status strong,
.contact-card a {
  color: var(--brand-deep);
}

.field-error {
  min-height: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #b42318;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(180, 35, 24, 0.45);
  background: rgba(255, 245, 245, 0.95);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--brand);
}

@media (max-width: 1080px) {
  .hero,
  .about-showcase,
  .split,
  .cta-section {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-metrics,
  .card-grid,
  .industry-grid,
  .stats-grid,
  .process-visual,
  .logo-grid,
  .logo-option-grid,
  .service-stack,
  .contact-grid,
  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.compact {
    display: block;
  }

  .topbar {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .topbar-copy {
    justify-self: start;
    text-align: left;
  }

  .hero-home .hero-panel {
    display: none;
  }

  .about-image-panel {
    min-height: 360px;
  }

  .client-highlights {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .site-header {
    padding: 12px;
  }

  .brand img {
    height: 50px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .trust-bar,
  .section,
  .cta-section,
  .page-hero {
    padding: 24px;
  }

  .topbar {
    padding: 14px 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.35rem, 5.4vw, 1.95rem);
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home h1 {
    font-size: clamp(2rem, 8vw, 2.9rem);
  }

  .page-hero-compact h1 {
    max-width: none;
    font-size: clamp(1.25rem, 5vw, 1.8rem);
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.3rem, 5.2vw, 1.85rem);
  }

  .hero-metrics,
  .card-grid,
  .industry-grid,
  .stats-grid,
  .process-visual,
  .logo-grid,
  .logo-option-grid,
  .service-stack,
  .contact-grid,
  .contact-form,
  .legal-stack {
    grid-template-columns: 1fr;
  }

  .logo-grid-expanded {
    grid-template-columns: 1fr 1fr;
  }

  .about-image-panel {
    display: grid;
    min-height: auto;
    gap: 16px;
    justify-items: stretch;
  }

  .about-photo {
    position: static;
    width: 100%;
    height: 180px;
  }

  .process-badge {
    width: 108px;
    min-height: 70px;
  }

  .process-image {
    height: 162px;
  }

  .client-highlights {
    grid-template-columns: 1fr;
  }

  .contact-form-actions,
  .site-footer {
    display: grid;
    justify-content: stretch;
  }

  .home-cta {
    padding: 26px 24px;
  }

  .home-cta .cta-copy {
    padding: 24px;
  }

  .cta-action-panel {
    min-width: 0;
    max-width: none;
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-links {
    gap: 10px;
  }

  .feature-media {
    min-height: 260px;
  }
}


/* ============================================================
   v2 Brand theme — Pleasant off-white base, palette-true.
   Opt in via body.theme-brand. Colors map to the brand system:
     Communication blue (#3f7fbe)  — primary accent, headings em
     Extroversion orange (#f68e2f) — primary CTA, eyebrow accent
     Pleasant off-white (#f2f2f1)  — page surface
     Knowledge navy (#16384f)      — text ink + statement panels
     Reliability teal (#4fa0bf)    — micro-accent (icon 2)
     Determination pink (#d92d62)  — micro-accent (icon 3)
     Confidence black (#0a0b0d)    — reserved (header text, borders)
     Credibility gray (#a7a7a7)    — muted dims, logo greyscale
   ============================================================ */

:root {
  /* Brand palette — source of truth */
  --palette-comm:        #3f7fbe;
  --palette-extro:       #f68e2f;
  --palette-pleasant:    #f2f2f1;
  --palette-reliable:    #4fa0bf;
  --palette-determined:  #d92d62;
  --palette-confidence:  #0a0b0d;
  --palette-knowledge:   #16384f;
  --palette-credibility: #a7a7a7;

  /* Derived v2 tokens used by components */
  --v2-bg:            var(--palette-pleasant);
  --v2-surface:       #ffffff;
  --v2-surface-2:     #fafaf8;
  --v2-surface-3:     #f6f6f4;
  --v2-text:          #0e2234;              /* navy-ink, slightly softer than Knowledge */
  --v2-text-muted:    rgba(14, 34, 52, 0.64);
  --v2-text-dim:      rgba(14, 34, 52, 0.44);
  --v2-line:          rgba(22, 56, 79, 0.10);
  --v2-line-strong:   rgba(22, 56, 79, 0.22);
  --v2-brand:         var(--palette-comm);
  --v2-brand-strong:  #2e6ba8;
  --v2-brand-soft:    rgba(63, 127, 190, 0.12);
  --v2-accent:        var(--palette-extro);
  --v2-accent-strong: #d87216;
  --v2-accent-soft:   rgba(246, 142, 47, 0.14);
  --v2-navy:          var(--palette-knowledge);
  --v2-teal:          var(--palette-reliable);
  --v2-teal-soft:     rgba(79, 160, 191, 0.14);
  --v2-pink:          var(--palette-determined);
  --v2-pink-soft:     rgba(217, 45, 98, 0.12);
  --v2-gray:          var(--palette-credibility);
}

body.theme-brand {
  color: var(--v2-text);
  background:
    radial-gradient(70% 40% at 0% 0%, rgba(63, 127, 190, 0.08), transparent 60%),
    radial-gradient(60% 40% at 100% 0%, rgba(246, 142, 47, 0.06), transparent 60%),
    var(--v2-bg);
}

body.theme-brand .site-shell {
  padding-bottom: 0;
  max-width: none;
  width: 100%;
}

body.theme-brand .site-shell > * {
  width: min(calc(100% - 32px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

/* Header */
body.theme-brand .site-header {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(22, 56, 79, 0.10);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 28px rgba(22, 56, 79, 0.06);
}

body.theme-brand .site-nav {
  color: var(--v2-text-muted);
}

body.theme-brand .site-nav a:hover,
body.theme-brand .site-nav a[aria-current="page"] {
  color: var(--v2-navy);
}

body.theme-brand .site-nav a[aria-current="page"] {
  font-weight: 700;
}

body.theme-brand .site-nav .button.nav-cta {
  background: var(--v2-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(246, 142, 47, 0.22);
}

body.theme-brand .site-nav .button.nav-cta:hover {
  background: var(--v2-accent-strong);
}

body.theme-brand .nav-toggle { background: var(--v2-navy); }
body.theme-brand .nav-toggle span { background: #fff; }

/* Footer */
body.theme-brand .site-footer {
  background: #fff;
  border: 1px solid var(--v2-line);
  border-radius: 24px;
  color: var(--v2-text-muted);
  box-shadow: 0 8px 28px rgba(22, 56, 79, 0.05);
  margin-top: 40px;
  margin-bottom: 16px;
}

body.theme-brand .site-footer h2,
body.theme-brand .site-footer a:not(.button):hover {
  color: var(--v2-navy);
}

body.theme-brand .site-footer .eyebrow {
  color: var(--v2-text-dim);
}

body.theme-brand .site-footer .footer-cta {
  background: var(--v2-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(246, 142, 47, 0.22);
}

body.theme-brand .site-footer .footer-cta:hover {
  background: var(--v2-accent-strong);
}

body.theme-brand .site-footer .footer-bottom {
  border-top-color: var(--v2-line);
  color: var(--v2-text-dim);
}

/* Hero v2 — light, bold, palette-aligned */
.hero-v2 {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 28px;
  padding: 56px 56px 64px;
  margin-top: 24px;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-v2-copy { min-width: 0; }

.hero-v2-visual {
  align-self: center;
  min-width: 0;
}

.hero-v2-visual .panel-network {
  aspect-ratio: 5 / 5;
}

/* Photo variant used on inner heroes (about, services, contact). */
.hero-v2-photo {
  position: relative;
  aspect-ratio: 5 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 56, 79, 0.14);
  box-shadow: 0 20px 48px rgba(22, 56, 79, 0.14);
  isolation: isolate;
}

.hero-v2-photo picture,
.hero-v2-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 56, 79, 0.00) 0%, rgba(22, 56, 79, 0.18) 100%),
    radial-gradient(120% 60% at 0% 0%, rgba(63, 127, 190, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Solo variant — hero copy fills the full width (no right-side visual). */
.hero-v2.hero-v2-solo {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 40px 48px 44px;
  margin-top: 16px;
}

.hero-v2.hero-v2-solo h1 {
  max-width: 24ch;
}

.hero-v2.hero-v2-solo .hero-v2-text {
  max-width: 64ch;
}

/* Lite variant — compact hero for legal/404 pages. */
.hero-v2.hero-v2-lite {
  padding: 28px 40px 32px;
  margin-top: 16px;
}

.hero-v2.hero-v2-lite h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  margin-bottom: 14px;
  max-width: 32ch;
}

.hero-v2.hero-v2-lite .hero-v2-text {
  margin-bottom: 20px;
  max-width: 72ch;
  font-size: 1rem;
}

body.theme-brand .hero-v2 {
  background:
    radial-gradient(60% 80% at 12% 0%, rgba(63, 127, 190, 0.18), transparent 62%),
    radial-gradient(55% 70% at 92% 100%, rgba(246, 142, 47, 0.16), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--v2-surface-2) 100%);
  box-shadow: 0 24px 60px rgba(22, 56, 79, 0.08);
}

body.theme-brand .hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(22, 56, 79, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 56, 79, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-v2 > * { position: relative; z-index: 1; }

.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

body.theme-brand .hero-v2-eyebrow {
  background: var(--v2-accent-soft);
  border: 1px solid rgba(246, 142, 47, 0.32);
  color: var(--v2-accent-strong);
}

.hero-v2-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

body.theme-brand .hero-v2-eyebrow::before {
  background: var(--v2-accent);
  box-shadow: 0 0 12px rgba(246, 142, 47, 0.6);
}

.hero-v2 h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 22px;
}

body.theme-brand .hero-v2 h1 { color: var(--v2-navy); }

.hero-v2 h1 em {
  font-style: normal;
  font-weight: 500;
}

body.theme-brand .hero-v2 h1 em { color: var(--v2-brand); }

.hero-v2-text {
  max-width: 56ch;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
  margin: 0 0 36px;
}

body.theme-brand .hero-v2-text { color: var(--v2-text-muted); }

.hero-v2-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-v2-meta {
  margin-top: 40px;
  display: flex;
  gap: 20px 36px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

body.theme-brand .hero-v2-meta { color: var(--v2-text-dim); }
body.theme-brand .hero-v2-meta span strong {
  color: var(--v2-navy);
  font-weight: 600;
  margin-right: 6px;
}

/* Buttons — brand theme overrides */
body.theme-brand .button.nav-cta {
  background: var(--v2-accent);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(246, 142, 47, 0.22);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.theme-brand .button.nav-cta:hover {
  background: var(--v2-accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(246, 142, 47, 0.28);
}

body.theme-brand .button.button-secondary {
  background: #fff;
  color: var(--v2-navy);
  border: 1px solid var(--v2-line-strong);
  box-shadow: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: border-color 160ms ease, transform 160ms ease;
}

body.theme-brand .button.button-secondary:hover {
  border-color: var(--v2-navy);
  transform: translateY(-1px);
}

/* Stats v2 — light card overlapping hero */
.stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -36px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
}

body.theme-brand .stats-v2 {
  border: 1px solid var(--v2-line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(22, 56, 79, 0.10);
}

.stats-v2 article {
  padding: 28px 26px;
  border-right: 1px solid var(--v2-line);
}

.stats-v2 article:last-child { border-right: 0; }

.stats-v2 strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.theme-brand .stats-v2 strong { color: var(--v2-navy); }

.stats-v2 span {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}

body.theme-brand .stats-v2 span { color: var(--v2-text-muted); }

/* Section v2 — uniform top-only padding, same gap between every section. */
.section-v2 {
  padding: 40px 0 0;
}

.section-v2.tight { padding-top: 40px; }

.section-heading-v2 {
  margin-bottom: 44px;
  max-width: 720px;
}

/* Full-width heading variant — h2/p keep their own max-widths for readability. */
.section-heading-v2.section-heading-wide {
  max-width: none;
}

/* Two-column section heading: eyebrow + h2 on the left, intro paragraph on
   the right. Fills the full section width and avoids the "empty top-right"
   problem on wider viewports. Both columns align to the top. */
.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.section-heading-split .eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
  display: block;
}

body.theme-brand .section-heading-split .eyebrow { color: var(--v2-accent-strong); }

.section-heading-split h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0;
  max-width: 22ch;
}

body.theme-brand .section-heading-split h2 { color: var(--v2-navy); }

.section-heading-lede {
  font-size: 1.02rem;
  line-height: 1.6;
  /* Offset roughly equal to eyebrow height + margin-bottom so this
     paragraph aligns with the top of the H2, not with the eyebrow. */
  margin: calc(0.74rem * 1.2 + 14px) 0 0;
  max-width: 52ch;
  padding-bottom: 4px;
}

body.theme-brand .section-heading-lede { color: var(--v2-text-muted); }

@media (max-width: 960px) {
  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .section-heading-lede {
    margin-top: 0;
    max-width: 60ch;
  }
}

.section-heading-v2 .eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
  display: block;
}

body.theme-brand .section-heading-v2 .eyebrow { color: var(--v2-accent-strong); }

.section-heading-v2 h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 22ch;
}

body.theme-brand .section-heading-v2 h2 { color: var(--v2-navy); }

.section-heading-v2 p {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

body.theme-brand .section-heading-v2 p { color: var(--v2-text-muted); }

/* Capability grid — force 3 columns so 6 cards land as 2 rows of 3 */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Column-count modifiers for 4- or 2-item sections. */
.capability-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.capability-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 960px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid.cols-2 { grid-template-columns: 1fr; }
  .capability-grid.cols-4 { grid-template-columns: 1fr; }
}

.capability-card {
  padding: 28px 26px 26px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.theme-brand .capability-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(22, 56, 79, 0.04);
}

body.theme-brand .capability-card:hover {
  border-color: var(--v2-line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(22, 56, 79, 0.10);
}

.capability-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.capability-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Alternating blue / orange across the capability grid */
body.theme-brand .capability-card:nth-child(odd)  .icon { background: var(--v2-brand-soft);  color: var(--v2-brand); }
body.theme-brand .capability-card:nth-child(even) .icon { background: var(--v2-accent-soft); color: var(--v2-accent-strong); }

.capability-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

body.theme-brand .capability-card h3 { color: var(--v2-navy); }

.capability-card p {
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0;
}

body.theme-brand .capability-card p { color: var(--v2-text-muted); }

.capability-card .tag-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.capability-card .tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  border: 1px solid var(--v2-line);
}

body.theme-brand .capability-card .tag {
  background: var(--v2-surface-3);
  color: var(--v2-text-muted);
}

/* Process v2 */
.process-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  overflow: hidden;
}

body.theme-brand .process-v2 {
  border: 1px solid var(--v2-line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(22, 56, 79, 0.06);
}

.process-v2 article {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--v2-line);
  position: relative;
}

.process-v2 article:last-child { border-right: 0; }

.process-v2 .step-num {
  font-variant-numeric: tabular-nums;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

body.theme-brand .process-v2 .step-num { color: var(--v2-accent-strong); }

.process-v2 h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}

body.theme-brand .process-v2 h3 { color: var(--v2-navy); }

.process-v2 p {
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

body.theme-brand .process-v2 p { color: var(--v2-text-muted); }

/* Client strip — bigger logos, tighter chrome */
.client-strip-v2 {
  padding: 36px 28px 40px;
  border-radius: 20px;
}

body.theme-brand .client-strip-v2 {
  background: #fff;
  border: 1px solid var(--v2-line);
  box-shadow: 0 8px 24px rgba(22, 56, 79, 0.05);
}

.client-strip-v2 h3 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 28px;
}

body.theme-brand .client-strip-v2 h3 { color: var(--v2-text-dim); }

.client-strip-grid-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.client-strip-grid-v2 img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  transition: opacity 180ms ease;
}

body.theme-brand .client-strip-grid-v2 img {
  opacity: 0.95;
}

body.theme-brand .client-strip-grid-v2 img:hover {
  opacity: 1;
}

/* CTA v2 — navy statement panel (the one dark moment on the page) */
.cta-v2 {
  position: relative;
  overflow: hidden;
  padding: 56px 48px 60px;
  text-align: center;
  border-radius: 28px;
}

body.theme-brand .cta-v2 {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(63, 127, 190, 0.30), transparent 65%),
    radial-gradient(80% 60% at 50% 120%, rgba(246, 142, 47, 0.14), transparent 60%),
    linear-gradient(180deg, var(--v2-navy) 0%, #0E2B3D 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(22, 56, 79, 0.22);
}

.cta-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}

.cta-v2 > * { position: relative; }

.cta-v2 h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 36ch;
  margin: 0 auto 18px;
  line-height: 1.15;
}

body.theme-brand .cta-v2 h2 { color: #fff; }

.cta-v2 p {
  font-size: 1.04rem;
  line-height: 1.55;
  max-width: 54ch;
  margin: 0 auto 32px;
}

body.theme-brand .cta-v2 p { color: rgba(255, 255, 255, 0.76); }

body.theme-brand .cta-v2 .button.nav-cta {
  background: var(--v2-accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(246, 142, 47, 0.34);
}

body.theme-brand .cta-v2 .button.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

body.theme-brand .cta-v2 .button.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.cta-v2 .hero-v2-actions { justify-content: center; }

/* Two-col (About preview) */
.two-col-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.two-col-v2 h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin: 10px 0 18px;
  max-width: 22ch;
}

body.theme-brand .two-col-v2 h2 { color: var(--v2-navy); }

.two-col-v2 .eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

body.theme-brand .two-col-v2 .eyebrow { color: var(--v2-accent-strong); }

.two-col-v2 p {
  line-height: 1.6;
  font-size: 1rem;
}

body.theme-brand .two-col-v2 p { color: var(--v2-text-muted); }

/* Network panel — navy accent surface with glowing blue node graph. */
.panel-network {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
}

body.theme-brand .panel-network {
  border: 1px solid rgba(22, 56, 79, 0.24);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(63,127,190,0.30), transparent 65%),
    linear-gradient(180deg, var(--v2-navy) 0%, #0F2634 100%);
  box-shadow: 0 20px 48px rgba(22, 56, 79, 0.14);
}

.panel-network svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Industry grid — 3-col card layout with icons */
.industry-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-card {
  padding: 28px 26px 26px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.theme-brand .industry-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(22, 56, 79, 0.04);
}

body.theme-brand .industry-card:hover {
  border-color: var(--v2-line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(22, 56, 79, 0.10);
}

.industry-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

body.theme-brand .industry-card .icon {
  background: var(--v2-brand-soft);
  color: var(--v2-brand);
}

.industry-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

body.theme-brand .industry-card h3 { color: var(--v2-navy); }

.industry-card p {
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0;
}

body.theme-brand .industry-card p { color: var(--v2-text-muted); }

body.theme-brand .industry-card h3 a {
  color: inherit;
  text-decoration: none;
}

body.theme-brand .industry-card h3 a:hover {
  color: var(--v2-brand);
}

/* Column-count modifiers — use when a section has 4 or 2 items so
   the grid sits on clean rows (no 3+1 orphan "1.5 line" layouts). */
.industry-grid-v2.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.industry-grid-v2.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 960px) {
  .industry-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid-v2.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .industry-grid-v2 { grid-template-columns: 1fr; }
  .industry-grid-v2.cols-4 { grid-template-columns: 1fr; }
  .industry-grid-v2.cols-2 { grid-template-columns: 1fr; }
}

/* "In scope" aside card used in the What We Do section */
.scope-card {
  padding: 32px 30px;
  border-radius: 20px;
  margin: 0;
}

body.theme-brand .scope-card {
  background: #fff;
  border: 1px solid var(--v2-line);
  box-shadow: 0 10px 30px rgba(22, 56, 79, 0.06);
}

.scope-card .eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 20px;
  display: block;
}

body.theme-brand .scope-card .eyebrow { color: var(--v2-accent-strong); }

.scope-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.scope-card li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--v2-line);
}

.scope-card li:first-child { border-top: 0; padding-top: 0; }

.scope-card strong {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
}

body.theme-brand .scope-card strong { color: var(--v2-navy); }

.scope-card span {
  font-size: 0.9rem;
  line-height: 1.45;
}

body.theme-brand .scope-card span { color: var(--v2-text-muted); }

body.theme-brand .scope-card span a {
  color: var(--v2-brand);
  font-weight: 600;
}

body.theme-brand .scope-card span a:hover {
  color: var(--v2-brand-strong);
}

/* Inline row — Email and Phone share a single line inside the scope-card. */
.scope-card li.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}

.scope-card li.contact-row .contact-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.95rem;
}

.scope-card li.contact-row .contact-pair strong {
  font-size: 0.95rem;
  font-weight: 600;
}

body.theme-brand .scope-card li.contact-row .contact-pair strong {
  color: var(--v2-navy);
}

body.theme-brand .scope-card li.contact-row .contact-pair a {
  color: var(--v2-brand);
  font-weight: 600;
}

body.theme-brand .scope-card li.contact-row .contact-pair a:hover {
  color: var(--v2-brand-strong);
}

.scope-card li.contact-row .contact-sep {
  color: var(--v2-line-strong);
  font-weight: 600;
}

@media (max-width: 480px) {
  .scope-card li.contact-row .contact-sep { display: none; }
  .scope-card li.contact-row { gap: 6px 0; flex-direction: column; align-items: flex-start; }
}

/* CTA eyebrow class (replaces the inline style) */
.cta-v2-eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
  display: inline-block;
  color: var(--v2-accent);
}

/* Hero responsive — collapse to single column on narrower viewports */
@media (max-width: 960px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 40px 72px;
  }
  .hero-v2-visual .panel-network { aspect-ratio: 16 / 11; max-width: 520px; margin: 0 auto; }
  .hero-v2-photo { aspect-ratio: 16 / 10; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-v2 { padding: 52px 22px 60px; gap: 32px; }
}

/* Footer — compact 2-col grid on brand theme */
body.theme-brand .site-footer {
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 28px 32px 16px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 48px;
  align-items: start;
}

body.theme-brand .site-footer .footer-contact {
  min-width: 0;
}

body.theme-brand .site-footer .footer-contact .eyebrow {
  margin: 0 0 6px;
}

body.theme-brand .site-footer .footer-contact h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

body.theme-brand .site-footer .footer-contact p {
  margin: 4px 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

body.theme-brand .site-footer .footer-contact .footer-address {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--v2-text-muted);
}

body.theme-brand .site-footer .footer-contact .footer-cta {
  margin-top: 14px;
  padding: 12px 20px;
  min-height: auto;
}

body.theme-brand .site-footer .footer-links {
  display: grid;
  gap: 8px;
  justify-self: end;
  justify-items: end;
  text-align: right;
  min-width: 0;
  padding-top: 0;
}

body.theme-brand .site-footer .footer-links .eyebrow {
  margin: 0 0 10px;
}

body.theme-brand .site-footer .footer-links a {
  color: var(--v2-navy);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

body.theme-brand .site-footer .footer-links a:hover {
  color: var(--v2-brand);
}

body.theme-brand .site-footer .footer-bottom {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--v2-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 0.85rem;
}

body.theme-brand .site-footer .footer-bottom p {
  margin: 0;
}

body.theme-brand .site-footer .footer-legal {
  display: flex;
  gap: 20px;
}

@media (max-width: 720px) {
  body.theme-brand .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px 18px;
  }

  body.theme-brand .site-footer .footer-links {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }
}

/* =============================================================
   theme-brand — overrides for v1 components still in use.
   Inner pages now run on v2 components (hero-v2, section-v2,
   two-col-v2, capability-grid, industry-grid-v2, scope-card,
   cta-v2). Only the topbar and the contact form still use v1
   markup, so those are the only v1 rules we keep.
   ============================================================= */

/* Topbar — align to v2 navy instead of the v1 blue gradient. */
body.theme-brand .topbar {
  background:
    radial-gradient(70% 120% at 0% 0%, rgba(63, 127, 190, 0.22), transparent 60%),
    var(--v2-navy);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 36px rgba(22, 56, 79, 0.18);
}

body.theme-brand .topbar a {
  color: #fff;
}

body.theme-brand .topbar-label {
  color: rgba(255, 255, 255, 0.58);
}

/* Contact form — v2 surface treatment. */
body.theme-brand .contact-form {
  background: #fff;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(22, 56, 79, 0.05);
}

body.theme-brand .contact-form input,
body.theme-brand .contact-form textarea,
body.theme-brand .contact-form select {
  border-color: var(--v2-line);
  background: var(--v2-surface-2);
  color: var(--v2-text);
}

body.theme-brand .contact-form input:focus,
body.theme-brand .contact-form textarea:focus,
body.theme-brand .contact-form select:focus {
  border-color: var(--v2-brand);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px var(--v2-brand-soft);
}

body.theme-brand .contact-form label > span {
  color: var(--v2-text);
}

body.theme-brand .form-status {
  color: var(--v2-text-muted);
}

/* Inquiry container — holds the form, error banner, and success card. */
.inquiry-container {
  display: block;
}

[hidden] {
  display: none !important;
}

/* Error banner shown above the form when a send fails. */
.form-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(217, 45, 98, 0.06);
  border: 1px solid rgba(217, 45, 98, 0.22);
  outline: none;
}

.form-banner:focus-visible {
  box-shadow: 0 0 0 3px rgba(217, 45, 98, 0.18);
}

.form-banner-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 280px;
  min-width: 0;
}

.form-banner-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(217, 45, 98, 0.14);
  color: #b8214b;
  display: grid;
  place-items: center;
}

.form-banner-icon svg {
  width: 16px;
  height: 16px;
}

.form-banner-title {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--v2-navy);
}

.form-banner-message {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--v2-text-muted);
}

.form-banner-message a {
  color: var(--v2-brand);
  font-weight: 600;
}

.form-banner-message a:hover {
  color: var(--v2-brand-strong);
}

.form-banner .button.button-secondary {
  flex: 0 0 auto;
}

/* Success card shown in place of the form after a successful submit. */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 40px 32px;
  border-radius: 22px;
  border: 1px solid var(--v2-line);
  background:
    radial-gradient(55% 60% at 0% 0%, rgba(63, 127, 190, 0.12), transparent 60%),
    radial-gradient(55% 60% at 100% 100%, rgba(246, 142, 47, 0.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--v2-surface-2));
  box-shadow: 0 16px 40px rgba(22, 56, 79, 0.08);
  outline: none;
}

.form-success:focus-visible {
  box-shadow: 0 0 0 3px var(--v2-brand-soft), 0 16px 40px rgba(22, 56, 79, 0.08);
}

.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--v2-accent-soft);
  color: var(--v2-accent-strong);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.form-success-icon svg {
  width: 26px;
  height: 26px;
}

.form-success h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--v2-navy);
  letter-spacing: -0.01em;
}

.form-success p {
  margin: 0;
  color: var(--v2-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 54ch;
}

.form-success p strong {
  color: var(--v2-navy);
}

.form-success .button.button-secondary {
  margin-top: 4px;
}

/* Submit button loading state — show a spinner, dim the label. */
.button .button-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-spin 0.75s linear infinite;
}

.button.is-loading {
  cursor: progress;
}

.button.is-loading .button-label {
  opacity: 0.6;
}

.button.is-loading .button-spinner {
  display: inline-block;
}

@keyframes button-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 560px) {
  .form-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .form-banner .button.button-secondary {
    align-self: flex-start;
  }
  .form-success {
    padding: 28px 24px 26px;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-v2 { padding: 80px 32px 92px; }
  .stats-v2 { grid-template-columns: repeat(2, 1fr); }
  .stats-v2 article:nth-child(2) { border-right: 0; }
  .stats-v2 article:nth-child(1),
  .stats-v2 article:nth-child(2) { border-bottom: 1px solid var(--v2-line); }
  .process-v2 { grid-template-columns: repeat(2, 1fr); }
  .process-v2 article:nth-child(2) { border-right: 0; }
  .process-v2 article:nth-child(1),
  .process-v2 article:nth-child(2) { border-bottom: 1px solid var(--v2-line); }
  .client-strip-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .two-col-v2 { grid-template-columns: 1fr; gap: 40px; }
  .panel-network { aspect-ratio: 16 / 11; }
  .section-v2 { padding-top: 44px; }
  .section-v2.tight { padding-top: 44px; }
}

@media (max-width: 960px) {
  .hero-v2.hero-v2-solo { padding: 44px 32px 48px; }
  .hero-v2.hero-v2-lite { padding: 28px 28px 32px; }
}

@media (max-width: 600px) {
  .hero-v2 { padding: 64px 22px 72px; border-radius: 20px; }
  .hero-v2.hero-v2-solo { padding: 36px 22px 40px; }
  .hero-v2.hero-v2-lite { padding: 24px 22px 28px; border-radius: 18px; }
  .stats-v2 { grid-template-columns: 1fr; }
  .stats-v2 article { border-right: 0; border-bottom: 1px solid var(--v2-line); }
  .stats-v2 article:last-child { border-bottom: 0; }
  .process-v2 { grid-template-columns: 1fr; }
  .process-v2 article { border-right: 0; border-bottom: 1px solid var(--v2-line); }
  .process-v2 article:last-child { border-bottom: 0; }
  .client-strip-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .client-strip-v2 { padding: 44px 24px; }
  .cta-v2 { padding: 44px 22px 48px; border-radius: 20px; }
  .section-v2 { padding-top: 36px; }
  .section-v2.tight { padding-top: 36px; }
}
