:root {
  --brand-white: #ffffff;
  --brand-lime: #adf781;
  --brand-green: #33c976;
  --brand-blue: #234988;
  --brand-gray: #8f9299;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --text: #243250;
  --muted: #647089;
  --primary: #234988;
  --primary-deep: #1a376c;
  --secondary: #33c976;
  --accent: #adf781;
  --gradient: linear-gradient(135deg, #adf781 0%, #33c976 42%, #234988 100%);
  --shadow: 0 18px 44px rgba(35, 73, 136, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(173, 247, 129, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(35, 73, 136, 0.09), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--text);
  line-height: 1.6;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

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

button {
  cursor: pointer;
}

p,
ul,
ol {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(35, 73, 136, 0.08);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--gradient);
}

.site-footer::before {
  content: "";
  display: block;
  height: 5px;
  background: var(--gradient);
}

.site-header .container,
.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

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

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark strong {
  max-width: 16rem;
  font-size: 0.86rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-gray);
}

.brand-mark span {
  color: var(--primary);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 600;
}

.nav .button {
  min-height: 54px;
  padding: 0 30px;
  margin-left: 10px;
}

.nav a.active,
.nav a:hover,
.nav a:focus-visible {
  color: var(--primary);
}

.nav .button.button-primary,
.nav .button.button-primary:hover,
.nav .button.button-primary:focus-visible {
  color: #fff;
}

.nav .button.button-secondary,
.nav .button.button-secondary:hover,
.nav .button.button-secondary:focus-visible,
.nav .button.button-ghost,
.nav .button.button-ghost:hover,
.nav .button.button-ghost:focus-visible {
  color: var(--primary);
}

.site-header-top {
  display: contents;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(35, 73, 136, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  cursor: pointer;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(51, 201, 118, 0.42);
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 73, 136, 0.1);
  outline: none;
}

.nav-toggle-box {
  display: grid;
  gap: 5px;
  width: 22px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.home-page .site-header .container,
.home-page .site-header-bar,
.services-page .site-header .container,
.services-page .site-header-bar {
  min-height: 78px;
  padding: 10px 0;
  gap: 32px;
}

.home-page .site-header .brand,
.services-page .site-header .brand {
  gap: 16px;
}

.home-page .site-header .brand img,
.services-page .site-header .brand img {
  width: 188px;
}

.home-page .site-header .brand-mark,
.services-page .site-header .brand-mark {
  justify-content: center;
  gap: 0;
}

.home-page .site-header .brand-mark strong,
.services-page .site-header .brand-mark strong {
  display: none;
}

.home-page .site-header .brand-mark span,
.services-page .site-header .brand-mark span {
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 961px) {
  .home-page .site-header .nav,
  .services-page .site-header .nav {
    margin-left: auto;
    gap: 10px 22px;
  }
}

.home-page .site-header .nav a,
.services-page .site-header .nav a {
  min-height: 44px;
  padding: 8px 0;
}

.home-page .site-header .nav .button,
.services-page .site-header .nav .button {
  min-height: 50px;
  padding: 0 28px;
  margin-left: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  background-clip: padding-box;
  line-height: 1.1;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 14px 32px rgba(35, 73, 136, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(35, 73, 136, 0.05);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--primary);
}

.page-hero,
.section {
  padding: 84px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(173, 247, 129, 0.22), transparent 64%);
  transform: translate(-30%, 32%);
  pointer-events: none;
}

.page-hero::after {
  inset: 0 0 auto auto;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(35, 73, 136, 0.14), transparent 60%);
  transform: translate(30%, -34%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.hero-visual-stack {
  display: grid;
  gap: 20px;
  align-content: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 73, 136, 0.12);
  background-clip: padding-box;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.hero-copy h1,
.section-heading h2,
.cta-band h2 {
  margin: 18px 0 16px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.hero-copy p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy p + p,
.story-copy p + p,
.service-detail p + p,
.form-intro p + p,
.side-panel p + p {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-copy > .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-actions,
.hero-notes,
.hero-visual-stack,
.editorial-split > * {
  opacity: 0;
  animation: fade-up 0.82s ease forwards;
}

.hero-copy h1 {
  animation-delay: 0.08s;
}

.hero-copy p {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.24s;
}

.hero-notes {
  animation-delay: 0.32s;
}

.hero-visual-stack,
.editorial-split > *:last-child {
  animation-delay: 0.2s;
}

.editorial-split > *:first-child {
  animation-delay: 0.1s;
}

.hero-notes span,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(173, 247, 129, 0.18), rgba(35, 73, 136, 0.08));
  border: 1px solid rgba(35, 73, 136, 0.1);
  background-clip: padding-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  width: fit-content;
  max-width: 100%;
}

.hero-photo-card {
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(35, 73, 136, 0.12);
  background: #dbe4ef;
  box-shadow: 0 28px 60px rgba(35, 73, 136, 0.16);
  isolation: isolate;
}

.hero-photo-card > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 24, 48, 0) 30%, rgba(14, 24, 48, 0.8) 100%),
    linear-gradient(135deg, rgba(35, 73, 136, 0.1), rgba(173, 247, 129, 0.08));
  pointer-events: none;
}

.hero-photo-card img,
.story-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-photo-card:hover img,
.story-photo-frame:hover img {
  transform: scale(1.05);
}

.hero-photo-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 27rem;
  color: #fff;
}

.hero-photo-caption strong {
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-photo-card .pill {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.floating-proof {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: min(236px, calc(100% - 56px));
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 40px rgba(24, 42, 78, 0.18);
  backdrop-filter: blur(14px);
  animation: drift 6s ease-in-out infinite;
}

.floating-proof span {
  color: var(--brand-gray);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-proof strong {
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.2;
}

.floating-proof p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-photo-card-home img {
  object-position: center 38%;
}

.hero-photo-card-home::after {
  background:
    linear-gradient(180deg, rgba(14, 24, 48, 0.02) 0%, rgba(14, 24, 48, 0.2) 100%),
    linear-gradient(135deg, rgba(35, 73, 136, 0.06), rgba(173, 247, 129, 0.04));
}

.hero-photo-card-home .floating-proof,
.hero-photo-card-home .hero-photo-caption {
  display: none !important;
}

.hero-photo-summary {
  display: grid;
  gap: 14px;
  padding: 24px 26px;
}

.hero-photo-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo-summary-label {
  color: var(--brand-gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo-summary strong {
  color: var(--primary);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-photo-summary p {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 54ch;
}

.hero-panel,
.card,
.timeline-step,
.office-card,
.testimonial,
.feature-card,
.contact-card,
.form-shell,
.certification,
.leadership-card,
.placeholder-card,
.service-detail {
  background: var(--surface);
  border: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-panel,
.card,
.timeline-step,
.office-card,
.testimonial,
.feature-card,
.contact-card,
.form-shell,
.certification,
.leadership-card,
.placeholder-card,
.service-detail,
.side-panel {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.timeline-step:hover,
.office-card:hover,
.testimonial:hover,
.feature-card:hover,
.contact-card:hover,
.certification:hover,
.leadership-card:hover,
.placeholder-card:hover,
.service-detail:hover,
.side-panel:hover,
.hero-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(51, 201, 118, 0.26);
  box-shadow: 0 24px 54px rgba(35, 73, 136, 0.14);
}

.media-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.96)),
    linear-gradient(135deg, rgba(173, 247, 129, 0.08), rgba(35, 73, 136, 0.04));
  box-shadow: 0 16px 34px rgba(35, 73, 136, 0.08);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(35, 73, 136, 0.03));
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 84% center;
}

.media-frame img[src$=".svg"] {
  object-fit: contain;
  object-position: center center;
}

.media-service {
  height: 260px;
}

.media-process {
  max-width: 240px;
  height: 156px;
}

.media-industry,
.media-trust {
  max-width: 340px;
  height: 220px;
}

.media-location {
  max-width: 320px;
  height: 208px;
}

.media-support {
  max-width: 360px;
  height: 230px;
}

.industry-card .media-industry,
.certification .media-trust,
.office-card .media-location,
.placeholder-card .media-process,
.placeholder-card .media-trust,
.placeholder-card .media-location {
  max-width: none;
}

.industry-card .media-industry {
  height: 248px;
}

.certification .media-trust,
.office-card .media-location {
  height: 228px;
}

.hero-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), transparent 55%),
    linear-gradient(150deg, rgba(173, 247, 129, 0.16), rgba(51, 201, 118, 0.1) 55%, rgba(35, 73, 136, 0.1));
  pointer-events: none;
}

.hero-panel-content {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-panel-top strong {
  font-size: 1.12rem;
}

.hero-panel-top > div:first-child {
  flex: 1 1 220px;
  min-width: 0;
}

.hero-panel-top span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel-top .pill {
  color: var(--primary);
  flex: 0 0 auto;
  padding: 12px 18px;
  white-space: nowrap;
  align-self: flex-start;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric-item {
  display: grid;
  grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(35, 73, 136, 0.12);
}

.metric-item strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.metric-item span {
  color: var(--muted);
  font-size: 0.94rem;
  padding-top: 2px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
}

.editorial-split-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.story-photo-frame {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: 0 26px 56px rgba(35, 73, 136, 0.14);
  background: #d7dfeb;
}

.story-photo-frame > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.story-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 28, 54, 0) 40%, rgba(16, 28, 54, 0.56) 100%),
    linear-gradient(135deg, rgba(35, 73, 136, 0.05), rgba(173, 247, 129, 0.08));
  pointer-events: none;
}

