:root {
  --font-headline: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --ink: #0a1628;
  --ink-soft: #334155;
  --muted: #64748b;
  --blue: #0362e6;
  --blue-2: #239bff;
  --blue-dark: #00285c;
  --night: #081220;
  --night-2: #0f1e3a;
  --paper: #ffffff;
  --paper-2: #f7faff;
  --paper-3: #eef4ff;
  --line: rgba(3, 98, 230, 0.12);
  --shadow: 0 20px 60px rgba(3, 98, 230, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.container {
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 80px 0;
}

.headline,
h1,
h2 {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 12px 32px rgba(3, 98, 230, 0.28);
}

.btn-secondary {
  border-color: rgba(3, 98, 230, 0.24);
  background: rgba(3, 98, 230, 0.04);
  color: var(--blue);
}

.btn-light {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 18, 32, 0.48);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.header-light {
  border-color: rgba(3, 98, 230, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.site-header.scrolled {
  background: rgba(8, 18, 32, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.site-header.header-light.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(3, 98, 230, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.header-light .brand {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9bb9d8, #1f2a36);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.35rem;
  line-height: 1;
}

.brand-name {
  display: grid;
  gap: 1px;
  font-family: var(--font-headline);
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 0.88;
}

.brand-name span:last-child {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-light .nav-link {
  color: rgba(26, 35, 50, 0.72);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.header-light .nav-link:hover,
.header-light .nav-link.active {
  color: var(--blue);
}

.nav-contact {
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 6px;
  border-color: rgba(35, 155, 255, 0.38);
  color: #fff;
}

.header-light .nav-contact {
  border-color: rgba(3, 98, 230, 0.3);
  background: rgba(3, 98, 230, 0.04);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(35, 155, 255, 0.32);
  color: #fff;
}

.header-light .menu-toggle {
  color: var(--ink);
  border-color: rgba(3, 98, 230, 0.18);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  opacity: 0;
}

.menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #f0f6ff 50%, #e8f2ff 100%);
}

.home-hero::before,
.case-section::before,
.cta-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(3, 98, 230, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(3, 98, 230, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.96fr);
  gap: 54px;
  align-items: center;
  min-height: 100vh;
  padding: 126px 0 64px;
}

.hero-copy {
  max-width: 660px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 7px 14px;
  border: 1px solid rgba(3, 98, 230, 0.2);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.hero-text {
  max-width: 560px;
  margin-top: 28px;
  color: #4a5e7a;
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-points span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

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

.hero-panel {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night-2);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel:nth-child(2),
.hero-panel:nth-child(4) {
  margin-top: 32px;
}

.hero-panel img,
.media-card img,
.case-image img,
.journey-image img,
.inner-image img,
.portfolio-image img,
.team-photo img,
.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel img,
.portfolio-image img,
.team-photo img {
  transition: transform 650ms ease, filter 500ms ease;
}

.hero-panel:hover img,
.portfolio-card:hover .portfolio-image img,
.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.hero-panel::after,
.portfolio-image::after,
.case-image::after,
.journey-image::after,
.contact-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 20, 40, 0.88), rgba(7, 20, 40, 0.16) 55%, transparent);
  content: "";
}

.panel-tag {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.panel-caption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  color: #fff;
}

.panel-caption strong {
  display: block;
  font-size: 0.95rem;
}

.panel-caption span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.result-float {
  position: absolute;
  bottom: -18px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 14px 16px;
  border: 1px solid rgba(3, 98, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 40px rgba(3, 98, 230, 0.16);
}

.result-float strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-size: 0.88rem;
}

.result-float span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.stat-strip {
  border-block: 1px solid rgba(3, 98, 230, 0.1);
  background: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(3, 98, 230, 0.1);
}

.stat-value {
  color: var(--blue);
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
}

.section-heading p {
  max-width: 650px;
  margin: 18px auto 0;
}

.services-preview {
  background: var(--paper-2);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}

.service-tab,
.stage-pill,
.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(3, 98, 230, 0.15);
  border-radius: 999px;
  background: #fff;
  color: #4a5e7a;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.service-tab svg,
.stage-pill svg {
  width: 17px;
  height: 17px;
}

.service-tab:hover,
.stage-pill:hover,
.category-pill:hover {
  transform: translateY(-1px);
}

.service-tab.active,
.stage-pill.active,
.category-pill.active {
  border-color: var(--active-color, var(--blue));
  background: linear-gradient(135deg, var(--active-color, var(--blue)), var(--blue-2));
  color: #fff;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--active-color, var(--blue)) 22%, transparent);
}

.service-showcase,
.journey-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1180px;
  margin-inline: auto;
}

.media-card,
.service-detail,
.journey-detail,
.process-expand,
.expert-card,
.value-card,
.contact-card,
.job-card {
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(3, 98, 230, 0.07);
}

.media-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.media-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.66), transparent 55%);
  content: "";
}

.service-caption,
.case-labels,
.journey-label {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-caption {
  bottom: 24px;
  left: 24px;
  display: block;
  color: #fff;
}

.service-caption span,
.case-labels span,
.journey-label span,
.portfolio-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.service-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.service-stats {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  gap: 8px;
  max-width: 190px;
}

.service-stat-chip {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  text-align: right;
}

.service-stat-chip strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  line-height: 1;
}

.service-stat-chip span {
  color: var(--muted);
  font-size: 0.72rem;
}

.service-detail,
.journey-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
}

.service-detail h3,
.journey-detail h3,
.process-card h3,
.expert-card h3,
.inner-copy h2 {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.service-detail h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(3, 98, 230, 0.1);
  color: var(--blue);
  content: "";
  box-shadow: inset 0 0 0 1px rgba(3, 98, 230, 0.16);
}

.feature-list li span {
  position: relative;
}

.feature-list li span::before {
  position: absolute;
  top: 0.32rem;
  left: -29px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  color: var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.case-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #071428 0%, #0c1e3c 50%, #071428 100%);
  color: #fff;
}

.case-section::before,
.cta-section::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
}

.case-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.case-top h2 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.case-controls {
  display: flex;
  gap: 10px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: background 160ms ease, transform 160ms ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.icon-btn.primary {
  border-color: rgba(3, 98, 230, 0.6);
  background: rgba(3, 98, 230, 0.5);
}

.case-showcase {
  position: relative;
  z-index: 2;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.9fr);
  gap: 24px;
}

.case-image,
.journey-image,
.portfolio-image,
.inner-image,
.contact-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night-2);
}

.case-image {
  min-height: 380px;
}

.case-labels {
  top: 18px;
  left: 18px;
}

.case-meta {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.case-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-meta svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.52);
}

.case-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

.case-index {
  margin-bottom: 12px;
  color: rgba(35, 155, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-amount {
  color: #fff;
  font-family: var(--font-headline);
  font-size: clamp(4rem, 7vw, 6.2rem);
  line-height: 0.9;
}

.case-amount span {
  color: rgba(255, 255, 255, 0.42);
}

.case-amount small {
  color: var(--blue-2);
  font-size: 0.45em;
  vertical-align: super;
}

.case-info h3 {
  margin-top: 18px;
  color: #e8f0f8;
  font-size: 1.35rem;
  font-weight: 600;
}

.case-info p {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(200, 220, 240, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}

.case-thumbs,
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-thumbs {
  margin-top: 26px;
}

.case-thumb {
  position: relative;
  width: 54px;
  height: 38px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: width 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.case-thumb.active {
  width: 70px;
  border-color: var(--blue-2);
}

.case-thumb:hover {
  transform: translateY(-1px);
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-row {
  margin-top: 20px;
}

.category-pill {
  min-height: 34px;
  padding: 7px 12px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.stage-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 940px;
  margin: 0 auto 30px;
}

.journey-progress {
  max-width: 820px;
  margin: 0 auto 40px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.1);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transition: width 260ms ease;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(3, 98, 230, 0.52);
  font-size: 0.78rem;
}

.journey-image {
  min-height: 370px;
}

.journey-label {
  top: 18px;
  left: 18px;
}

.journey-title-overlay {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
  color: #fff;
}

.journey-title-overlay strong {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.journey-title-overlay span {
  color: rgba(255, 255, 255, 0.66);
}

.journey-detail {
  border-color: var(--stage-border, rgba(3, 98, 230, 0.12));
  background: var(--stage-bg, var(--paper-3));
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--stage-color, var(--blue));
  font-weight: 700;
}

.journey-detail h3 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.bullet-boxes {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.bullet-boxes li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--stage-border, rgba(3, 98, 230, 0.12));
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.bullet-boxes li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--stage-color, var(--blue));
  content: "";
}

.journey-actions {
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--stage-border, rgba(3, 98, 230, 0.12));
}

.journey-actions button {
  flex: 1;
}

.process-section {
  background: #f4f8ff;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-card {
  text-align: center;
}

.process-button {
  width: 100%;
  min-height: 248px;
  padding: 26px 18px;
  border: 1px solid rgba(3, 98, 230, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 98, 230, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-button:hover,
.process-card.active .process-button {
  transform: translateY(-4px);
  border-color: var(--process-color, var(--blue));
  box-shadow: 0 16px 38px rgba(3, 98, 230, 0.14);
}

.process-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--process-color, var(--blue)) 12%, white);
  color: var(--process-color, var(--blue));
}

.process-icon svg {
  width: 34px;
  height: 34px;
}

.process-num {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--process-color, var(--blue)) 10%, white);
  color: var(--process-color, var(--blue));
  font-family: var(--font-headline);
  font-size: 1rem;
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.45rem;
}

.process-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.process-highlight {
  display: inline-flex;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--process-color, var(--blue)) 10%, white);
  color: var(--process-color, var(--blue));
  font-size: 0.72rem;
  font-weight: 700;
}

.process-expand {
  display: none;
  align-items: center;
  gap: 24px;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 26px;
  background: color-mix(in srgb, var(--process-color, var(--blue)) 5%, white);
}

.process-expand.open {
  display: flex;
}

.process-expand p {
  color: var(--ink-soft);
}

.experts-section {
  background: #fff;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 54px;
}

.metric-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: var(--radius);
  background: #f4f8ff;
}

.metric-chip svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.metric-value {
  display: block;
  color: var(--blue);
  font-family: var(--font-headline);
  font-size: 1.85rem;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.85rem;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.expert-card {
  position: relative;
  padding: 28px;
  background: #f7faff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.expert-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--expert-color, var(--blue)) 35%, white);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--expert-color, var(--blue)) 14%, transparent);
}

.expert-card::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--expert-color, var(--blue)), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.expert-card:hover::after {
  opacity: 1;
}

.expert-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--expert-color, var(--blue)) 12%, white);
  color: var(--expert-color, var(--blue));
}

.expert-icon svg {
  width: 28px;
  height: 28px;
}

.expert-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.expert-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.expert-stat {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--expert-color, var(--blue)) 20%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--expert-color, var(--blue)) 10%, white);
  color: var(--expert-color, var(--blue));
  font-size: 0.75rem;
  font-weight: 700;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0047b3 0%, #0362e6 44%, #0b7fff 72%, #239bff 100%);
  color: #fff;
  text-align: center;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
}

.cta-kicker {
  display: inline-flex;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
}

.cta-section p {
  max-width: 700px;
  margin: 24px auto 42px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}


.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-cta.dismissed {
  display: none;
}

.float-dismiss {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(3, 98, 230, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #64748b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.site-footer {
  background: var(--blue-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 54px;
  padding: 72px 0 58px;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.socials,
.legal-links {
  display: flex;
  gap: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.inner-page {
  min-height: 100vh;
  background: var(--night);
}

.inner-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
  background: linear-gradient(135deg, var(--night), var(--night-2) 55%, var(--blue-dark));
  color: #fff;
}

.inner-hero.tall {
  min-height: 70vh;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
  padding-block: 72px;
}

.inner-hero-content {
  max-width: 900px;
}

.inner-hero h1 {
  color: #fff;
  font-size: clamp(4rem, 8vw, 6.4rem);
}

.inner-hero p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
}

.hero-media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 18, 32, 0.96), rgba(15, 30, 58, 0.94), rgba(0, 40, 92, 0.88));
  content: "";
}

.content-white {
  background: #fff;
  color: #000;
}

.service-list {
  display: grid;
  gap: 112px;
}

.inner-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.inner-service.reverse .inner-image {
  grid-column: 2;
}

.inner-service.reverse .inner-copy {
  grid-column: 1;
  grid-row: 1;
}

.inner-image {
  aspect-ratio: 4 / 3;
}

.inner-copy h2 {
  color: #000;
  font-size: clamp(3rem, 5vw, 4.2rem);
}

.inner-copy p {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.08rem;
  line-height: 1.75;
}

.inner-service-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.inner-service-list li {
  display: flex;
  gap: 12px;
  color: rgba(0, 0, 0, 0.78);
}

.inner-service-list li::before {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(3, 98, 230, 0.1);
  content: "";
  box-shadow: inset 0 0 0 6px rgba(3, 98, 230, 0.42);
}

.dark-band {
  background: var(--night);
  color: #fff;
}

.process-mini-grid,
.value-grid,
.jobs-list {
  display: grid;
  gap: 22px;
}

.process-mini-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-mini {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(15, 30, 58, 0.5);
}

.process-mini-num {
  color: var(--blue-2);
  font-family: var(--font-headline);
  font-size: 3rem;
  line-height: 1;
}

.process-mini h3 {
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 400;
}

.process-mini p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
}

.gradient-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  text-align: center;
}

.gradient-cta h2,
.dark-cta h2 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
}

.gradient-cta p,
.dark-cta p {
  max-width: 740px;
  margin: 22px auto 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.portfolio-card {
  display: block;
}

.portfolio-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
}

.portfolio-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  border-radius: var(--radius);
  background: var(--blue);
}

.portfolio-category {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card h3 {
  color: #111827;
  font-size: 1.1rem;
  line-height: 1.35;
  transition: color 160ms ease;
}

.portfolio-card:hover h3 {
  color: var(--blue);
}

.portfolio-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 160ms ease;
}

.portfolio-card:hover .portfolio-more {
  opacity: 1;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.result-stats strong {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.result-stats span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.dark-cta {
  background: var(--night);
  color: #fff;
  text-align: center;
}

.team-intro {
  position: relative;
  padding-top: 144px;
  background: linear-gradient(135deg, var(--night), var(--night-2), var(--blue-dark));
  color: #fff;
  text-align: center;
}

.team-intro h1 {
  color: #fff;
  font-size: clamp(4rem, 8vw, 6.2rem);
}

.team-intro p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.team-category + .team-category {
  margin-top: 96px;
}

.team-category h2 {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 28px;
  margin-top: 36px;
}

.team-photo {
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: #e2e8f0;
}

.team-photo img {
  filter: grayscale(1);
}

.team-card:hover .team-photo img {
  filter: grayscale(0);
}

.team-card h3 {
  color: #000;
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
}

.team-card p {
  margin-top: 6px;
  color: var(--blue);
  font-size: 0.9rem;
  line-height: 1.45;
}

.career-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.career-story h2 {
  color: #000;
  font-size: clamp(3rem, 5vw, 4.2rem);
}

.career-story p {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.value-card {
  padding: 28px;
  background: #f8fafc;
}

.value-icon,
.contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(3, 98, 230, 0.1);
  color: var(--blue);
}

.value-icon svg,
.contact-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  color: #000;
  font-family: var(--font-headline);
  font-size: 1.55rem;
  font-weight: 400;
}

.value-card p {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.62);
}

.jobs-list {
  max-width: 920px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 30, 58, 0.5);
  color: #fff;
}

.job-card h3 {
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 400;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.job-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-2);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: #f8fafc;
}

.contact-card-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card small {
  display: block;
  margin-bottom: 6px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card a.phone {
  color: var(--blue);
  font-family: var(--font-headline);
  font-size: 2.3rem;
  line-height: 1;
}

.contact-card a.email {
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.consultants {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.consultant {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: var(--radius);
  background: #f8fafc;
}

.consultant-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(3, 98, 230, 0.1);
  color: var(--blue);
}

.availability {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
}

.availability h3 {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 400;
}

.availability p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: var(--night);
  color: #fff;
  text-align: center;
}

.not-found h1 {
  color: #fff;
  font-size: clamp(6rem, 18vw, 10rem);
}

.not-found p {
  margin: 10px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero-grid,
  .service-showcase,
  .journey-showcase,
  .case-grid,
  .inner-service,
  .career-story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .inner-service.reverse .inner-image,
  .inner-service.reverse .inner-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .process-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-expand {
    align-items: flex-start;
  }

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

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(3, 98, 230, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(3, 98, 230, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    padding: 13px 6px;
    color: rgba(26, 35, 50, 0.78);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--blue);
  }

  .nav-contact {
    margin-top: 8px;
    color: var(--blue);
    border-color: rgba(3, 98, 230, 0.28);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .result-float {
    display: none;
  }

  .hero-panel:nth-child(2),
  .hero-panel:nth-child(4) {
    margin-top: 0;
  }

  .hero-panel-grid,
  .stat-grid,
  .portfolio-grid,
  .expert-grid,
  .process-mini-grid,
  .result-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1400px);
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .nav-inner {
    min-height: 74px;
  }

  .nav-links {
    top: 74px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.72rem;
  }

  .hero-grid {
    padding: 112px 0 50px;
  }

  .hero-actions,
  .cta-actions,
  .journey-actions,
  .job-card {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .journey-actions .btn {
    width: 100%;
  }

  .hero-panel-grid,
  .stat-grid,
  .portfolio-grid,
  .expert-grid,
  .process-grid,
  .process-mini-grid,
  .value-grid,
  .team-grid,
  .result-stats {
    grid-template-columns: 1fr;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(3, 98, 230, 0.1);
  }

  .service-stats {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
    padding: 16px;
    background: #fff;
  }

  .media-card {
    min-height: 360px;
  }

  .service-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .case-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-image,
  .case-info,
  .journey-image {
    min-height: 320px;
  }

  .process-expand,
  .contact-card-row {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .float-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .float-cta .btn {
    flex: 1;
  }

  .inner-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .team-intro {
    padding-top: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* Homepage v25 reference alignment: scoped so shared subpages keep their layouts. */
body[data-page="home"] .v25-home-section {
  position: relative;
  padding: 96px 0;
}

body[data-page="home"] .v25-home-section > .container {
  width: min(100%, 1280px);
  max-width: 1280px;
  padding-inline: 32px;
  margin-inline: auto;
}

body[data-page="home"] .v25-section-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

body[data-page="home"] .v25-section-eyebrow,
body[data-page="home"] .home-process-heading > p {
  margin: 0 0 12px;
  color: #0362e6;
  font: 700 12px/1.25 Inter, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .v25-section-heading :is(h1, h2),
body[data-page="home"] .v9-testimonials .section-heading h2 {
  margin: 0;
  color: #0a1628;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

body[data-page="home"] .v25-section-heading :is(h1, h2) span,
body[data-page="home"] .home-process-heading h2 span {
  color: #0362e6;
  background: linear-gradient(90deg, #0362e6, #239bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body[data-page="home"] .v25-section-intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: #4a5e7a;
  font: 400 16px/1.6 Inter, sans-serif;
}

@media (min-width: 1024px) {
  body[data-page="home"] .v25-services .v25-section-intro {
    max-width: none;
    white-space: nowrap;
  }
}

body[data-page="home"] .v25-services {
  min-height: 0;
  overflow: hidden;
  background: #f7faff;
}

body[data-page="home"] .v25-service-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
}

body[data-page="home"] .v25-service-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(3, 98, 230, 0.15);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(10, 22, 40, 0.04);
  color: #4a5e7a;
  font: 500 14px/20px Inter, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body[data-page="home"] .v25-service-tab svg {
  width: 18px;
  height: 18px;
}

body[data-page="home"] .v25-service-tab:hover {
  border-color: var(--service-color);
  color: var(--service-color);
  transform: translateY(-1px);
}

body[data-page="home"] .v25-service-tab.active {
  border-color: var(--service-color);
  background: linear-gradient(135deg, var(--service-color), #239bff);
  box-shadow: 0 5px 18px rgba(3, 98, 230, 0.24);
  color: #fff;
}

body[data-page="home"] .v25-service-display {
  min-height: 0;
}

body[data-page="home"] .home-service-panel {
  overflow: hidden;
  border: 1px solid rgba(3, 98, 230, 0.08);
  border-radius: 16px;
  background: #071224;
  box-shadow: 0 8px 48px rgba(3, 98, 230, 0.15);
}

body[data-page="home"] .home-service-media {
  position: relative;
  height: 520px;
  overflow: hidden;
  isolation: isolate;
}

body[data-page="home"] .home-service-media-el {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #071224;
  object-fit: cover;
}

body[data-page="home"] .home-service-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 36, 0.28), transparent 35%),
    linear-gradient(270deg, rgba(7, 18, 36, 0.98) 0%, rgba(7, 18, 36, 0.91) 38%, rgba(7, 18, 36, 0.42) 66%, transparent 100%);
}

body[data-page="home"] .home-service-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--service-color);
  color: #fff;
  font: 500 12px/1 Inter, sans-serif;
}

body[data-page="home"] .home-service-copy {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  width: 48%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 44px 48px 42px 24px;
  color: #fff;
}

body[data-page="home"] .home-service-copy h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
}

body[data-page="home"] .home-service-copy > p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.76);
  font: 400 14px/1.55 Inter, sans-serif;
}

body[data-page="home"] .home-service-features {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .home-service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font: 500 13px/1.35 Inter, sans-serif;
}

body[data-page="home"] .home-service-features svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  padding: 2px;
  border-radius: 50%;
  background: var(--service-color);
  color: #fff;
}

body[data-page="home"] .v25-inline-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: #62bdff;
  font: 700 13px/1 Inter, sans-serif;
  text-decoration: none;
}

body[data-page="home"] .v25-inline-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

body[data-page="home"] .v25-inline-link:hover svg {
  transform: translateX(4px);
}

body[data-page="home"] .home-service-gallery {
  margin-top: 32px;
}

body[data-page="home"] .home-service-gallery-head {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

body[data-page="home"] .home-service-gallery-label,
body[data-page="home"] .home-service-gallery-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

body[data-page="home"] .home-service-gallery-label {
  color: #64748b;
  font: 400 14px/1.25 Inter, sans-serif;
}

body[data-page="home"] .home-service-gallery-label strong {
  color: var(--service-color);
  font-weight: 400;
}

body[data-page="home"] .home-service-gallery-label svg {
  width: 17px;
  height: 17px;
  color: var(--service-color);
}

body[data-page="home"] .home-service-gallery-controls button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(3, 98, 230, 0.13);
  border-radius: 50%;
  background: #fff;
  color: #4a5e7a;
  cursor: pointer;
}

body[data-page="home"] .home-service-gallery-controls button:hover {
  border-color: var(--service-color);
  color: var(--service-color);
}

body[data-page="home"] .home-service-gallery-controls svg {
  width: 15px;
  height: 15px;
}

body[data-page="home"] .home-service-gallery-count {
  min-width: 38px;
  color: #64748b;
  font: 600 12px/1 Inter, sans-serif;
  text-align: center;
}

body[data-page="home"] .home-service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="home"] .home-service-example {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #071224;
  cursor: pointer;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body[data-page="home"] .home-service-example::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 36, 0.08) 30%, rgba(7, 18, 36, 0.9) 100%);
  content: "";
}

body[data-page="home"] .home-service-example-media,
body[data-page="home"] .home-service-example-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body[data-page="home"] .home-service-example-media img {
  filter: grayscale(0.4) brightness(0.72);
  object-fit: cover;
  transition: filter 180ms ease, transform 320ms ease;
}

body[data-page="home"] .home-service-example:hover {
  transform: translateY(-2px);
}

body[data-page="home"] .home-service-example:hover img {
  transform: scale(1.04);
}

body[data-page="home"] .home-service-example.active {
  border-color: var(--service-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--service-color) 22%, transparent);
}

body[data-page="home"] .home-service-example.active img {
  filter: none;
}

body[data-page="home"] .home-service-example-caption {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 9px;
  left: 10px;
  overflow: hidden;
  color: #fff;
  font: 600 11px/1.3 Inter, sans-serif;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="home"] .home-service-example-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(7, 18, 36, 0.55);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

body[data-page="home"] .home-service-example:hover .home-service-example-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body[data-page="home"] .home-service-example-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

body[data-page="home"] .home-service-example-check {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 8px;
  display: none;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--service-color);
  color: #fff;
}

body[data-page="home"] .home-service-example.active .home-service-example-check {
  display: flex;
}

body[data-page="home"] .home-service-example-check svg {
  width: 13px;
  height: 13px;
}

body[data-page="home"] .v25-why-section {
  overflow: hidden;
  background: #fff;
}

body[data-page="home"] .v25-why-section .v25-section-heading {
  margin-bottom: 32px;
}

body[data-page="home"] .v25-compare-instruction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px;
  color: #94a3b8;
  font: 400 12px/1.4 Inter, sans-serif;
  text-align: center;
}

body[data-page="home"] .v25-compare-instruction svg {
  width: 12px;
  height: 12px;
}

body[data-page="home"] .v25-compare-grid {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

body[data-page="home"] .v25-compare-card {
  overflow: hidden;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(3, 98, 230, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body[data-page="home"] .v25-compare-card:hover {
  border-color: rgba(3, 98, 230, 0.24);
  box-shadow: 0 10px 30px rgba(3, 98, 230, 0.13);
  transform: translateY(-3px);
}

body[data-page="home"] .v25-compare-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e9eef5;
}

body[data-page="home"] .v25-compare-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 36, 0.18), transparent 45%);
  content: "";
}

body[data-page="home"] .v25-compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 320ms ease;
}

body[data-page="home"] .v25-compare-card:hover .v25-compare-image img {
  transform: scale(1.025);
}

body[data-page="home"] .v25-compare-card.traditional .v25-compare-image img {
  filter: grayscale(1) contrast(0.9);
}

body[data-page="home"] .compare-state-badge,
body[data-page="home"] .v25-compare-image small {
  position: absolute;
  z-index: 2;
  top: 14px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font: 700 10px/1 Inter, sans-serif;
}

body[data-page="home"] .compare-state-badge {
  left: 14px;
  padding: 7px 10px;
  background: var(--card-color);
  box-shadow: 0 4px 12px rgba(3, 98, 230, 0.22);
  color: #fff;
}

body[data-page="home"] .v25-compare-card.traditional .compare-state-badge {
  background: #dc2626;
}

body[data-page="home"] .compare-state-badge svg {
  width: 12px;
  height: 12px;
}

body[data-page="home"] .v25-compare-image small {
  right: 14px;
  padding: 7px 10px;
  background: rgba(7, 18, 36, 0.66);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

body[data-page="home"] .v25-compare-body {
  display: flex;
  min-height: 179px;
  flex-direction: column;
  padding: 20px;
}

body[data-page="home"] .v25-compare-body h3 {
  margin: 0 0 8px;
  color: var(--card-color);
  font: 600 14px/20px Inter, sans-serif;
}

body[data-page="home"] .v25-compare-card.traditional .v25-compare-body h3 {
  color: #dc2626;
}

body[data-page="home"] .v25-compare-body > p {
  margin: 0;
  color: #64748b;
  font: 400 14px/1.5 Inter, sans-serif;
}

body[data-page="home"] .v25-compare-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body[data-page="home"] .v25-compare-toggle-row > span {
  color: #94a3b8;
  font: 500 11px/1.25 Inter, sans-serif;
}

body[data-page="home"] .v25-compare-toggle-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--card-color) 15%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-color) 7%, transparent);
  color: var(--card-color);
  font: 500 12px/1 Inter, sans-serif;
  cursor: pointer;
}