.story-photo-frame-short {
  min-height: 420px;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.story-list {
  display: grid;
  gap: 14px;
}

.story-list article {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
  box-shadow: 0 16px 32px rgba(35, 73, 136, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.story-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 201, 118, 0.24);
  box-shadow: 0 24px 44px rgba(35, 73, 136, 0.12);
}

.story-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.02rem;
}

.story-list p {
  font-size: 0.96rem;
}

.logo-strip {
  padding: 22px 0;
  border-top: 1px solid rgba(35, 73, 136, 0.08);
  border-bottom: 1px solid rgba(35, 73, 136, 0.08);
  background: linear-gradient(90deg, rgba(173, 247, 129, 0.12), rgba(255, 255, 255, 0.96), rgba(35, 73, 136, 0.08));
}

.trust-strip {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid rgba(35, 73, 136, 0.08);
  border-bottom: 1px solid rgba(35, 73, 136, 0.08);
  background:
    radial-gradient(circle at 12% 50%, rgba(173, 247, 129, 0.16), transparent 28%),
    radial-gradient(circle at 88% 50%, rgba(35, 73, 136, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px 36px;
  align-items: center;
}

.trust-strip-intro {
  display: grid;
  gap: 10px;
}

.trust-strip-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(35, 73, 136, 0.1);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.trust-strip-copy {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.trust-strip-compact .trust-strip-copy {
  display: none;
}

.credentials-band {
  padding: 34px 0;
  border-top: 1px solid rgba(35, 73, 136, 0.08);
  border-bottom: 1px solid rgba(35, 73, 136, 0.08);
  background:
    radial-gradient(circle at 12% 50%, rgba(173, 247, 129, 0.14), transparent 32%),
    radial-gradient(circle at 88% 50%, rgba(35, 73, 136, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.credentials-band-inner {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.credentials-band-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(35, 73, 136, 0.1);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credentials-band-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.credentials-band-copy {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.credentials-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.credentials-pills li {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: 0 12px 24px rgba(35, 73, 136, 0.06);
}

.credentials-pills li strong {
  color: var(--primary);
  font-size: 1.12rem;
  line-height: 1.1;
}

.credentials-pills li span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.credentials-band-compact .credentials-band-copy {
  display: none;
}

.credentials-band-compact {
  padding: 28px 0;
}

.credentials-band-compact .credentials-pills {
  margin-top: 8px;
}

.outcomes-grid {
  align-items: stretch;
}

.outcome-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
}

.outcome-card strong {
  color: var(--primary);
  font-size: 1.18rem;
  line-height: 1.2;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.clients-page .credentials-band {
  padding: 28px 0;
}

.trust-logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-logo-marquee-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 26s linear infinite;
}

.trust-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0 8px;
  list-style: none;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 76px;
  padding: 16px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: 0 14px 28px rgba(35, 73, 136, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.trust-logo-item:hover {
  transform: translateY(-3px);
  border-color: rgba(51, 201, 118, 0.24);
  box-shadow: 0 18px 34px rgba(35, 73, 136, 0.12);
}

.trust-logo-item img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.28s ease;
}

.trust-logo-item:hover img {
  transform: scale(1.05);
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-strip .container {
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.logo-strip strong {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.client-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 73, 136, 0.1);
  background-clip: padding-box;
  color: var(--primary);
  line-height: 1.1;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  font-weight: 700;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(173, 247, 129, 0.05), rgba(35, 73, 136, 0.02));
}

.grid-2,
.grid-3,
.grid-4,
.services-grid,
.industries-grid,
.blog-grid,
.testimonial-grid,
.footer-grid,
.leadership-grid,
.certification-grid,
.offices-grid,
.contact-grid,
.services-nav,
.service-detail-grid,
.proof-grid,
.article-stack {
  display: grid;
  gap: 22px;
}

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

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

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

.services-grid,
.industries-grid,
.certification-grid,
.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-card,
.testimonial,
.contact-card,
.certification,
.leadership-card,
.placeholder-card,
.blog-card,
.article-card {
  padding: 28px;
}

.card h3,
.feature-card h3,
.testimonial h3,
.contact-card h3,
.certification h3,
.leadership-card h3,
.service-detail h3,
.placeholder-card h3,
.blog-card h3,
.article-card h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

.card p,
.feature-card p,
.testimonial p,
.contact-card p,
.certification p,
.leadership-card p,
.service-detail p,
.placeholder-card p,
.blog-card p,
.article-card p {
  color: var(--muted);
}

.blog-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.blog-meta,
.article-meta {
  color: var(--brand-gray);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 0;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  color: var(--primary);
}

.article-stack {
  gap: 28px;
}

.article-card {
  display: grid;
  gap: 18px;
}

.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.article-card h2 {
  margin: 0;
  color: var(--primary);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-card h3 {
  margin: 8px 0 0;
  color: var(--primary);
}

.article-lead {
  font-size: 1.08rem;
  color: var(--primary) !important;
}

.article-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  list-style: disc;
}

.article-list li {
  color: var(--muted);
}

.service-card,
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.industry-card .media-frame,
.certification .media-frame,
.office-card .media-frame,
.placeholder-card .media-frame {
  margin-bottom: 4px;
}

.service-card-top,
.industry-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 700;
}

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

.blog-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.blog-card-header,
.blog-meta,
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  flex-wrap: wrap;
}

.blog-meta span,
.article-meta span,
.blog-card-header span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-card h3,
.article-shell h1 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.blog-card h3 {
  font-size: 1.36rem;
}

.blog-card p {
  color: var(--muted);
}

.blog-card .service-link {
  margin-top: 4px;
}

.article-shell {
  display: grid;
  gap: 26px;
}

.article-shell h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 13ch;
}

.article-lead {
  max-width: 62ch;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: start;
}

.article-content,
.article-aside {
  display: grid;
  gap: 22px;
}

.article-content section {
  display: grid;
  gap: 14px;
}

.article-content h2 {
  margin: 0;
  line-height: 1.12;
  color: var(--primary);
}

.article-content p {
  color: var(--muted);
  font-size: 1rem;
}

.article-content .detail-list {
  margin-top: 4px;
}

.article-aside .side-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
}

.article-back-link::before {
  content: "<";
  font-size: 0.96rem;
}

.badge-list,
.stack-list,
.deliverables {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deliverables li,
.stack-list li,
.badge-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(173, 247, 129, 0.18);
  border: 1px solid rgba(51, 201, 118, 0.16);
  background-clip: padding-box;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.15;
  width: fit-content;
  max-width: 100%;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline-step {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px 22px;
}

.timeline-step h3 {
  margin: 0;
  line-height: 1.15;
}

.timeline-step p {
  color: var(--muted);
}

.proof-grid .card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary);
}

.quote {
  position: relative;
  padding-top: 30px;
}

.quote::before {
  content: "\"";
  position: absolute;
  top: -6px;
  left: 0;
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(35, 73, 136, 0.16);
}

.person {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.person strong {
  font-size: 1rem;
}

.person span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(120deg, #234988 0%, #33c976 58%, #adf781 100%);
  color: #fff;
  box-shadow: 0 24px 54px rgba(18, 34, 68, 0.2);
}

.cta-band-photo {
  padding: 0;
  background:
    linear-gradient(120deg, #234988 0%, #2a6795 38%, #33c976 100%);
}

.cta-band-photo > * {
  position: relative;
  z-index: 1;
}

.cta-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: stretch;
  min-height: 430px;
}

.cta-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 42px 40px;
  background:
    linear-gradient(90deg, rgba(35, 73, 136, 0.12), rgba(35, 73, 136, 0) 100%);
}

.cta-band-visual {
  background:
    linear-gradient(90deg, rgba(35, 73, 136, 0.92) 0%, rgba(35, 73, 136, 0.52) 24%, rgba(35, 73, 136, 0.16) 48%, rgba(35, 73, 136, 0.02) 100%),
    url("https://images.pexels.com/photos/18999253/pexels-photo-18999253.jpeg?cs=srgb&dl=pexels-bertellifotografia-18999253.jpg&fm=jpg");
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 12ch;
}

.cta-band p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band-photo h2 {
  color: #fff;
  max-width: 8.5ch;
}

.cta-band-photo p {
  max-width: 34rem;
}

.cta-band-photo .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band .button-ghost {
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.cta-band-services {
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(115deg, #234988 0%, #2b6a93 42%, #33c976 78%, #adf781 100%);
}

.cta-band-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.cta-band-services-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 42px 38px;
  background:
    linear-gradient(90deg, rgba(16, 30, 58, 0.26) 0%, rgba(16, 30, 58, 0.08) 70%, rgba(16, 30, 58, 0) 100%);
}

.cta-band-services .eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-services h2 {
  color: #ffffff;
  max-width: 9.5ch;
}

.cta-band-services p {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
}

.cta-band-services .button-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cta-band-services-side {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px 28px 28px 8px;
}

.cta-band-industries {
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(173, 247, 129, 0.2), transparent 26%),
    linear-gradient(130deg, #234988 0%, #2f7e96 42%, #33c976 78%, #adf781 100%);
}

.cta-band-industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.cta-band-industries-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 42px 38px;
  background:
    linear-gradient(90deg, rgba(12, 24, 48, 0.3) 0%, rgba(12, 24, 48, 0.12) 62%, rgba(12, 24, 48, 0) 100%);
}

.cta-band-industries .eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-industries h2 {
  max-width: 10ch;
  color: #ffffff;
}

.cta-band-industries p {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

.cta-band-industries .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-industries .button-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.cta-band-industries-side {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px 28px 28px 8px;
}

.cta-band-industries .cta-service-panel {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 36px rgba(18, 34, 68, 0.12);
}

.cta-band-industries .cta-service-panel strong {
  font-size: 1.18rem;
}

.cta-band-industries .cta-step-list li {
  font-size: 0.96rem;
}

.cta-band-industries .cta-service-panel-compact {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-band-clients {
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(173, 247, 129, 0.2), transparent 26%),
    linear-gradient(130deg, #234988 0%, #2f7e96 42%, #33c976 78%, #adf781 100%);
}

.cta-band-clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.cta-band-clients-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 42px 38px;
  background:
    linear-gradient(90deg, rgba(12, 24, 48, 0.3) 0%, rgba(12, 24, 48, 0.12) 62%, rgba(12, 24, 48, 0) 100%);
}

.cta-band-clients .eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-clients h2 {
  margin-top: 16px;
  color: #fff;
}

.cta-band-clients p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band-clients .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-clients .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.cta-band-clients-side {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px 28px 28px 8px;
}

.cta-band-clients .cta-service-panel {
  background: rgba(255, 255, 255, 0.94);
}

.cta-band-clients .cta-step-list li {
  font-size: 0.96rem;
}

.cta-band-clients .cta-service-panel-compact {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-band-rich {
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(173, 247, 129, 0.2), transparent 26%),
    linear-gradient(130deg, #234988 0%, #2f7e96 42%, #33c976 78%, #adf781 100%);
}

.cta-band-rich-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.cta-band-rich-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 42px 38px;
  background:
    linear-gradient(90deg, rgba(12, 24, 48, 0.3) 0%, rgba(12, 24, 48, 0.12) 62%, rgba(12, 24, 48, 0) 100%);
}

.cta-band-rich .eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-rich h2 {
  margin-top: 16px;
  color: #fff;
  max-width: 12ch;
}

.cta-band-rich p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band-rich .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
}

.cta-band-rich .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.cta-band-rich-side {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px 28px 28px 8px;
}

.cta-band-rich .cta-service-panel {
  background: rgba(255, 255, 255, 0.94);
}

.cta-band-rich .cta-step-list li {
  font-size: 0.96rem;
}

.cta-band-rich .cta-service-panel-compact {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-service-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 36px rgba(18, 34, 68, 0.12);
  color: var(--primary);
}

.cta-service-panel strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.2;
}

.cta-step-list {
  display: grid;
  gap: 12px;
}

.cta-step-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.cta-step-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.cta-service-panel-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.cta-service-mini {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.cta-service-mini span {
  color: var(--brand-gray);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-service-mini strong {
  font-size: 1rem;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0 0 32px;
  overflow: hidden;
  border-top: none;
  background: linear-gradient(145deg, #152a52 0%, #1a376c 40%, #234988 74%, #1b4a62 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(173, 247, 129, 0.18), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(51, 201, 118, 0.12), transparent 42%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 52px;
}

.footer-grid {
  width: 100%;
  grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 0.95fr));
  align-items: start;
  gap: 28px 32px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  width: 100%;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--accent);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column .brand {
  align-self: start;
  margin-bottom: 4px;
}

.site-footer .brand img {
  width: 158px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-column strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-copy {
  color: rgba(255, 255, 255, 0.74);
}

.footer-column a,
.footer-column span {
  display: inline-block;
  font-size: 0.93rem;
  line-height: 1.5;
}

.footer-column:first-child span {
  max-width: 19rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.62;
}

.footer-column:last-child span {
  max-width: 17rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent);
}

.footer-copy {
  margin-top: 18px;
  border-top: none;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  line-height: 1.55;
  width: 100%;
  max-width: none;
}

/* Footer: desktop — legal links in column only (no duplicate bar) */
@media (min-width: 961px) {
  .footer-legal {
    display: none;
  }

  .footer-expand {
    display: block;
  }

  .footer-expand .footer-expand-links {
    display: grid;
    gap: 12px;
  }
}

/* Footer: tablet/mobile — compact legal bar, collapsible services */
@media (max-width: 960px) {
  .footer-column--legal {
    display: none;
  }

  .footer-legal {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 4px;
    padding-top: 18px;
    gap: 8px 14px;
  }

  .footer-expand summary {
    display: block;
    padding: 2px 0;
  }

  .footer-expand:not([open]) .footer-expand-links {
    display: none;
  }

  .footer-expand[open] .footer-expand-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 4px;
  }
}

/* Footer: services accordion (mobile); open panel on desktop */
.footer-expand {
  display: grid;
  gap: 12px;
}

.footer-expand summary {
  display: none;
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-expand summary::-webkit-details-marker {
  display: none;
}

.footer-expand summary::after {
  content: "+";
  float: right;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
}

.footer-expand[open] summary::after {
  content: "−";
}

.footer-expand-links {
  display: grid;
  gap: 12px;
}

.footer-services-title {
  display: block;
}

@media (max-width: 960px) {
  .footer-services-title {
    display: none;
  }
}

main > .section:last-of-type {
  padding-bottom: 32px;
}

.home-page main > .section:last-of-type {
  padding-bottom: 28px;
}

.home-page .page-hero {
  padding: 44px 0 32px;
}

.home-page .section {
  padding: 54px 0;
}

.home-page .logo-strip,
.home-page .trust-strip,
.home-page .credentials-band {
  padding: 32px 0;
}

.home-page .hero-grid,
.services-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 26px 38px;
}

.home-page .hero-grid {
  grid-template-areas:
    "copy visual"
    "proof proof";
}

.home-page .hero-copy {
  grid-area: copy;
}

.home-page .hero-visual-stack {
  grid-area: visual;
}

.home-page .hero-proof-band {
  grid-area: proof;
  margin-top: 4px;
  padding: 24px 26px 26px;
  border-radius: 32px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background:
    radial-gradient(circle at top right, rgba(173, 247, 129, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.08);
}

.home-page .hero-proof-band-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: 18px;
}

.home-page .hero-proof-band-head strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.12rem;
}

.home-page .hero-proof-band-head span {
  color: var(--muted);
  font-size: 0.95rem;
}

.home-page .hero-proof-band-head .pill {
  flex: 0 0 auto;
}

.home-page .hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-page .hero-proof-tile {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: 0 10px 22px rgba(35, 73, 136, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-page .hero-proof-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(51, 201, 118, 0.22);
  box-shadow: 0 16px 28px rgba(35, 73, 136, 0.1);
}

.home-page .hero-proof-tile strong {
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.home-page .hero-proof-tile span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.home-page .hero-copy,
.services-page .hero-copy {
  display: grid;
  align-content: start;
}

.home-page .hero-copy h1,
.services-page .hero-copy h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 10ch;
  font-size: clamp(2.9rem, 5.7vw, 5rem);
}

.services-page .hero-copy h1 {
  max-width: 11ch;
}

.home-page .hero-copy p,
.services-page .hero-copy p {
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.62;
}

.home-page .hero-actions,
.services-page .hero-actions {
  margin-top: 22px;
}

.home-page .hero-visual-stack,
.services-page .hero-visual-stack {
  gap: 16px;
  align-content: start;
}

.home-page .hero-visual-stack {
  min-height: 100%;
}

.home-page .hero-photo-card,
.services-page .hero-photo-card {
  min-height: clamp(360px, 38vw, 540px);
  aspect-ratio: unset;
  border-color: rgba(35, 73, 136, 0.1);
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.14);
}

.home-page .hero-photo-card {
  min-height: clamp(420px, 42vw, 560px);
  height: 100%;
}

.home-page .hero-panel,
.services-page .hero-panel {
  padding: 22px;
}

.home-page .metric-list,
.services-page .metric-list {
  gap: 10px;
}

.home-page .metric-item,
.services-page .metric-item {
  gap: 14px;
  padding: 16px 18px;
}

.home-page .metric-item strong,
.services-page .metric-item strong {
  font-size: 1.8rem;
}

.home-page .section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.home-page .section-heading h2 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.home-page .section-heading p,
.home-page .story-copy p,
.home-page .feature-card p,
.home-page .service-card p,
.home-page .industry-card p,
.home-page .timeline-step p,
.home-page .blog-card p,
.home-page .testimonial p {
  font-size: 1rem;
  line-height: 1.6;
}

.home-page .editorial-split {
  align-items: start;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 28px 42px;
}

.home-page .story-copy {
  gap: 14px;
  padding-top: 6px;
}

.home-page .story-photo-frame {
  min-height: clamp(420px, 44vw, 560px);
}

.home-page .grid-3,
.home-page .services-grid,
.home-page .industries-grid,
.home-page .testimonial-grid,
.home-page .blog-grid,
.home-page .timeline {
  gap: 18px;
}

.home-page .feature-card,
.home-page .service-card,
.home-page .industry-card,
.home-page .timeline-step,
.home-page .testimonial,
.home-page .blog-card {
  padding: 24px;
}

.home-page .feature-card,
.home-page .service-card,
.home-page .industry-card,
.home-page .timeline-step {
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-page .feature-card h3,
.home-page .service-card h3,
.home-page .industry-card h3,
.home-page .timeline-step h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.home-page .service-card,
.home-page .industry-card {
  gap: 14px;
}

.home-page .service-card-top,
.home-page .industry-card-top {
  display: block;
}

.home-page .service-card-top h3,
.home-page .industry-card-top h3 {
  margin: 0;
}

.home-page .badge-list {
  gap: 8px;
}

.home-page .badge-list li {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-page .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.home-page .service-link::after {
  content: ">";
  font-size: 0.92rem;
}

.trust-logo-item--icon {
  min-width: 88px;
}

.trust-logo-item--icon img {
  height: 36px;
  max-width: 36px;
  filter: none;
}

.trust-logo-item--icon:hover img {
  filter: none;
  transform: scale(1.06);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.07s);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-showcase-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(173, 247, 129, 0.14), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(35, 73, 136, 0.07), transparent 34%);
}