body[data-page="home"] .v25-compare-card.traditional .v25-compare-toggle-row button {
  border-color: rgba(200, 60, 60, 0.2);
  background: rgba(200, 60, 60, 0.1);
  color: #b91c1c;
}

body[data-page="home"] .v25-compare-toggle-row button svg {
  width: 14px;
  height: 14px;
}

body[data-page="home"] .multidisciplinary-block {
  max-width: 1000px;
  margin: 80px auto 0;
}

body[data-page="home"] .multidisciplinary-label {
  margin: 0 0 40px;
  color: #94a3b8;
  font: 600 12px/1 Inter, sans-serif;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

body[data-page="home"] .multidisciplinary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .multidisciplinary-tile {
  display: flex;
  min-height: 122px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px 16px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(3, 98, 230, 0.06);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body[data-page="home"] .multidisciplinary-tile:hover {
  border-color: rgba(3, 98, 230, 0.25);
  box-shadow: 0 8px 28px rgba(3, 98, 230, 0.14);
  transform: translateY(-4px);
}

body[data-page="home"] .multidisciplinary-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef4ff, #e1efff);
  color: #0362e6;
}

body[data-page="home"] .multidisciplinary-icon svg {
  width: 22px;
  height: 22px;
}

body[data-page="home"] .multidisciplinary-tile h3 {
  margin: 0;
  color: #0a1628;
  font: 600 12px/1.35 Inter, sans-serif;
}

body[data-page="home"] .v25-results-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(96, 184, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 184, 255, 0.035) 1px, transparent 1px),
    linear-gradient(160deg, #071428 0%, #0c1e3c 50%, #071428 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

body[data-page="home"] .v25-results-section .v25-section-heading {
  max-width: none;
  margin: 0 0 34px;
  text-align: left;
}

body[data-page="home"] .v25-results-section .v25-section-heading h2 {
  color: #fff;
}

body[data-page="home"] .case-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

body[data-page="home"] .case-category-pill {
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font: 600 11px/1 Inter, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

body[data-page="home"] .case-category-pill:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

body[data-page="home"] .case-category-pill.active {
  border-color: var(--case-color);
  background: color-mix(in srgb, var(--case-color) 22%, rgba(7, 20, 40, 0.7));
  color: #fff;
}

body[data-page="home"] .case-result-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #071224;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

body[data-page="home"] .case-result-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

body[data-page="home"] .case-result-media img,
body[data-page="home"] .case-result-media video {
  width: 100%;
  height: 100%;
  background: #071224;
  object-fit: cover;
}

body[data-page="home"] .case-result-poster,
body[data-page="home"] .case-result-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}

body[data-page="home"] .case-result-poster {
  opacity: 1;
}

body[data-page="home"] .case-result-video {
  opacity: 0;
}

body[data-page="home"] .case-result-media.video-ready .case-result-poster {
  opacity: 0;
}

body[data-page="home"] .case-result-media.video-ready .case-result-video {
  opacity: 1;
}

body[data-page="home"] .case-result-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(7, 18, 36, 0.22) 40%, rgba(7, 18, 36, 0.95) 65%, #071224 100%),
    linear-gradient(180deg, rgba(7, 18, 36, 0.22), rgba(7, 18, 36, 0.28));
}

body[data-page="home"] .case-result-visual,
body[data-page="home"] .case-result-index {
  position: absolute;
  z-index: 3;
  top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 18, 36, 0.58);
  color: #fff;
  font: 700 10px/1 Inter, sans-serif;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

body[data-page="home"] .case-result-visual {
  left: 24px;
  gap: 0;
}

body[data-page="home"] .case-result-index {
  right: 24px;
}

body[data-page="home"] .case-result-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 45%;
  min-height: 520px;
  margin-left: 55%;
  justify-content: center;
  flex-direction: column;
  padding: 38px 44px 36px 28px;
}

body[data-page="home"] .case-result-amount {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  line-height: 0.9;
}

body[data-page="home"] .case-result-amount > span {
  margin: 6px 3px 0 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 30px;
}

body[data-page="home"] .case-result-amount strong {
  font-size: clamp(3.5rem, 5.4vw, 5.2rem);
  font-weight: 400;
}

body[data-page="home"] .case-result-amount sup {
  margin: 5px 0 0 4px;
  color: #60b8ff;
  font-size: 26px;
}

body[data-page="home"] .case-result-title {
  margin: 0;
  color: #fff;
  font: 700 20px/1.25 Inter, sans-serif;
}

body[data-page="home"] .case-result-divider {
  width: 56px;
  height: 2px;
  margin: 18px 0;
  background: linear-gradient(90deg, #0362e6, #60b8ff);
}

body[data-page="home"] .case-result-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font: 400 13px/1.55 Inter, sans-serif;
}

body[data-page="home"] .case-result-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #60b8ff;
}

body[data-page="home"] .case-result-outcome > svg {
  width: 19px;
  height: 19px;
}

body[data-page="home"] .case-result-outcome strong {
  color: #fff;
  font: 700 12px/1 Inter, sans-serif;
}

body[data-page="home"] .case-result-actions {
  display: flex;
  gap: 10px;
  margin-top: 23px;
}

body[data-page="home"] .case-result-actions .btn {
  min-height: 40px;
  gap: 7px;
  padding: 10px 14px;
  font-size: 10px;
  white-space: nowrap;
}

body[data-page="home"] .case-result-actions .btn svg {
  width: 14px;
  height: 14px;
}

body[data-page="home"] .v25-glass-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

body[data-page="home"] .v25-glass-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

body[data-page="home"] .home-process-scroll {
  position: relative;
  height: 520vh;
  min-height: 3840px;
}

body[data-page="home"] .home-process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #eaf2ff;
}

body[data-page="home"] .home-process-bg,
body[data-page="home"] .home-process-grid-bg {
  position: absolute;
  inset: 0;
}

body[data-page="home"] .home-process-bg {
  background:
    radial-gradient(circle at 50% 45%, rgba(35, 155, 255, 0.14), transparent 35%),
    linear-gradient(160deg, #eef4ff 0%, #e6efff 50%, #f0f5ff 100%);
}

body[data-page="home"] .home-process-grid-bg {
  background-image: radial-gradient(rgba(3, 98, 230, 0.13) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

body[data-page="home"] .home-process-heading {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(92vw, 900px);
  text-align: center;
  transform: translate(-50%, -56%);
  transition: top 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .home-process-heading > p {
  margin-bottom: 14px;
  transition: opacity 250ms ease, transform 350ms ease;
}

body[data-page="home"] .home-process-heading h2 {
  margin: 0;
  color: #0a1628;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  transition: font-size 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .home-process-line {
  width: 64px;
  height: 2px;
  margin: 22px auto 16px;
  background: linear-gradient(90deg, #0362e6, #60b8ff);
  transition: margin 350ms ease, opacity 250ms ease;
}

body[data-page="home"] .home-process-hint {
  color: #64748b;
  font: 500 11px/1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading {
  top: 26px;
  transform: translateX(-50%);
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading > p,
body[data-page="home"] .home-process-scroll.is-engaged .home-process-hint,
body[data-page="home"] .home-process-scroll.is-engaged .home-process-line {
  opacity: 0;
  pointer-events: none;
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

body[data-page="home"] .home-process-stage-shell {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(920px, 92vw);
  height: 460px;
  transform: translate(-50%, -48%);
}

body[data-page="home"] .home-process-stage {
  position: absolute;
  display: grid;
  overflow: hidden;
  width: 100%;
  min-height: 460px;
  grid-template-columns: 1fr 1.25fr;
  border: 1px solid rgba(3, 98, 230, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(3, 98, 230, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(42px) scale(0.975);
  transition: opacity 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .home-process-stage.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

body[data-page="home"] .home-process-scene {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--stage-color) 45%, transparent), transparent 32%),
    linear-gradient(155deg, #0d2343, #061326);
  color: #fff;
}

body[data-page="home"] .home-process-scene::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 184, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 184, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

body[data-page="home"] .home-process-orbit {
  position: absolute;
  top: 42%;
  left: 50%;
  border: 1px solid color-mix(in srgb, var(--stage-color) 40%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

body[data-page="home"] .home-process-orbit.outer {
  width: 270px;
  height: 270px;
}

body[data-page="home"] .home-process-orbit.inner {
  width: 170px;
  height: 170px;
}

body[data-page="home"] .home-process-core {
  position: absolute;
  top: 42%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--stage-color) 70%, #fff);
  border-radius: 22px;
  background: color-mix(in srgb, var(--stage-color) 25%, rgba(7, 18, 36, 0.9));
  box-shadow: 0 0 46px color-mix(in srgb, var(--stage-color) 42%, transparent);
  color: #fff;
  transform: translate(-50%, -50%);
}

body[data-page="home"] .home-process-core svg {
  width: 34px;
  height: 34px;
}

body[data-page="home"] .home-process-scene-card {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 18, 36, 0.58);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .home-process-scene-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

body[data-page="home"] .home-process-scene-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--stage-color);
}

body[data-page="home"] .home-process-scene-icon svg {
  width: 15px;
  height: 15px;
}

body[data-page="home"] .home-process-scene-meta {
  color: rgba(255, 255, 255, 0.66);
  font: 600 10px/1 Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

body[data-page="home"] .home-process-scene-card > strong {
  font: 700 13px/1 Inter, sans-serif;
}

body[data-page="home"] .home-process-scene-progress {
  height: 3px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .home-process-scene-progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--stage-color), #a6ddff);
}

body[data-page="home"] .home-process-detail {
  display: flex;
  min-height: 460px;
  justify-content: center;
  flex-direction: column;
  padding: 38px 42px;
}

body[data-page="home"] .home-process-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--stage-color) 12%, #fff);
  color: color-mix(in srgb, var(--stage-color) 88%, #0047b3);
  font: 800 10px/1 Inter, sans-serif;
  letter-spacing: 0.1em;
}

body[data-page="home"] .home-process-eyebrow {
  margin: 0 0 8px;
  color: #94a3b8;
  font: 700 10px/1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .home-process-detail h3 {
  margin: 0 0 22px;
  color: #0a1628;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.03;
}

body[data-page="home"] .home-process-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .home-process-facts li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4a5e7a;
  font: 500 12px/1.42 Inter, sans-serif;
}

body[data-page="home"] .home-process-facts svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  color: var(--stage-color);
}

body[data-page="home"] .home-process-stat {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(3, 98, 230, 0.1);
}

body[data-page="home"] .home-process-stat strong {
  color: var(--stage-color);
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.8;
}

body[data-page="home"] .home-process-stat span {
  color: #64748b;
  font: 600 10px/1 Inter, sans-serif;
}

body[data-page="home"] .home-process-status {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

body[data-page="home"] .home-process-dots {
  display: flex;
  gap: 8px;
}

body[data-page="home"] .home-process-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(3, 98, 230, 0.2);
  transition: width 180ms ease, background 180ms ease;
}

body[data-page="home"] .home-process-dot.active {
  width: 24px;
  background: #0362e6;
}

body[data-page="home"] .home-process-dot.complete {
  background: #60b8ff;
}

body[data-page="home"] .home-process-stage-caption {
  color: #64748b;
  font: 600 10px/1 Inter, sans-serif;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

body[data-page="home"] .home-process-cta {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 250ms ease, transform 350ms ease;
}

body[data-page="home"] .home-process-scroll.show-cta .home-process-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 980px) {
  body[data-page="home"] .home-service-copy {
    width: 56%;
    padding-right: 34px;
  }

  body[data-page="home"] .case-result-content {
    width: 50%;
    margin-left: 50%;
    padding-right: 30px;
  }

  body[data-page="home"] .case-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] .case-result-actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .v25-home-section {
    padding: 72px 0;
  }

  body[data-page="home"] .v25-home-section > .container {
    width: min(100% - 32px, 1216px);
    padding-inline: 0;
  }

  body[data-page="home"] .v25-section-heading {
    margin-bottom: 32px;
  }

  body[data-page="home"] .v25-section-heading :is(h1, h2),
  body[data-page="home"] .v9-testimonials .section-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  body[data-page="home"] .v25-section-intro {
    font-size: 14px;
  }

  body[data-page="home"] .v25-service-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-right: -16px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding: 2px 16px 10px 0;
    scrollbar-width: none;
  }

  body[data-page="home"] .v25-service-tabs::-webkit-scrollbar,
  body[data-page="home"] .home-service-gallery-grid::-webkit-scrollbar,
  body[data-page="home"] .case-category-row::-webkit-scrollbar {
    display: none;
  }

  body[data-page="home"] .v25-service-tab {
    flex: 0 0 auto;
  }

  body[data-page="home"] .home-service-media {
    height: 620px;
  }

  body[data-page="home"] .home-service-overlay {
    background: linear-gradient(0deg, rgba(7, 18, 36, 0.99) 0%, rgba(7, 18, 36, 0.92) 58%, rgba(7, 18, 36, 0.16) 100%);
  }

  body[data-page="home"] .home-service-copy {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 32px 24px 28px;
  }

  body[data-page="home"] .home-service-copy h3 {
    font-size: 2.25rem;
  }

  body[data-page="home"] .home-service-badge {
    top: 20px;
    left: 20px;
  }

  body[data-page="home"] .home-service-gallery-head {
    align-items: flex-start;
  }

  body[data-page="home"] .home-service-gallery-label {
    max-width: calc(100% - 116px);
    align-items: flex-start;
  }

  body[data-page="home"] .home-service-gallery-grid {
    display: grid;
    grid-auto-columns: 172px;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 3px 3px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body[data-page="home"] .home-service-example {
    scroll-snap-align: start;
  }

  body[data-page="home"] .v25-compare-grid {
    max-width: 420px;
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .v25-compare-instruction {
    align-items: flex-start;
  }

  body[data-page="home"] .multidisciplinary-block {
    margin-top: 64px;
  }

  body[data-page="home"] .multidisciplinary-label {
    margin-bottom: 28px;
  }

  body[data-page="home"] .multidisciplinary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="home"] .multidisciplinary-tile {
    min-height: 118px;
    padding: 20px 10px;
  }

  body[data-page="home"] .case-category-row {
    flex-wrap: nowrap;
    margin-right: -16px;
    overflow-x: auto;
    padding: 2px 16px 8px 0;
    scrollbar-width: none;
  }

  body[data-page="home"] .case-category-pill {
    flex: 0 0 auto;
  }

  body[data-page="home"] .case-result-card {
    min-height: 0;
  }

  body[data-page="home"] .case-result-media {
    position: relative;
    z-index: auto;
    height: 300px;
  }

  body[data-page="home"] .case-result-overlay {
    background: linear-gradient(0deg, #071224, transparent 55%);
  }

  body[data-page="home"] .case-result-content {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 28px 24px 30px;
    background: #071224;
  }

  body[data-page="home"] .case-result-amount strong {
    font-size: 4rem;
  }

  body[data-page="home"] .case-result-actions {
    flex-direction: row;
  }

  body[data-page="home"] .case-result-actions .btn {
    width: auto;
    flex: 1 1 0;
    white-space: normal;
  }

  body[data-page="home"] .home-process-stage-shell {
    top: 104px;
    bottom: 82px;
    height: auto;
    transform: translateX(-50%);
  }

  body[data-page="home"] .home-process-stage {
    max-height: calc(100svh - 190px);
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 148px minmax(0, 1fr);
    overflow-y: auto;
    border-radius: 18px;
  }

  body[data-page="home"] .home-process-scene {
    min-height: 148px;
  }

  body[data-page="home"] .home-process-orbit.outer {
    width: 160px;
    height: 160px;
  }

  body[data-page="home"] .home-process-orbit.inner {
    width: 96px;
    height: 96px;
  }

  body[data-page="home"] .home-process-core {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  body[data-page="home"] .home-process-core svg {
    width: 24px;
    height: 24px;
  }

  body[data-page="home"] .home-process-scene-card {
    display: none;
  }

  body[data-page="home"] .home-process-detail {
    min-height: 0;
    padding: 24px 24px 26px;
  }

  body[data-page="home"] .home-process-detail h3 {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  body[data-page="home"] .home-process-facts {
    gap: 8px;
  }

  body[data-page="home"] .home-process-stat {
    margin-top: 16px;
    padding-top: 14px;
  }

  body[data-page="home"] .home-process-cta {
    right: 16px;
    bottom: 56px;
    left: 16px;
    width: auto;
  }

  body[data-page="home"] .home-process-scroll.show-cta .home-process-status {
    opacity: 0;
  }
}

@media (max-width: 460px) {
  body[data-page="home"] .home-service-media {
    height: 650px;
  }

  body[data-page="home"] .home-service-copy > p {
    font-size: 13px;
  }

  body[data-page="home"] .case-result-media {
    height: 245px;
  }

  body[data-page="home"] .case-result-title {
    font-size: 18px;
  }

  body[data-page="home"] .case-result-actions {
    flex-direction: column;
  }

  body[data-page="home"] .case-result-actions .btn {
    width: 100%;
  }

  body[data-page="home"] .home-process-stage-shell {
    width: calc(100vw - 24px);
  }

  body[data-page="home"] .home-process-detail {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .v25-service-tab,
  body[data-page="home"] .home-service-example,
  body[data-page="home"] .home-service-example img,
  body[data-page="home"] .v25-compare-card,
  body[data-page="home"] .v25-compare-image img,
  body[data-page="home"] .multidisciplinary-tile,
  body[data-page="home"] .home-process-heading,
  body[data-page="home"] .home-process-heading h2,
  body[data-page="home"] .home-process-stage,
  body[data-page="home"] .home-process-cta {
    transition: none;
  }
}

/* Figma v6 home parity overrides: the published home page stacks the interactive sections even on desktop. */
body[data-page="home"] .container {
  width: min(100%, 1280px);
  padding-inline: 32px;
}

@media (min-width: 1024px) {
  body[data-page="home"] .home-hero {
    min-height: 1418px;
    align-items: flex-start;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 112px 0 64px;
    gap: 54px;
  }

  body[data-page="home"] .hero-copy {
    max-width: none;
  }

  body[data-page="home"] .hero-text {
    max-width: 512px;
    font-size: 1.125rem;
    line-height: 1.625;
  }

  body[data-page="home"] .hero-actions {
    margin-top: 40px;
  }

  body[data-page="home"] .hero-actions .btn {
    min-height: 58px;
    padding: 16px 32px;
  }

  body[data-page="home"] .hero-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  body[data-page="home"] .hero-panel {
    height: 260px;
    min-height: 0;
    padding: 0;
    border-radius: 16px;
    text-align: left;
  }

  body[data-page="home"] .hero-panel:nth-child(even) {
    height: 220px;
    margin-top: 32px;
  }

  body[data-page="home"] .hero-panel:nth-child(odd) {
    margin-top: 0;
  }

  body[data-page="home"] .hero-panel::after {
    border-radius: 16px;
  }

  body[data-page="home"] .stat-item {
    padding-block: 42px;
  }

  body[data-page="home"] .services-preview {
    min-height: 1720px;
    padding: 144px 0 108px;
  }

  body[data-page="home"] .service-showcase {
    grid-template-columns: 1fr;
    max-width: 1152px;
    gap: 40px;
  }

  body[data-page="home"] .media-card {
    height: 768px;
    min-height: 768px;
    border-radius: 16px;
  }

  body[data-page="home"] .service-detail {
    padding: 40px;
    border-radius: 16px;
  }

  body[data-page="home"] .case-section {
    min-height: 1671px;
    padding: 132px 0 92px;
  }

  body[data-page="home"] .case-top {
    margin-bottom: 20px;
  }

  body[data-page="home"] .case-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body[data-page="home"] .case-image {
    height: 851px;
    min-height: 851px;
    border-radius: 16px;
  }

  body[data-page="home"] .case-info {
    min-height: 0;
    padding: 40px;
    border-radius: 16px;
  }

  body[data-page="home"] .journey-section {
    min-height: 2060px;
    padding: 144px 0;
  }

  body[data-page="home"] .journey-showcase {
    grid-template-columns: 1fr;
    max-width: 1152px;
    gap: 32px;
  }

  body[data-page="home"] .journey-image {
    height: 749px;
    min-height: 749px;
    border-radius: 16px;
  }

  body[data-page="home"] .journey-detail {
    padding: 40px;
    border-radius: 16px;
  }

  body[data-page="home"] .process-section {
    min-height: 1125px;
    padding: 128px 0;
  }

  body[data-page="home"] .experts-section {
    min-height: 1544px;
    padding: 128px 0;
  }

  body[data-page="home"] .cta-section {
    min-height: 743px;
    padding: 112px 0;
  }

  body[data-page="home"] .site-footer .footer-grid {
    padding: 80px 0 72px;
  }

  body[data-page="home"] .site-footer .footer-bottom {
    padding: 32px 0;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }
}

/* Tighten home section metrics after Playwright comparison. */
@media (min-width: 1024px) {
  body[data-page="home"] .services-preview {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  body[data-page="home"] .services-preview .section-heading h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1;
  }

  body[data-page="home"] .service-detail .lead {
    font-size: 1rem;
    line-height: 1.625;
  }

  body[data-page="home"] .case-section {
    padding-top: 86px;
    padding-bottom: 68px;
  }

  body[data-page="home"] .case-top h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1;
  }

  body[data-page="home"] .journey-section .section-heading h2,
  body[data-page="home"] .process-section .section-heading h2,
  body[data-page="home"] .experts-section .section-heading h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
  }
}

/* Match the Figma journey control density and prevent inline SVGs from stretching the detail card. */
@media (min-width: 1024px) {
  body[data-page="home"] .stage-row {
    max-width: 896px;
    gap: 4px;
    margin-bottom: 48px;
  }

  body[data-page="home"] .stage-pill {
    min-height: 34px;
    padding: 8px 12px;
    gap: 6px;
    font-size: 0.75rem;
  }

  body[data-page="home"] .stage-pill svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
  }

  body[data-page="home"] .journey-progress {
    max-width: 768px;
    margin-bottom: 48px;
  }

  body[data-page="home"] .progress-track {
    height: 4px;
  }

  body[data-page="home"] .progress-meta {
    margin-top: 6px;
    font-size: 0.75rem;
    line-height: 1.2;
  }

  body[data-page="home"] .journey-label svg,
  body[data-page="home"] .stage-badge svg {
    flex: 0 0 auto;
  }

  body[data-page="home"] .journey-label svg {
    width: 16px;
    height: 16px;
  }

  body[data-page="home"] .stage-badge svg {
    width: 20px;
    height: 20px;
  }
}

/* Final desktop journey alignment against the live Figma section map. */
@media (min-width: 1024px) {
  body[data-page="home"] .journey-section .section-heading {
    margin-bottom: 43px;
  }

  body[data-page="home"] .stage-pill {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  body[data-page="home"] .journey-progress {
    margin-bottom: 26px;
  }

  body[data-page="home"] .progress-meta {
    line-height: 1.333;
  }

  body[data-page="home"] .journey-detail {
    padding: 32px 40px;
  }
}

/* Desktop inner route parity against the live Figma v6 section measurements. */
@media (min-width: 1024px) {
  .site-footer .footer-grid,
  body[data-page="home"] .site-footer .footer-grid {
    padding: 102px 0 88px;
  }

  .site-footer .footer-bottom,
  body[data-page="home"] .site-footer .footer-bottom {
    padding: 35px 0;
  }

  body[data-page="services"] .content-white {
    min-height: 1943px;
  }

  body[data-page="services"] .dark-band {
    min-height: 718px;
  }

  body[data-page="services"] .gradient-cta {
    min-height: 461px;
  }

  body[data-page="careers"] .content-white {
    min-height: 1115px;
  }

  body[data-page="careers"] .dark-band {
    min-height: 1214px;
  }

  body[data-page="careers"] .gradient-cta {
    min-height: 498px;
  }

  body[data-page="contact"] .content-white {
    min-height: 1003px;
  }

  body[data-page="contact"] .dark-band {
    min-height: 379px;
    padding-top: 94px;
    padding-bottom: 94px;
  }

  body[data-page="team"] .team-intro {
    padding-top: 128px;
    padding-bottom: 76px;
  }

  body[data-page="team"] .content-white {
    min-height: 8394px;
  }

  body[data-page="portfolio"] .portfolio-image {
    aspect-ratio: 5 / 6;
  }

  body[data-page="portfolio"] .gradient-cta {
    padding-top: 99px;
    padding-bottom: 99px;
  }
}

/* Portfolio final route-map correction. */
@media (min-width: 1024px) {
  body[data-page="portfolio"] .content-white {
    min-height: 2896px;
  }

  body[data-page="portfolio"] .dark-cta {
    min-height: 498px;
  }
}

/* v7 logo and mouse follower parity. */
.site-header {
  border-color: rgba(3, 98, 230, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
}

.site-header.scrolled {
  border-color: rgba(3, 98, 230, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(3, 98, 230, 0.08);
}

.brand {
  width: 168px;
  height: 36px;
  gap: 0;
  color: inherit;
}

.footer-brand .brand {
  width: 160px;
  height: 34px;
}

.dk-logo-v25 {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: var(--dk-logo-gap);
}

.dk-logo-v25 svg {
  display: block;
  flex-shrink: 0;
}

.mouse-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
  transition: opacity 180ms ease;
  will-change: transform;
}

.mouse-follower.visible {
  opacity: 1;
}

.mouse-follower span,
.mouse-follower b {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.mouse-follower span {
  z-index: 2;
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.95;
}

.mouse-follower b {
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  opacity: 0.35;
}

.mouse-follower.is-moving b {
  opacity: 0.42;
}

.mouse-follower.is-active span {
  width: 4px;
  height: 4px;
  opacity: 1;
}

.mouse-follower.is-active b {
  width: 52px;
  height: 52px;
  opacity: 0.55;
}

@media (pointer: coarse), (max-width: 920px) {
  .mouse-follower {
    display: none;
  }
}


/* v7 Figma route screens. */
.site-header .nav-link {
  color: rgba(26, 35, 50, 0.72);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--blue);
}

.site-header .nav-contact {
  border-color: rgba(3, 98, 230, 0.3);
  background: rgba(3, 98, 230, 0.04);
  color: var(--blue);
}

.site-header .menu-toggle {
  color: var(--ink);
  border-color: rgba(3, 98, 230, 0.18);
}

.v7-page {
  overflow: hidden;
  background: #fff;
  color: #0a1628;
}

.v7-section {
  position: relative;
  padding: 96px 0;
}

.v7-hero {
  --mx: 0px;
  --my: 0px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 864px;
  padding-top: 96px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #f0f6ff 50%, #e8f2ff 100%);
}

body[data-page="services"] .v7-hero {
  min-height: 872px;
}

body[data-page="careers"] .v7-hero {
  min-height: 1083px;
}

.v7-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: linear-gradient(#0362e6 1px, transparent 1px), linear-gradient(90deg, #0362e6 1px, transparent 1px);
  background-size: 48px 48px;
}

.v7-grid-bg.light {
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
}

.v7-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, transparent 0%, rgba(3, 98, 230, 0.04) 56%, rgba(35, 155, 255, 0.11) 100%);
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 180ms ease-out;
}

.v7-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  width: min(100%, 1400px);
  padding: 76px 32px 72px;
}

.v7-hero-copy {
  max-width: 700px;
}

.v7-badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin-bottom: 32px;
  padding: 7px 16px;
  border: 1px solid rgba(3, 98, 230, 0.2);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v7-hero h1,
.v7-section-heading h2,
.v7-gradient-cta h2,
.v7-soft-cta h2,
.v7-career-story h2 {
  color: #0a1628;
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.v7-hero h1 {
  font-size: 6.5rem;
}

.v7-gradient-text {
  background: linear-gradient(135deg, #0362e6 0%, #239bff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.v7-hero-copy > p {
  max-width: 560px;
  margin-top: 30px;
  color: #4a5e7a;
  font-size: 1.1rem;
  line-height: 1.75;
}

.v7-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.v7-hero-stats,
.v7-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-top: 40px;
}

.v7-hero-stats strong,
.v7-stats-grid strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.v7-hero-stats span,
.v7-stats-grid span,
.v7-chip-row span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 0.82rem;
}

.v7-chip-row {
  gap: 20px;
}

.v7-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.92rem;
}

.v7-chip-row span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.v7-service-jump-list {
  display: grid;
  gap: 16px;
}

.v7-service-jump {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 20px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: rgba(240, 246, 255, 0.7);
  color: #0a1628;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.v7-service-jump:hover {
  border-color: color-mix(in srgb, var(--card-color) 28%, transparent);
  background: color-mix(in srgb, var(--card-color) 7%, #fff);
  transform: translateX(6px);
}

.v7-service-jump span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-color) 12%, transparent);
  color: var(--card-color);
}

.v7-service-jump span svg {
  width: 25px;
  height: 25px;
}

.v7-service-jump strong,
.v7-service-jump small {
  display: block;
}

.v7-service-jump small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.86rem;
}

.v7-service-jump > svg,
.v7-card-more svg,
.v7-outline-link svg {
  width: 16px;
  height: 16px;
}

.v7-services-list {
  min-height: 2238px;
  background: #fff;
}

.v7-service-stack {
  display: grid;
  gap: 150px;
}

.v7-service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.v7-service-row.reverse .v7-service-image {
  grid-column: 2;
}

.v7-service-row.reverse .v7-service-copy {
  grid-column: 1;
  grid-row: 1;
}

.v7-service-image,
.v7-story-image,
.v7-career-hero-card,
.v7-mosaic-card,
.v7-portfolio-image,
.v7-team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night-2);
}