.services-showcase-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.services-showcase-heading .button {
  margin-top: 8px;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-showcase-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 220px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
  box-shadow: 0 16px 36px rgba(35, 73, 136, 0.07);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.service-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(173, 247, 129, 0.16), rgba(51, 201, 118, 0.06) 48%, transparent 72%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.service-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-showcase-card:hover,
.service-showcase-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(51, 201, 118, 0.28);
  box-shadow: 0 26px 52px rgba(35, 73, 136, 0.12);
}

.service-showcase-card:hover::before,
.service-showcase-card:focus-visible::before {
  opacity: 1;
}

.service-showcase-card:hover::after,
.service-showcase-card:focus-visible::after {
  transform: scaleX(1);
}

.service-showcase-index {
  position: relative;
  z-index: 1;
  color: rgba(35, 73, 136, 0.18);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-showcase-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.service-showcase-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-showcase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-showcase-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.service-showcase-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(35, 73, 136, 0.06);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-showcase-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(173, 247, 129, 0.42), rgba(35, 73, 136, 0.08));
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.28s ease, background 0.28s ease;
}

.service-showcase-card:hover .service-showcase-arrow,
.service-showcase-card:focus-visible .service-showcase-arrow {
  transform: translateX(3px);
  background: linear-gradient(135deg, rgba(173, 247, 129, 0.62), rgba(51, 201, 118, 0.18));
}

.process-showcase-section {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.4) 0%, transparent 100%);
}

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

.process-showcase-rail {
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(173, 247, 129, 0.2) 0%,
    rgba(51, 201, 118, 0.55) 35%,
    rgba(35, 73, 136, 0.35) 100%
  );
  pointer-events: none;
}

.process-showcase-step {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px 18px 24px;
  border-radius: 24px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(35, 73, 136, 0.07);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.process-showcase-step:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 201, 118, 0.26);
  box-shadow: 0 24px 48px rgba(35, 73, 136, 0.11);
}

.process-showcase-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}

.process-showcase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(51, 201, 118, 0.45);
  box-shadow: 0 8px 20px rgba(35, 73, 136, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.process-showcase-visual {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 8px 6px 4px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.9), rgba(255, 255, 255, 0.4));
  overflow: hidden;
}

.process-showcase-visual img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-showcase-step:hover .process-showcase-visual img {
  transform: scale(1.04) translateY(-2px);
}

.process-showcase-step h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-align: center;
}

.process-showcase-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
  text-align: center;
}

.home-page .process-showcase-step p {
  font-size: 0.94rem;
  line-height: 1.58;
}

.services-directory-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 28px 34px;
}

.services-directory-heading {
  margin-bottom: 0;
}

.services-directory-heading .button {
  margin-top: 8px;
}

.services-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-directory-item {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 164px;
  padding: 22px 62px 20px 22px;
  border-radius: 26px;
  border: 1px solid rgba(35, 73, 136, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
    linear-gradient(135deg, rgba(173, 247, 129, 0.12), rgba(35, 73, 136, 0.02));
  box-shadow: 0 18px 42px rgba(35, 73, 136, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-directory-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gradient);
  opacity: 0.9;
}

.service-directory-item:hover,
.service-directory-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(51, 201, 118, 0.28);
  box-shadow: 0 24px 52px rgba(35, 73, 136, 0.12);
}

.service-directory-copy {
  display: grid;
  gap: 8px;
}

.service-directory-item h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.24rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.service-directory-item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.service-directory-meta {
  margin-top: auto;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  opacity: 0.8;
}

.service-directory-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(173, 247, 129, 0.34), rgba(35, 73, 136, 0.08));
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.home-page .testimonial {
  padding-top: 22px;
}

.home-page .quote {
  padding-top: 24px;
}

.home-page .blog-card h3 {
  font-size: 1.28rem;
}

.home-page .cta-band-copy {
  padding: 38px 38px 36px;
}

.home-page .spacer-top {
  margin-top: 20px;
}

.industries-page .page-hero {
  padding: 42px 0 28px;
}

.industries-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 22px 28px;
}

.industries-page .hero-copy {
  display: grid;
  align-content: start;
}

.industries-page .hero-copy h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 8.8ch;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
}

.industries-page .hero-copy p {
  max-width: 57ch;
  font-size: 1rem;
  line-height: 1.62;
}

.industries-page .hero-copy p + p {
  margin-top: -2px;
}

.industries-page .hero-actions {
  margin-top: 22px;
}

.industries-page .hero-visual-stack {
  gap: 16px;
}

.industries-page .hero-photo-card {
  min-height: 410px;
  border-color: rgba(35, 73, 136, 0.1);
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.14);
}

.industries-page .hero-photo-card img {
  object-position: center 38%;
}

.industries-page .hero-photo-card::after {
  background:
    linear-gradient(180deg, rgba(10, 20, 40, 0.08) 0%, rgba(10, 20, 40, 0.58) 100%),
    linear-gradient(145deg, rgba(35, 73, 136, 0.1), rgba(173, 247, 129, 0.04));
}

.industries-page .hero-photo-card .floating-proof,
.industries-page .hero-photo-card .hero-photo-caption {
  display: none !important;
}

.industries-page .floating-proof {
  position: absolute;
  top: 20px;
  right: 20px;
  width: min(270px, calc(100% - 40px));
  padding: 18px 18px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 46px rgba(22, 40, 76, 0.16);
  backdrop-filter: blur(14px);
  animation: none;
}

.industries-page .floating-proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #234988 0%, #33c976 62%, #adf781 100%);
}

.industries-page .floating-proof span,
.industries-page .floating-proof strong,
.industries-page .floating-proof p {
  position: relative;
  z-index: 1;
}

.industries-page .floating-proof span {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.industries-page .floating-proof strong {
  font-size: 1.18rem;
  line-height: 1.18;
}

.industries-page .floating-proof p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.industries-page .hero-photo-caption {
  left: 20px;
  right: 20px;
  bottom: 20px;
  gap: 10px;
  max-width: 25rem;
  padding: 16px 18px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 21, 43, 0.78), rgba(10, 21, 43, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(10, 21, 43, 0.18);
  backdrop-filter: blur(12px);
}

.industries-page .hero-photo-caption strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.industries-page .hero-photo-caption .pill {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.industries-page .hero-panel {
  padding: 22px;
}

.industries-page .industry-card {
  gap: 16px;
  padding: 0 0 28px;
  overflow: hidden;
}

.industries-page .industry-card .media-frame {
  margin: 0;
  width: 100%;
  border-radius: 32px 32px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.98)),
    linear-gradient(135deg, rgba(173, 247, 129, 0.08), rgba(35, 73, 136, 0.04));
}

.industries-page .industry-card .media-industry {
  height: auto;
  aspect-ratio: 16 / 9;
}

.industries-page .industry-card .media-frame img[src$=".svg"] {
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.industries-page .industry-card > :not(.media-frame) {
  padding-left: 28px;
  padding-right: 28px;
}

.industries-page .industry-card .industry-card-top {
  padding-top: 6px;
}

.industries-page .industry-card p {
  margin: 0;
}

.industries-page .metric-list {
  gap: 10px;
}

.industries-page .metric-item {
  gap: 14px;
  padding: 16px 18px;
}

.industries-page .metric-item strong {
  font-size: 1.55rem;
}

.industries-page main > .section:last-of-type {
  padding-top: 36px;
  padding-bottom: 28px;
}

.clients-page .page-hero {
  padding: 42px 0 28px;
}

.clients-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 22px 28px;
}

.clients-page .hero-copy {
  display: grid;
  align-content: start;
}

.clients-page .hero-copy h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 10ch;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
}

.clients-page .hero-copy p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.62;
}

.clients-page .hero-actions {
  margin-top: 22px;
}

.clients-page .hero-notes {
  margin-top: 18px;
}

.clients-page .hero-visual-stack {
  gap: 16px;
}

.clients-page .hero-photo-card {
  min-height: 420px;
  border-color: rgba(35, 73, 136, 0.1);
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.14);
}

.clients-page .hero-photo-card img {
  object-position: center 42%;
}

.clients-page .hero-photo-card::after {
  background:
    linear-gradient(180deg, rgba(10, 20, 40, 0.04) 0%, rgba(10, 20, 40, 0.72) 100%),
    linear-gradient(145deg, rgba(35, 73, 136, 0.1), rgba(173, 247, 129, 0.04));
}

.clients-page .hero-photo-caption {
  max-width: 30rem;
}

.clients-page .hero-photo-caption strong {
  font-size: 1.08rem;
  line-height: 1.34;
}

.clients-page .clients-proof-section {
  padding: 34px 0 44px;
}

.clients-page .clients-proof-heading {
  max-width: none;
  margin-bottom: 28px;
}

.clients-page .clients-proof-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
}

.clients-page .clients-proof-heading-row > div {
  max-width: 640px;
}

.clients-page .clients-proof-heading-row h2 {
  margin-top: 14px;
  margin-bottom: 12px;
}

.clients-page .clients-proof-heading-row p {
  margin: 0;
  max-width: 58ch;
}

.clients-page .clients-proof-heading-row .pill {
  flex: 0 0 auto;
  margin-top: 14px;
}