.v7-service-image {
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 60px rgba(3, 98, 230, 0.11);
}

.v7-service-image img,
.v7-story-image img,
.v7-career-hero-card img,
.v7-mosaic-card img,
.v7-portfolio-image img,
.v7-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v7-service-image::after,
.v7-portfolio-image::after,
.v7-mosaic-card::after,
.v7-career-hero-card::after,
.v7-team-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 18, 48, 0.62), transparent 60%);
  content: "";
}

.v7-service-image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 9px 16px;
  border: 1px solid rgba(3, 98, 230, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a1628;
  font-size: 0.92rem;
  font-weight: 700;
}

.v7-service-icon,
.v7-benefit-card > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-color) 12%, transparent);
  color: var(--card-color);
}

.v7-service-icon svg,
.v7-benefit-card > span svg {
  width: 32px;
  height: 32px;
}

.v7-service-copy h2 {
  color: #0a1628;
  font-size: 4rem;
}

.v7-service-copy p,
.v7-career-story p,
.v7-section-heading p,
.v7-soft-cta p,
.v7-gradient-cta p {
  color: #4a5e7a;
  font-size: 1.08rem;
  line-height: 1.75;
}

.v7-service-copy p {
  margin-top: 24px;
}

.v7-service-copy ul,
.v7-jobs-list ul {
  display: grid;
  gap: 13px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.v7-service-copy li,
.v7-jobs-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
}

.v7-service-copy li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--card-color);
}