.clients-page .clients-proof-grid {
  align-items: stretch;
}

.clients-page .clients-proof-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 26px 24px;
}

.clients-page .clients-proof-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.clients-page .clients-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.clients-page .logo-strip {
  padding: 18px 0;
}

.clients-page .clients-proof-section {
  padding-top: 48px;
}

.clients-page .testimonial-grid {
  align-items: stretch;
}

.clients-page .testimonial {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.clients-page .person {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(35, 73, 136, 0.08);
}

.clients-page main > .section:last-of-type {
  padding-top: 36px;
  padding-bottom: 28px;
}

.blogs-page .page-hero {
  padding: 42px 0 28px;
}

.blogs-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 22px 28px;
}

.blogs-page .hero-copy {
  display: grid;
  align-content: start;
}

.blogs-page .hero-copy h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 11ch;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
}

.blogs-page .hero-copy p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.62;
}

.blogs-page .hero-actions {
  margin-top: 22px;
}

.blogs-page .hero-notes {
  margin-top: 18px;
}

.blogs-page .hero-visual-stack {
  gap: 16px;
}

.blogs-page .hero-photo-card {
  min-height: 420px;
  border-color: rgba(35, 73, 136, 0.1);
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.14);
}

.blogs-page .hero-photo-card img {
  object-position: center 38%;
}

.blogs-page .hero-photo-card::after {
  background:
    linear-gradient(180deg, rgba(10, 20, 40, 0.04) 0%, rgba(10, 20, 40, 0.72) 100%),
    linear-gradient(145deg, rgba(35, 73, 136, 0.1), rgba(173, 247, 129, 0.04));
}

.blogs-page .hero-photo-caption {
  max-width: 28rem;
}

.blogs-page .hero-photo-caption strong {
  font-size: 1.08rem;
  line-height: 1.34;
}

.blogs-page .blogs-topics-section {
  padding: 34px 0 44px;
}

.blogs-page .blogs-topics-heading {
  max-width: none;
  margin-bottom: 28px;
}

.blogs-page .blogs-topics-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
}

.blogs-page .blogs-topics-heading-row > div {
  max-width: 640px;
}

.blogs-page .blogs-topics-heading-row h2 {
  margin-top: 14px;
  margin-bottom: 12px;
}

.blogs-page .blogs-topics-heading-row p {
  margin: 0;
  max-width: 58ch;
}

.blogs-page .blogs-topics-heading-row .pill {
  flex: 0 0 auto;
  margin-top: 14px;
}

.blogs-page .blogs-topics-grid {
  align-items: stretch;
}

.blogs-page .blogs-topic-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
}

.blogs-page .blogs-topic-card strong {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.blogs-page .blogs-topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.blogs-page .blogs-articles-section {
  padding-top: 40px;
}

.blogs-page .blogs-articles-heading {
  margin-bottom: 28px;
  max-width: 640px;
}

.blogs-page .blogs-articles-heading h2 {
  margin-top: 14px;
  margin-bottom: 12px;
}

.blogs-page .blogs-articles-heading p {
  margin: 0;
  max-width: 58ch;
}

.blogs-page .blog-grid {
  align-items: stretch;
}

.blogs-page .blog-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
}

.blogs-page .blog-card h3 {
  font-size: 1.22rem;
  line-height: 1.22;
}

.blogs-page .blog-card .service-link {
  margin-top: auto;
}

.blogs-page main > .section:last-of-type {
  padding-top: 36px;
  padding-bottom: 28px;
}

.compliance-page .page-hero {
  padding: 42px 0 28px;
}

.compliance-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 22px 28px;
}

.compliance-page .hero-copy {
  display: grid;
  align-content: start;
}

.compliance-page .hero-copy h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.compliance-page .hero-copy p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.62;
}

.compliance-page .hero-copy p + p {
  margin-top: 0;
}

.compliance-page .hero-actions {
  margin-top: 22px;
}

.compliance-page .hero-visual-stack {
  gap: 16px;
}

.compliance-page .hero-photo-card {
  min-height: 420px;
  border-color: rgba(35, 73, 136, 0.1);
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.14);
}

.compliance-page .hero-photo-card img {
  object-position: center 45%;
}

.compliance-page .hero-photo-card::after {
  background:
    linear-gradient(180deg, rgba(10, 20, 40, 0.04) 0%, rgba(10, 20, 40, 0.72) 100%),
    linear-gradient(145deg, rgba(35, 73, 136, 0.12), rgba(173, 247, 129, 0.03));
}

.compliance-page .hero-photo-caption {
  max-width: 30rem;
}

.compliance-page .hero-photo-caption strong {
  font-size: 1.08rem;
  line-height: 1.34;
}

.compliance-page .compliance-summary-section {
  padding: 34px 0 44px;
}

.compliance-page .compliance-summary-grid {
  align-items: stretch;
}

.compliance-page .compliance-summary-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
}

.compliance-page .compliance-summary-card strong {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.compliance-page .compliance-summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.contact-page .page-hero {
  padding: 42px 0 28px;
}

.contact-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 22px 28px;
}

.contact-page .hero-copy {
  display: grid;
  align-content: start;
}

.contact-page .hero-copy h1 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 11ch;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
}

.contact-page .hero-copy p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.62;
}

.contact-page .hero-actions {
  margin-top: 22px;
}

.contact-page .hero-notes {
  margin-top: 18px;
}

.contact-page .hero-visual-stack {
  gap: 16px;
}

.contact-page .hero-photo-card {
  aspect-ratio: 3 / 2;
  min-height: 420px;
  border-color: rgba(35, 73, 136, 0.1);
  box-shadow: 0 20px 42px rgba(20, 38, 74, 0.14);
}

.contact-page .hero-photo-card img {
  object-position: center 36%;
}

.contact-page .hero-photo-card::after {
  background:
    linear-gradient(180deg, rgba(10, 20, 40, 0.04) 0%, rgba(10, 20, 40, 0.72) 100%),
    linear-gradient(145deg, rgba(35, 73, 136, 0.1), rgba(173, 247, 129, 0.04));
}

.contact-page .hero-photo-caption {
  max-width: 28rem;
}

.contact-page .hero-photo-caption strong {
  font-size: 1.08rem;
  line-height: 1.34;
}

.contact-page .contact-details-section {
  padding: 34px 0 44px;
}

.contact-page .contact-details-section .section-heading {
  margin-bottom: 24px;
}

.contact-page .contact-details-grid {
  align-items: stretch;
}

.contact-page .contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 26px 24px;
}

.contact-page .contact-card-label {
  color: var(--brand-gray);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page .contact-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.contact-page .contact-card p {
  margin: 0;
}

.contact-page .contact-card a {
  margin-top: 4px;
  color: var(--primary);
  font-weight: 700;
}

.contact-page #enquiry.section {
  padding-top: 44px;
  padding-bottom: 56px;
}

.contact-page .contact-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-page .form-shell {
  padding: 32px;
}

.contact-page .form-intro {
  margin-bottom: 24px;
}

.contact-page .form-intro h2 {
  max-width: 16ch;
}

.contact-page .form-status:not([hidden]) {
  min-height: 46px;
}

.contact-page .service-detail-side {
  position: sticky;
  top: 96px;
}

.contact-page .service-detail-side .side-panel:first-child {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
  box-shadow: 0 18px 36px rgba(35, 73, 136, 0.08);
}

.contact-page .service-detail-side .side-panel:first-child h3 {
  font-size: 1.34rem;
}

.services-nav .card {
  padding: 22px;
}

.services-nav a {
  display: block;
  min-height: 100%;
}

.service-detail-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.service-detail {
  padding: 34px;
  display: grid;
  gap: 22px;
}

.services-page .page-hero {
  padding: 44px 0 32px;
}

.services-page .section {
  padding: 54px 0;
}

.services-page .section[id] {
  padding: 54px 0;
}

.services-page #service-map {
  padding: 54px 0 44px;
}

.services-page .service-map-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(173, 247, 129, 0.14), transparent 32%),
    radial-gradient(circle at 92% 100%, rgba(35, 73, 136, 0.07), transparent 36%);
}

.services-page .service-map-section .section-heading {
  margin-bottom: 28px;
}

.service-map-panel {
  position: relative;
  padding: 8px;
  border-radius: 28px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 22px 48px rgba(35, 73, 136, 0.08);
  overflow: hidden;
}

.service-map-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(35, 73, 136, 0.12) 12%,
    rgba(51, 201, 118, 0.28) 50%,
    rgba(35, 73, 136, 0.12) 88%,
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.service-map-spine {
  display: none;
}

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

.service-map-column {
  display: grid;
}

.service-map-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num main"
    "num meta";
  gap: 4px 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(35, 73, 136, 0.08);
  transition: background 0.28s ease, padding-left 0.28s ease;
  opacity: 0;
  animation: fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.service-map-column:last-child .service-map-row:last-child,
.service-map-column:first-child .service-map-row:last-child {
  border-bottom: none;
}

.service-map-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-map-row:hover,
.service-map-row:focus-visible {
  background: rgba(35, 73, 136, 0.03);
  padding-left: 26px;
}

.service-map-row:hover::before,
.service-map-row:focus-visible::before {
  transform: scaleY(1);
}

.service-map-row-num {
  grid-area: num;
  align-self: start;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.service-map-row-main {
  grid-area: main;
  display: grid;
  gap: 4px;
}

.service-map-row-main strong {
  color: var(--primary);
  font-size: 1.06rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-map-row-main span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-map-row-meta {
  grid-area: meta;
  color: rgba(35, 73, 136, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-map-row:hover .service-map-row-main strong,
.service-map-row:focus-visible .service-map-row-main strong {
  color: var(--accent);
}

.services-page .section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.services-page .section-heading h2 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.services-page .section-heading p {
  font-size: 1rem;
  line-height: 1.6;
}

.services-page .service-detail-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  grid-template-areas:
    "content visual"
    "content areas"
    "stack stack";
  gap: 16px 18px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background:
    radial-gradient(circle at top right, rgba(173, 247, 129, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(51, 201, 118, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  box-shadow: 0 24px 54px rgba(35, 73, 136, 0.1);
  overflow: hidden;
}

.services-page .service-detail-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 40%),
    linear-gradient(180deg, rgba(35, 73, 136, 0.02), transparent 62%);
  pointer-events: none;
}

.services-page .service-detail {
  grid-area: content;
  position: relative;
  z-index: 1;
  padding: 8px 0 4px;
  gap: 14px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-page .service-detail::before {
  display: none;
}

.services-page .service-detail h3,
.services-page .service-detail p {
  max-width: 58ch;
}

.services-page .service-detail h3 {
  max-width: 14ch;
  color: var(--primary);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.services-page .service-detail:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.services-page .service-number {
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.services-page .service-detail p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.services-page .service-detail p:first-of-type {
  color: var(--text);
  font-size: 1.06rem;
}

.services-page .service-detail p:nth-of-type(n + 3) {
  display: none;
}

.services-page .service-detail p + p {
  margin-top: 10px;
}

.services-page .service-detail-side {
  display: contents;
}

.services-page .service-detail-side .media-frame {
  grid-area: visual;
  z-index: 1;
  min-height: 316px;
  margin-bottom: 0;
  border-radius: 28px;
  border-color: rgba(35, 73, 136, 0.1);
  background:
    radial-gradient(circle at top center, rgba(173, 247, 129, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.98));
  box-shadow: 0 18px 36px rgba(35, 73, 136, 0.12);
}

.services-page .media-service {
  max-width: none;
  height: 100%;
  min-height: 316px;
}

.services-page .service-detail-side .side-panel {
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: 26px;
}

.services-page .service-detail-side .side-panel:hover {
  transform: none;
  border-color: inherit;
  box-shadow: inherit;
}

.services-page .service-detail-side .side-panel:first-of-type {
  grid-area: areas;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background:
    radial-gradient(circle at top right, rgba(173, 247, 129, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 245, 0.98));
  box-shadow: 0 16px 34px rgba(35, 73, 136, 0.08);
}

.services-page .service-detail-side .side-panel:last-of-type {
  grid-area: stack;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  align-items: center;
  gap: 18px 20px;
  border: 1px solid rgba(35, 73, 136, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 1));
  box-shadow: 0 20px 42px rgba(9, 19, 42, 0.16);
}

.services-page .service-detail-side .side-panel strong {
  margin-bottom: 0;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-page .service-detail-side .detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.services-page .service-detail-side .detail-list li {
  position: relative;
  min-height: 100%;
  padding: 16px 48px 16px 16px;
  border: 1px solid rgba(35, 73, 136, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 250, 255, 0.98));
  border-bottom: 0;
}

.services-page .service-detail-side .detail-list li:first-child {
  padding-top: 16px;
}

.services-page .service-detail-side .detail-list li::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(173, 247, 129, 0.14);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.services-page .service-detail-side .detail-list strong {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.25;
}

.services-page .service-detail-side .detail-list span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.services-page .service-detail-side .stack-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-content: start;
  gap: 10px;
}

.services-page .service-detail-side .stack-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(35, 73, 136, 0.08);
  background: #ffffff;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(35, 73, 136, 0.06);
}

.services-page .service-detail-side .stack-logo {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 0;
}

.service-number {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(35, 73, 136, 0.1);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  line-height: 1.2;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.side-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(173, 247, 129, 0.12), rgba(35, 73, 136, 0.03));
  border: 1px solid rgba(35, 73, 136, 0.1);
}

.side-panel strong {
  display: block;
  margin-bottom: 12px;
}

.side-panel h3,
.form-shell h2 {
  margin: 0 0 12px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.form-shell h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.side-panel p,
.form-intro p {
  color: var(--muted);
}

.contact-grid {
  align-items: start;
}

.form-shell {
  padding: 30px;
}

.form-intro {
  margin-bottom: 22px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 0.94rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(35, 73, 136, 0.16);
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

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

.consent {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  margin-top: 4px;
}

.consent a {
  color: var(--primary);
  font-weight: 700;
}

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

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.form-status--error {
  color: #8f1d1d;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-success-modal[hidden] {
  display: none;
}

.contact-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 42, 82, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-success-modal.is-active .contact-success-backdrop {
  opacity: 1;
}

.contact-success-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 420px);
  padding: 36px 32px 32px;
  border-radius: 28px;
  border: 1px solid rgba(35, 73, 136, 0.08);
  background: #fff;
  box-shadow:
    0 28px 60px rgba(21, 42, 82, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.contact-success-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gradient);
}

.contact-success-modal.is-active .contact-success-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-success-dialog:focus {
  outline: none;
}

.contact-success-hero {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 4px 0 22px;
}

.contact-success-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(51, 201, 118, 0.35);
  opacity: 0;
  transform: scale(0.55);
}

.contact-success-modal.is-active .contact-success-orbit {
  animation: contact-orbit-pulse 1.6s ease-out forwards;
}

.contact-success-modal.is-active .contact-success-orbit--delay {
  animation-delay: 0.22s;
}

.contact-success-mark {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.5);
}

.contact-success-modal.is-active .contact-success-mark {
  animation: contact-mark-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.contact-success-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 10px 22px rgba(51, 201, 118, 0.28));
}

.contact-success-mark-bg {
  fill: #33c976;
}

.contact-success-mark-check {
  fill: none;
  stroke: #fff;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.contact-success-modal.is-active .contact-success-mark-check {
  animation: contact-check-draw 0.4s ease 0.42s forwards;
}

.contact-success-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-success-sparks span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  opacity: 0;
}