.v7-outline-link,
.v7-card-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1.5px solid color-mix(in srgb, var(--card-color, #0362e6) 35%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-color, #0362e6) 5%, transparent);
  color: var(--card-color, #0362e6);
  font-size: 0.93rem;
  font-weight: 700;
}

.v7-process-band,
.v7-story-section,
.v7-values-section,
.v7-positions-section {
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f2ff 100%);
}

.v7-process-band {
  min-height: 833px;
}

.v7-section-heading {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.v7-section-heading h2 {
  font-size: 4.5rem;
}

.v7-section-heading p {
  max-width: 680px;
  margin: 22px auto 0;
}

.v7-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.v7-process-card,
.v7-value-card,
.v7-benefit-card,
.v7-job-card,
.v7-opportunity-card {
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.v7-process-card {
  position: relative;
  min-height: 288px;
  padding: 32px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.v7-process-card:hover,
.v7-value-card:hover,
.v7-benefit-card:hover,
.v7-job-card:hover,
.v7-opportunity-card:hover {
  border-color: color-mix(in srgb, var(--card-color, #0362e6) 30%, transparent);
  box-shadow: 0 16px 40px rgba(3, 98, 230, 0.1);
  transform: translateY(-5px);
}

.v7-process-card strong,
.v7-value-card strong {
  display: block;
  color: color-mix(in srgb, var(--card-color) 22%, transparent);
  font-family: var(--font-headline);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
}

.v7-process-card h3,
.v7-value-card h3,
.v7-benefit-card h3,
.v7-job-card h3,
.v7-opportunity-card h3 {
  margin-top: 24px;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.v7-process-card p,
.v7-value-card p,
.v7-benefit-card p,
.v7-opportunity-card p {
  margin-top: 16px;
  color: #4a5e7a;
  line-height: 1.65;
}

.v7-process-card > svg {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 22px;
  height: 22px;
  color: var(--card-color);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.v7-process-card:hover > svg {
  opacity: 1;
  transform: translateX(0);
}

.v7-faq-section {
  min-height: 751px;
  background: #fff;
}

.v7-narrow {
  max-width: 956px;
}

.v7-faq-list {
  display: grid;
}

.v7-accordion {
  border-bottom: 1px solid rgba(3, 98, 230, 0.12);
}

.v7-accordion button,
.v7-job-card button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  color: #0a1628;
  text-align: left;
}

.v7-accordion button {
  padding: 25px 0;
  font-size: 1.08rem;
}

.v7-accordion button svg,
.v7-job-card button > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
  transition: transform 220ms ease;
}

.v7-accordion.active button svg,
.v7-job-card.active button > svg {
  transform: rotate(90deg);
}

.v7-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.v7-accordion.active .v7-accordion-panel,
.v7-job-card.active .v7-accordion-panel {
  max-height: 720px;
  opacity: 1;
}

.v7-accordion-panel p {
  margin: 0 0 26px;
  color: #4a5e7a;
  line-height: 1.75;
}

.v7-gradient-cta,
.v7-stats-band {
  overflow: hidden;
  background: linear-gradient(135deg, #0362e6 0%, #239bff 100%);
  color: #fff;
  text-align: center;
}

.v7-gradient-cta {
  min-height: 497px;
  display: grid;
  place-items: center;
}

body[data-page="careers"] .v7-gradient-cta {
  min-height: 536px;
}

.v7-gradient-cta .container,
.v7-stats-band .container {
  position: relative;
  z-index: 2;
}

.v7-gradient-cta h2 {
  color: #fff;
  font-size: 4.5rem;
}

.v7-gradient-cta p {
  max-width: 720px;
  margin: 24px auto 42px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

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

.v7-mosaic-card {
  height: 220px;
  box-shadow: 0 18px 46px rgba(3, 98, 230, 0.12);
}

.v7-mosaic-card.lower {
  height: 180px;
  margin-top: 32px;
}

.v7-mosaic-card span,
.v7-settlement {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.v7-mosaic-card small,
.v7-portfolio-image small {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: #239bff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v7-portfolio-list {
  min-height: 2906px;
  background: #fff;
}

.v7-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 64px;
}

.v7-filter-row > svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  color: #64748b;
}

.v7-filter-row button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 17px;
  border: 1px solid color-mix(in srgb, var(--filter-color, #0362e6) 18%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--filter-color, #0362e6) 6%, transparent);
  color: var(--filter-color, #4a5e7a);
  font-size: 0.9rem;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.v7-filter-row button:hover {
  transform: translateY(-1px);
}

.v7-filter-row button.active {
  border-color: var(--filter-color, #0362e6);
  background: var(--filter-color, #0362e6);
  color: #fff;
}

.v7-filter-row button span {
  font-size: 0.75rem;
  opacity: 0.72;
}

.v7-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 32px;
}

.v7-portfolio-card {
  display: block;
  color: #0a1628;
  transition: transform 180ms ease;
}

.v7-portfolio-card:hover {
  transform: translateY(-6px);
}

.v7-portfolio-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  box-shadow: 0 14px 36px rgba(3, 98, 230, 0.08);
}

.v7-portfolio-image img,
.v7-team-photo img {
  transition: transform 600ms ease, filter 450ms ease;
}

.v7-portfolio-card:hover img,
.v7-team-card:hover img {
  transform: scale(1.06);
}

.v7-portfolio-card h3 {
  min-height: 52px;
  color: #0a1628;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 160ms ease;
}

.v7-portfolio-card:hover h3 {
  color: var(--blue);
}

.v7-card-more {
  min-height: 26px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.v7-portfolio-card:hover .v7-card-more {
  opacity: 1;
  transform: translateY(0);
}

.v7-count {
  margin-top: 46px;
  color: #94a3b8;
  font-size: 0.88rem;
  text-align: center;
}

.v7-stats-band {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.v7-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.v7-stats-grid strong {
  color: #fff;
  font-size: 3.8rem;
}

.v7-stats-grid span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.v7-soft-cta {
  min-height: 527px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f2ff 100%);
  text-align: center;
}

.v7-soft-cta h2 {
  font-size: 4.5rem;
}

.v7-soft-cta p {
  max-width: 720px;
  margin: 28px auto 42px;
  font-size: 1.2rem;
}

.v7-story-section {
  min-height: 1442px;
}

.v7-timeline {
  position: relative;
  display: grid;
  gap: 34px;
}

.v7-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(3, 98, 230, 0.3), transparent);
  content: "";
}

.v7-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v7-timeline-item::after {
  position: absolute;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(3, 98, 230, 0.18);
  content: "";
}

.v7-timeline-item > div {
  width: min(100%, 520px);
  padding: 28px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 34px rgba(3, 98, 230, 0.06);
}

.v7-timeline-item.right > div {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.v7-timeline-item strong {
  color: var(--blue);
  font-family: var(--font-headline);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.v7-timeline-item h3 {
  margin-top: 10px;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.v7-timeline-item p {
  margin-top: 10px;
  color: #4a5e7a;
  font-size: 0.9rem;
  line-height: 1.6;
}

.v7-team-roster {
  min-height: 3849px;
  background: #fff;
}

.v7-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px 24px;
}

.v7-team-card {
  transition: transform 180ms ease;
}

.v7-team-card:hover {
  transform: translateY(-6px);
}

.v7-team-photo {
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
}

.v7-team-photo img {
  filter: grayscale(30%);
}

.v7-team-card:hover .v7-team-photo img {
  filter: grayscale(0%);
}

.v7-team-photo i {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--card-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--card-color) 28%, transparent);
}

.v7-team-photo span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
}

.v7-team-card:hover .v7-team-photo span {
  opacity: 1;
}

.v7-team-card h3 {
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.08;
  transition: color 160ms ease;
}

.v7-team-card:hover h3 {
  color: var(--card-color);
}

.v7-team-card p {
  margin-top: 6px;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.v7-values-section {
  min-height: 569px;
}

.v7-values-grid,
.v7-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.v7-value-card,
.v7-benefit-card {
  min-height: 258px;
  padding: 34px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.v7-career-hero-card {
  aspect-ratio: 4 / 5;
  overflow: visible;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(3, 98, 230, 0.18);
}

.v7-career-hero-card > img {
  border-radius: 8px;
}

.v7-career-hero-card::after {
  border-radius: 8px;
}

.v7-career-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(3, 98, 230, 0.15);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 98, 230, 0.14);
}

.v7-career-badge.left {
  bottom: -18px;
  left: -24px;
  background: rgba(255, 255, 255, 0.97);
}

.v7-career-badge.right {
  top: 16px;
  right: 16px;
  display: block;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
  text-align: center;
}

.v7-career-badge strong {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
  font-weight: 700;
}

.v7-career-badge.right strong {
  min-width: 0;
  height: auto;
  background: none;
  font-family: var(--font-headline);
  font-size: 1.7rem;
  font-weight: 400;
}

.v7-career-badge span {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.4;
}

.v7-career-badge.right span {
  color: rgba(255, 255, 255, 0.82);
}

.v7-career-why {
  min-height: 1311px;
  background: #fff;
}

.v7-career-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}

.v7-career-story h2 {
  margin-bottom: 30px;
  font-size: 4rem;
}

.v7-career-story p + p {
  margin-top: 24px;
}

.v7-story-image {
  aspect-ratio: 4 / 3;
}

.v7-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.v7-benefit-card > span {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.v7-benefit-card > span svg {
  width: 26px;
  height: 26px;
}

.v7-positions-section {
  min-height: 1360px;
}

.v7-jobs-list {
  display: grid;
  gap: 16px;
}

.v7-job-card {
  overflow: hidden;
  background: rgba(240, 246, 255, 0.55);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.v7-job-card.active {
  border-color: rgba(3, 98, 230, 0.3);
  background: rgba(3, 98, 230, 0.03);
}

.v7-job-card button {
  padding: 28px 32px;
}

.v7-job-card button span {
  display: grid;
  gap: 10px;
}

.v7-job-card em {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.v7-job-card small {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: #64748b;
  font-size: 0.8rem;
}

.v7-job-card small svg {
  width: 13px;
  height: 13px;
}

.v7-job-card button strong {
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.v7-job-card.active button strong {
  color: var(--blue);
}

.v7-job-card .v7-accordion-panel {
  padding: 0 32px;
}

.v7-job-card.active .v7-accordion-panel {
  padding-bottom: 32px;
}

.v7-job-card .v7-accordion-panel p {
  padding-top: 24px;
  border-top: 1px solid rgba(3, 98, 230, 0.1);
}

.v7-job-card h4 {
  margin: 22px 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v7-job-card li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.v7-opportunity-card {
  margin-top: 64px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

@media (max-width: 1180px) {
  .v7-hero-inner,
  .v7-service-row,
  .v7-career-story {
    grid-template-columns: 1fr;
  }

  .v7-service-row.reverse .v7-service-image,
  .v7-service-row.reverse .v7-service-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .v7-process-grid,
  .v7-values-grid,
  .v7-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 920px) {
  .v7-section {
    padding: 72px 0;
  }

  .v7-hero,
  body[data-page="services"] .v7-hero,
  body[data-page="careers"] .v7-hero {
    min-height: auto;
    padding-top: 90px;
  }

  .v7-hero-inner {
    display: block;
    width: min(100% - 24px, 1400px);
    padding: 68px 0;
  }

  .v7-hero h1 {
    font-size: 4.2rem;
  }

  .v7-hero-side {
    margin-top: 44px;
  }

  .v7-hero-stats {
    gap: 20px;
  }

  .v7-services-list,
  .v7-process-band,
  .v7-faq-section,
  .v7-portfolio-list,
  .v7-story-section,
  .v7-team-roster,
  .v7-values-section,
  .v7-career-why,
  .v7-positions-section,
  .v7-gradient-cta,
  .v7-soft-cta,
  .v7-stats-band {
    min-height: auto;
  }

  .v7-service-stack {
    gap: 88px;
  }

  .v7-section-heading h2,
  .v7-gradient-cta h2,
  .v7-soft-cta h2,
  .v7-career-story h2 {
    font-size: 3.3rem;
  }

  .v7-service-copy h2 {
    font-size: 3.3rem;
  }

  .v7-process-grid,
  .v7-values-grid,
  .v7-benefit-grid,
  .v7-portfolio-grid,
  .v7-stats-grid {
    grid-template-columns: 1fr;
  }

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

  .v7-timeline::before,
  .v7-timeline-item::after {
    display: none;
  }

  .v7-timeline-item,
  .v7-timeline-item.right > div {
    display: block;
    text-align: left;
  }

  .v7-timeline-item > div {
    width: 100%;
  }

  .v7-career-badge.left,
  .v7-career-badge.right {
    left: 16px;
    right: 16px;
  }

  .v7-career-badge.left {
    bottom: 16px;
  }

  .v7-career-badge.right {
    top: 16px;
  }
}

@media (max-width: 560px) {
  .v7-hero h1 {
    font-size: 3.35rem;
  }

  .v7-service-jump {
    grid-template-columns: 46px 1fr;
  }

  .v7-service-jump > svg {
    display: none;
  }

  .v7-team-grid {
    grid-template-columns: 1fr;
  }

  .v7-filter-row button {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .v7-job-card button {
    padding: 24px;
  }

  .v7-job-card .v7-accordion-panel {
    padding-inline: 24px;
  }
}


/* v7 measurement tuning against the published Figma route maps. */
@media (min-width: 1181px) {
  .v7-portfolio-image {
    aspect-ratio: 4 / 4.45;
  }

  .v7-portfolio-grid {
    gap: 36px 32px;
  }

  .v7-stats-band {
    padding-top: 0;
    padding-bottom: 0;
  }

  .v7-story-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .v7-story-section .v7-section-heading {
    margin-bottom: 54px;
  }

  .v7-timeline {
    gap: 20px;
  }

  .v7-timeline-item > div {
    padding: 22px;
  }

  .v7-team-roster {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .v7-team-grid {
    gap: 32px 24px;
  }

  .v7-values-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .v7-career-why {
    padding-top: 92px;
    padding-bottom: 91px;
  }

  .v7-positions-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .v7-positions-section .v7-section-heading {
    margin-bottom: 56px;
  }

  .v7-job-card button {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .v7-opportunity-card {
    margin-top: 50px;
  }
}


/* v7 header width parity with Figma export. */
.site-header .container.nav-inner {
  width: min(100%, 1400px);
  min-height: 86px;
  padding-right: 32px;
  padding-left: 32px;
}

.site-header .nav-links {
  gap: 32px;
}

.site-header .nav-link {
  font-size: 14px;
  font-weight: 400;
}

.site-header .nav-contact {
  min-height: 40px;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 920px) {
  .site-header .container.nav-inner {
    width: min(100% - 24px, 1400px);
    min-height: 74px;
    padding-right: 0;
    padding-left: 0;
  }
}


/* v7 live chat adaptation using DK Global resources. */
.v7-chat-shell {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 85;
  font-family: var(--font-body);
}

.live-chat-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 10px;
  border: 1px solid rgba(3, 98, 230, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0a1628;
  box-shadow: 0 18px 42px rgba(3, 98, 230, 0.18), 0 8px 18px rgba(10, 22, 40, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.live-chat-bubble:hover {
  border-color: rgba(3, 98, 230, 0.3);
  box-shadow: 0 22px 52px rgba(3, 98, 230, 0.24), 0 10px 22px rgba(10, 22, 40, 0.1);
  transform: translateY(-2px);
}

.live-chat-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #0362e6, #239bff);
}

.live-chat-icon img {
  width: 52px;
  max-width: none;
  height: 44px;
  object-fit: cover;
}

.live-chat-text {
  color: #0a1628;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.live-chat-badge {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.16);
}

.v7-chat-panel {
  position: absolute;
  left: 0;
  bottom: 76px;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  width: min(420px, calc(100vw - 48px));
  height: min(650px, calc(100vh - 130px));
  overflow: hidden;
  border: 1px solid rgba(3, 98, 230, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10, 22, 40, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transform-origin: left bottom;
  transition: opacity 180ms ease, transform 180ms ease;
}

.v7-chat-shell.open .v7-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.v7-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px 0 20px;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
}

.v7-chat-head span {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  line-height: 1;
}

.v7-chat-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.v7-chat-head svg {
  width: 17px;
  height: 17px;
}

.v7-chat-frame {
  min-height: 0;
  background: #fff;
}

.v7-chat-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.chat-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .v7-chat-shell {
    right: 16px;
    bottom: 86px;
    left: auto;
  }

  .live-chat-bubble {
    min-height: 54px;
    padding: 7px 14px 7px 8px;
  }

  .live-chat-icon {
    width: 40px;
    height: 40px;
  }

  .live-chat-text {
    display: none;
  }

  .v7-chat-panel {
    position: fixed;
    inset: 78px 12px 12px;
    width: auto;
    height: auto;
    transform-origin: right bottom;
  }
}


/* v9 additions */
.v9-why-section,.v9-faq,.v9-who-section,.v9-hiring-section{background:#fff}.v9-why-section{padding-top:96px;padding-bottom:112px}.compare-grid,.v9-hiring-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.compare-card{overflow:hidden;border:1.5px solid color-mix(in srgb,var(--card-color) 20%,transparent);border-radius:16px;background:#fff;box-shadow:0 8px 28px rgba(3,98,230,.08);transition:border-color .24s ease,box-shadow .24s ease,transform .24s ease}.compare-card:hover{transform:translateY(-4px);box-shadow:0 14px 38px rgba(3,98,230,.12)}.compare-card.traditional{border-color:rgba(185,28,28,.22);box-shadow:0 8px 28px rgba(185,28,28,.08)}.compare-image{position:relative;height:200px;overflow:hidden}.compare-image img,.featured-result-card img,.who-image img{width:100%;height:100%;object-fit:cover}.compare-card.traditional .compare-image img{filter:grayscale(.65) brightness(.88)}.compare-image:after{position:absolute;inset:0;background:color-mix(in srgb,var(--card-color) 10%,transparent);content:""}.compare-card.traditional .compare-image:after{background:rgba(185,28,28,.08)}.compare-image span,.compare-image small{position:absolute;z-index:1;border-radius:999px;color:#fff;font-size:.75rem}.compare-image span{top:14px;left:14px;padding:7px 12px;background:var(--card-color);font-weight:700}.compare-card.traditional .compare-image span{background:#b91c1c}.compare-image small{top:14px;right:14px;padding:5px 10px;background:rgba(0,0,0,.42);backdrop-filter:blur(8px)}.compare-body{padding:22px}.compare-body h3,.case-finder-card h3,.quote-form label,.contact-info-card a,.contact-info-card strong{color:var(--ink);font-weight:700}.compare-body p{min-height:66px;color:var(--muted);font-size:.93rem;line-height:1.6}.compare-toggle-row{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:18px;padding-top:16px;border-top:1px solid rgba(10,22,40,.07)}.compare-toggle-row>span{color:#94a3b8;font-size:.76rem}.compare-toggle-row button{display:inline-flex;align-items:center;gap:8px;min-width:118px;justify-content:center;padding:8px 12px;border:1px solid color-mix(in srgb,var(--card-color) 22%,transparent);border-radius:8px;background:color-mix(in srgb,var(--card-color) 10%,white);color:var(--card-color);font-size:.78rem;font-weight:700}.compare-card.traditional .compare-toggle-row button{border-color:rgba(185,28,28,.22);background:rgba(185,28,28,.08);color:#b91c1c}.compare-toggle-row svg{width:15px;height:15px}.v9-stat-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;width:min(100%,760px);margin:72px auto 0}.v9-stat-cards div{padding:28px 22px;border:1px solid var(--line);border-radius:16px;background:linear-gradient(160deg,#eef4ff,#f7faff);text-align:center}.v9-stat-cards strong{display:block;color:var(--blue);font-family:var(--font-headline);font-size:3rem;line-height:1}.v9-stat-cards span,.v9-stat-cards small,.section-note{display:block;color:var(--muted)}.v9-stat-cards span{margin-top:8px;color:var(--ink);font-size:.9rem;font-weight:700}.v9-stat-cards small{margin-top:5px;font-size:.75rem}.section-note{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:22px;font-size:.78rem}.section-note svg{width:14px;height:14px}.v9-testimonials{background:#f4f8ff}.testimonial-shell{position:relative;width:min(100%,1000px);margin:0 auto;overflow:hidden;border:1px solid rgba(3,98,230,.08);border-radius:22px;background:#fff;box-shadow:0 10px 52px rgba(3,98,230,.12)}.testimonial-progress{height:3px;background:rgba(3,98,230,.08)}.testimonial-progress span{display:block;width:100%;height:100%;transform-origin:left;background:linear-gradient(90deg,var(--blue),var(--blue-2))}.testimonial-card{display:grid;grid-template-columns:1fr 300px;min-height:340px}.testimonial-main{display:flex;flex-direction:column;padding:48px 56px}.stars{color:#f59e0b;letter-spacing:3px}.quote-mark{margin-top:18px;color:var(--quote-color);font-family:Georgia,serif;font-size:3.2rem;line-height:.7;opacity:.25}.testimonial-main p{flex:1;color:#1e293b;font-size:clamp(1rem,1.4vw,1.18rem);font-style:italic;line-height:1.75}.testimonial-person{display:flex;align-items:center;gap:16px;margin-top:28px}.testimonial-person>span{display:grid;place-items:center;width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,var(--quote-color),var(--blue-2));color:#fff;font-weight:800}.testimonial-person small,.testimonial-side span{display:block;color:var(--muted)}.testimonial-side{display:flex;flex-direction:column;justify-content:space-between;padding:36px;border-left:1px solid color-mix(in srgb,var(--quote-color) 12%,transparent);background:color-mix(in srgb,var(--quote-color) 8%,#fff)}.testimonial-side small{color:color-mix(in srgb,var(--quote-color) 70%,#fff);font-size:.75rem;font-weight:800;text-transform:uppercase}.testimonial-side strong{color:var(--quote-color);font-family:var(--font-headline);font-size:4rem;line-height:1;opacity:.2}.testimonial-controls{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:0 22px 22px}.testimonial-controls>div:first-child,.testimonial-dots{display:flex;gap:10px}.testimonial-dots button{width:8px;height:8px;border-radius:999px;background:rgba(3,98,230,.2);transition:width .18s ease,background .18s ease}.testimonial-dots button.active{width:24px;background:var(--blue)}.testimonial-controls>span{color:var(--muted);font-size:.86rem}.firm-marquee{position:relative;width:min(100%,1060px);margin:56px auto 0;overflow:hidden}.firm-marquee div{display:flex;width:max-content;gap:22px;animation:firm-scroll 35s linear infinite}.firm-marquee span{flex:0 0 auto;padding:9px 18px;border:1px solid rgba(3,98,230,.1);border-radius:999px;background:#fff;color:#4a5e7a;font-size:.88rem;font-weight:700}@keyframes firm-scroll{to{transform:translateX(-50%)}}
.v9-case-finder{position:relative;overflow:hidden;background:linear-gradient(160deg,#071428,#0c1e3c 50%,#071428)}.case-finder-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;width:min(100%,760px);margin:0 auto 36px}.case-finder-steps span{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.32);font-size:.82rem}.case-finder-steps b{display:grid;place-items:center;width:28px;height:28px;border:2px solid rgba(255,255,255,.12);border-radius:50%;color:inherit}.case-finder-steps .active,.case-finder-steps .complete{color:#fff}.case-finder-steps .active b,.case-finder-steps .complete b{border-color:var(--blue-2);background:rgba(35,155,255,.25)}.case-finder-steps .complete b{background:var(--blue-2)}.case-finder-card{width:min(100%,760px);margin:0 auto;padding:42px;border:1px solid rgba(255,255,255,.08);border-radius:24px;background:rgba(255,255,255,.04);backdrop-filter:blur(12px)}.case-finder-card h3{color:#fff;font-size:1.3rem}.case-finder-card p{margin-top:8px;margin-bottom:28px;color:rgba(200,220,240,.56)}.case-type-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.case-type-grid button,.case-option-stack button{display:flex;align-items:flex-start;gap:14px;width:100%;padding:16px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.04);color:#fff;text-align:left;transition:background .18s ease,border-color .18s ease,transform .18s ease}.case-type-grid button:hover,.case-option-stack button:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--case-color,var(--blue-2)) 65%,transparent);background:color-mix(in srgb,var(--case-color,var(--blue)) 18%,transparent)}.case-type-grid svg,.case-option-stack svg{width:20px;height:20px;flex:0 0 auto;color:var(--case-color,var(--blue-2))}.case-type-grid button>svg:first-child,.case-option-stack button>svg:first-child{margin-top:4px}.case-type-grid button>svg:last-child,.case-option-stack button>svg:last-child{margin-left:auto;opacity:.45}.case-type-grid small,.case-option-stack small{display:block;margin-top:4px;color:rgba(200,220,240,.48);font-size:.76rem;line-height:1.45}.case-option-stack{display:grid;gap:12px}.case-back{margin-top:22px;color:rgba(255,255,255,.4);font-size:.82rem}.case-finder-result>span{display:inline-flex;padding:7px 13px;border-radius:999px;background:linear-gradient(135deg,var(--blue),var(--blue-2));color:#fff;font-size:.78rem;font-weight:800}.case-finder-result>small{margin-left:12px;color:rgba(255,255,255,.4)}.case-finder-result h3{margin-top:22px;font-family:var(--font-headline);font-size:clamp(2rem,4vw,2.7rem);line-height:1}.strategy-tools{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:24px 0}.strategy-tools div{display:flex;align-items:center;gap:10px;padding:12px 14px;border:1px solid rgba(3,98,230,.26);border-radius:12px;background:rgba(3,98,230,.16);color:#fff;font-size:.9rem}.strategy-tools i{width:7px;height:7px;border-radius:50%;background:var(--blue-2)}.case-finder-actions{display:flex;flex-wrap:wrap;gap:12px}.v9-faq{position:relative;overflow:hidden}.faq-layout{display:grid;grid-template-columns:380px 1fr;gap:70px;align-items:start}.faq-intro{position:sticky;top:120px}.faq-intro h2,.contact-form-grid h2,.who-grid h2,.culture-grid h2{color:var(--ink);font-family:var(--font-headline);font-size:clamp(2.7rem,5vw,4.3rem);line-height:.96}.faq-intro .btn{margin-top:26px}
.v9-trust-band{padding:64px 0;border-block:1px solid rgba(3,98,230,.1);background:#fff}.trust-inner{display:grid;grid-template-columns:280px 1fr 210px;gap:32px;align-items:center}.trust-inner span,.trust-inner p{color:var(--muted);font-size:.9rem}.trust-inner span{color:var(--blue);font-weight:800;text-transform:uppercase}.trust-inner blockquote{color:var(--ink);font-size:1.2rem;line-height:1.7}.v9-featured-results,.v9-who-section,.v9-hiring-section,.v9-culture-section,.contact-form-section{padding:96px 0;background:#fff}.featured-results-grid{display:grid;grid-template-columns:1.4fr 1fr;grid-auto-rows:220px;gap:22px}.featured-result-card{position:relative;overflow:hidden;border-radius:16px;color:#fff}.featured-result-card.large{grid-row:span 2}.featured-result-card:after{position:absolute;inset:0;background:linear-gradient(to top,rgba(8,18,32,.86),rgba(8,18,32,.08));content:""}.featured-result-card span,.featured-result-card strong,.featured-result-card h3{position:absolute;z-index:1;left:22px}.featured-result-card span{top:22px;padding:6px 11px;border-radius:999px;background:rgba(3,98,230,.9);font-size:.75rem;font-weight:800}.featured-result-card strong{bottom:64px;color:#fff;font-family:var(--font-headline);font-size:3rem;line-height:1}.featured-result-card h3{right:22px;bottom:22px;font-size:1rem;line-height:1.35}.who-grid,.culture-grid,.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}.who-grid p,.culture-grid p,.contact-form-grid p{margin-top:20px;color:var(--muted);line-height:1.75}.who-image{overflow:hidden;height:460px;border-radius:18px;box-shadow:var(--shadow)}.v9-hiring-grid article{padding:30px;border:1px solid color-mix(in srgb,var(--card-color) 20%,transparent);border-radius:16px;background:#f7faff}.v9-hiring-grid strong{color:var(--card-color);font-family:var(--font-headline);font-size:2.7rem;line-height:1}.v9-hiring-grid h3{margin-top:18px;color:var(--ink)}.v9-hiring-grid p{margin-top:10px;color:var(--muted);font-size:.95rem;line-height:1.65}.v9-culture-section{background:#f7faff}.culture-panel{display:grid;gap:14px;padding:34px;border:1px solid var(--line);border-radius:18px;background:#fff}.culture-panel span{display:flex;align-items:center;gap:12px;color:var(--ink);font-weight:700}.culture-panel svg{width:18px;height:18px;color:var(--blue)}.contact-info-strip{padding:34px 0;border-block:1px solid rgba(3,98,230,.1);background:#fff}.contact-info-strip .container{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.contact-info-card{padding:22px;border:1px solid var(--line);border-radius:14px;background:#f7faff}.contact-info-card span{display:grid;place-items:center;width:38px;height:38px;margin-bottom:14px;border-radius:10px;background:linear-gradient(135deg,var(--blue),var(--blue-2));color:#fff}.contact-info-card svg{width:18px;height:18px}.contact-info-card small{display:block;color:var(--muted);font-size:.74rem;font-weight:800;text-transform:uppercase}.contact-info-card a,.contact-info-card strong{display:block;margin-top:5px;line-height:1.35}.contact-info-card p{margin-top:6px;color:var(--muted);font-size:.82rem}.quote-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;padding:30px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow)}.quote-form label{display:grid;gap:8px;font-size:.86rem}.quote-form .full{grid-column:1/-1}.quote-form input,.quote-form select,.quote-form textarea{width:100%;border:1px solid rgba(3,98,230,.16);border-radius:10px;background:#f7faff;color:var(--ink);padding:13px 14px}.quote-form textarea{resize:vertical}.contact-consultants{margin-top:30px}.contact-call-band{padding:80px 0;background:linear-gradient(135deg,var(--blue-dark),var(--blue),var(--blue-2));color:#fff;text-align:center}.contact-call-band p{color:rgba(255,255,255,.72);font-weight:800;text-transform:uppercase}.contact-call-band h2{margin-top:8px;font-family:var(--font-headline);font-size:clamp(3rem,7vw,6rem);line-height:1}.contact-call-band span{display:block;margin-top:8px;color:rgba(255,255,255,.7)}
@media (max-width:980px){.compare-grid,.v9-stat-cards,.v9-hiring-grid,.contact-info-strip .container{grid-template-columns:repeat(2,minmax(0,1fr))}.testimonial-card,.faq-layout,.trust-inner,.who-grid,.culture-grid,.contact-form-grid{grid-template-columns:1fr}.testimonial-side,.faq-intro{position:static}.testimonial-side{border-top:1px solid rgba(3,98,230,.08);border-left:0}.featured-results-grid{grid-template-columns:1fr}}@media (max-width:680px){.compare-grid,.v9-stat-cards,.case-type-grid,.strategy-tools,.case-finder-steps,.contact-info-strip .container,.quote-form{grid-template-columns:1fr}.testimonial-main,.case-finder-card,.quote-form{padding:24px}.testimonial-controls,.case-finder-actions{align-items:flex-start;flex-direction:column}.who-image{height:320px}}


/* v9 height tuning */
.v9-testimonials{min-height:1546px}
.v9-faq{min-height:1385px;display:flex;align-items:center}
.v9-trust-band{min-height:433px;display:flex;align-items:center;padding:0}
.v7-faq-section{min-height:982px;display:flex;align-items:center}
.v9-who-section{min-height:1085px;display:flex;align-items:center;padding:0}
.v9-hiring-section{min-height:658px;display:flex;align-items:center;padding:64px 0}
.v9-hiring-section .v7-section-heading{margin-bottom:42px}
.v9-hiring-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.v9-hiring-grid article{padding:24px}
.v9-culture-section{min-height:1077px;display:flex;align-items:center}
.contact-info-strip{min-height:142px;display:flex;align-items:center;padding:0}
.contact-info-card{padding:16px}
.contact-form-section{min-height:1283px;display:flex;align-items:center}
.contact-call-band{min-height:413px;display:flex;align-items:center}
@media (max-width:980px){.v9-hiring-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.v9-testimonials,.v9-faq,.v9-trust-band,.v7-faq-section,.v9-who-section,.v9-hiring-section,.v9-culture-section,.contact-form-section,.contact-call-band{min-height:0}}


/* v9 contact tuning */
.contact-v9-page .v7-hero{min-height:810px}
.contact-info-strip{height:142px;min-height:142px}
.contact-info-card{padding:10px 14px}
.contact-info-card span{width:30px;height:30px;margin-bottom:8px}
.contact-info-card svg{width:15px;height:15px}
.contact-info-card small{font-size:.68rem}
.contact-info-card a,.contact-info-card strong{margin-top:3px;font-size:.92rem}
.contact-info-card p{margin-top:3px;font-size:.75rem;line-height:1.35}
@media (max-width:980px){.contact-v9-page .v7-hero,.contact-info-strip{height:auto;min-height:0}}


/* v9 hero stacking */
.hero-copy{position:relative;z-index:4}
.hero-visual{position:relative;z-index:1}
.hero-actions{position:relative;z-index:5}


/* v25 published-design alignment */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  background: #fff;
}

.home-hero-v25 {
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100svh - 28px);
  min-height: 680px;
  isolation: isolate;
  background: #050f23;
  color: #fff;
}

body[data-page="home"] .home-hero-v25 {
  height: calc(100svh - 114px);
  min-height: 864px;
  align-items: center;
}

.home-hero-v25::before {
  display: none;
}

.hero-video-v25,
.hero-video-overlay,
.hero-grid-overlay,
.hero-scanline {
  position: absolute;
  inset: 0;
}

.hero-video-v25 {
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  animation: v25-hero-drift 18s ease-in-out infinite alternate;
}

.hero-video-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.64), rgba(5, 15, 35, 0.49) 48%, rgba(5, 15, 35, 0.78));
}

.hero-grid-overlay {
  z-index: 2;
  opacity: 0.72;
  background-image: linear-gradient(rgba(76, 156, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 156, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
}

.hero-scanline {
  z-index: 3;
  top: -20%;
  bottom: auto;
  height: 18%;
  opacity: 0.26;
  background: linear-gradient(to bottom, transparent, rgba(119, 185, 255, 0.18), transparent);
  animation: v25-scan 9s linear infinite;
}

.hero-v25-inner {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 126px 24px 104px;
}

.hero-v25-copy {
  --hero-x: 0px;
  --hero-y: 0px;
  width: min(100%, 920px);
  text-align: center;
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform 180ms ease-out;
}

.home-hero-v25 .hero-kicker {
  margin-bottom: 28px;
  border-color: rgba(147, 197, 253, 0.34);
  background: rgba(3, 98, 230, 0.2);
  color: #b7d8ff;
  backdrop-filter: blur(10px);
}

.hero-title-v25 {
  display: grid;
  justify-items: center;
  color: #fff;
  font-size: 8.25rem;
  line-height: 0.83;
  text-wrap: balance;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.hero-title-v25 > span {
  display: block;
  white-space: nowrap;
}

.hero-title-v25 .hero-title-accent {
  background: linear-gradient(135deg, #60a5fa, #93c5fd 58%, #dbeafe);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text-v25 {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(218, 232, 248, 0.84);
  font-size: 1.12rem;
  line-height: 1.7;
  text-wrap: pretty;
}

body[data-page="home"] .hero-text-v25 {
  max-width: 760px;
}

.hero-actions-v25 {
  justify-content: center;
  margin-top: 32px;
}

.hero-actions-v25 .btn {
  min-width: 220px;
  min-height: 54px;
}

.hero-actions-v25 .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 58px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: v25-scroll-cue 1.8s ease-in-out infinite;
}

.hero-curve {
  position: absolute;
  z-index: 6;
  right: -8%;
  bottom: -92px;
  left: -8%;
  height: 140px;
  border-radius: 50% 50% 0 0;
  background: #fff;
}

.stat-strip {
  position: relative;
  z-index: 8;
}

.stat-value {
  color: #075fd4;
}

.v25-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  border: 1px solid rgba(3, 98, 230, 0.2);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.08);
  color: #0362e6;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.v25-journal-page,
.v25-simple-page {
  overflow: hidden;
  background: #fff;
}

.journal-hero,
.v25-simple-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff, #f0f6ff 52%, #e8f2ff);
}

.journal-grid-bg,
.v25-simple-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(#0362e6 1px, transparent 1px), linear-gradient(90deg, #0362e6 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.journal-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 164px;
  padding-bottom: 84px;
}

.journal-hero .reveal,
.v25-simple-hero .reveal {
  opacity: 1;
  transform: none;
}

.journal-hero h1,
.v25-simple-hero h1 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 6.5rem;
  line-height: 0.88;
}

.journal-hero-inner > p,
.v25-simple-hero .container > p {
  max-width: 650px;
  margin-top: 28px;
  color: #4a5e7a;
  font-size: 1.08rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.journal-search {
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(100%, 450px);
  min-height: 50px;
  margin-top: 32px;
  padding: 0 16px;
  border: 1px solid rgba(3, 98, 230, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(3, 98, 230, 0.07);
}

.journal-search svg {
  width: 17px;
  color: #7b8ca3;
}

.journal-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.journal-featured,
.journal-index {
  padding: 88px 0;
}

.journal-featured {
  background: #edf5ff;
}

.journal-featured-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

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

.journal-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(3, 98, 230, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journal-card:hover {
  border-color: rgba(3, 98, 230, 0.24);
  box-shadow: 0 16px 38px rgba(3, 98, 230, 0.12);
  transform: translateY(-5px);
}

.journal-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #dce8f6;
}

.journal-card.featured .journal-card-media {
  aspect-ratio: 16 / 9;
  height: auto;
}

.journal-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 35, 0.54), transparent 64%);
  content: "";
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.journal-card:hover .journal-card-media img {
  transform: scale(1.045);
}

.journal-card-media span {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.journal-card-copy {
  padding: 24px;
}

.journal-card-copy small {
  color: #8493a8;
}

.journal-card-copy h2,
.journal-card-copy h3 {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.journal-card.featured .journal-card-copy h2 {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.05;
}

.journal-card-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.journal-card-copy b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.85rem;
}

.journal-card-copy b svg {
  width: 15px;
  transition: transform 180ms ease;
}

.journal-card:hover .journal-card-copy b svg {
  transform: translateX(3px);
}

.journal-card-copy small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.journal-card-copy small svg,
.journal-card-copy b svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.journal-card:hover .journal-card-copy b svg {
  transform: none;
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.journal-filters button {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(3, 98, 230, 0.14);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.05);
  color: #4a5e7a;
  font-size: 0.84rem;
}

.journal-filters button.active {
  border-color: #0362e6;
  background: #0362e6;
  color: #fff;
}

.journal-empty {
  padding: 80px 0;
  color: var(--muted);
  text-align: center;
}

.v25-simple-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.v25-simple-hero.compact {
  min-height: 560px;
}

.v25-simple-hero .container {
  position: relative;
  z-index: 1;
}

.v25-simple-hero .btn {
  margin-top: 30px;
}

.v25-legal {
  padding: 96px 0;
}

.v25-legal article {
  width: min(100%, 800px);
  margin: 0 auto;
}

.v25-legal h2 {
  margin-top: 46px;
  color: var(--ink);
  font-size: 2.2rem;
}

.v25-legal h2:first-child {
  margin-top: 0;
}

.v25-legal p {
  margin-top: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.v25-legal a {
  color: var(--blue);
  text-decoration: underline;
}

.v25-article-page {
  overflow: hidden;
  background: #fff;
}

.article-content-band .reveal,
.case-detail-content .reveal,
.service-detail-content-v25 .reveal {
  opacity: 1;
  transform: none;
}

.article-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 60vh;
  overflow: hidden;
  background: #050f23;
  color: #fff;
}

.article-hero-media,
.article-hero-overlay {
  position: absolute;
  inset: 0;
}

.article-hero-media {
  animation: article-hero-settle 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.article-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.article-hero-overlay {
  background: linear-gradient(to top, rgba(5, 15, 35, 0.97) 0%, rgba(5, 15, 35, 0.7) 50%, rgba(5, 15, 35, 0.35) 100%);
}

@keyframes article-hero-settle {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 32px 64px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 20px;
  transition: color 180ms ease, transform 180ms ease;
}

.article-back:hover {
  color: #fff;
  transform: translateX(-3px);
}

.article-back svg {
  width: 16px;
  height: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.article-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #0362e6;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.article-hero h1 {
  max-width: 768px;
  margin-top: 20px;
  color: #fff;
  font-size: 51.2px;
  font-weight: 500;
  line-height: 1.05;
}

.article-content-band {
  padding: 80px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 652px) 280px;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 64px;
  align-items: start;
}

.article-content {
  min-width: 0;
  color: #334155;
}

.article-content > .text-xl:first-child,
.article-content > .article-lead:first-child {
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.625;
}

.article-content .space-y-6 > *,
.article-content .space-y-7 > * {
  margin-top: 0;
  margin-bottom: 0;
}

.article-content .space-y-6 > *:not(:last-child) {
  margin-bottom: 24px;
}

.article-content .space-y-7 > *:not(:last-child) {
  margin-bottom: 28px;
}

.article-content .leading-loose,
.article-content .space-y-6 > p,
.article-content .space-y-7 > p {
  color: #334155;
  font-size: 16px;
  line-height: 2;
}

.article-content .space-y-7 > p.text-xl {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.625;
}

.article-content h2 {
  padding-top: 16px;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.article-content h3 {
  padding-top: 8px;
  color: #0a1628;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.article-content h4 {
  padding-top: 8px;
  color: #0a1628;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.article-content ul {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}

.article-content ul > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.625;
  color: #334155;
}

.article-content ul > li + li {
  margin-top: 8px;
}

.article-content ul > li > span:first-child {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: #0362e6;
}

.article-content figure,
.article-content .rounded-xl.overflow-hidden {
  overflow: hidden;
  border-radius: 12px;
}

.article-content figure,
.article-content blockquote {
  margin-right: 0;
  margin-left: 0;
}

.article-content .space-y-7 > .my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.article-content figure img,
.article-content .rounded-xl.overflow-hidden img,
.article-content .rounded-xl.overflow-hidden video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content figcaption {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.article-content blockquote {
  padding: 4px 0 4px 24px;
  border-left: 3px solid #0362e6;
  color: #334155;
  font-size: 16px;
  font-style: italic;
  font-synthesis: none;
  line-height: 2;
}

.article-content blockquote > p:first-child {
  color: #334155;
  font-size: 18px;
  line-height: 1.625;
}

.article-content blockquote cite {
  display: block;
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.article-content hr {
  height: 1px;
  border: 0;
  background: #e2e8f0;
}

.article-content .rounded-xl.overflow-hidden:has(iframe) {
  aspect-ratio: 16 / 9;
  background: #000;
}

.article-content iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-content div.py-1 {
  padding: 4px 0;
}

.article-content div.py-1 > p {
  color: #334155;
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
}

.article-content div.py-1 button {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0362e6;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
  cursor: pointer;
}

.article-content .pt-4.space-y-3 {
  padding-top: 16px;
}

.article-content .pt-4.space-y-3 > h3 {
  margin: 0 0 20px;
  padding: 0;
  line-height: 28px;
  text-align: center;
}

.article-content .pt-4.space-y-3 > .rounded-xl.overflow-hidden {
  margin: 0 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}

.article-content .pt-4.space-y-3 > .rounded-xl.overflow-hidden:last-child {
  margin-bottom: 0;
}

.article-content .pt-4.space-y-3 button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 16px 24px;
  border: 0;
  background: #fff;
  color: #0a1628;
  text-align: left;
  cursor: pointer;
}

.article-content .pt-4.space-y-3 button > span:first-child {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.375;
}

.article-content .pt-4.space-y-3 button > span:last-child,
.article-content .pt-4.space-y-3 button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.article-content .pt-4.space-y-3 button + div {
  display: none;
}

.article-content .pt-4.space-y-3 .is-open button + div {
  display: block;
}

.article-content .pt-4.space-y-3 button + div p {
  padding: 0 24px 16px;
  color: #4a5e7a;
  font-size: 14px;
  line-height: 1.625;
}

.article-aside {
  position: sticky;
  top: 112px;
}

.article-aside-card {
  padding: 24px;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.article-aside-card .article-aside-label {
  margin-bottom: 16px;
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.article-aside-card > p:not(.article-aside-label) {
  margin-bottom: 20px;
  color: #4a5e7a;
  font-size: 14px;
  line-height: 1.625;
}

.article-aside-card > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.article-aside-card > a svg {
  width: 15px;
  height: 15px;
}

.article-nav-band {
  padding: 64px 0;
  border-top: 1px solid #e2e8f0;
  background: #f7faff;
}

.article-nav-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.article-navigation a {
  min-width: 0;
}

.article-navigation a.next {
  text-align: right;
}

.article-navigation small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.article-navigation .next small {
  justify-content: flex-end;
}

.article-navigation small svg {
  width: 12px;
  height: 12px;
}

.article-navigation strong {
  display: block;
  color: #0a1628;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.375;
}

.article-navigation a:hover strong {
  color: #0362e6;
}

.article-related {
  padding: 80px 0;
  background: linear-gradient(160deg, #071428, #0c1e3c);
}

.article-related-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.article-related .eyebrow {
  margin: 0 0 12px;
  color: #60a5fa;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
}

.article-related h2 {
  margin: 0 0 40px;
  color: #fff;
  font-size: 41.6px;
  font-weight: 500;
  line-height: 1;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-related-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.article-related-media {
  height: 176px;
  overflow: hidden;
}

.article-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.article-related-card:hover .article-related-media img {
  transform: scale(1.05);
}

.article-related-copy {
  padding: 20px;
}

.article-related-copy small,
.article-related-copy p {
  color: #94a3b8;
  font-size: 12px;
  line-height: 16px;
}

.article-related-copy small {
  display: block;
  margin-bottom: 8px;
}

.article-related-copy h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.375;
}

.article-related-copy p {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
}

.article-related-copy p svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.v25-case-detail {
  overflow: hidden;
  background: #fff;
}

.case-detail-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 780px;
  overflow: hidden;
  background: #050f23;
  color: #fff;
}

.case-detail-hero-image,
.case-detail-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-detail-hero-image {
  max-width: none;
  object-fit: cover;
}

.case-detail-overlay {
  background: linear-gradient(90deg, rgba(5, 15, 35, 0.9), rgba(5, 15, 35, 0.58) 54%, rgba(5, 15, 35, 0.08)), linear-gradient(to top, rgba(5, 15, 35, 0.84), transparent 64%);
}

.case-detail-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 86px;
}

.case-detail-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.case-detail-labels span,
.case-detail-labels small {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.case-detail-labels span {
  background: #0362e6;
}

.case-detail-labels small {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.case-detail-hero h1 {
  max-width: 950px;
  margin-top: 22px;
  color: #fff;
  font-size: 5.2rem;
  line-height: 0.96;
  text-wrap: balance;
}

.case-detail-hero-inner > strong {
  display: block;
  margin-top: 28px;
  color: #72b7ff;
  font-family: var(--font-headline);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
}

.case-detail-content {
  padding: 100px 0 112px;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
  justify-content: center;
  gap: 84px;
  align-items: start;
}

.case-detail-layout article > .article-lead {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.75;
}

.case-story-block {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  margin-top: 54px;
  padding-top: 32px;
  border-top: 1px solid rgba(3, 98, 230, 0.12);
}

.case-story-block > span {
  color: rgba(3, 98, 230, 0.3);
  font-family: var(--font-headline);
  font-size: 2.8rem;
  line-height: 1;
}

.case-story-block h2 {
  color: var(--ink);
  font-size: 2.5rem;
  text-transform: uppercase;
}

.case-story-block p {
  margin-top: 14px;
  color: #334155;
  line-height: 1.85;
}

.case-detail-aside {
  position: sticky;
  top: 118px;
  padding: 28px;
  border: 1px solid rgba(3, 98, 230, 0.12);
  border-radius: 8px;
  background: #f5f9ff;
}

.case-detail-aside ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.case-detail-aside li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 0.86rem;
  line-height: 1.5;
}

.case-detail-aside li svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #0362e6;
}

.case-detail-aside .btn {
  width: 100%;
  padding-inline: 14px;
}

.case-detail-related {
  padding: 96px 0 110px;
  background: linear-gradient(155deg, #071428, #0c1e3c);
}

.case-detail-related > .container > h2 {
  margin-bottom: 42px;
  color: #fff;
  font-size: 4.4rem;
}

.case-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-detail-related-grid a {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background: #0c1e3c;
  transition: transform 220ms ease;
}

.case-detail-related-grid a:hover {
  transform: translateY(-5px);
}

.case-detail-related-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 35, 0.96), rgba(5, 15, 35, 0.1) 68%);
  content: "";
}

.case-detail-related-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-related-grid span,
.case-detail-related-grid h3 {
  position: absolute;
  z-index: 1;
  right: 22px;
  left: 22px;
}

.case-detail-related-grid span {
  top: 20px;
  color: #8cc7ff;
  font-family: var(--font-headline);
  font-size: 1.7rem;
}

.case-detail-related-grid h3 {
  bottom: 22px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.v25-service-detail {
  overflow: hidden;
  background: #fff;
}

.service-detail-hero-v25 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  overflow: hidden;
  background: #050f23;
  color: #fff;
}

.service-detail-hero-image,
.service-detail-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail-hero-image {
  max-width: none;
  object-fit: cover;
}

.service-detail-hero-overlay {
  background: linear-gradient(90deg, rgba(5, 15, 35, 0.96), rgba(5, 15, 35, 0.75) 54%, rgba(5, 15, 35, 0.28)), linear-gradient(to top, rgba(5, 15, 35, 0.78), transparent 62%);
}

.service-detail-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 86px;
}

.service-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 52px;
  color: #8cc7ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail-kicker svg {
  width: 18px;
}

.service-detail-hero-v25 h1 {
  max-width: 900px;
  margin-top: 20px;
  color: #fff;
  font-size: 6rem;
  text-transform: uppercase;
}

.service-detail-hero-inner > p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(218, 232, 248, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-detail-hero-inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-detail-content-v25 {
  padding: 108px 0;
}

.service-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 88px;
  align-items: start;
}

.service-detail-intro h2 {
  max-width: 720px;
  color: var(--ink);
  font-size: 4.5rem;
  line-height: 0.96;
  text-wrap: balance;
}

.service-detail-intro > div:first-child > p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: #4a5e7a;
  line-height: 1.8;
}

.service-detail-uses {
  padding: 30px;
  border-left: 2px solid var(--service-color);
  background: #f5f9ff;
}

.service-detail-uses ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-uses li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #334155;
  font-size: 0.9rem;
}

.service-detail-uses svg {
  width: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--service-color);
}

.service-detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 80px;
  border-block: 1px solid rgba(3, 98, 230, 0.12);
}

.service-detail-metrics div {
  padding: 32px 20px;
  text-align: center;
}

.service-detail-metrics div + div {
  border-left: 1px solid rgba(3, 98, 230, 0.12);
}

.service-detail-metrics strong,
.service-detail-metrics span {
  display: block;
}

.service-detail-metrics strong {
  color: var(--service-color);
  font-family: var(--font-headline);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.service-detail-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail-workflow {
  padding: 100px 0 112px;
  background: #edf5ff;
}

.service-detail-workflow > .container > h2 {
  color: var(--ink);
  font-size: 4.6rem;
}

.service-detail-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(3, 98, 230, 0.12);
}

.service-detail-workflow-grid article {
  min-height: 270px;
  padding: 30px;
  background: #fff;
}

.service-detail-workflow-grid strong {
  color: rgba(3, 98, 230, 0.3);
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 400;
}

.service-detail-workflow-grid h3 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 1.05rem;
}

.service-detail-workflow-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-detail-related {
  padding: 100px 0 112px;
}

.service-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.service-detail-related-grid a {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: #071428;
  color: #fff;
  transition: transform 220ms ease;
}

.service-detail-related-grid a:hover {
  transform: translateY(-5px);
}

.service-detail-related-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 35, 0.96), rgba(5, 15, 35, 0.06) 68%);
  content: "";
}

.service-detail-related-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-related-grid span,
.service-detail-related-grid h3,
.service-detail-related-grid p {
  position: absolute;
  z-index: 1;
  right: 24px;
  left: 24px;
}

.service-detail-related-grid span {
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(3, 98, 230, 0.9);
}

.service-detail-related-grid span svg {
  width: 18px;
}

.service-detail-related-grid h3 {
  bottom: 54px;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.service-detail-related-grid p {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

@keyframes v25-hero-drift {
  from { transform: scale(1.02) translate3d(-0.35%, 0, 0); }
  to { transform: scale(1.055) translate3d(0.35%, -0.4%, 0); }
}

@keyframes v25-scan {
  from { transform: translateY(-20vh); }
  to { transform: translateY(120vh); }
}

@keyframes v25-scroll-cue {
  0%, 100% { opacity: 0.34; transform: translateY(-5px); }
  50% { opacity: 1; transform: translateY(6px); }
}

@media (max-width: 1180px) {
  .hero-title-v25 {
    font-size: 6.8rem;
  }

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

  .case-detail-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .service-detail-intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .case-detail-aside {
    position: static;
  }
}

@media (max-width: 1023px) {
  .article-layout {
    grid-template-columns: minmax(0, 652px);
    justify-content: center;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .home-hero-v25 {
    height: calc(100svh - 20px);
    min-height: 724px;
  }

  body[data-page="home"] .home-hero-v25 {
    height: calc(100svh - 20px);
    min-height: 724px;
  }

  .hero-v25-inner {
    padding: 106px 12px 104px;
  }

  .home-hero-v25 .hero-kicker {
    margin-bottom: 22px;
    font-size: 0.66rem;
  }

  .hero-title-v25 {
    font-size: 4.8rem;
    line-height: 0.85;
  }

  .hero-text-v25 {
    margin-top: 24px;
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .hero-actions-v25 {
    display: grid;
    width: min(100%, 360px);
    margin: 26px auto 0;
  }

  .hero-actions-v25 .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-curve {
    bottom: -66px;
    height: 104px;
  }

  .journal-hero-inner {
    padding-top: 132px;
    padding-bottom: 68px;
  }

  .journal-hero h1,
  .v25-simple-hero h1 {
    font-size: 4.5rem;
  }

  .journal-featured,
  .journal-index,
  .v25-legal {
    padding: 68px 0;
  }

  .journal-featured-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    min-height: 60vh;
    padding: 0;
  }

  .article-meta {
    margin-top: 32px;
  }

  .article-hero h1 {
    font-size: 32px;
    line-height: 1.05;
  }

  .article-content-band,
  .article-related {
    padding: 80px 0;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-navigation,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-navigation a.next,
  .article-navigation .next small {
    justify-content: flex-start;
    text-align: left;
  }

  .article-related h2 {
    font-size: 28.8px;
  }

  .case-detail-hero {
    min-height: 680px;
  }

  .case-detail-hero h1 {
    font-size: 3.6rem;
  }

  .case-detail-content,
  .case-detail-related {
    padding: 68px 0;
  }

  .case-story-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-story-block h2 {
    font-size: 2.15rem;
  }

  .case-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-related > .container > h2 {
    font-size: 3.3rem;
  }

  .service-detail-hero-v25 {
    min-height: 700px;
  }

  .service-detail-hero-v25 h1 {
    font-size: 4rem;
  }

  .service-detail-content-v25,
  .service-detail-workflow,
  .service-detail-related {
    padding: 68px 0;
  }

  .service-detail-intro h2,
  .service-detail-workflow > .container > h2 {
    font-size: 3.3rem;
  }

  .service-detail-metrics,
  .service-detail-workflow-grid,
  .service-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-metrics div + div {
    border-top: 1px solid rgba(3, 98, 230, 0.12);
    border-left: 0;
  }

  .service-detail-workflow-grid article {
    min-height: 0;
  }

  .journal-card-media {
    height: 190px;
  }

  .v25-simple-hero,
  .v25-simple-hero.compact {
    min-height: 560px;
    padding: 104px 0 64px;
  }
}

@media (max-width: 420px) {
  .hero-title-v25 {
    font-size: 4rem;
  }

  .journal-hero h1,
  .v25-simple-hero h1 {
    font-size: 3.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-v25,
  .hero-scanline,
  .hero-scroll-cue span {
    animation: none;
  }

  .hero-v25-copy {
    transform: none !important;
  }
}

/* v25 subpage parity pass. */
body[data-page="services"] .v7-page > section .container,
body[data-page="portfolio"] .v7-page > section .container,
body[data-page="team"] .v7-page > section .container,
body[data-page="careers"] .v7-page > section .container,
body[data-page="contact"] .v7-page > section .container {
  width: min(100%, 1400px);
  padding-right: 32px;
  padding-left: 32px;
}

.v25-service-proof {
  padding: 64px 0;
  border-block: 1px solid rgba(3, 98, 230, 0.08);
  background: rgba(240, 246, 255, 0.4);
}

.v25-proof-label {
  margin-bottom: 42px;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.v25-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.v25-proof-card {
  display: flex;
  flex-direction: column;
  min-height: 296px;
  padding: 28px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 16px rgba(3, 98, 230, 0.05);
}

.v25-proof-stars {
  color: var(--quote-color);
  letter-spacing: 3px;
}

.v25-proof-card blockquote {
  flex: 1;
  margin: 22px 0 28px;
  color: #334155;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
}

.v25-proof-card footer {
  padding-top: 16px;
  border-top: 1px solid rgba(3, 98, 230, 0.08);
}

.v25-proof-card footer strong,
.v25-proof-card footer span {
  display: block;
}

.v25-proof-card footer strong {
  color: #0a1628;
  font-size: 0.88rem;
}

.v25-proof-card footer span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.74rem;
}

.v25-results-marquee,
.v25-case-marquee {
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid rgba(3, 98, 230, 0.3);
  background: #0a1628;
}

.v25-results-marquee > div,
.v25-case-marquee > div {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: v25-subpage-marquee 34s linear infinite;
}

.v25-results-marquee span,
.v25-case-marquee span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.v25-results-marquee span::before,
.v25-case-marquee span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background: #239bff;
  content: "";
}

.v25-results-marquee .amount {
  color: #239bff;
  font-family: var(--font-headline);
  font-size: 0.9rem;
}

.v25-results-marquee .amount::before {
  display: none;
}

.v25-service-anchor {
  position: sticky;
  top: 86px;
  z-index: 40;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(3, 98, 230, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.v25-service-anchor > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.v25-service-anchor button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid color-mix(in srgb, var(--card-color) 30%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-color) 8%, #fff);
  color: var(--card-color);
  font-size: 0.84rem;
  font-weight: 700;
}

.v25-service-anchor svg {
  width: 16px;
  height: 16px;
}

body[data-page="services"] .v7-services-list {
  min-height: 0;
  padding: 128px 0;
}

body[data-page="services"] .v7-service-stack {
  gap: 160px;
}

.v7-service-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v25-service-case {
  display: block;
  margin: 30px 0 22px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--card-color) 20%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-color) 5%, #fff);
  color: #0a1628;
}

.v25-service-case > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--card-color);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.v25-service-case i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.v25-service-case b {
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-color) 12%, transparent);
  font-size: 0.68rem;
}

.v25-service-case > strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-headline);
  font-size: 1.12rem;
  font-weight: 400;
}

.v25-service-case > p {
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.6;
}

body[data-page="services"] .v7-faq-section {
  min-height: 0;
  padding: 128px 0;
}

@keyframes v25-subpage-marquee {
  to { transform: translateX(-50%); }
}

body[data-page="portfolio"] .v7-hero h1 {
  white-space: nowrap;
}

body[data-page="portfolio"] .v9-featured-results {
  padding: 112px 0;
}

body[data-page="portfolio"] .featured-results-grid {
  grid-auto-rows: 244px;
  gap: 24px;
}

.featured-result-card small {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-page="portfolio"] .v7-portfolio-list {
  min-height: 0;
  padding: 112px 0;
}

body[data-page="portfolio"] .v7-portfolio-image {
  aspect-ratio: 4 / 5;
}

body[data-page="portfolio"] .v7-stats-band {
  min-height: 270px;
}

.journal-count {
  margin-top: 48px;
  color: #94a3b8;
  font-size: 0.86rem;
  text-align: center;
}

body[data-page="journal"] .journal-hero-inner {
  padding-top: 142px;
  padding-bottom: 78px;
}

body[data-page="journal"] .journal-featured,
body[data-page="journal"] .journal-index {
  padding: 80px 0;
}

body[data-page="journal"] .journal-grid {
  gap: 32px 24px;
}

body[data-page="journal"] .journal-card-media {
  height: 200px;
}

body[data-page="journal"] .journal-card-copy {
  padding: 22px;
}

.v25-team-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.v25-team-mosaic figure {
  position: relative;
  height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(3, 98, 230, 0.12);
}

.v25-team-mosaic figure.tall {
  height: 240px;
}

.v25-team-mosaic figure:nth-child(2) {
  margin-top: 48px;
}

.v25-team-mosaic figure:nth-child(3) {
  margin-top: -48px;
}

.v25-team-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v25-team-mosaic figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 35, 0.72), transparent 62%);
  content: "";
}

.v25-team-mosaic figcaption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-page="team"] .v7-chip-row span.with-icon {
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid rgba(3, 98, 230, 0.18);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.08);
  color: #0362e6;
  font-size: 0.74rem;
  font-weight: 600;
}