.contact-success-sparks span:nth-child(1) { --tx: -38px; --ty: -42px; background: #adf781; }
.contact-success-sparks span:nth-child(2) { --tx: 40px; --ty: -36px; background: #33c976; }
.contact-success-sparks span:nth-child(3) { --tx: 44px; --ty: 28px; background: #234988; }
.contact-success-sparks span:nth-child(4) { --tx: -34px; --ty: 36px; background: #adf781; }
.contact-success-sparks span:nth-child(5) { --tx: 0px; --ty: -48px; background: #33c976; }
.contact-success-sparks span:nth-child(6) { --tx: -46px; --ty: 4px; background: #234988; }

.contact-success-modal.is-active .contact-success-sparks span {
  animation: contact-spark-pop 0.75s ease calc(0.34s + var(--i, 0) * 0.05s) forwards;
}

.contact-success-sparks span:nth-child(1) { --i: 0; }
.contact-success-sparks span:nth-child(2) { --i: 1; }
.contact-success-sparks span:nth-child(3) { --i: 2; }
.contact-success-sparks span:nth-child(4) { --i: 3; }
.contact-success-sparks span:nth-child(5) { --i: 4; }
.contact-success-sparks span:nth-child(6) { --i: 5; }

.contact-success-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-success-label {
  margin: 0;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-success-dialog h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.contact-success-lead {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 32ch;
}

.contact-success-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(35, 73, 136, 0.18);
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.contact-success-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.contact-success-cta::after {
  content: "→";
  display: inline-block;
  font-size: 1.02rem;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-success-cta:hover,
.contact-success-cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  background: var(--primary-deep);
  box-shadow: 0 18px 36px rgba(35, 73, 136, 0.26);
  color: #fff;
}

.contact-success-cta:hover::before,
.contact-success-cta:focus-visible::before {
  transform: translateX(130%);
}

.contact-success-cta:hover::after,
.contact-success-cta:focus-visible::after {
  transform: translateX(4px);
}

@keyframes contact-orbit-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.55);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes contact-mark-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contact-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes contact-spark-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-success-backdrop,
  .contact-success-dialog {
    transition: none;
  }

  .contact-success-modal.is-active .contact-success-dialog {
    opacity: 1;
    transform: none;
  }

  .contact-success-orbit,
  .contact-success-mark,
  .contact-success-mark-check,
  .contact-success-sparks span {
    animation: none !important;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }

  .contact-success-orbit {
    display: none;
  }

  .nav-toggle-bar,
  .site-header-bar .nav,
  .mobile-nav-inner,
  body::before,
  .site-header {
    transition: none !important;
  }

  .contact-success-cta::before,
  .contact-success-cta::after {
    transition: none;
  }
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-card span {
  display: block;
  color: var(--primary);
  font-weight: 700;
}

.leadership-card h3 span {
  display: block;
  margin-top: 6px;
  color: var(--primary);
  font-size: 0.94rem;
}

.placeholder-card {
  display: grid;
  align-content: start;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 251, 255, 0.96));
}

.placeholder-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(173, 247, 129, 0.24);
  border: 1px solid rgba(51, 201, 118, 0.16);
  background-clip: padding-box;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px;
}

.office-card strong {
  display: block;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.office-card span,
.office-card a {
  color: var(--muted);
}

.office-card .pill {
  display: inline-flex;
  margin-bottom: 4px;
  white-space: nowrap;
  align-self: flex-start;
}

.certification {
  display: grid;
  align-content: start;
  gap: 14px;
}

.hero-panel .media-support {
  max-width: none;
  height: 240px;
}

.hero-panel .media-frame {
  margin-bottom: 2px;
}

.hero-panel .media-frame img {
  object-position: center center;
}

.hero-actions .button,
.cta-actions .button {
  min-height: 56px;
  padding-left: 28px;
  padding-right: 28px;
}

.spacer-top {
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .timeline,
  .grid-4,
  .services-nav,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-map-columns {
    grid-template-columns: 1fr;
  }

  .service-map-panel::before {
    display: none;
  }

  .service-map-column:first-child .service-map-row:last-child {
    border-bottom: 1px solid rgba(35, 73, 136, 0.08);
  }

  .service-detail-grid,
  .hero-grid,
  .editorial-split,
  .article-layout,
  .grid-3,
  .offices-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .hero-grid,
  .compliance-page .hero-grid,
  .blogs-page .hero-grid,
  .clients-page .hero-grid,
  .industries-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-grid > .hero-copy,
  .hero-grid > .hero-visual-stack {
    min-width: 0;
    width: 100%;
  }

  .hero-grid > .hero-visual-stack {
    position: relative;
    z-index: 0;
  }

  .hero-grid > .hero-copy {
    position: relative;
    z-index: 1;
  }

  .services-grid,
  .industries-grid,
  .certification-grid,
  .blog-grid,
  .grid-2,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-column--brand {
    grid-column: 1 / -1;
  }

  .footer-column--services {
    grid-column: 1 / -1;
  }

  .footer-expand[open] .footer-expand-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-photo-card {
    min-height: 400px;
  }

  .story-photo-frame,
  .story-photo-frame-short {
    min-height: 380px;
  }

  .home-page .section {
    padding: 48px 0;
  }

  .home-page .page-hero {
    padding: 38px 0 28px;
  }

  .home-page .hero-grid,
  .home-page .editorial-split {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .services-page .hero-grid {
    gap: 26px 32px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  }

  .home-page .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "proof";
  }

  .home-page .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-photo-card,
  .home-page .story-photo-frame,
  .services-page .hero-photo-card {
    min-height: 380px;
  }

  .services-page .page-hero {
    padding: 38px 0 28px;
  }

  .services-page .section,
  .services-page .section[id],
  .services-page #service-map {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .services-directory-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .process-showcase {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .process-showcase-rail {
    display: none;
  }

  .process-showcase-step {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  .services-page .service-detail-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "areas"
      "stack";
    gap: 16px;
    padding: 22px;
  }

  .services-page .service-detail {
    padding: 4px 0 2px;
  }

  .services-page .service-detail h3 {
    max-width: 16ch;
  }

  .services-page .service-detail-side .side-panel:last-of-type {
    grid-template-columns: 1fr;
  }

  .cta-band-services-layout,
  .cta-band-industries-layout,
  .cta-band-clients-layout,
  .cta-band-rich-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-band-services-copy,
  .cta-band-industries-copy,
  .cta-band-clients-copy,
  .cta-band-rich-copy {
    padding: 38px 32px 30px;
    background: linear-gradient(180deg, rgba(12, 24, 48, 0.22) 0%, rgba(12, 24, 48, 0.06) 100%);
  }

  .cta-band-services-side,
  .cta-band-industries-side,
  .cta-band-clients-side,
  .cta-band-rich-side {
    padding: 4px 32px 36px;
  }

  .cta-band-rich h2,
  .cta-band-clients h2,
  .cta-band-industries h2,
  .cta-band-services h2 {
    max-width: none;
  }

  .clients-page .clients-proof-heading-row {
    flex-direction: column;
  }

  .clients-page .clients-proof-heading-row .pill {
    margin-top: 0;
  }

  .blogs-page .blogs-topics-heading-row {
    flex-direction: column;
  }

  .blogs-page .blogs-topics-heading-row .pill {
    margin-top: 0;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .credentials-pills {
    grid-template-columns: 1fr;
  }

  .trust-logo-marquee-track {
    animation-duration: 34s;
  }

  .contact-page .service-detail-side {
    position: static;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-page .site-header .brand-mark span {
    white-space: normal;
  }

  .services-page .site-header .brand-mark span {
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .site-header {
    z-index: 50;
    width: 100%;
    transition:
      background 0.32s ease,
      border-color 0.32s ease,
      box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-nav-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(35, 73, 136, 0.08);
    box-shadow: 0 16px 40px rgba(20, 38, 74, 0.14);
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 28, 56, 0.58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.34s ease,
      visibility 0s linear 0.34s;
  }

  body.nav-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.34s ease,
      visibility 0s;
  }

  .site-header-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: auto;
    padding: 14px 0 0;
  }

  .home-page .site-header-bar,
  .services-page .site-header-bar {
    min-height: auto;
    padding: 14px 0 0;
    gap: 0;
  }

  .site-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0 16px 14px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.32s ease;
    box-sizing: border-box;
  }

  .site-header.is-nav-open .site-header-top {
    padding-bottom: 14px;
    border-bottom-color: rgba(35, 73, 136, 0.08);
  }

  .site-header-top .brand {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: none;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-header-top .brand img {
    width: 132px;
    flex-shrink: 0;
  }

  .site-header-top .brand-mark {
    min-width: 0;
  }

  .site-header-top .brand-mark span {
    font-size: 0.74rem;
    line-height: 1.35;
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .site-header-bar .nav {
    display: grid;
    grid-template-rows: 0fr;
    flex: 0 0 auto;
    align-content: start;
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0s linear 0.42s;
  }

  .site-header.is-nav-open .site-header-bar .nav {
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition:
      grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease 0.06s,
      visibility 0s;
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 8px 0 max(16px, env(safe-area-inset-bottom));
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .site-header-bar .nav a:not(.button) {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 48px;
    margin: 0;
    padding: 14px 16px 14px 13px;
    border: 0;
    border-left: 3px solid transparent;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
    color: var(--muted);
    box-sizing: border-box;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .site-header-bar .nav a.active:not(.button) {
    border-left-color: #33c976;
    background: rgba(173, 247, 129, 0.18);
    color: var(--primary);
    font-weight: 700;
    box-shadow: none;
  }

  .site-header-bar .nav a:not(.button):hover,
  .site-header-bar .nav a:not(.button):focus-visible {
    background: rgba(173, 247, 129, 0.12);
    color: var(--primary);
  }

  .site-header-bar .nav .button.button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
    padding: 0 20px;
    min-height: 52px;
    border-radius: 999px;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
  }

  .home-page .site-header .nav,
  .services-page .site-header .nav {
    margin-left: 0;
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 0;
  }

  .home-page .site-header-bar .nav a:not(.button),
  .services-page .site-header-bar .nav a:not(.button) {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 48px;
    padding: 14px 16px 14px 13px;
  }

  .home-page .site-header .nav .button,
  .services-page .site-header .nav .button {
    display: flex;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 420px) {
  .site-header-top .brand-mark {
    display: none;
  }

  .site-header-top .brand img {
    width: 124px;
  }
}

@media (max-width: 760px) {
  .site-header-bar {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .page-hero,
  .section {
    padding: 64px 0;
  }

  .grid-4,
  .services-nav,
  .proof-grid,
  .services-grid,
  .industries-grid,
  .certification-grid,
  .blog-grid,
  .grid-2,
  .contact-grid,
  .grid-3,
  .offices-grid,
  .leadership-grid,
  .testimonial-grid,
  .timeline,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    padding-top: 32px;
  }

  .site-footer {
    padding-bottom: 24px;
  }

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

  .footer-column--brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    display: none;
  }

  .footer-legal a {
    font-size: 0.84rem;
  }

  .footer-column--services {
    grid-column: 1 / -1;
  }

  .footer-expand[open] .footer-expand-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column--contact {
    grid-column: 1 / -1;
  }

  .footer-column--contact span {
    display: none;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-column a,
  .footer-column span {
    font-size: 0.9rem;
  }

  .footer-copy {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
  }

  main > .section:last-of-type {
    padding-bottom: 24px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .article-shell h1,
  .article-lead {
    max-width: none;
  }

  .page-hero {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .contact-page .page-hero,
  .contact-page .contact-details-section,
  .contact-page #enquiry.section,
  .compliance-page .page-hero,
  .blogs-page .page-hero,
  .clients-page .page-hero,
  .industries-page .page-hero {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .contact-page .form-shell,
  .contact-page .service-detail-side .side-panel:first-child {
    padding: 24px;
  }

  .floating-proof {
    position: static;
    width: auto;
    margin: 18px 18px 0;
    animation: none;
  }

  .hero-photo-card {
    min-height: 300px;
  }

  .contact-page .hero-photo-card,
  .compliance-page .hero-photo-card,
  .blogs-page .hero-photo-card,
  .clients-page .hero-photo-card,
  .industries-page .hero-photo-card {
    aspect-ratio: auto;
    min-height: 280px;
    max-height: none;
  }

  .contact-page .hero-photo-caption,
  .compliance-page .hero-photo-caption,
  .blogs-page .hero-photo-caption,
  .clients-page .hero-photo-caption,
  .industries-page .hero-photo-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .media-process,
  .media-industry,
  .media-trust,
  .media-location,
  .media-support {
    max-width: none;
  }

  .media-process {
    height: 210px;
  }

  .cta-band-photo {
    padding: 0;
  }

  .cta-band-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cta-band-copy {
    padding: 28px 24px 24px;
  }

  .cta-band-visual {
    min-height: 220px;
    background-position: center top;
  }

  .story-photo-frame,
  .story-photo-frame-short {
    min-height: 300px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel-top .pill,
  .button,
  .eyebrow,
  .client-logos span,
  .deliverables li,
  .stack-list li,
  .badge-list li,
  .placeholder-tag,
  .office-card .pill {
    white-space: normal;
  }

  .footer-column .brand {
    width: 100%;
    justify-content: space-between;
  }

  .footer-column .brand img {
    width: 148px;
  }

  .form-shell,
  .card,
  .feature-card,
  .testimonial,
  .contact-card,
  .certification,
  .leadership-card,
  .placeholder-card,
  .hero-panel,
  .service-detail,
  .office-card,
  .timeline-step,
  .cta-band {
    padding: 24px;
  }

  .cta-band-photo,
  .cta-band-services,
  .cta-band-industries,
  .cta-band-clients,
  .cta-band-rich {
    padding: 0;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .home-page .page-hero {
    padding: 28px 0 20px;
  }

  .services-page .page-hero {
    padding: 28px 0 20px;
  }

  .services-page .section,
  .services-page .section[id],
  .services-page #service-map {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .service-map-row {
    padding: 18px 16px;
  }

  .service-map-row:hover,
  .service-map-row:focus-visible {
    padding-left: 20px;
  }

  .home-page .section {
    padding: 36px 0;
  }

  .home-page .section-heading {
    margin-bottom: 18px;
  }

  .home-page .section-heading h2 {
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .home-page .hero-photo-card,
  .home-page .story-photo-frame,
  .services-page .hero-photo-card {
    min-height: 340px;
  }

  .home-page .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-proof-band {
    padding: 20px 18px 18px;
  }

  .home-page .hero-proof-band-head {
    flex-direction: column;
    gap: 12px;
  }

  .home-page .feature-card,
  .home-page .service-card,
  .home-page .industry-card,
  .home-page .timeline-step,
  .home-page .testimonial,
  .home-page .blog-card {
    padding: 22px;
  }

  .home-page .grid-3,
  .home-page .services-grid,
  .home-page .industries-grid,
  .home-page .testimonial-grid,
  .home-page .blog-grid,
  .home-page .timeline {
    gap: 16px;
  }

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

  .services-directory {
    grid-template-columns: 1fr;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase-card {
    min-height: 0;
  }

  .service-directory-item {
    min-height: 0;
    padding: 20px 58px 18px 20px;
  }

  .service-directory-arrow {
    top: 18px;
    right: 18px;
  }

  .cta-band-services-copy,
  .cta-band-industries-copy,
  .cta-band-clients-copy,
  .cta-band-rich-copy {
    padding: 36px 22px 28px;
  }

  .cta-band-services-side,
  .cta-band-industries-side,
  .cta-band-clients-side,
  .cta-band-rich-side {
    padding: 0 22px 30px;
  }

  .cta-band-rich-layout,
  .cta-band-clients-layout,
  .cta-band-industries-layout,
  .cta-band-services-layout {
    gap: 18px;
  }

  .cta-band-rich .eyebrow,
  .cta-band-clients .eyebrow,
  .cta-band-industries .eyebrow,
  .cta-band-services .eyebrow {
    margin-bottom: 2px;
  }

  .cta-band-rich h2,
  .cta-band-clients h2,
  .cta-band-industries h2,
  .cta-band-services h2 {
    margin-top: 18px;
    margin-bottom: 14px;
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    line-height: 1.1;
  }

  .cta-band-rich p,
  .cta-band-clients p,
  .cta-band-industries p,
  .cta-band-services p {
    line-height: 1.58;
  }

  .cta-band-rich .cta-actions,
  .cta-band-clients .cta-actions,
  .cta-band-industries .cta-actions,
  .cta-band-services .cta-actions {
    margin-top: 22px;
    gap: 12px;
  }

  .cta-band-rich .cta-service-panel,
  .cta-band-clients .cta-service-panel,
  .cta-band-industries .cta-service-panel,
  .cta-band-services .cta-service-panel {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .cta-band-rich .cta-step-list,
  .cta-band-clients .cta-step-list {
    gap: 12px;
  }

  .cta-service-panel,
  .cta-service-mini {
    padding: 20px;
  }

  .cta-service-panel-compact {
    grid-template-columns: 1fr;
  }

  .services-page .service-detail-side .side-panel {
    padding: 18px;
  }

  .services-page .service-detail-side .detail-list {
    grid-template-columns: 1fr;
  }

  .services-page .media-service {
    min-height: 240px;
  }

  .home-page .site-header .brand,
  .services-page .site-header .brand {
    width: auto;
    justify-content: flex-start;
  }

  .home-page .site-header .brand img,
  .services-page .site-header .brand img {
    width: 160px;
  }

  .home-page .site-header .brand-mark span,
  .services-page .site-header .brand-mark span {
    font-size: 0.84rem;
  }

  .home-page .site-header .nav .button,
  .services-page .site-header .nav .button {
    margin-left: 0;
  }
}

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

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Mobile menu — final cascade overrides */
@media (max-width: 960px) {
  .site-header:not(.is-nav-open) #primary-nav {
    display: none !important;
  }

  .site-header.is-nav-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  .site-header.is-nav-open .site-header-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header.is-nav-open #primary-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
    grid-template-rows: none !important;
    height: auto !important;
  }

  #primary-nav .mobile-nav-inner,
  #primary-nav .mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #primary-nav .mobile-nav-inner {
    padding: 8px 16px 16px !important;
    box-sizing: border-box !important;
  }

  #primary-nav .mobile-nav-links {
    gap: 0 !important;
  }

  #primary-nav a:not(.button) {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 14px 16px 14px 13px !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  #primary-nav a.button.button-primary {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 12px 0 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
  }

  .home-page .site-header .nav,
  .services-page .site-header .nav,
  .home-page #primary-nav,
  .services-page #primary-nav {
    margin-left: 0 !important;
    justify-content: flex-start !important;
  }
}

/* Desktop header — restore horizontal nav (mobile wrapper must not stack links) */
@media (min-width: 961px) {
  .nav-toggle {
    display: none;
  }

  .site-header-top {
    display: contents;
  }

  .site-header-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--container), calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
    min-height: 82px;
    padding: 10px 0;
  }

  .home-page .site-header-bar,
  .services-page .site-header-bar {
    min-height: 78px;
    gap: 32px;
    padding: 10px 0;
  }

  .site-header-bar .nav,
  #primary-nav {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
    width: auto;
    max-width: none;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
    grid-template-rows: none;
    height: auto;
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
    width: auto;
    max-width: none;
    padding: 0;
    overflow: visible;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    width: auto;
    max-width: none;
  }

  .site-header-bar .nav a:not(.button),
  #primary-nav a:not(.button) {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: none;
    min-height: 44px;
    margin: 0;
    padding: 8px 0;
    border: 0;
    border-left: 0;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
  }

  .site-header-bar .nav a.active:not(.button),
  #primary-nav a.active:not(.button) {
    border-left: 0;
    background: transparent;
    font-weight: 700;
    box-shadow: none;
  }

  .site-header-bar .nav a:not(.button):hover,
  .site-header-bar .nav a:not(.button):focus-visible,
  #primary-nav a:not(.button):hover,
  #primary-nav a:not(.button):focus-visible {
    background: transparent;
  }

  .site-header-bar .nav .button.button-primary,
  #primary-nav a.button.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0 0 0 10px;
    min-height: 54px;
    padding: 0 30px;
    white-space: nowrap;
  }

  .home-page .site-header .nav,
  .services-page .site-header .nav,
  .home-page #primary-nav,
  .services-page #primary-nav {
    margin-left: auto;
    justify-content: flex-end;
    gap: 10px 22px;
  }

  .home-page .site-header-bar .nav a:not(.button),
  .services-page .site-header-bar .nav a:not(.button) {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    padding: 8px 0;
  }

  .home-page .site-header .nav .button,
  .services-page .site-header .nav .button {
    display: inline-flex;
    width: auto;
    margin-left: 12px;
    margin-top: 0;
  }
}