body[data-page="team"] .v7-chip-row span.with-icon::before {
  display: none;
}

body[data-page="team"] .v7-chip-row span.with-icon svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

body[data-page="team"] .v7-timeline-item.reveal {
  transition-duration: 760ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

body[data-page="team"] .v7-timeline-item.reveal:not(.in-view) {
  transform: translateX(-54px);
}

body[data-page="team"] .v7-timeline-item.right.reveal:not(.in-view) {
  transform: translateX(54px);
}

body[data-page="team"] .v7-values-section .v7-section-heading h2 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1;
}

body[data-page="team"] .v7-value-card {
  min-height: 220px;
  padding: 30px;
}

body[data-page="team"] .v7-value-card strong {
  font-size: 2.3rem;
}

body[data-page="team"] .v7-value-card h3 {
  margin-top: 18px;
  font-size: 1.18rem;
  line-height: 1.15;
}

body[data-page="team"] .v7-value-card p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (min-width: 1181px) {
  body[data-page="team"] .v7-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(600px, 1fr);
  }

  body[data-page="team"] .v7-filter-row {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  body[data-page="team"] .v7-filter-row button {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="team"] .v7-timeline-item.reveal,
  body[data-page="team"] .v7-timeline-item.right.reveal {
    transform: none;
    transition: none;
  }
}

body[data-page="team"] .v9-who-section {
  min-height: 0;
  padding: 112px 0;
}

body[data-page="team"] .who-grid {
  margin-bottom: 72px;
}

body[data-page="team"] .v7-story-section .v7-badge {
  display: inline-block;
  min-height: 0;
  margin-bottom: 24px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.1em;
}

.v25-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.v25-principles article {
  min-height: 236px;
  padding: 30px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: #f7faff;
}

.v25-principles strong {
  color: rgba(3, 98, 230, 0.22);
  font-family: var(--font-headline);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.v25-principles h3 {
  margin-top: 18px;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.55rem;
  font-weight: 400;
}

.v25-principles p {
  margin-top: 12px;
  color: #4a5e7a;
  font-size: 0.86rem;
  line-height: 1.65;
}

.v25-team-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
  text-align: center;
}

.v25-team-cta .container {
  position: relative;
  z-index: 1;
}

.v25-team-cta h2 {
  color: #fff;
  font-family: var(--font-headline);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.95;
}

.v25-team-cta p {
  margin: 24px 0 40px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

body[data-page="careers"] .v9-hiring-section {
  min-height: 0;
  padding: 96px 0;
  background: #fff;
}

body[data-page="careers"] .v7-badge {
  min-height: 0;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

body[data-page="careers"] .v7-hero h1,
body[data-page="careers"] .v7-career-story h2,
body[data-page="careers"] .v7-section-heading h2,
body[data-page="careers"] .v7-gradient-cta h2 {
  font-weight: 500;
}

body[data-page="careers"] .v7-career-story h2 {
  margin-bottom: 0;
}

body[data-page="careers"] .v7-career-story p:first-of-type {
  margin-top: 32px;
  font-size: 1.125rem;
  line-height: 1.625;
}

body[data-page="careers"] .v7-career-story p + p {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.625;
}

body[data-page="careers"] .v7-benefit-card {
  padding: 32px;
  border-radius: 16px;
}

body[data-page="careers"] .v7-benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

body[data-page="careers"] .v7-benefit-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625;
}

body[data-page="careers"] .v9-hiring-section .v7-section-heading {
  margin-bottom: 64px;
}

body[data-page="careers"] .v9-hiring-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

body[data-page="careers"] .v9-hiring-grid::before {
  position: absolute;
  top: 40px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3, 98, 230, 0.3), transparent);
  content: "";
}

body[data-page="careers"] .v9-hiring-grid article {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

body[data-page="careers"] .v9-hiring-grid article > strong {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border: 2px solid color-mix(in srgb, var(--card-color) 28%, transparent);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--card-color) 12%, transparent);
  font-size: 1.5rem;
  font-weight: 500;
}

body[data-page="careers"] .v9-hiring-grid h3 {
  margin-top: 24px;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

body[data-page="careers"] .v9-hiring-grid p {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.625;
}

body[data-page="careers"] .v9-hiring-section .v7-section-heading p,
body[data-page="careers"] .v7-positions-section .v7-section-heading p {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.5556;
}

body[data-page="careers"] .v7-opportunity-card h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5556;
}

body[data-page="careers"] .v7-opportunity-card p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.5;
}

body[data-page="careers"] .v7-opportunity-card .v7-outline-link {
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 32px;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.v25-career-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 78px;
  border-block: 1px solid rgba(3, 98, 230, 0.1);
}

.v25-career-facts-band {
  display: flex;
  align-items: center;
  min-height: 198px;
  border-top: 1px solid rgba(3, 98, 230, 0.1);
  border-bottom: 1px solid rgba(3, 98, 230, 0.1);
  background: rgba(240, 246, 255, 0.5);
}

.v25-career-facts-band .v25-career-facts {
  margin-top: 0;
  border: 0;
}

.v25-career-facts > div {
  padding: 26px 18px;
  text-align: center;
}

.v25-career-facts > div + div {
  border-left: 0;
}

.v25-career-facts i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(3, 98, 230, 0.08);
  color: #0362e6;
}

.v25-career-facts i svg {
  width: 16px;
  height: 16px;
}

.v25-career-facts strong,
.v25-career-facts span {
  display: block;
}

.v25-career-facts strong {
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.55rem;
  font-weight: 400;
}

.v25-career-facts span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.74rem;
}

body[data-page="careers"] .v9-culture-section {
  min-height: 0;
  padding: 96px 0;
  background: #f7faff;
}

body[data-page="careers"] .v7-hero-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

body[data-page="careers"] .v7-hero-eyebrow-row .v7-badge {
  margin-bottom: 0;
}

.v25-roles-open {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 14px;
  border: 1px solid rgba(5, 150, 105, 0.24);
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-page="careers"] .v25-clean-cta {
  min-height: 54px;
  padding: 15px 26px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #0362e6, #239bff);
  background-clip: padding-box;
  box-shadow: 0 12px 30px rgba(3, 98, 230, 0.3);
}

.v25-hot-role {
  order: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  font-size: 0.75rem;
  line-height: 1.2;
}

body[data-page="careers"] .v9-culture-section .v7-section-heading {
  margin-bottom: 64px;
}

.v25-culture-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  aspect-ratio: 334 / 165;
}

.v25-culture-mosaic figure {
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce8f6;
}

.v25-culture-mosaic figure.large {
  grid-column: span 2;
  grid-row: span 2;
}

.v25-culture-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.v25-culture-mosaic figure:hover img {
  transform: scale(1.04);
}

.contact-v9-page .v7-hero {
  min-height: 800px;
}

.contact-hero-points {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  color: #4a5e7a;
  font-size: 0.86rem;
  list-style: none;
}

.contact-hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-hero-points svg {
  width: 15px;
  height: 15px;
  color: #0362e6;
}

.contact-hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}

.contact-hero-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.contact-hero-stack.is-offset {
  margin-top: 32px;
}

.contact-hero-collage figure {
  aspect-ratio: 3 / 2;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(3, 98, 230, 0.15);
}

.contact-hero-collage figure.meeting {
  margin-top: 0;
}

.contact-hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-result,
.contact-hero-ready {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(3, 98, 230, 0.18);
}

.contact-hero-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
  text-align: center;
}

.contact-hero-result strong,
.contact-hero-result span {
  display: block;
}

.contact-hero-result strong {
  margin-bottom: 4px;
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.contact-hero-result span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.contact-hero-ready {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 82px;
  padding: 20px;
  border: 1px solid rgba(3, 98, 230, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.contact-hero-ready > svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(3, 98, 230, 0.08);
  color: #0362e6;
}

.contact-hero-ready strong,
.contact-hero-ready small {
  display: block;
}

.contact-hero-ready strong {
  color: #0a1628;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.contact-hero-ready small {
  margin-top: 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1rem;
}

.contact-v9-page .contact-info-strip {
  height: auto;
  min-height: 142px;
}

.contact-v9-page .contact-info-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.contact-v9-page .contact-info-card > span {
  grid-row: 1 / span 3;
  width: 34px;
  height: 34px;
  margin: 0;
}

.contact-v9-page .contact-info-card small,
.contact-v9-page .contact-info-card a,
.contact-v9-page .contact-info-card strong,
.contact-v9-page .contact-info-card p {
  grid-column: 2;
}

.contact-v9-page .contact-form-section {
  min-height: 0;
  padding: 112px 0;
}

.contact-v9-page .contact-form-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: 80px;
  align-items: start;
}

.contact-request h2,
.contact-team h2 {
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 4.15rem;
  font-weight: 400;
  line-height: 0.95;
}

.contact-form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 36px 0 22px;
}

.contact-form-steps span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.72rem;
}

.contact-form-steps b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(3, 98, 230, 0.18);
  border-radius: 50%;
  font-size: 0.7rem;
}

.contact-form-steps .active,
.contact-form-steps .complete {
  color: #0362e6;
}

.contact-form-steps .active b,
.contact-form-steps .complete b {
  border-color: #0362e6;
  background: #0362e6;
  color: #fff;
}

.contact-wizard {
  display: block;
  padding: 28px;
  border-radius: 8px;
}

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

.contact-form-step[hidden] {
  display: none;
}

.contact-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.contact-confidential {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0 !important;
  color: #94a3b8 !important;
  font-size: 0.72rem;
}

.contact-confidential svg {
  width: 14px;
  height: 14px;
}

.contact-review h3 {
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 400;
}

.contact-review dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-review dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(3, 98, 230, 0.08);
}

.contact-review dt {
  color: #94a3b8;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-review dd {
  margin: 0;
  color: #0a1628;
  font-size: 0.85rem;
}

.contact-review-details dd {
  white-space: pre-wrap;
}

.contact-form-success {
  padding: 52px 20px;
  text-align: center;
}

.contact-form-success > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #0362e6;
  color: #fff;
}

.contact-form-success svg {
  width: 24px;
}

.contact-form-success h3 {
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 400;
}

.contact-form-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: 12px;
  background: rgba(254, 243, 242, 0.92);
  color: #b42318;
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-form-error[hidden] {
  display: none;
}

.contact-team .consultant {
  padding: 15px;
  border-radius: 8px;
}

.contact-team .consultant h3 {
  color: #0a1628;
  font-size: 0.86rem;
}

.contact-team .consultant p {
  margin-top: 3px;
  font-size: 0.72rem;
}

.contact-urgent {
  margin-top: 24px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
}

.contact-urgent > span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-urgent h3 {
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.95;
}

.contact-urgent p {
  margin: 14px 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.8rem;
}

.contact-urgent a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.contact-urgent svg {
  width: 16px;
}

.contact-team-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  text-align: center;
}

.contact-team-facts strong,
.contact-team-facts small {
  display: block;
}

.contact-team-facts strong {
  color: #0362e6;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 400;
}

.contact-team-facts small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.6rem;
}

.contact-v9-page .contact-call-band {
  min-height: 330px;
  padding: 72px 0;
  background: linear-gradient(160deg, #f0f6ff, #e8f2ff);
  color: #0a1628;
}

.contact-v9-page .contact-call-band h2 {
  margin: 0;
  color: #0a1628;
  font-size: 3.2rem;
}

.contact-v9-page .contact-call-band p {
  margin: 12px 0 24px;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 400;
  text-transform: none;
}

.v25-faq-page,
.v25-privacy-page {
  overflow: hidden;
  background: #fff;
}

.v25-faq-hero,
.v25-privacy-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #f0f6ff 50%, #e8f2ff 100%);
}

.v25-faq-page .v25-faq-hero {
  min-height: 470px;
}

.v25-faq-hero .container,
.v25-privacy-hero .container {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  padding-right: 32px;
  padding-left: 32px;
}

.v25-faq-hero h1,
.v25-privacy-hero h1 {
  margin-top: 0;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.95;
}