/* Privacy policy */
.privacy-page .page-hero {
  padding: 54px 0 42px;
}

.privacy-page .hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px 34px;
}

.privacy-page .hero-copy h1 {
  max-width: 14ch;
}

.privacy-page .policy-updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.privacy-page .policy-updated strong {
  color: var(--primary);
}

.privacy-page .policy-body-section {
  padding-top: 8px;
}

.privacy-page main > .section:last-of-type {
  padding-top: 44px;
  padding-bottom: 52px;
}

.privacy-page .cta-band-rich {
  border-radius: 24px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 32px 40px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  border: 1px solid rgba(35, 73, 136, 0.1);
  box-shadow: 0 14px 28px rgba(35, 73, 136, 0.06);
}

.policy-toc strong {
  color: var(--primary);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
}

.policy-toc a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}

.policy-toc a:hover {
  color: var(--primary);
}

.policy-document {
  display: grid;
  gap: 34px;
  max-width: 72ch;
}

.policy-section {
  display: grid;
  gap: 14px;
  scroll-margin-top: 96px;
}

.policy-section h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.policy-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.policy-section a {
  color: var(--primary);
  font-weight: 700;
}

.policy-contact-list li span a {
  font-weight: 700;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 4px 0;
  border-radius: 18px;
  border: 1px solid rgba(35, 73, 136, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(35, 73, 136, 0.05);
}

.policy-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.policy-table th,
.policy-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(35, 73, 136, 0.08);
}

.policy-table th {
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(247, 251, 255, 0.98);
}

.policy-table td {
  color: var(--muted);
  line-height: 1.5;
}

.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 960px) {
  .privacy-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }
}