.v25-faq-hero .container > p:last-child,
.v25-privacy-hero .container > p:last-child {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(10, 22, 40, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

.v25-faq-body {
  padding: 80px 0;
}

.v25-faq-body .v7-narrow {
  width: min(100%, 900px);
  padding-right: 32px;
  padding-left: 32px;
}

.v25-faq-body .v7-faq-list {
  border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.v25-faq-body .v7-accordion {
  border-bottom-color: rgba(10, 22, 40, 0.1);
}

.v25-faq-body .v7-accordion button {
  align-items: center;
  padding: 28px 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375;
}

.v25-faq-body .v7-accordion button svg {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  margin-top: 0;
  padding: 7px;
  border: 1px solid rgba(3, 98, 230, 0.3);
  border-radius: 50%;
}

.v25-faq-cta {
  margin-top: 80px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
  text-align: center;
}

.v25-faq-cta h3 {
  color: #fff;
  font-family: var(--font-headline);
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.v25-faq-cta p {
  max-width: 448px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.875rem;
  line-height: 1.625;
}

.v25-faq-cta .btn {
  min-height: 44px;
  padding: 12px 32px;
  border: 0;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.v25-privacy-page .v25-legal {
  padding: 80px 0 112px;
}

.v25-privacy-page .v25-legal article {
  width: min(100%, 900px);
  padding-right: 32px;
  padding-left: 32px;
}

.v25-privacy-page .privacy-intro {
  margin-top: 0;
  margin-bottom: 52px;
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.8;
}

.v25-privacy-page .v25-legal article > section + section {
  margin-top: 44px;
}

.v25-privacy-page .v25-legal h2 {
  margin-top: 0;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.2;
}

.v25-privacy-page .v25-legal p {
  margin-top: 14px;
  color: rgba(10, 22, 40, 0.72);
  font-size: 0.9rem;
  line-height: 1.82;
}

.privacy-address {
  white-space: pre-line;
}

@media (max-width: 980px) {
  body[data-page="services"] .v7-page > section .container,
  body[data-page="portfolio"] .v7-page > section .container,
  body[data-page="team"] .v7-page > section .container,
  body[data-page="careers"] .v7-page > section .container,
  body[data-page="contact"] .v7-page > section .container {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .v25-service-anchor {
    top: 74px;
  }

  body[data-page="portfolio"] .v7-hero h1 {
    white-space: normal;
  }

  .v25-team-mosaic {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  body[data-page="careers"] .v9-hiring-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  body[data-page="careers"] .v9-hiring-grid::before {
    display: none;
  }

  .v25-culture-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    aspect-ratio: 1.55 / 1;
  }

  .contact-hero-collage {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .contact-v9-page .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .contact-team {
    width: min(100%, 620px);
  }
}

@media (max-width: 680px) {
  .v25-proof-grid,
  .v25-principles {
    grid-template-columns: 1fr;
  }

  .v25-service-proof {
    padding: 56px 0;
  }

  .v25-service-anchor {
    overflow-x: auto;
    padding-right: 12px;
    padding-left: 12px;
    scrollbar-width: none;
  }

  .v25-service-anchor > div {
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  body[data-page="services"] .v7-services-list,
  body[data-page="services"] .v7-faq-section,
  body[data-page="portfolio"] .v9-featured-results,
  body[data-page="portfolio"] .v7-portfolio-list,
  body[data-page="team"] .v9-who-section,
  body[data-page="careers"] .v9-hiring-section,
  body[data-page="careers"] .v9-culture-section,
  .contact-v9-page .contact-form-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body[data-page="services"] .v7-service-stack {
    gap: 94px;
  }

  .v25-service-case b {
    display: none;
  }

  body[data-page="portfolio"] .featured-results-grid {
    grid-auto-rows: 230px;
  }

  .featured-result-card.large {
    grid-row: auto;
  }

  body[data-page="journal"] .journal-hero-inner {
    padding-top: 126px;
    padding-bottom: 62px;
  }

  body[data-page="journal"] .journal-featured,
  body[data-page="journal"] .journal-index {
    padding: 64px 0;
  }

  .v25-team-mosaic figure,
  .v25-team-mosaic figure.tall {
    height: 170px;
  }

  .v25-team-mosaic figure:nth-child(2),
  .v25-team-mosaic figure:nth-child(3) {
    margin-top: 0;
  }

  .v25-team-cta {
    min-height: 430px;
  }

  .v25-team-cta h2 {
    font-size: 3.25rem;
  }

  body[data-page="careers"] .v9-hiring-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="careers"] .v9-hiring-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  body[data-page="careers"] .v9-hiring-section .v7-section-heading {
    margin-bottom: 64px;
  }

  .v25-career-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 60px;
  }

  .v25-career-facts > div:nth-child(3) {
    border-left: 0;
  }

  .v25-career-facts > div:nth-child(n + 3) {
    border-top: 1px solid rgba(3, 98, 230, 0.1);
  }

  .v25-culture-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, calc((100vw - 80px) / 2));
    grid-auto-rows: calc((100vw - 80px) / 2);
    aspect-ratio: auto;
  }

  .v25-culture-mosaic figure,
  .v25-culture-mosaic figure.large {
    aspect-ratio: 1;
    grid-row: auto;
    grid-column: auto;
  }

  .contact-hero-collage {
    padding: 28px 0 52px;
  }

  .contact-hero-collage figure {
    height: 150px;
  }

  .contact-hero-collage figure.meeting {
    margin-top: 38px;
  }

  .contact-hero-ready {
    top: 0;
    right: 4px;
    min-width: 170px;
    padding: 12px;
  }

  .contact-hero-result {
    bottom: 0;
    width: 170px;
    min-height: 82px;
  }

  .contact-v9-page .contact-info-strip .container {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact-request h2,
  .contact-team h2 {
    font-size: 3.25rem;
  }

  .contact-form-steps span {
    display: grid;
    justify-items: center;
    font-size: 0.62rem;
    text-align: center;
  }

  .contact-form-step {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    flex-direction: column-reverse;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .contact-team-facts {
    grid-template-columns: 1fr;
  }

  .contact-v9-page .contact-call-band h2 {
    font-size: 2.8rem;
  }

  .v25-faq-hero,
  .v25-privacy-hero {
    padding: 124px 0 62px;
  }

  .v25-faq-hero .container,
  .v25-privacy-hero .container,
  .v25-faq-body .v7-narrow,
  .v25-privacy-page .v25-legal article {
    padding-right: 20px;
    padding-left: 20px;
  }

  .v25-faq-hero h1,
  .v25-privacy-hero h1 {
    font-size: 3.45rem;
  }

  .v25-faq-body,
  .v25-privacy-page .v25-legal {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .v25-faq-cta {
    margin-top: 56px;
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v25-results-marquee > div,
  .v25-case-marquee > div {
    animation: none;
  }
}

/* Published v25 route parity refinements. */
.contact-v9-page .v7-hero {
  min-height: 75vh;
  padding-top: 96px;
}

.contact-v9-page .contact-form-section {
  min-height: 1332px;
  padding-top: 128px;
  padding-bottom: 128px;
}

.contact-v9-page .contact-call-band {
  min-height: 413px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.contact-wizard {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-steps b {
  width: 40px;
  height: 40px;
}

.contact-form-step > .btn.full {
  width: auto;
  justify-self: end;
}

.contact-team-facts {
  overflow: hidden;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 8px;
  background: #fff;
}

.contact-team-facts > div {
  grid-column: 1 / -1;
  padding: 18px;
  background: #f0f6ff;
}

.contact-team-facts > span {
  padding: 16px 8px;
  border-top: 1px solid rgba(3, 98, 230, 0.08);
}

.contact-team-facts > span + span {
  border-left: 1px solid rgba(3, 98, 230, 0.08);
}

.v25-privacy-page .v25-legal article > div + div {
  margin-top: 44px;
}

.v25-privacy-page .v25-legal article > div:first-child p {
  margin-top: 0;
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.8;
}

.v25-privacy-page .v25-legal ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0 24px;
  color: rgba(10, 22, 40, 0.72);
  font-size: 0.9rem;
  line-height: 1.82;
}

.v25-privacy-page .v25-legal address {
  margin-top: 14px;
  font-style: normal;
}

.v25-privacy-page .v25-legal address p {
  margin-top: 4px;
}

.v25-privacy-page .v25-legal a {
  color: #0362e6;
}

body[data-page="portfolio"] .v7-card-more {
  display: none;
}

body[data-page="journal"] .journal-featured,
body[data-page="journal"] .journal-index {
  padding-top: 80px;
  padding-bottom: 80px;
}

body[data-page="journal"] .journal-card.featured {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="journal"] .journal-card.featured .journal-card-media {
  margin-bottom: 24px;
  border-radius: 8px;
}

body[data-page="journal"] .journal-card.featured .journal-card-copy {
  padding: 0;
}

body[data-page="journal"] .journal-card.featured .journal-card-copy h2 {
  font-size: 1.25rem;
  line-height: 1.15;
}

body[data-page="journal"] .journal-index .journal-card {
  display: flex;
  flex-direction: column;
  background: #fafcff;
}

body[data-page="journal"] .journal-index .journal-card-media {
  flex: 0 0 auto;
}

body[data-page="journal"] .journal-index .journal-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

body[data-page="journal"] .journal-index .journal-card-copy small {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 6px;
  font-size: 0.75rem;
  line-height: 1rem;
}

body[data-page="journal"] .journal-index .journal-card-copy p {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.625;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="journal"] .journal-index .journal-card-copy h3 {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.375;
  text-wrap: initial;
}

body[data-page="journal"] .journal-index .journal-card-copy b {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.875rem;
}

.v25-team-category-strip {
  display: flex;
  align-items: center;
  min-height: 132px;
  border-top: 1px solid rgba(3, 98, 230, 0.1);
  border-bottom: 1px solid rgba(3, 98, 230, 0.1);
  background: #fff;
}

.v25-team-category-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.v25-team-category-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--category-color) 15%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--category-color) 4%, #fff);
  color: var(--category-color);
  font-size: 0.75rem;
}

.v25-team-category-strip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--category-color);
}

.v25-team-category-strip b {
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 680px) {
  .contact-v9-page .v7-hero {
    min-height: 75vh;
  }

  .contact-v9-page .v7-hero-side {
    display: none;
  }

  .contact-v9-page .contact-info-strip {
    min-height: 410px;
  }

  .contact-v9-page .contact-info-strip .container {
    gap: 0;
  }

  .contact-v9-page .contact-info-card {
    padding: 14px 8px;
    border-color: transparent;
    background: transparent;
  }

  .contact-v9-page .contact-form-section {
    min-height: 2370px;
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .contact-v9-page .contact-call-band {
    min-height: 418px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .contact-form-steps b {
    width: 40px;
    height: 40px;
  }

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

  .site-footer .footer-grid {
    gap: 44px;
    padding-top: 88px;
    padding-bottom: 74px;
  }

  .site-footer .footer-bottom {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .v25-privacy-page .v25-privacy-hero {
    min-height: 392px;
  }

  .v25-privacy-page .v25-legal {
    min-height: 8342px;
  }
}

@media (min-width: 981px) {
  .site-footer .footer-bottom {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .v25-privacy-page .v25-legal {
    min-height: 4908px;
  }

  body[data-page="services"] .v7-hero {
    min-height: 943px;
  }

  body[data-page="services"] .v7-services-list {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  body[data-page="services"] .v7-process-band {
    min-height: 835px;
  }

  body[data-page="services"] .v7-faq-section {
    min-height: 996px;
  }

  body[data-page="services"] .v7-gradient-cta {
    min-height: 498px;
  }

  body[data-page="portfolio"] .v7-hero {
    min-height: 800px;
  }

  body[data-page="portfolio"] .v9-featured-results {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  body[data-page="portfolio"] .v7-stats-band {
    min-height: 324px;
  }

  body[data-page="portfolio"] .v7-soft-cta {
    min-height: 530px;
  }

  body[data-page="portfolio"] .v7-portfolio-list {
    min-height: 2930px;
  }

  body[data-page="journal"] .journal-hero {
    min-height: 659px;
  }

  body[data-page="journal"] .journal-index {
    min-height: 2937px;
  }

  body[data-page="team"] .v7-hero {
    min-height: 808px;
  }

  body[data-page="team"] .v9-who-section {
    min-height: 1085px;
  }

  body[data-page="team"] .v7-story-section {
    min-height: 1445px;
  }

  body[data-page="team"] .v25-team-cta {
    min-height: 539px;
  }

  body[data-page="careers"] .v9-hiring-section {
    min-height: 661px;
  }

  body[data-page="careers"] .v7-hero h1 {
    font-size: 6.3rem;
  }

  body[data-page="careers"] .v7-career-story h2,
  body[data-page="careers"] .v9-hiring-section .v7-section-heading h2,
  body[data-page="careers"] .v9-culture-section .v7-section-heading h2 {
    font-size: 3.6rem;
  }

  body[data-page="careers"] .v9-hiring-section .v7-section-heading,
  body[data-page="careers"] .v9-culture-section .v7-section-heading,
  body[data-page="careers"] .v7-positions-section .v7-section-heading {
    max-width: none;
  }

  body[data-page="careers"] .v9-hiring-section .v7-badge,
  body[data-page="careers"] .v9-culture-section .v7-badge,
  body[data-page="careers"] .v7-positions-section .v7-badge {
    margin-bottom: 24px;
  }

  body[data-page="careers"] .v7-positions-section .v7-narrow {
    width: min(100%, 1400px);
    max-width: 1400px;
  }

  body[data-page="careers"] .v7-jobs-list,
  body[data-page="careers"] .v7-opportunity-card {
    width: min(100%, 900px);
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="careers"] .v7-job-card button {
    padding: 32px;
  }

  body[data-page="careers"] .v7-job-card button > span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  body[data-page="careers"] .v7-job-card button em,
  body[data-page="careers"] .v7-job-card button small {
    order: 1;
  }

  body[data-page="careers"] .v7-job-card button strong {
    order: 2;
    flex-basis: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
  }

  body[data-page="careers"] .v7-opportunity-card {
    margin-top: 64px;
  }

  body[data-page="careers"] .v25-career-facts-band {
    min-height: 198px;
  }

  body[data-page="careers"] .v9-culture-section {
    min-height: 1079px;
  }

  body[data-page="careers"] .v7-positions-section {
    min-height: 1365px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  body[data-page="careers"] .v7-positions-section .v7-section-heading {
    margin-bottom: 64px;
  }

  body[data-page="careers"] .v7-gradient-cta {
    min-height: 539px;
  }
}

@media (max-width: 680px) {
  body[data-page="services"] .v7-hero {
    min-height: 1014px;
  }

  body[data-page="services"] .v7-hero-side {
    display: none;
  }

  body[data-page="services"] .v25-service-proof {
    min-height: 1225px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body[data-page="services"] .v7-services-list {
    min-height: 4116px;
    padding-top: 128px;
    padding-bottom: 128px;
  }

  body[data-page="services"] .v7-service-stack {
    gap: 128px;
  }

  body[data-page="services"] .v7-process-band {
    min-height: 1768px;
    padding-top: 121px;
    padding-bottom: 121px;
  }

  body[data-page="services"] .v7-faq-section {
    min-height: 1113px;
    padding-top: 128px;
    padding-bottom: 128px;
  }

  body[data-page="services"] .v7-gradient-cta {
    min-height: 496px;
  }

  body[data-page="portfolio"] .v7-hero {
    min-height: 815px;
  }

  body[data-page="portfolio"] .v7-hero-side {
    display: none;
  }

  body[data-page="portfolio"] .v7-page > section .container {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  body[data-page="portfolio"] .v9-featured-results {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  body[data-page="portfolio"] .featured-results-grid {
    grid-auto-rows: 198px;
  }

  body[data-page="portfolio"] .v7-stats-band {
    min-height: 748px;
  }

  body[data-page="portfolio"] .v7-soft-cta {
    min-height: 497px;
  }

  body[data-page="portfolio"] .v7-portfolio-list {
    min-height: 6760px;
  }

  body[data-page="journal"] .journal-hero {
    min-height: 628px;
  }

  body[data-page="journal"] .journal-hero .container,
  body[data-page="journal"] .journal-featured .container,
  body[data-page="journal"] .journal-index .container {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  body[data-page="journal"] .journal-featured {
    min-height: 1097px;
  }

  body[data-page="journal"] .journal-index {
    min-height: 8255px;
  }

  body[data-page="team"] .v7-hero {
    min-height: 859px;
  }

  body[data-page="team"] .v7-hero-side {
    display: none;
  }

  body[data-page="team"] .v7-page > section .container {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  body[data-page="team"] .v9-who-section {
    min-height: 2333px;
  }

  body[data-page="team"] .v7-story-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  body[data-page="team"] .v7-timeline {
    gap: 32px;
  }

  body[data-page="team"] .v7-timeline-item > div {
    padding: 24px;
  }

  body[data-page="team"] .v7-timeline-item strong {
    font-size: 2.25rem;
  }

  body[data-page="team"] .v7-timeline-item h3 {
    margin-top: 8px;
    font-size: 1.25rem;
  }

  body[data-page="team"] .v7-timeline-item p {
    margin-top: 8px;
    font-size: 0.875rem;
    line-height: 1.625;
  }

  body[data-page="team"] .v7-team-roster {
    min-height: 21038px;
  }

  body[data-page="team"] .v25-team-category-strip {
    min-height: 422px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body[data-page="team"] .v25-team-category-strip .container {
    align-content: center;
    justify-content: flex-start;
  }

  body[data-page="team"] .v7-value-card strong {
    font-size: 3rem;
  }

  body[data-page="team"] .v25-team-cta {
    min-height: 506px;
  }

  body[data-page="team"] .v7-story-section {
    min-height: 1525px;
  }

  body[data-page="team"] .v7-values-section {
    min-height: 1208px;
  }

  body[data-page="careers"] .v7-hero {
    min-height: 917px;
  }

  body[data-page="careers"] .v7-hero h1 {
    font-size: 3.5rem;
    line-height: 0.95;
  }

  body[data-page="careers"] .v7-hero-side {
    display: none;
  }

  body[data-page="careers"] .v7-page > section .container {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  body[data-page="careers"] .v7-career-story h2,
  body[data-page="careers"] .v9-hiring-section .v7-section-heading h2,
  body[data-page="careers"] .v9-culture-section .v7-section-heading h2,
  body[data-page="careers"] .v7-positions-section .v7-section-heading h2,
  body[data-page="careers"] .v7-gradient-cta h2 {
    font-size: 2.5rem;
    line-height: 0.95;
  }

  body[data-page="careers"] .v7-career-why,
  body[data-page="careers"] .v9-culture-section,
  body[data-page="careers"] .v7-positions-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  body[data-page="careers"] .v9-hiring-section .v7-badge,
  body[data-page="careers"] .v9-culture-section .v7-badge,
  body[data-page="careers"] .v7-positions-section .v7-badge {
    margin-bottom: 24px;
  }

  body[data-page="careers"] .v7-positions-section .v7-section-heading {
    margin-bottom: 64px;
  }

  body[data-page="careers"] .v25-career-facts-band {
    min-height: 330px;
  }

  body[data-page="careers"] .v7-positions-section {
    min-height: 1552px;
  }

  body[data-page="careers"] .v7-gradient-cta {
    min-height: 506px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 680px) {
  .v25-faq-page .v25-faq-hero {
    min-height: 450px;
    padding-top: 160px;
    padding-bottom: 80px;
  }

  .v25-faq-page .v25-faq-hero .container,
  .v25-faq-page .v25-faq-body .v7-narrow {
    padding-right: 32px;
    padding-left: 32px;
  }

  .v25-faq-page .v25-faq-hero h1 {
    font-size: 2.5rem;
    line-height: 0.95;
  }

  .v25-faq-page .v25-faq-body {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .v25-faq-page .v25-faq-cta {
    margin-top: 80px;
    padding: 40px;
  }
}

/* Contact page parity with the published v25 layout. */
body[data-page="contact"] .site-header.header-light {
  background: rgba(255, 255, 255, 0.85);
}

body[data-page="contact"] .site-header .brand {
  width: 168px;
  height: 36px;
  flex: 0 0 168px;
}

body[data-page="contact"] .contact-v9-page .v7-hero .v7-hero-inner {
  display: grid;
  width: min(100%, 1400px);
  padding-top: 96px;
  padding-right: 32px;
  padding-bottom: 96px;
  padding-left: 32px;
}

.contact-v9-page .v7-hero .v7-badge,
.contact-v9-page .contact-request > .v7-badge,
.contact-v9-page .contact-team > .v7-badge {
  min-height: 0;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.contact-v9-page .v7-hero .v7-badge {
  margin-bottom: 32px;
  letter-spacing: 1.2px;
}

.contact-v9-page .v7-hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.3rem);
  font-weight: 500;
  line-height: 0.95;
}

.contact-v9-page .v7-hero-copy > p {
  max-width: 512px;
  margin-top: 32px;
  font-size: 1.125rem;
  line-height: 1.625;
}

.contact-v9-page .contact-hero-points {
  gap: 16px;
  margin-top: 40px;
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.contact-v9-page .contact-hero-points li {
  gap: 12px;
}

.contact-v9-page .contact-hero-points svg {
  width: 16px;
  height: 16px;
}

.contact-v9-page .contact-info-strip {
  min-height: 142px;
  padding: 40px 0;
  background: rgba(240, 246, 255, 0.5);
}

.contact-v9-page .contact-info-strip .container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.contact-v9-page .contact-info-card {
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-v9-page .contact-info-card > span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(3, 98, 230, 0.08);
  color: #0362e6;
}

.contact-v9-page .contact-info-card > span svg {
  width: 20px;
  height: 20px;
}

.contact-v9-page .contact-info-card small {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.contact-v9-page .contact-info-card a,
.contact-v9-page .contact-info-card strong {
  margin-top: 2px;
  color: #0a1628;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.contact-v9-page .contact-info-card p {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1rem;
}

.contact-v9-page .contact-form-grid {
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 80px;
}

.contact-v9-page .contact-request > .v7-badge,
.contact-v9-page .contact-team > .v7-badge {
  margin-bottom: 24px;
}

.contact-v9-page .contact-request h2,
.contact-v9-page .contact-team h2 {
  margin: 0;
  font-weight: 500;
}

.contact-v9-page .contact-request h2 {
  font-size: 3.6rem;
  line-height: 0.95;
}

.contact-v9-page .contact-request > p {
  margin-top: 24px;
  color: #4a5e7a;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.contact-v9-page .contact-form-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 90px;
  gap: 0;
  margin: 48px 0 40px;
}

.contact-v9-page .contact-form-steps span {
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  text-align: center;
  white-space: nowrap;
}

.contact-v9-page .contact-form-steps span:not(:last-child)::after {
  position: absolute;
  top: 20px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 1px;
  background: rgba(3, 98, 230, 0.15);
  content: "";
}

.contact-v9-page .contact-form-steps b {
  flex: 0 0 40px;
  font-size: 0.75rem;
  font-weight: 500;
}

.contact-v9-page .contact-form-step[data-contact-step="1"] {
  display: block;
}

.contact-v9-page .contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  min-height: 340px;
  gap: 20px;
}

.contact-v9-page .contact-fields label {
  display: grid;
  grid-template-rows: 16px 50px;
  gap: 8px;
}

.contact-v9-page .contact-form-step label {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact-v9-page .quote-form input,
.contact-v9-page .quote-form select,
.contact-v9-page .quote-form textarea {
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(3, 98, 230, 0.12);
  border-radius: 14px;
  background: rgba(240, 246, 255, 0.7);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: normal;
  text-transform: none;
}

.contact-v9-page .contact-form-actions {
  flex-direction: row;
  align-items: center;
  min-height: 68px;
  margin-top: 32px;
  padding-top: 24px;
}

.contact-v9-page .contact-form-actions .btn {
  width: auto;
  min-height: 44px;
  padding: 12px 28px;
  border: 0;
  border-radius: 14px;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.contact-v9-page .contact-form-actions .btn svg {
  width: 16px;
  height: 16px;
}

.contact-v9-page .quote-form[aria-busy="true"] .contact-form-actions .btn,
.contact-v9-page .contact-form-actions .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-v9-page .quote-form [aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.7);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.contact-v9-page .contact-confidential {
  min-height: 16px;
  margin: 16px 0 0 !important;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.contact-v9-page .contact-form-step[hidden] {
  display: none;
}

.contact-v9-page .contact-team h2 {
  margin-bottom: 16px;
  font-size: 2.7rem;
  line-height: 0.95;
}

.contact-v9-page .contact-team > p {
  margin: 0;
  color: #4a5e7a;
  font-size: 1rem;
  line-height: 1.625rem;
}

.contact-v9-page .contact-consultants {
  gap: 16px;
  margin-top: 32px;
}

.contact-v9-page .contact-team .consultant {
  min-height: 116px;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(3, 98, 230, 0.08);
  border-radius: 14px;
  background: rgba(240, 246, 255, 0.6);
}

.contact-v9-page .contact-team .consultant-avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: #dceaff;
}

.contact-v9-page .contact-team .consultant-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center top;
  transition: transform 250ms ease;
}

.contact-v9-page .contact-team .consultant:hover .consultant-avatar img {
  transform: scale(1.05);
}

.contact-v9-page .contact-team .consultant-copy {
  min-width: 0;
  flex: 1;
}

.contact-v9-page .contact-team .consultant h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6875rem;
}

.contact-v9-page .contact-team .consultant p {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.contact-v9-page .contact-team .consultant-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 7px;
  color: #0362e6;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.contact-v9-page .contact-team .consultant-phone svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.contact-v9-page .contact-team .consultant-phone span {
  color: #64748b;
  font-weight: 500;
}

.contact-v9-page .contact-team .consultant-phone strong {
  color: #0362e6;
  font-weight: 600;
}

.contact-v9-page .contact-team .consultant-phone:hover strong {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-v9-page .contact-team .consultant-phone:focus-visible {
  border-radius: 4px;
  outline: 2px solid #0362e6;
  outline-offset: 3px;
}

.contact-v9-page .contact-team .consultant > svg {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #0362e6;
}

.contact-v9-page .contact-urgent {
  margin-top: 32px;
  padding: 32px;
  border-radius: 16px;
}

.contact-v9-page .contact-urgent > span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.contact-v9-page .contact-urgent > span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dd3fc;
  content: "";
}

.contact-v9-page .contact-urgent h3 {
  margin: 16px 0 12px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.contact-v9-page .contact-urgent p {
  margin: 0 0 24px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.875rem;
  line-height: 1.625;
}

.contact-v9-page .contact-urgent a {
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.contact-v9-page .contact-team-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 112px 71px;
  height: 185px;
  gap: 0;
  margin-top: 32px;
  border-radius: 16px;
}

.contact-v9-page .contact-team-facts > div {
  display: grid;
  align-content: center;
  height: 112px;
  padding: 24px;
}

.contact-v9-page .contact-team-facts > div strong {
  margin: 0 0 4px;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.contact-v9-page .contact-team-facts > div small {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.contact-v9-page .contact-team-facts > span {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 16px 8px;
}

.contact-v9-page .contact-team-facts > span strong {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

.contact-v9-page .contact-call-band .container {
  padding-right: 32px;
  padding-left: 32px;
}

.contact-v9-page .contact-call-band h2 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 0.95;
}

.contact-v9-page .contact-call-band p {
  margin: 24px 0 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.contact-v9-page .contact-call-band .btn {
  min-height: 76px;
  margin-top: 40px;
  padding: 20px 40px;
  border: 0;
  border-radius: 14px;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
}

@media (max-width: 980px) {
  .contact-v9-page .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  body[data-page="contact"] .contact-v9-page .v7-hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .contact-v9-page .v7-hero-side {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 920px) {
  body[data-page="contact"] .site-header .container.nav-inner {
    width: min(100%, 1400px);
    min-height: 86px;
    padding-right: 32px;
    padding-left: 32px;
  }

  body[data-page="contact"] .site-header .nav-links {
    position: static;
    inset: auto;
    display: flex;
    gap: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body[data-page="contact"] .site-header .nav-link {
    padding: 0;
  }

  body[data-page="contact"] .site-header .nav-contact {
    margin-top: 0;
  }

  body[data-page="contact"] .site-header .menu-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  body[data-page="contact"] .site-header .container.nav-inner {
    width: 100%;
    min-height: 84px;
    padding-right: 32px;
    padding-left: 32px;
  }

  body[data-page="contact"] .site-header .nav-links {
    top: 84px;
  }
}

@media (max-width: 680px) {
  .contact-v9-page .v7-hero {
    padding-top: 96px;
  }

  .contact-v9-page .contact-info-strip {
    min-height: 410px;
  }

  body[data-page="contact"] .v7-page > section .container {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  .contact-v9-page .v7-hero-inner,
  .contact-v9-page .contact-info-strip .container,
  .contact-v9-page .contact-form-section .container,
  .contact-v9-page .contact-call-band .container {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  .contact-v9-page .v7-hero-inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .contact-v9-page .v7-hero h1 {
    font-size: 3.5rem;
  }

  .contact-v9-page .v7-hero-copy > p {
    font-size: 1.125rem;
    line-height: 1.625;
  }

  .contact-v9-page .contact-info-strip .container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-v9-page .contact-info-card {
    padding: 0;
  }

  .contact-v9-page .contact-request h2 {
    font-size: 2.5rem;
  }

  .contact-v9-page .contact-fields {
    grid-template-columns: 1fr;
    min-height: 356px;
  }

  .contact-v9-page .contact-team h2,
  .contact-v9-page .contact-call-band h2 {
    font-size: 2rem;
  }

  .contact-v9-page .contact-team .consultant {
    gap: 12px;
    padding: 16px;
  }

  .contact-v9-page .contact-team .consultant-phone {
    flex-wrap: wrap;
    white-space: normal;
  }

  .contact-v9-page .contact-team-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Privacy page parity with the published v25 layout. */
.v25-privacy-page .v25-privacy-hero {
  min-height: 0;
  padding: 160px 0 80px;
}

.v25-privacy-page .v25-privacy-hero .container,
.v25-privacy-page .v25-legal article {
  width: min(100%, 900px);
  padding-right: 32px;
  padding-left: 32px;
}

.v25-privacy-page .v25-privacy-hero .eyebrow {
  margin: 0 0 16px;
  color: #0362e6;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.2em;
}

.v25-privacy-page .v25-privacy-hero h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.95;
}

.v25-privacy-page .v25-privacy-hero .container > p:last-child {
  max-width: none;
  margin: 24px 0 0;
  color: rgba(10, 22, 40, 0.5);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.v25-privacy-page .v25-legal {
  padding: 80px 0;
}

.v25-privacy-page .v25-legal article {
  color: rgba(10, 22, 40, 0.75);
  font-size: 1rem;
  line-height: 1.625rem;
}

.v25-privacy-page .v25-legal article > div + div {
  margin-top: 40px;
}

.v25-privacy-page .v25-legal h2 {
  margin: 0 0 16px;
  color: #0a1628;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.v25-privacy-page .v25-legal p,
.v25-privacy-page .v25-legal article > div:first-child p {
  margin: 0;
  color: rgba(10, 22, 40, 0.75);
  font-size: 1rem;
  line-height: 1.625rem;
}

.v25-privacy-page .v25-legal p + p,
.v25-privacy-page .v25-legal ul + p {
  margin-top: 12px;
}

.v25-privacy-page .v25-legal ul {
  display: block;
  margin: 12px 0 0;
  padding-left: 24px;
  color: rgba(10, 22, 40, 0.75);
  font-size: 1rem;
  line-height: 1.625rem;
  list-style: disc;
}

.v25-privacy-page .v25-legal li + li {
  margin-top: 8px;
}

.v25-privacy-page .v25-legal address {
  margin-top: 16px;
  color: rgba(10, 22, 40, 0.75);
  font-style: normal;
}

.v25-privacy-page .v25-legal address p,
.v25-privacy-page .v25-legal address p + p {
  margin: 0 0 4px;
}

.v25-privacy-page .v25-legal address p:nth-child(4) {
  margin-top: 8px;
}

.v25-privacy-page .v25-legal address p:last-child {
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .v25-privacy-page .v25-privacy-hero {
    min-height: 392px;
  }

  .v25-privacy-page .v25-privacy-hero h1 {
    font-size: 2.5rem;
  }

  .v25-privacy-page .v25-privacy-hero .container,
  .v25-privacy-page .v25-legal article {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }

  .v25-privacy-page .v25-legal > .container {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .v25-privacy-page .v25-legal {
    min-height: 8342px;
  }
}

@media (min-width: 981px) {
  .v25-privacy-page .v25-legal {
    min-height: 4908px;
  }
}

/* Shared footer geometry mirrors the approved v25 reference across all routes. */
.site-footer > .container {
  width: min(100%, 1400px);
  padding: 80px 32px;
}

.site-footer .footer-grid,
body[data-page="home"] .site-footer .footer-grid {
  gap: 64px;
  margin: 0 0 80px;
  padding: 0;
}

.site-footer .footer-brand .brand {
  display: flex;
  width: 160px;
  height: 34px;
}

.site-footer .footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 22.75px;
}

.site-footer .footer-title {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

.site-footer .footer-links {
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
}

.site-footer .footer-links a,
.site-footer .footer-links span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 20px;
}

.site-footer .footer-grid > div:last-child .footer-links {
  gap: 16px;
}

.site-footer .footer-grid > div:last-child .footer-links a {
  line-height: 24px;
}

.site-footer .footer-grid > div:last-child .footer-links span {
  line-height: 22.75px;
}

.site-footer .footer-bottom,
body[data-page="home"] .site-footer .footer-bottom {
  gap: 24px;
  padding: 32px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
}

.site-footer .footer-bottom p,
.site-footer .legal-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
}

.site-footer .socials,
.site-footer .legal-links {
  gap: 24px;
}

.site-footer .socials a,
.site-footer .socials svg {
  width: 18px;
  height: 18px;
}

.site-footer .socials a {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 980px) {
  .site-footer .footer-bottom,
  body[data-page="home"] .site-footer .footer-bottom {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid,
  body[data-page="home"] .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage parity with the published v25 hero, proof strip, and services. */
body[data-page="home"] .home-hero-v25 {
  align-items: stretch;
  height: auto;
  min-height: 100svh;
  overflow: hidden;
}

body[data-page="home"] .hero-video-overlay {
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.6), rgba(5, 15, 35, 0.5) 50%, rgba(5, 15, 35, 0.72));
}

body[data-page="home"] .hero-v25-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1280px);
  min-height: 100svh;
  padding: 128px 32px 80px;
}

body[data-page="home"] .hero-v25-copy {
  width: min(100%, 920px);
  text-align: center;
  transform: none;
}

body[data-page="home"] .home-hero-v25 .hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 auto 40px;
  padding: 6px 16px;
  border: 1px solid rgba(3, 98, 230, 0.38);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.18);
  color: rgb(147, 197, 253);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

body[data-page="home"] .hero-title-stage {
  width: fit-content;
  margin-inline: auto;
  perspective: 800px;
}

body[data-page="home"] .hero-title-v25 {
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  display: grid;
  margin: 0;
  color: #fff;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: 136px;
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: 0;
  text-wrap: balance;
  transform: rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 160ms ease-out;
  will-change: transform;
}

body[data-page="home"] .hero-text-v25,
body[data-page="home"] .hero-text.hero-text-v25 {
  max-width: 672px;
  margin: 36px auto 0;
  color: rgba(196, 220, 245, 0.82);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: 0;
}

body[data-page="home"] .hero-actions-v25 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

body[data-page="home"] .hero-actions-v25 .btn {
  width: auto;
  min-width: 0;
  min-height: 56px;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
}

body[data-page="home"] .hero-actions-v25 .btn-primary {
  background: linear-gradient(135deg, #0362e6, #239bff);
  box-shadow: 0 4px 24px rgba(3, 98, 230, 0.55), 0 1px 4px rgba(3, 98, 230, 0.3);
}

body[data-page="home"] .hero-actions-v25 .btn-ghost {
  min-height: 58px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

body[data-page="home"] .hero-scroll-cue {
  position: relative;
  inset: auto;
  display: block;
  width: 28px;
  height: 48px;
  margin: 64px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

body[data-page="home"] .hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 48px;
  margin-inline: auto;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.25);
  animation: v25-scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
}

body[data-page="home"] .hero-curve {
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 74px;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
}

body[data-page="home"] .hero-curve svg {
  display: block;
  width: 100%;
  height: 100%;
}

body[data-page="home"] .hero-curve path {
  fill: #f7faff;
}

body[data-page="home"] .stat-strip {
  border: 0;
  border-block: 1px solid rgba(3, 98, 230, 0.08);
  background: #fff;
}

body[data-page="home"] .stat-strip > .container {
  width: min(100%, 1280px);
  padding: 32px;
}

body[data-page="home"] .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 140px;
  padding: 20px 32px;
  border: 0;
}

body[data-page="home"] .stat-item + .stat-item {
  border: 0;
}

body[data-page="home"] .stat-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  border-radius: 8px;
  background: rgba(3, 98, 230, 0.08);
  color: #0362e6;
}

body[data-page="home"] .stat-icon svg {
  width: 16px;
  height: 16px;
}

body[data-page="home"] .stat-value {
  color: #0362e6;
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
}

body[data-page="home"] .stat-label {
  margin: 0;
  color: #64748b;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page="home"] .stat-trust-band {
  height: 123px;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(3, 98, 230, 0.08);
  background: #fafcff;
}

body[data-page="home"] .stat-trust-band > p {
  margin: 0 0 16px;
  color: #94a3b8;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

body[data-page="home"] .firm-ticker {
  position: relative;
  height: 50px;
  overflow: hidden;
}

body[data-page="home"] .firm-ticker::before,
body[data-page="home"] .firm-ticker::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 96px;
  content: "";
  pointer-events: none;
}

body[data-page="home"] .firm-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #fafcff, rgba(250, 252, 255, 0));
}

body[data-page="home"] .firm-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #fafcff, rgba(250, 252, 255, 0));
}

body[data-page="home"] .firm-ticker-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: v25-firm-ticker 48s linear infinite;
  will-change: transform;
}

body[data-page="home"] .firm-ticker:hover .firm-ticker-track {
  animation-play-state: paused;
}

body[data-page="home"] .firm-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  padding: 10px 16px;
  border: 1px solid rgba(3, 98, 230, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(3, 98, 230, 0.06);
  color: #4a5e7a;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

body[data-page="home"] .firm-pill img {
  width: auto;
  max-width: 80px;
  height: 28px;
  object-fit: contain;
}

body[data-page="home"] .services-preview {
  min-height: 0;
  background: #f7faff;
}

body[data-page="home"] .service-tab {
  min-height: 42px;
  padding: 10px 20px;
  border: 1.5px solid rgba(3, 98, 230, 0.15);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  color: #4a5e7a;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

body[data-page="home"] .service-tab.active {
  border-color: #0362e6;
  background: linear-gradient(135deg, var(--active-color, #0362e6), #239bff);
  color: #fff;
  box-shadow: 0 4px 16px rgba(3, 98, 230, 0.21);
}

@keyframes v25-scroll-line {
  0%, 100% { opacity: 0.28; transform: scaleY(0.42); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes v25-firm-ticker {
  to { transform: translateX(calc(-50% - 12px)); }
}

@media (max-width: 760px) {
  .v7-chat-shell {
    bottom: 16px;
  }

  body[data-page="home"] .hero-v25-inner {
    width: 100%;
    padding: 128px 32px 80px;
  }

  body[data-page="home"] .home-hero-v25 .hero-kicker {
    margin-bottom: 40px;
    font-size: 12px;
  }

  body[data-page="home"] .hero-title-v25 {
    font-size: 3.6rem;
    line-height: 0.93;
  }

  body[data-page="home"] .hero-text-v25,
  body[data-page="home"] .hero-text.hero-text-v25 {
    margin-top: 36px;
    font-size: 18px;
    line-height: 29.25px;
  }

  body[data-page="home"] .hero-actions-v25 {
    display: grid;
    width: 100%;
    max-width: 360px;
    margin: 40px auto 0;
  }

  body[data-page="home"] .hero-actions-v25 .btn {
    width: 100%;
  }

  body[data-page="home"] .hero-scroll-cue {
    display: block;
  }

  body[data-page="home"] .hero-curve {
    height: 40px;
  }

  body[data-page="home"] .stat-strip > .container {
    padding: 24px 16px;
  }

  body[data-page="home"] .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .stat-item {
    height: 128px;
    padding: 16px 8px;
  }

  body[data-page="home"] .stat-trust-band {
    height: 123px;
  }

  body[data-page="home"] .firm-ticker::before,
  body[data-page="home"] .firm-ticker::after {
    width: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-title-v25 {
    transition: none;
  }

  body[data-page="home"] .hero-scroll-cue span,
  body[data-page="home"] .firm-ticker-track {
    animation: none;
  }
}

/* Final v25 layout constraints; kept last to outrank earlier legacy home rules. */
body[data-page="home"] .v25-home-section > .container {
  width: min(100%, 1280px);
  max-width: 1280px;
  padding-inline: 32px;
}

body[data-page="home"] .v25-services .v25-service-display {
  width: 100%;
  max-width: 1152px;
  margin-inline: auto;
}

body[data-page="home"] .v25-results-section .v25-section-heading h2 {
  line-height: 1;
}

body[data-page="home"] .v25-results-section .v25-section-heading h2 span {
  margin-left: 0.08em;
}

body[data-page="home"] .v25-results-section > .container {
  width: min(100%, 1536px);
  max-width: 1536px;
  padding-inline: 32px;
}

body[data-page="home"] .v25-results-display {
  width: 100%;
  max-width: 1472px;
  height: 520px;
  margin-inline: auto;
}

body[data-page="home"] .v25-results-display .case-result-card {
  width: 100%;
  height: 520px;
}

body[data-page="home"] .case-result-heading {
  margin: 0;
  color: #fff;
  font-weight: 400;
}

body[data-page="home"] .case-result-heading .case-result-title {
  display: block;
}

body[data-page="home"] .v25-results-section .case-result-content {
  width: 43%;
  margin-left: 57%;
}

body[data-page="home"] .v25-results-section .case-result-description {
  font-size: 14px;
}

body[data-page="home"] .v25-results-section .case-result-actions .btn {
  padding-inline: 16px;
  font-size: 12px;
}

body[data-page="home"] .v25-compare-toggle-row button svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 760px) {
  body[data-page="home"] .v25-home-section > .container {
    width: min(100% - 32px, 1216px);
    padding-inline: 0;
  }

  body[data-page="home"] .v25-results-section .case-result-content {
    width: 100%;
    margin-left: 0;
  }

  body[data-page="home"] .v25-results-section > .container {
    width: min(100% - 32px, 1472px);
    padding-inline: 0;
  }

  body[data-page="home"] .v25-results-display,
  body[data-page="home"] .v25-results-display .case-result-card {
    height: auto;
  }
}

/* Published v25 custom-scroll Process sequence. */
body[data-page="home"] .home-process-scroll {
  --current-stage-color: #2a8fff;
  position: relative;
  height: 520vh;
  min-height: 0;
}

body[data-page="home"] .home-process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #eaf2ff;
}

body[data-page="home"] .home-process-bg,
body[data-page="home"] .home-process-grid-bg {
  position: absolute;
  inset: 0;
}

body[data-page="home"] .home-process-bg {
  background: linear-gradient(160deg, #eef4ff 0%, #e6efff 50%, #f0f5ff 100%);
}

body[data-page="home"] .home-process-grid-bg {
  background-image: radial-gradient(circle, rgba(3, 98, 230, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: none;
}

body[data-page="home"] .home-process-heading {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: min(92vw, 900px);
  opacity: 1;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -58%);
  transition: top 700ms ease, opacity 500ms ease, transform 700ms ease;
}

body[data-page="home"] .home-process-heading > p {
  margin: 0 0 8px;
  color: #0362e6;
  font: 700 12px/1.25 Inter, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-process-heading h2 {
  margin: 0;
  color: #0a1628;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  transition: font-size 700ms ease;
}

body[data-page="home"] .home-process-heading h2 span {
  background: linear-gradient(135deg, #0362e6, #4ba8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body[data-page="home"] .home-process-hint {
  position: absolute;
  z-index: 21;
  top: calc(50% + 108px);
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 300ms ease, transform 400ms ease;
}

body[data-page="home"] .home-process-hint small {
  color: rgba(3, 98, 230, 0.5);
  font: 500 12px/1 Inter, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="home"] .home-process-hint span {
  width: 1px;
  height: 28px;
  margin-top: 16px;
  background: linear-gradient(to bottom, #0362e6, transparent);
  animation: v25-process-cue 1.6s ease-in-out infinite;
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading {
  top: 104px;
  transform: translateX(-50%);
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading > p {
  opacity: 1;
  pointer-events: auto;
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

body[data-page="home"] .home-process-scroll.is-engaged .home-process-hint {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
}

body[data-page="home"] .home-process-scroll.is-ending .home-process-stage.active,
body[data-page="home"] .home-process-scroll.is-ending .home-process-status {
  opacity: 0;
  pointer-events: none;
}

body[data-page="home"] .home-process-scroll.is-ending .home-process-stage.active {
  transform: translateY(-6px) scale(0.998);
  transition-duration: 1200ms;
}

body[data-page="home"] .home-process-scroll.is-ending .home-process-status {
  transition-duration: 900ms;
}

body[data-page="home"] .home-process-stage-shell {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: min(920px, 92vw);
  height: 545px;
  margin-top: 20px;
  transform: translate(-50%, -46%);
}

body[data-page="home"] .home-process-stage {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  min-height: 545px;
  grid-template-columns: 1fr 1.25fr;
  grid-template-rows: 4px minmax(0, 1fr);
  border: 1px solid rgba(3, 98, 230, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(3, 98, 230, 0.06), 0 24px 64px rgba(3, 98, 230, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.8);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.995);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .home-process-stage.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

body[data-page="home"] .home-process-topline {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, var(--stage-color), color-mix(in srgb, var(--stage-color) 31%, transparent), transparent);
}

body[data-page="home"] .home-process-scene {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse at 50% 50%, color-mix(in srgb, var(--stage-color) 13%, transparent) 0%, transparent 65%),
    linear-gradient(160deg, #071020 0%, #0a1830 100%);
  color: #fff;
}

body[data-page="home"] .home-process-scene::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}

body[data-page="home"] .home-process-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

body[data-page="home"] .home-process-orbit.outer {
  width: 380px;
  height: 380px;
  border: 1px solid color-mix(in srgb, var(--stage-color) 21%, transparent);
  box-shadow: 0 0 60px color-mix(in srgb, var(--stage-color) 7%, transparent) inset;
  animation: v25-process-orbit 40s linear infinite;
}

body[data-page="home"] .home-process-orbit.inner {
  width: 260px;
  height: 260px;
  border: 1.5px dashed color-mix(in srgb, var(--stage-color) 33%, transparent);
  animation: v25-process-orbit-reverse 30s linear infinite;
}

body[data-page="home"] .home-process-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stage-color);
  box-shadow: 0 0 20px var(--stage-color), 0 0 40px color-mix(in srgb, var(--stage-color) 50%, transparent);
  transform: translate(-50%, -50%);
}

body[data-page="home"] .home-process-scene-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--stage-color) 38%, transparent);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--stage-color) 15%, transparent), 0 0 50px color-mix(in srgb, var(--stage-color) 13%, transparent);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(24px);
}

body[data-page="home"] .home-process-scene-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

body[data-page="home"] .home-process-scene-number {
  color: rgba(255, 255, 255, 0.5);
  font: 400 11px/1 var(--font-headline), "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="home"] .home-process-scene-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--stage-color);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--stage-color) 38%, transparent);
}

body[data-page="home"] .home-process-scene-icon svg {
  width: 16px;
  height: 16px;
}

body[data-page="home"] .home-process-scene-title {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
}

body[data-page="home"] .home-process-scene-title small {
  color: var(--stage-color);
  font: 600 10px/1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .home-process-scene-title strong {
  color: #fff;
  font: 400 1.3rem/1.1 var(--font-headline), "Bebas Neue", sans-serif;
}

body[data-page="home"] .home-process-scene-stat {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .home-process-scene-stat strong {
  color: var(--stage-color);
  font: 400 2rem/1 var(--font-headline), "Bebas Neue", sans-serif;
}

body[data-page="home"] .home-process-scene-stat span {
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.55);
  font: 400 11px/1.2 Inter, sans-serif;
}

body[data-page="home"] .home-process-scene-progress {
  display: flex;
  height: 3px;
  gap: 4px;
  margin-top: 14px;
  overflow: visible;
  background: none;
}

body[data-page="home"] .home-process-scene-progress span {
  display: block;
  width: auto;
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .home-process-scene-progress span.active {
  flex: 2;
  background: var(--stage-color);
}

body[data-page="home"] .home-process-scene-progress span.complete {
  background: color-mix(in srgb, var(--stage-color) 44%, transparent);
}

body[data-page="home"] .home-process-detail {
  display: flex;
  min-height: 460px;
  justify-content: center;
  flex-direction: column;
  padding: 44px 40px;
  background: #fff;
}

body[data-page="home"] .home-process-detail > * {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .home-process-stage.active .home-process-detail > * {
  opacity: 1;
  transform: none;
}

body[data-page="home"] .home-process-stage.active .home-process-detail > :nth-child(1) { transition-delay: 80ms; }
body[data-page="home"] .home-process-stage.active .home-process-detail > :nth-child(2) { transition-delay: 120ms; }
body[data-page="home"] .home-process-stage.active .home-process-detail > :nth-child(3) { transition-delay: 160ms; }
body[data-page="home"] .home-process-stage.active .home-process-detail > :nth-child(4) { transition-delay: 200ms; }
body[data-page="home"] .home-process-stage.active .home-process-detail > :nth-child(5) { transition-delay: 240ms; }
body[data-page="home"] .home-process-stage.active .home-process-detail > :nth-child(6) { transition-delay: 280ms; }

body[data-page="home"] .home-process-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--stage-color);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--stage-color) 25%, transparent);
  color: #fff;
  font: 700 11px/1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: none;
}

body[data-page="home"] .home-process-badge svg {
  width: 13px;
  height: 13px;
}

body[data-page="home"] .home-process-eyebrow {
  margin: 0 0 8px;
  color: var(--stage-color);
  font: 700 11px/1 Inter, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="home"] .home-process-detail h3 {
  margin: 0 0 16px;
  color: #0a1628;
  font-family: var(--font-headline), "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

body[data-page="home"] .home-process-headline {
  margin: 0 0 32px;
  color: #3a5070;
  font: 400 clamp(0.95rem, 1.4vw, 1.1rem)/1.6 Inter, sans-serif;
}

body[data-page="home"] .home-process-facts {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .home-process-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1e3a5a;
  font: 400 14px/1.65 Inter, sans-serif;
}

body[data-page="home"] .home-process-fact-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  margin-top: 1px;
  border: 1.5px solid color-mix(in srgb, var(--stage-color) 31%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--stage-color) 8%, transparent);
  color: var(--stage-color);
}

body[data-page="home"] .home-process-facts .home-process-fact-icon svg {
  width: 12px;
  height: 12px;
  margin: 0;
  color: inherit;
}

body[data-page="home"] .home-process-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 20px;
  border: 1px solid color-mix(in srgb, var(--stage-color) 15%, transparent);
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--stage-color) 7%, transparent), color-mix(in srgb, var(--stage-color) 3%, transparent));
}

body[data-page="home"] .home-process-stat strong {
  color: var(--stage-color);
  font: 400 2rem/1 var(--font-headline), "Bebas Neue", sans-serif;
}

body[data-page="home"] .home-process-stat span {
  color: #3a5070;
  font: 400 13px/1.4 Inter, sans-serif;
}

body[data-page="home"] .home-process-status {
  position: absolute;
  z-index: 15;
  bottom: 52px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 500ms ease;
}

body[data-page="home"] .home-process-scroll:not([data-current-stage="0"]) .home-process-status {
  opacity: 1;
}

body[data-page="home"] .home-process-scroll.is-ending:not([data-current-stage="0"]) .home-process-status {
  opacity: 0;
}

body[data-page="home"] .home-process-dots {
  display: flex;
  gap: 12px;
}

body[data-page="home"] .home-process-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.15);
  transition: width 500ms ease, background 500ms ease;
}

body[data-page="home"] .home-process-dot.active {
  width: 28px;
  background: var(--current-stage-color);
}

body[data-page="home"] .home-process-dot.complete {
  background: color-mix(in srgb, var(--current-stage-color) 33%, transparent);
}

body[data-page="home"] .home-process-stage-caption {
  color: var(--current-stage-color);
  font: 700 11px/1 var(--font-headline), "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  opacity: 0.6;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="home"] .home-process-cta {
  position: absolute;
  z-index: 30;
  right: 48px;
  bottom: 52px;
  min-height: 0;
  padding: 14px 28px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #0362e6, #4ba8ff);
  box-shadow: 0 4px 20px rgba(3, 98, 230, 0.45);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

body[data-page="home"] .home-process-scroll.show-cta .home-process-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@keyframes v25-process-cue {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.2); }
}

@keyframes v25-process-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes v25-process-orbit-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@media (max-width: 980px) {
  body[data-page="home"] .home-process-heading {
    width: calc(100vw - 24px);
  }

  body[data-page="home"] .home-process-scroll.is-engaged .home-process-heading {
    top: 86px;
  }

  body[data-page="home"] .home-process-stage-shell {
    top: 144px;
    bottom: 82px;
    width: min(620px, calc(100vw - 24px));
    height: auto;
    margin: 0;
    transform: translateX(-50%);
  }

  body[data-page="home"] .home-process-stage {
    min-height: 0;
    max-height: calc(100svh - 180px);
    grid-template-columns: 1fr;
    grid-template-rows: 4px 148px minmax(0, 1fr);
    overflow-y: auto;
    border-radius: 18px;
  }

  body[data-page="home"] .home-process-topline {
    grid-row: 1;
  }

  body[data-page="home"] .home-process-scene {
    min-height: 148px;
    grid-row: 2;
    border-right: 0;
  }

  body[data-page="home"] .home-process-orbit.outer {
    width: 160px;
    height: 160px;
  }

  body[data-page="home"] .home-process-orbit.inner {
    width: 96px;
    height: 96px;
  }

  body[data-page="home"] .home-process-scene-card {
    display: none;
  }

  body[data-page="home"] .home-process-detail {
    min-height: 0;
    grid-row: 3;
    padding: 24px;
  }

  body[data-page="home"] .home-process-badge {
    margin-bottom: 14px;
  }

  body[data-page="home"] .home-process-detail h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }

  body[data-page="home"] .home-process-headline {
    margin-bottom: 18px;
    font-size: 14px;
  }

  body[data-page="home"] .home-process-facts {
    gap: 8px;
  }

  body[data-page="home"] .home-process-facts li {
    font-size: 12px;
    line-height: 1.45;
  }

  body[data-page="home"] .home-process-stat {
    margin-top: 16px;
    padding: 10px 14px;
  }

  body[data-page="home"] .home-process-status {
    bottom: 24px;
    gap: 9px;
  }

  body[data-page="home"] .home-process-cta {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }

  body[data-page="home"] .home-process-scroll.show-cta .home-process-status {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-process-hint span,
  body[data-page="home"] .home-process-orbit {
    animation: none;
  }

  body[data-page="home"] .home-process-detail > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final testimonial layout parity with the published v25 component. */
body[data-page="home"] .v9-testimonials {
  min-height: 0;
  padding: 112px 0;
  background: #f4f8ff;
}

body[data-page="home"] .v9-testimonials > .container {
  width: min(100%, 1280px);
  max-width: 1280px;
  padding-inline: 32px;
}

body[data-page="home"] .v9-testimonials .section-heading {
  margin-bottom: 56px;
}

body[data-page="home"] .v9-testimonials .section-heading > .eyebrow {
  margin: 0 0 16px;
  color: #0362e6;
  font: 500 12px/1.25 Inter, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .v9-testimonials .section-heading h2 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1;
}

body[data-page="home"] .testimonial-shell {
  width: min(100%, 768px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .testimonial-card-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(3, 98, 230, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 48px rgba(3, 98, 230, 0.1), 0 2px 16px rgba(3, 98, 230, 0.06);
}

body[data-page="home"] .testimonial-progress {
  height: 2px;
}

body[data-page="home"] .testimonial-card {
  display: block;
  width: 100%;
  min-height: 0;
}

body[data-page="home"] #testimonial-display,
body[data-page="home"] .testimonial-main {
  width: 100%;
  min-height: 0;
  padding: 56px;
}

body[data-page="home"] #testimonial-display {
  padding: 0;
}

body[data-page="home"] .testimonial-main .stars {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1;
}

body[data-page="home"] .testimonial-main .quote-mark {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 0 16px;
  font-size: 3.4rem;
  line-height: 36px;
}

body[data-page="home"] .testimonial-main > p {
  flex: none;
  margin: 0 0 32px;
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.625;
}

body[data-page="home"] .testimonial-person {
  display: grid;
  gap: 4px;
  margin: 0;
}

body[data-page="home"] .testimonial-person strong {
  color: #0a1628;
  font: 600 16px/1.5 Inter, sans-serif;
}

body[data-page="home"] .testimonial-person small {
  color: #64748b;
  font: 400 14px/1.4 Inter, sans-serif;
}

body[data-page="home"] .testimonial-controls {
  align-items: center;
  flex-direction: row;
  margin-top: 24px;
  padding: 0;
}

body[data-page="home"] .testimonial-controls .testimonial-arrows {
  display: flex;
  gap: 12px;
}

body[data-page="home"] .testimonial-arrows .icon-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(3, 98, 230, 0.2);
  background: #fff;
  color: #0362e6;
}

body[data-page="home"] .testimonial-arrows .icon-btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #0362e6, #239bff);
  color: #fff;
}

body[data-page="home"] .testimonial-arrows .icon-btn svg {
  width: 20px;
  height: 20px;
}

body[data-page="home"] .testimonial-dots {
  gap: 6px;
}

body[data-page="home"] .testimonial-dots button {
  width: 7px;
  height: 7px;
  min-width: 0;
  padding: 0;
  border: 0;
}

body[data-page="home"] .testimonial-dots button.active {
  width: 22px;
}

body[data-page="home"] .testimonial-controls > span {
  flex: 0 0 auto;
  color: #94a3b8;
  font: 400 14px/20px Inter, sans-serif;
  white-space: nowrap;
}

body[data-page="home"] .testimonial-controls > span b {
  font-weight: 400;
}

@media (max-width: 680px) {
  body[data-page="home"] .v9-testimonials {
    padding: 112px 0;
  }

  body[data-page="home"] .v9-testimonials > .container {
    width: 100%;
    padding-inline: 16px;
  }

  body[data-page="home"] .v9-testimonials .section-heading {
    margin-bottom: 48px;
  }

  body[data-page="home"] .testimonial-main {
    padding: 40px;
  }
}

/* Case Features: Figma sizing and canonical case-detail experience. */
body[data-page="portfolio"] .v7-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 636px);
  gap: 64px;
}

body[data-page="portfolio"] .v7-portfolio-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="portfolio"] .v7-mosaic-card,
body[data-page="portfolio"] .v7-mosaic-card.lower {
  height: 196px;
  margin-top: 0;
  border-radius: 14px;
}

body[data-page="portfolio"] .v9-featured-results {
  padding: 96px 0;
}

body[data-page="portfolio"] .portfolio-landmark-heading {
  max-width: none;
  margin-bottom: 86px;
}

body[data-page="portfolio"] .portfolio-landmark-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 6px 15px;
  border: 1px solid rgba(3, 98, 230, 0.18);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="portfolio"] .portfolio-landmark-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.v25-case-detail {
  background: #f7faff;
}

.v25-case-detail .case-detail-hero {
  min-height: 80svh;
  isolation: isolate;
}

.v25-case-detail .case-detail-hero.has-video {
  min-height: 90svh;
}

.case-detail-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: #050f23;
}

.case-detail-hero-media .case-detail-hero-image,
.case-detail-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-hero-video {
  max-width: none;
  opacity: 0;
  transition: opacity 600ms ease;
}

.case-detail-hero.media-ready .case-detail-hero-video {
  opacity: 1;
}

.case-detail-hero.media-failed .case-detail-hero-video {
  display: none;
}

.v25-case-detail .case-detail-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 15, 35, 0.94), rgba(5, 15, 35, 0.62) 56%, rgba(5, 15, 35, 0.16)),
    linear-gradient(to top, rgba(5, 15, 35, 0.88), rgba(5, 15, 35, 0.05) 66%);
}

.v25-case-detail .case-detail-hero-inner {
  z-index: 1;
  width: min(100%, 1400px);
  padding-top: 154px;
  padding-bottom: 80px;
}

.v25-case-detail .case-detail-hero .article-back {
  color: rgba(255, 255, 255, 0.82);
}

.v25-case-detail .case-detail-labels {
  margin-top: 44px;
}

.v25-case-detail .case-detail-amount {
  display: block;
  margin-top: 28px;
  color: #72b7ff;
  font-family: var(--font-headline);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.v25-case-detail .case-detail-hero h1 {
  max-width: 920px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 0.98;
}

.case-detail-sound {
  position: absolute;
  z-index: 3;
  top: 124px;
  right: max(24px, calc((100vw - 1400px) / 2 + 32px));
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 15, 35, 0.46);
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.case-detail-sound svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.case-detail-sound .sound-wave {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.case-detail-sound[aria-pressed="false"] .sound-wave {
  opacity: 0.35;
}

.case-watch-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.case-watch-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 200ms ease, transform 200ms ease;
  backdrop-filter: blur(12px);
}

.case-watch-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
}

.case-watch-cta:hover .case-watch-icon {
  background: var(--blue);
  transform: scale(1.06);
}

.case-watch-cta > span:last-child {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-watch-cta small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.v25-case-detail .case-detail-content {
  padding: 112px 0 124px;
  background: #f7faff;
}

.v25-case-detail .case-detail-layout {
  grid-template-columns: minmax(0, 760px) minmax(300px, 360px);
  gap: 72px;
}

.case-detail-story {
  display: grid;
  gap: 72px;
}

.case-copy-section {
  padding-top: 30px;
  border-top: 1px solid rgba(3, 98, 230, 0.14);
}

.case-copy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.case-section-label {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-copy-section h2 {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 0.98;
  text-wrap: balance;
}

.case-copy {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.case-copy p {
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.85;
}

.case-copy h3,
.case-copy h4 {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 750;
  line-height: 1.35;
}

.case-copy h3 {
  font-size: 1.35rem;
}

.case-copy h4 {
  font-size: 1.12rem;
}

.case-copy ul,
.case-copy ol {
  display: grid;
  gap: 10px;
  padding-left: 1.35rem;
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.75;
}

.case-copy a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.case-copy blockquote {
  margin: 4px 0;
  padding: 6px 0 6px 20px;
  border-left: 3px solid #72b7ff;
  color: #243b5a;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
}

.case-copy img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.case-challenge {
  margin-inline: -32px;
  padding: 38px 32px 42px;
  border: 1px solid rgba(3, 98, 230, 0.12);
  border-radius: 18px;
  background: #edf5ff;
}

.case-feature-player {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #06142b;
  box-shadow: 0 24px 60px rgba(5, 20, 45, 0.18);
}

.case-feature-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-feature-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-content-warning {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 210px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(5, 15, 35, 0.86);
  color: #fff;
  font: inherit;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.case-content-warning svg {
  width: 26px;
  height: 26px;
}

.case-content-warning span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-content-warning strong {
  font-size: 0.92rem;
}

.case-detail-hero.is-explicit:not(.is-revealed) .case-detail-hero-media {
  filter: blur(26px);
  transform: scale(1.08);
}

.case-detail-hero.is-explicit:not(.is-revealed) .case-detail-sound {
  visibility: hidden;
}

.case-feature-player > button {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(to top, rgba(5, 15, 35, 0.82), rgba(5, 15, 35, 0.16));
  color: #fff;
  cursor: pointer;
}

.case-feature-player > button span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(3, 98, 230, 0.35);
}

.case-feature-player > button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: currentColor;
}

.case-feature-player > button strong {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-feature-player.is-playing > button,
.case-feature-player.has-error > button {
  display: none;
}

.case-video-error {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(5, 15, 35, 0.9);
  color: #fff;
  font-size: 0.82rem;
  text-align: center;
}

.case-video-error a {
  color: #8cc7ff;
  text-decoration: underline;
}

.case-result {
  padding: 40px;
  border: 0;
  border-left: 5px solid var(--blue);
  border-radius: 0 18px 18px 0;
  background: #fff;
  box-shadow: 0 20px 54px rgba(24, 58, 98, 0.08);
}

.case-result > strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.case-result h2 {
  margin-top: 8px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.case-detail-quote {
  margin: 0;
  padding: 6px 0 6px 30px;
  border-left: 2px solid #72b7ff;
}

.case-detail-quote p {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.55;
}

.case-detail-quote footer {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.case-detail-quote footer strong {
  color: var(--ink);
}

.case-detail-quote footer span {
  color: var(--muted);
  font-size: 0.82rem;
}

.v25-case-detail .case-detail-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.case-summary-card,
.case-services-card,
.case-consult-card {
  padding: 28px;
  border: 1px solid rgba(3, 98, 230, 0.12);
  border-radius: 16px;
  background: #fff;
}

.case-summary-card dl {
  display: grid;
  margin-top: 20px;
}

.case-summary-card dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(3, 98, 230, 0.1);
}

.case-summary-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-summary-card dd {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.v25-case-detail .case-services-card ul {
  margin-bottom: 0;
}

.case-consult-card {
  border: 0;
  background: linear-gradient(145deg, #07162d, #0a2d63);
  color: #fff;
}

.case-consult-card > span {
  color: #72b7ff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-consult-card h3 {
  margin-top: 8px;
  color: #fff;
  font-size: 1.75rem;
}

.case-consult-card p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.6;
}

.v25-case-detail .case-detail-related {
  padding: 104px 0 118px;
}

.v25-case-detail .case-detail-related > .container > h2 {
  margin-bottom: 48px;
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.v25-case-detail .case-detail-related .case-section-label {
  color: #72b7ff;
}

.v25-case-detail .case-detail-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.v25-case-detail .case-detail-related-grid a {
  min-height: 390px;
  border-radius: 16px;
}

.v25-case-detail .case-detail-related-grid small,
.v25-case-detail .case-detail-related-grid b {
  position: absolute;
  z-index: 1;
  right: 24px;
  left: 24px;
}

.v25-case-detail .case-detail-related-grid small {
  top: 24px;
  color: #8cc7ff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v25-case-detail .case-detail-related-grid span {
  top: 54px;
  right: 24px;
  left: 24px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.v25-case-detail .case-detail-related-grid h3 {
  right: 24px;
  bottom: 54px;
  left: 24px;
  font-size: 1.1rem;
}

.v25-case-detail .case-detail-related-grid b {
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8cc7ff;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.v25-case-detail .case-detail-related-grid b svg {
  width: 14px;
  height: 14px;
}

.case-video-modal[hidden] {
  display: none;
}

.case-video-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.case-video-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 9, 22, 0.9);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.case-video-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #06142b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.case-video-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
}

.case-video-dialog-head span {
  color: #72b7ff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-video-dialog-head h2 {
  margin-top: 3px;
  color: #fff;
  font-size: 1.1rem;
}

.case-video-dialog-head button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.case-video-dialog-head svg {
  width: 20px;
  height: 20px;
}

.case-video-dialog video {
  display: block;
  width: 100%;
  max-height: calc(100svh - 150px);
  aspect-ratio: 16 / 9;
  background: #020916;
  object-fit: contain;
}

.case-video-dialog .case-video-error {
  bottom: 20px;
}

.case-modal-open {
  overflow: hidden;
}

.case-detail-sound:focus-visible,
.case-watch-cta:focus-visible,
.case-content-warning:focus-visible,
.case-feature-player > button:focus-visible,
.case-video-dialog-head button:focus-visible {
  outline: 3px solid #8cc7ff;
  outline-offset: 4px;
}

@media (min-width: 1024px) and (max-width: 1180px) {
  body[data-page="portfolio"] .v7-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    gap: 36px;
  }
}

@media (max-width: 1023px) {
  body[data-page="portfolio"] .v7-hero-inner {
    display: block;
  }

  body[data-page="portfolio"] .v7-hero-side {
    display: none;
  }

  .v25-case-detail .case-detail-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .v25-case-detail .case-detail-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-consult-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body[data-page="portfolio"] .v9-featured-results {
    padding: 80px 0;
  }

  body[data-page="portfolio"] .portfolio-landmark-heading {
    margin-bottom: 48px;
  }

  body[data-page="portfolio"] .portfolio-landmark-heading h2 {
    font-size: 3rem;
  }

  .v25-case-detail .case-detail-hero,
  .v25-case-detail .case-detail-hero.has-video {
    min-height: 760px;
  }

  .v25-case-detail .case-detail-hero-inner {
    padding-top: 132px;
    padding-bottom: 58px;
  }

  .case-detail-sound {
    top: 104px;
    right: 16px;
  }

  .v25-case-detail .case-detail-labels {
    margin-top: 36px;
  }

  .v25-case-detail .case-detail-amount {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .v25-case-detail .case-detail-hero h1 {
    font-size: 2.55rem;
  }

  .case-watch-cta {
    margin-top: 28px;
  }

  .case-watch-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .v25-case-detail .case-detail-content {
    padding: 76px 0 84px;
  }

  .case-detail-story {
    gap: 54px;
  }

  .case-copy-section h2 {
    font-size: 2.35rem;
  }

  .case-challenge {
    margin-inline: 0;
    padding: 30px 24px 34px;
  }

  .case-result {
    padding: 32px 24px;
  }

  .v25-case-detail .case-detail-aside {
    grid-template-columns: 1fr;
  }

  .case-consult-card {
    grid-column: auto;
  }

  .v25-case-detail .case-detail-related {
    padding: 76px 0 84px;
  }

  .v25-case-detail .case-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .case-video-modal {
    padding: 12px;
  }

  .case-video-dialog-head {
    padding: 14px 16px;
  }

  .case-video-dialog-head h2 {
    max-width: 230px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-detail-hero-video {
    display: none;
  }

  .case-detail-sound {
    display: none;
  }

  .case-watch-icon,
  .v25-case-detail .case-detail-related-grid a {
    transition: none;
  }
}

/* Portfolio index: live Figma parity and deliberately calmer hero cycling. */
body[data-page="portfolio"] .v7-mosaic-card {
  display: block;
  color: #fff;
  text-decoration: none;
  transform: translateZ(0);
  transition: opacity 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

body[data-page="portfolio"] .v7-mosaic-card::after {
  background: linear-gradient(to top, rgba(3, 13, 32, 0.84), rgba(3, 13, 32, 0.04) 70%);
}

body[data-page="portfolio"] .v7-mosaic-card img {
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 350ms ease;
}

body[data-page="portfolio"] .v7-mosaic-card:hover,
body[data-page="portfolio"] .v7-mosaic-card:focus-visible {
  z-index: 3;
  box-shadow: 0 24px 54px rgba(3, 31, 74, 0.24);
  transform: scale(1.03);
}

body[data-page="portfolio"] .v7-mosaic-card:hover img,
body[data-page="portfolio"] .v7-mosaic-card:focus-visible img {
  transform: scale(1.055);
}

body[data-page="portfolio"] .v7-mosaic-card:focus-visible {
  outline: 3px solid #239bff;
  outline-offset: 3px;
}

body[data-page="portfolio"] .v7-portfolio-mosaic.is-changing .v7-mosaic-card {
  opacity: 0.3;
  transform: scale(0.985);
}

body[data-page="portfolio"] .v7-mosaic-card .v7-mosaic-settlement {
  top: 14px;
  right: 14px;
  left: auto;
  bottom: auto;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.9);
  color: #fff;
  font-size: 0.76rem;
  line-height: 1;
  backdrop-filter: blur(9px);
}

body[data-page="portfolio"] .v7-mosaic-card .v7-mosaic-copy {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: grid;
  gap: 5px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  line-height: 1.25;
  pointer-events: none;
}

body[data-page="portfolio"] .v7-mosaic-card .v7-mosaic-copy small {
  position: static;
  color: #69b9ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-page="portfolio"] .v7-mosaic-copy strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 260ms ease, transform 260ms ease;
}

body[data-page="portfolio"] .v7-mosaic-card:hover .v7-mosaic-copy strong,
body[data-page="portfolio"] .v7-mosaic-card:focus-visible .v7-mosaic-copy strong {
  opacity: 0.82;
  transform: none;
}

body[data-page="portfolio"] .v7-portfolio-list {
  min-height: 0 !important;
  padding: 112px 0;
}

body[data-page="portfolio"][data-portfolio-category]:not([data-portfolio-category="all"]) .v7-hero h1 {
  white-space: normal;
}

body[data-page="portfolio"] .v7-portfolio-mosaic.items-1 {
  grid-template-columns: 1fr;
}

body[data-page="portfolio"] .v7-portfolio-mosaic.items-1 .v7-mosaic-card,
body[data-page="portfolio"] .v7-portfolio-mosaic.items-2 .v7-mosaic-card {
  height: 404px;
}

body[data-page="portfolio"] .v7-portfolio-mosaic.items-3 .v7-mosaic-card:first-child {
  height: 404px;
  grid-row: span 2;
}

body[data-page="portfolio"] .featured-results-grid.items-1 {
  grid-template-columns: 1fr;
  grid-auto-rows: 400px;
}

body[data-page="portfolio"] .featured-results-grid.items-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 330px;
}

body[data-page="portfolio"] .featured-results-grid.items-1 .featured-result-card.large,
body[data-page="portfolio"] .featured-results-grid.items-2 .featured-result-card.large {
  grid-row: auto;
}

.v7-portfolio-category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.v7-portfolio-category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(3, 98, 230, 0.14);
  border-radius: 999px;
  background: #f7faff;
  color: #42536b;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.v7-portfolio-category-nav a:hover,
.v7-portfolio-category-nav a:focus-visible,
.v7-portfolio-category-nav a.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.v7-portfolio-category-nav a:focus-visible {
  outline: 3px solid rgba(35, 155, 255, 0.3);
  outline-offset: 2px;
}

.v7-portfolio-category-nav small {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 6px;
  border-radius: 999px;
  background: rgba(3, 98, 230, 0.1);
  color: var(--blue);
  font-size: 0.68rem;
  line-height: 1;
}

.v7-portfolio-category-nav a.active small,
.v7-portfolio-category-nav a:hover small,
.v7-portfolio-category-nav a:focus-visible small {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

body[data-page="portfolio"] .v7-portfolio-card[hidden] {
  display: none;
}

.v7-portfolio-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.v7-portfolio-pagination > div {
  display: flex;
  gap: 8px;
}

.v7-portfolio-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 42px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(3, 98, 230, 0.16);
  border-radius: 10px;
  background: #fff;
  color: #42536b;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.v7-portfolio-pagination button:hover:not(:disabled),
.v7-portfolio-pagination button:focus-visible,
.v7-portfolio-pagination button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.v7-portfolio-pagination button:focus-visible {
  outline: 3px solid rgba(35, 155, 255, 0.3);
  outline-offset: 2px;
}

.v7-portfolio-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.v7-portfolio-pagination svg {
  width: 15px;
  height: 15px;
}

body[data-page="portfolio"] .v7-stats-band {
  position: relative;
  display: block;
  min-height: 0 !important;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%);
  text-align: center;
}

body[data-page="portfolio"] .v7-stats-band::before,
body[data-page="portfolio"] .v7-stats-band::after {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body[data-page="portfolio"] .v7-stats-band::before {
  top: -64px;
  left: 25%;
  background: radial-gradient(circle, rgba(3, 98, 230, 0.15) 0%, transparent 70%);
}

body[data-page="portfolio"] .v7-stats-band::after {
  right: 25%;
  bottom: -64px;
  background: radial-gradient(circle, rgba(35, 155, 255, 0.1) 0%, transparent 70%);
}

body[data-page="portfolio"] .v7-stats-band .v7-grid-bg {
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(3, 98, 230, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 98, 230, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

body[data-page="portfolio"] .v7-stats-grid {
  position: relative;
  z-index: 2;
  gap: 48px;
}

body[data-page="portfolio"] .v7-stats-grid > div {
  text-align: center;
}

body[data-page="portfolio"] .v7-stat-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid rgba(3, 98, 230, 0.3);
  border-radius: 12px;
  background: rgba(3, 98, 230, 0.2);
  color: #239bff;
  font-style: normal;
}

body[data-page="portfolio"] .v7-stat-icon svg {
  width: 20px;
  height: 20px;
}

body[data-page="portfolio"] .v7-stats-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(3.35rem, 5vw, 3.75rem);
  line-height: 0.95;
}

body[data-page="portfolio"] .v7-stats-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  line-height: 1.4;
}

body[data-page="portfolio"] .v7-soft-cta {
  display: block;
  min-height: 0 !important;
  padding: 112px 0;
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f2ff 100%);
}

body[data-page="portfolio"] .v7-soft-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
}

body[data-page="portfolio"] .v7-soft-cta p {
  margin: 28px auto 42px;
}

body[data-page="portfolio"] .v25-portfolio-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  margin: 0 auto;
  padding: 16px 40px;
  border: 0;
  width: max-content;
  border-radius: 10px;
  background: linear-gradient(135deg, #0362e6 0%, #239bff 100%);
  background-clip: padding-box;
  box-shadow: 0 4px 20px rgba(3, 98, 230, 0.35);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

body[data-page="portfolio"] .v25-portfolio-cta-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

body[data-page="portfolio"] .v25-portfolio-cta-button:hover {
  box-shadow: 0 8px 36px rgba(3, 98, 230, 0.45);
  transform: scale(1.04);
}

body[data-page="portfolio"] .v25-portfolio-cta-button:active {
  transform: scale(0.97);
}

/* Case feature: lead with the film, simplify copy, and match Figma's testimonial card. */
.case-feature-lead-player {
  z-index: 2;
  margin-top: -88px;
}

.case-copy-section > .case-copy {
  margin-top: 0;
}

.case-result > .case-copy {
  margin-top: 22px;
}

.case-detail-quote {
  position: relative;
  margin: 0;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: linear-gradient(135deg, #0a1628, #0d2040);
  box-shadow: 0 18px 46px rgba(5, 18, 40, 0.14);
}

.case-detail-quote-mark {
  position: absolute;
  z-index: 0;
  top: 8px;
  left: 24px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
}

.case-detail-quote p {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}

.case-detail-quote footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-detail-quote footer strong {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.case-detail-quote footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

@media (max-width: 760px) {
  body[data-page="portfolio"] .v7-portfolio-list {
    padding: 80px 0;
  }

  body[data-page="portfolio"] .v7-portfolio-mosaic.items-1 .v7-mosaic-card,
  body[data-page="portfolio"] .v7-portfolio-mosaic.items-2 .v7-mosaic-card,
  body[data-page="portfolio"] .v7-portfolio-mosaic.items-3 .v7-mosaic-card:first-child {
    height: 300px;
    grid-row: auto;
  }

  body[data-page="portfolio"] .v7-portfolio-mosaic.items-2,
  body[data-page="portfolio"] .v7-portfolio-mosaic.items-3 {
    grid-template-columns: 1fr;
  }

  body[data-page="portfolio"] .featured-results-grid.items-1,
  body[data-page="portfolio"] .featured-results-grid.items-2 {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .v7-portfolio-category-nav {
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding: 2px 16px 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .v7-portfolio-category-nav::-webkit-scrollbar {
    display: none;
  }

  .v7-portfolio-category-nav a {
    flex: 0 0 auto;
  }

  body[data-page="portfolio"] .v7-stats-band {
    padding: 72px 0;
  }

  body[data-page="portfolio"] .v7-stats-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  body[data-page="portfolio"] .v7-soft-cta {
    padding: 88px 0;
  }

  .v7-portfolio-pagination {
    gap: 8px;
  }

  .v7-portfolio-pagination > button span {
    display: none;
  }

  .case-feature-lead-player {
    margin-top: -52px;
  }

  .case-detail-quote {
    padding: 28px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="portfolio"] .v7-mosaic-card,
  body[data-page="portfolio"] .v7-mosaic-card img,
  body[data-page="portfolio"] .v7-mosaic-copy strong,
  .v7-portfolio-pagination button {
    transition: none;
  }
}

/* Services page refinements from the client feedback pass. */
body[data-page="services"] .v7-page { overflow: clip; }

body[data-page="services"] .v7-hero-actions .btn-primary { min-height: 56px; padding: 16px 32px; border: 0; border-radius: 8px; background: linear-gradient(135deg, #0362e6 0%, #239bff 100%); background-clip: padding-box; box-shadow: 0 4px 20px rgba(3, 98, 230, 0.35); -webkit-appearance: none; appearance: none; }
body[data-page="services"] .v7-hero-actions .btn-primary:hover { box-shadow: 0 6px 30px rgba(3, 98, 230, 0.45); }

body[data-page="services"] .v7-chip-row { gap: 0; margin-top: 32px; }
body[data-page="services"] .v7-chip-row span.with-icon { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; min-height: 34px; margin: 0; padding: 8px 16px; border: 1px solid rgba(3, 98, 230, 0.15); border-radius: 999px; background: rgba(3, 98, 230, 0.06); color: #0362e6; font-size: 0.75rem; line-height: 1.35; text-align: left; }
body[data-page="services"] .v7-chip-row span.with-icon::before { display: none; }
body[data-page="services"] .v7-chip-row span.with-icon svg { width: 16px; height: 16px; flex: 0 0 auto; }

body[data-page="services"] .v7-service-jump { grid-template-columns: 52px minmax(0, 1fr) 18px; }
body[data-page="services"] .v7-service-jump > svg { justify-self: end; }

body[data-page="services"] .v25-proof-card blockquote { position: relative; }
body[data-page="services"] .v25-proof-card blockquote span { display: block; padding-left: 24px; }
body[data-page="services"] .v25-proof-quote { position: absolute; top: -4px; left: -4px; width: 28px; height: 28px; color: #8fcfff; opacity: 0.55; stroke-width: 1.6; }

body[data-page="services"] .v7-service-image video { display: block; background: #061226; }

body[data-page="services"] .v25-faq-kicker { display: block; margin-bottom: 16px; color: #0362e6; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
body[data-page="services"] .v25-faq-description { max-width: 640px; margin: 24px auto 0; color: rgba(10, 22, 40, 0.58); font-size: 1rem; line-height: 1.7; }

body[data-page="services"] .v7-gradient-cta .btn-light { min-height: 60px; padding: 18px 48px; border: 0; border-radius: 8px; background: #fff; color: #0362e6; font-family: var(--font-headline); font-size: 1.25rem; line-height: 1; box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2); -webkit-appearance: none; appearance: none; }
body[data-page="services"] .v7-gradient-cta .btn-light:hover { box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25); }
body[data-page="services"] .v25-service-anchor { box-shadow: 0 8px 22px rgba(3, 98, 230, 0.06); }

@media (max-width: 980px) {
  body[data-page="services"] .v25-service-anchor { top: 74px; }
}

@media (max-width: 680px) {
  body[data-page="services"] .v7-hero-actions .btn-primary { width: 100%; }
  body[data-page="services"] .v7-chip-row span.with-icon { align-items: flex-start; }
  body[data-page="services"] .v25-faq-description { font-size: 0.94rem; }
}

/* Cache-backed shared video page. */
body[data-page="video"] {
  background: #07152c;
}

.v25-video-page {
  overflow: clip;
  background: #f7faff;
}

.v25-video-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px 0 104px;
  background:
    radial-gradient(circle at 13% 8%, rgba(35, 155, 255, 0.24), transparent 34%),
    radial-gradient(circle at 88% 48%, rgba(3, 98, 230, 0.24), transparent 36%),
    linear-gradient(145deg, #07152c 0%, #071c3b 52%, #082d61 100%);
  color: #fff;
}

.v25-video-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(140, 199, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 199, 255, 0.22) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.v25-video-inner {
  position: relative;
  width: min(100% - 40px, 1280px);
}

.v25-video-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.v25-video-back:hover {
  color: #fff;
  transform: translateX(-3px);
}

.v25-video-back svg {
  width: 17px;
  height: 17px;
}

.v25-video-heading {
  display: grid;
  justify-items: center;
  max-width: 1160px;
  margin: 0 auto 34px;
  text-align: center;
}

.v25-video-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(140, 199, 255, 0.34);
  border-radius: 999px;
  background: rgba(140, 199, 255, 0.1);
  color: #8cc7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.v25-video-pill svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.v25-video-heading h1 {
  max-width: 1160px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(3.1rem, 5.1vw, 5rem);
  line-height: 0.94;
  text-wrap: balance;
}

.v25-video-heading p {
  max-width: 800px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.35vw, 1.13rem);
  line-height: 1.75;
  text-wrap: balance;
}

.v25-video-player {
  position: relative;
  width: min(100%, 1200px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #020916;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46), 0 0 0 8px rgba(255, 255, 255, 0.035);
}

.v25-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  background: #020916;
  object-fit: contain;
}

.v25-video-player.is-sensitive:not(.is-revealed) video {
  filter: blur(28px);
  transform: scale(1.08);
}

.v25-video-warning {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 230px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(5, 15, 35, 0.88);
  color: #fff;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.v25-video-warning svg {
  width: 28px;
  height: 28px;
  margin-bottom: 3px;
}

.v25-video-warning span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v25-video-warning strong {
  font-size: 0.92rem;
}

.v25-video-error {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(5, 15, 35, 0.92);
  color: #fff;
  font-size: 0.84rem;
  text-align: center;
}

.v25-video-error a {
  color: #8cc7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v25-video-sound-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.v25-video-sound-note svg {
  width: 15px;
  height: 15px;
}

.v25-video-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.v25-video-actions .btn {
  min-width: 205px;
  min-height: 54px;
  border-radius: 8px;
}

.v25-video-actions .btn-light {
  color: #0362e6;
}

.v25-video-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 760px) {
  .v25-video-hero {
    padding: 118px 0 82px;
  }

  .v25-video-inner {
    width: min(100% - 28px, 1280px);
  }

  .v25-video-back {
    margin-bottom: 36px;
  }

  .v25-video-heading {
    margin-bottom: 34px;
  }

  .v25-video-heading h1 {
    margin-top: 20px;
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

  .v25-video-heading p {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .v25-video-player {
    border-radius: 12px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 0 5px rgba(255, 255, 255, 0.035);
  }

  .v25-video-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .v25-video-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v25-video-back,
  .v25-video-player video {
    transition: none;
  }
}
