:root {
  --deep-navy: #050B1A;
  --hero-navy: #071B46;
  --midnight: #0B1533;
  --electric: #2563EB;
  --bright: #3B82F6;
  --neon: #4F8CFF;
  --indigo: #6366F1;
  --violet: #7C3AED;
  --magenta: #C026D3;
  --pink: #EC4899;
  --white: #FFFFFF;
  --soft-white: #F7F9FC;
  --ink: #0B1736;
  --muted: #667085;
  --line: #DDE5F0;
  --grad: linear-gradient(135deg, #2563EB 0%, #6366F1 55%, #C026D3 100%);
  --hero-grad: linear-gradient(135deg, #050B1A 0%, #071B46 48%, #1B1464 100%);
  --blue-glow: linear-gradient(135deg, #0B1533 0%, #123B86 55%, #4F46E5 100%);
  --radius: 18px;
  --stat-h: 118px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  overflow-x: hidden;
}
.shell { width: min(1160px, calc(100% - 48px)); margin: auto; }
img { max-width: 100%; }
svg { display: block; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  cursor: pointer;
  border-radius: 999px;
}
.primary {
  color: var(--white);
  background: var(--grad);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .35);
}
.outline {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}
.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.nav-cta span,
.button span,
.text-link span { margin-left: 8px; font-size: 18px; }

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 84px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 11, 26, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(3, 12, 38, .28);
}
.nav {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
}
.brand {
  color: var(--white);
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1.2px;
  flex-shrink: 0;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: auto;
  flex: 0 0 auto;
}
.nav-links a {
  color: #dce4f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links .active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--white);
  border-bottom-color: transparent;
  background-image: linear-gradient(90deg, #3b82f6 0%, #a855f7 100%);
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.nav-cta {
  background: var(--grad);
  color: var(--white);
  text-decoration: none;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.menu-toggle { display: none; }

/* Hero */
.hero {
  margin-top: -84px;
  min-height: 720px;
  color: var(--white);
  padding: 150px 0 90px;
  position: relative;
  overflow: visible;
  background: var(--hero-grad);
}
.hero.has-stats {
  padding-bottom: calc(var(--stat-h) / 2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(5, 11, 26, .78) 0%,
    rgba(7, 27, 70, .42) 46%,
    rgba(27, 20, 100, .12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #c9d4ea;
}
.eyebrow.accent { color: var(--neon); }
.hero h1, h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: -2.2px;
  margin: 0;
  font-weight: 800;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.08;
  max-width: 760px;
  color: var(--white);
}
.hero-copy {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--soft-white);
  margin: 26px 0 32px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.play { gap: 0; }
.play span {
  border: 1px solid #ffffff70;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 10px;
  margin-right: 10px;
  margin-left: 0;
}

.hero-pills {
  position: absolute;
  right: max(24px, calc((100% - 1160px) / 2));
  top: 180px;
  display: grid;
  gap: 12px;
  z-index: 2;
}
.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--soft-white);
  font-size: 13px;
  font-weight: 600;
}
.hero-pills svg { width: 18px; height: 18px; color: var(--neon); }

.hero-stats {
  position: relative;
  z-index: 6;
  margin-top: calc(var(--stat-h) / -2);
}
.rnd-stat-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
  min-height: var(--stat-h);
  padding: 22px 8px;
  background: linear-gradient(
    135deg,
    rgba(11, 21, 51, 0.82) 0%,
    rgba(7, 27, 70, 0.72) 55%,
    rgba(76, 29, 149, 0.45) 100%
  );
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(3, 12, 38, 0.28),
    0 18px 40px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
}
.rnd-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    radial-gradient(circle at 15% 20%, rgba(59,130,246,.20), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(192,38,211,.14), transparent 35%);
  pointer-events: none;
}
.rnd-stat-card > * { position: relative; z-index: 1; }
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.stat-item:last-child { border-right: 0; }
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--neon);
  background: rgba(79, 140, 255, .16);
  border: 1px solid rgba(255,255,255,.16);
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.rnd-stat-number {
  color: #fff;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: Manrope, sans-serif;
  display: block;
}
.rnd-stat-label {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  margin-top: 6px;
  display: block;
}
.rnd-stat-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.20), transparent);
}

/* Sections */
.section { padding: 120px 0 100px; }
.solutions.section { padding-top: 72px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 48px;
}
.section-head.center {
  justify-content: center;
  text-align: center;
}
.section-head h2,
.about h2,
.contact h2 { font-size: 42px; line-height: 1.16; color: var(--deep-navy); }
.section-head > p {
  margin: 0;
  max-width: 365px;
  color: var(--muted);
  line-height: 1.7;
}

/* Solutions hover */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.solution-card {
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(11, 23, 54, .05);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.solution-card:hover {
  background: var(--blue-glow);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 21, 51, .28);
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--electric);
  background: rgba(37, 99, 235, .1);
  margin-bottom: auto;
  transition: background .25s ease, color .25s ease;
}
.icon svg { width: 22px; height: 22px; }
.solution-card:hover .icon {
  color: #c7d2fe;
  background: rgba(255,255,255,.12);
}
.solution-card h3,
.process h3 {
  font: 700 20px Manrope, sans-serif;
  margin: 32px 0 12px;
  letter-spacing: -.5px;
}
.solution-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  transition: color .25s ease;
}
.solution-card:hover p { color: rgba(247,249,252,.82); }
.solution-card a,
.text-link {
  font-size: 13px;
  color: var(--electric);
  text-decoration: none;
  font-weight: 700;
  transition: color .25s ease;
}
.solution-card:hover a,
.text-link.light { color: var(--white); }

/* About */
.about {
  background:
    linear-gradient(120deg, rgba(5,11,26,.94), rgba(11,21,51,.88)),
    url("../images/pattern_hex_grid.png") right center / cover no-repeat,
    var(--deep-navy);
  padding: 120px 0;
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  height: 480px;
  border-radius: 20px;
  background-color: #0b1533;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.about-grid.no-image {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.image-card {
  background: rgba(11, 21, 51, .88);
  color: #fff;
  padding: 20px 24px;
  position: absolute;
  bottom: 18px;
  right: -18px;
  border-radius: 14px;
  box-shadow: 0 16px 32px #05081655;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.image-card span {
  font: 800 34px Manrope, sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.image-card p { margin: 4px 0 0; font-weight: 700; line-height: 1.3; }
.about-copy > p:not(.eyebrow) {
  line-height: 1.75;
  color: #c5d0e4;
  max-width: 480px;
  margin: 22px 0;
}
.about h2 { color: var(--white); }
.about h2 i {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-points {
  display: flex;
  gap: 24px;
  border-top: 1px solid #ffffff22;
  padding: 22px 0 20px;
}
.about-points > div { display: flex; gap: 12px; }
.point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--neon);
  background: rgba(79, 140, 255, .16);
  flex-shrink: 0;
}
.point-icon svg { width: 18px; height: 18px; }
.about-points p {
  font-size: 13px;
  color: #b8c3d8;
  line-height: 1.5;
  margin: 0;
}
.about-points b {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Logo carousel */
.clients { padding-top: 110px; padding-bottom: 70px; background: var(--soft-white); }
.client-heading { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.client-heading h2 { font-size: 42px; line-height: 1.16; }
.client-heading > p:last-child {
  color: var(--muted);
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 450px;
}
.logo-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}
.logo-carousel:hover .logo-track { animation-play-state: paused; }
.logo-track > span {
  width: 220px;
  min-height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #6b7790;
  font: 700 16px Manrope, sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
  opacity: .72;
}
.logo-track img {
  max-height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-track i { font-size: 8px; font-style: normal; letter-spacing: 3px; }
.serif-logo { font: italic 700 23px Georgia, serif !important; letter-spacing: -1px !important; }
.orbit-logo { font-size: 18px !important; letter-spacing: 2px !important; color: var(--electric) !important; }
.orbit-logo span { color: var(--magenta); }
.bold-logo { font-weight: 800 !important; letter-spacing: 0 !important; color: var(--ink) !important; }
.crest-logo { font-size: 13px !important; letter-spacing: 1px !important; }
.line-logo { font-size: 14px !important; letter-spacing: 2px !important; }
.line-logo:after {
  content: "";
  height: 2px;
  width: 24px;
  background: var(--grad);
  margin: 7px auto 0;
  display: block;
}

/* Process */
.why { padding-bottom: 40px; }
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed #d5dcf0;
}
.process article {
  text-align: center;
  position: relative;
  padding: 0 18px;
}
.process .step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--grad);
  color: #fff;
  font: 800 13px Manrope, sans-serif;
  position: relative;
  z-index: 1;
}
.process-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--electric);
  background: rgba(37, 99, 235, .1);
}
.process-icon svg { width: 24px; height: 24px; }
.process h3 { margin: 18px 0 10px; }
.process p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.values-bar {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  padding: 28px 10px;
  background:
    radial-gradient(circle at 12% 20%, rgba(59,130,246,.18), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(124,58,237,.16), transparent 36%),
    var(--deep-navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(5, 11, 26, .18);
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.value-item:last-child { border-right: 0; }
.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--neon);
  background: rgba(79, 140, 255, .12);
  border: 1px solid rgba(79, 140, 255, .35);
  box-shadow: 0 0 18px rgba(79, 140, 255, .28);
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; }
.values-bar p { margin: 0; font-size: 13px; color: #c9d4ea; line-height: 1.45; }
.values-bar b { display: block; color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }

/* Testimonials carousel */
.stories {
  background: var(--soft-white);
  padding: 100px 0 90px;
}
.stories-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items: center;
}
.stories-window {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.story-card {
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(420px, 82%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(11, 23, 54, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.86);
  transition: transform .45s ease, opacity .45s ease;
}
.story-card.is-prev {
  opacity: .45;
  pointer-events: none;
  transform: translateX(-148%) scale(.86);
}
.story-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  box-shadow: 0 24px 50px rgba(11, 23, 54, .14);
}
.story-card.is-next {
  opacity: .45;
  pointer-events: none;
  transform: translateX(48%) scale(.86);
}
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 14px; }
.story-card blockquote {
  margin: 18px 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}
.story-person { display: flex; align-items: center; gap: 12px; }
.story-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.story-person strong { display: block; font-size: 14px; }
.story-person span { font-size: 12px; color: var(--muted); }
.story-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.story-nav:hover { border-color: var(--electric); color: var(--electric); }
.story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.story-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c5cddb;
  padding: 0;
  cursor: pointer;
}
.story-dots button.active {
  background: var(--electric);
  width: 22px;
  border-radius: 99px;
}

/* Insights */
.insights { background: var(--white); }
.home-articles .article-card {
  background: var(--soft-white);
  padding: 0 0 24px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-articles .article-art {
  height: 180px;
  margin: 0 0 20px;
  background: center/cover no-repeat;
}
.home-articles small {
  color: var(--electric);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 22px;
}
.home-articles h3 {
  font: 700 20px/1.35 Manrope, sans-serif;
  margin: 10px 0 16px;
  padding: 0 22px;
  flex: 1;
}
.home-articles .text-link { padding: 0 22px; }

/* Footer CTA */
.contact {
  background:
    linear-gradient(135deg, rgba(5,11,26,.88) 0%, rgba(7,27,70,.78) 48%, rgba(27,20,100,.7) 100%),
    url("../images/pattern_wave_mesh.png") center / cover no-repeat;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.contact-cta { max-width: 720px; }
.contact h2 { font-size: 52px; color: var(--white); }
.contact p:not(.eyebrow) {
  color: var(--soft-white);
  line-height: 1.65;
  max-width: 520px;
  margin: 18px auto 28px;
}
.contact .hero-actions { justify-content: center; }

/* Footer */
footer {
  background: var(--deep-navy);
  color: #b2c0d5;
  padding-top: 48px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  align-items: flex-start;
}
.footer-brand p { font-size: 14px; margin: 10px 0 0; max-width: 240px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  color: #d7def0;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-cols { display: flex; gap: 56px; }
.footer-cols h4 {
  margin: 0 0 14px;
  color: #fff;
  font: 700 13px Manrope, sans-serif;
  letter-spacing: .4px;
}
.footer-cols a,
.footer-bottom a {
  display: block;
  color: #b8c3d8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid #1d2744;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.footer-bottom a { display: inline; margin: 0; }

/* Inner pages / About us */
.about-hero,
.inner-hero {
  margin-top: -84px;
  min-height: 560px;
  background-color: var(--deep-navy);
  background-image: linear-gradient(100deg, rgba(5,11,26,.92) 0%, rgba(7,27,70,.72) 48%, rgba(7,27,70,.35) 100%);
  background-size: cover;
  background-position: center right;
  color: #fff;
  padding: 160px 0 88px;
  position: relative;
  overflow: hidden;
}
.about-hero.has-image,
.inner-hero.has-image {
  background-image:
    linear-gradient(100deg, rgba(5,11,26,.94) 0%, rgba(7,27,70,.78) 42%, rgba(7,27,70,.28) 100%),
    var(--hero-image);
}
.about-hero-grid { position: relative; z-index: 1; }
.about-hero-copy { max-width: 620px; }
.about-hero h1,
.inner-hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  max-width: 620px;
}
.about-hero-text,
.inner-hero p:not(.eyebrow) {
  max-width: 520px;
  color: #d9e6f8;
  line-height: 1.75;
  margin: 20px 0 0;
  font-size: 17px;
}
.about-hero .hero-actions { margin-top: 28px; }

.page-section { padding: 96px 0; }
.page-section h2 { font-size: 40px; line-height: 1.18; }
.page-section p { color: var(--muted); line-height: 1.75; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.image-panel { min-height: 400px; background: center/cover; border-radius: 18px; }
.split.no-image { grid-template-columns: 1fr; max-width: 720px; }
.check-list { display: grid; gap: 16px; margin: 27px 0; }
.check-list div { display: flex; gap: 12px; align-items: flex-start; }
.check-list span { color: var(--electric); font-weight: 700; }
.check-list b { font-size: 15px; }

/* About — expertise */
.about-expertise { background: var(--white); }
.about-expertise-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-expertise-grid.no-image { grid-template-columns: 1fr; max-width: 720px; }
.about-expertise-media { position: relative; }
.about-expertise-image {
  min-height: 460px;
  border-radius: 22px;
  background: center/cover no-repeat #0b1533;
  box-shadow: 0 24px 50px rgba(11, 23, 54, .12);
}
.about-float-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 240px;
  padding: 16px 18px;
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 23, 54, .16);
}
.about-float-icon,
.about-feature-icon,
.about-stat-icon,
.about-value-icon,
.about-process-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--electric);
  background: rgba(37, 99, 235, .12);
}
.about-float-icon svg,
.about-feature-icon svg,
.about-stat-icon svg,
.about-value-icon svg,
.about-process-icon svg { width: 20px; height: 20px; }
.about-float-card p {
  margin: 0;
  font: 700 14px/1.35 Manrope, sans-serif;
  color: var(--ink);
}
.about-expertise-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 480px;
}
.about-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-item strong {
  display: block;
  font: 700 16px Manrope, sans-serif;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-feature-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* About — stats (dark bar) */
.about-stats {
  background: linear-gradient(120deg, #071B46 0%, #0B1533 55%, #1B1464 100%);
  color: #fff;
  padding: 42px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}
.about-stat-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.about-stat-icon {
  background: rgba(79, 140, 255, .18);
  color: #9ec0ff;
}
.about-stat-item strong {
  display: block;
  font: 800 30px/1 Manrope, sans-serif;
  letter-spacing: -0.8px;
}
.about-stat-item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #b8c7e0;
}

/* About — values cards */
.about-values { background: var(--soft-white); }
.about-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.about-value-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 30px;
  box-shadow: 0 14px 36px rgba(11, 23, 54, .06);
  border: 1px solid rgba(15, 23, 42, .04);
}
.about-value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.about-value-card h3 {
  font: 700 20px Manrope, sans-serif;
  margin: 0 0 10px;
}
.about-value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* About — approach */
.about-approach {
  background:
    linear-gradient(120deg, rgba(5,11,26,.96), rgba(11,21,51,.92)),
    url("../images/pattern_hex_grid.png") right center / cover no-repeat,
    var(--deep-navy);
  color: #fff;
  padding: 100px 0;
}
.about-approach-grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-approach-copy h2 { color: #fff; }
.about-approach-copy > p:not(.eyebrow) {
  color: #c5d0e4;
  max-width: 360px;
  margin: 18px 0 26px;
  line-height: 1.7;
}
.about-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.about-process:before {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}
.about-process-step { position: relative; z-index: 1; }
.about-process-icon {
  background: rgba(79, 140, 255, .16);
  color: #9ec0ff;
  margin-bottom: 18px;
}
.about-process-step h3 {
  font: 700 17px Manrope, sans-serif;
  margin: 0 0 8px;
  color: #fff;
}
.about-process-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #b8c3d8;
}

/* About — testimonials */
.about-testimonials { background: var(--white); }
.about-testimonials-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.about-testimonial-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.about-t-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.about-t-nav:hover { border-color: var(--electric); color: var(--electric); }
.about-testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.about-testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c9d2e3;
  cursor: pointer;
}
.about-testimonial-dots button.active { background: var(--electric); width: 22px; border-radius: 999px; }
.about-testimonial-slider { position: relative; }
.about-testimonial-card {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 34px;
  box-shadow: 0 22px 50px rgba(11, 23, 54, .08);
}
.about-testimonial-card.is-active { display: block; }
.about-testimonial-card blockquote {
  margin: 0 0 28px;
  font: 600 20px/1.55 Manrope, sans-serif;
  color: var(--ink);
  letter-spacing: -.3px;
}
.about-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.about-testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.about-testimonial-person strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.about-testimonial-person span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.about-testimonial-logo {
  font: 700 13px Manrope, sans-serif;
  color: #6b7790;
  text-align: right;
  letter-spacing: .6px;
  line-height: 1.2;
}
.about-testimonial-logo img {
  max-height: 28px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
}

.stat-band { background: var(--soft-white); padding: 36px 0; }
.stat-band .shell { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 25px; }
.stat-band strong { display: block; font: 800 31px Manrope, sans-serif; }
.stat-band span { font-size: 13px; color: var(--muted); }
.solution-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-detail {
  padding: 30px;
  background: var(--soft-white);
  border-top: 3px solid var(--electric);
  border-radius: 0 0 16px 16px;
}
.solution-detail:nth-child(3n+2) { border-color: var(--indigo, #6366F1); }
.solution-detail:nth-child(3n) { border-color: var(--magenta); }
.solution-detail h3 { font: 700 19px Manrope, sans-serif; margin: 22px 0 10px; }
.solution-detail .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--electric);
  background: rgba(37, 99, 235, .12);
}
.solution-detail .icon svg { width: 22px; height: 22px; }
.solution-detail p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.solution-detail .text-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}
/* Solutions — stats bar */
.solutions-stats {
  padding: 0 0 72px;
  margin-top: -24px;
}
.solutions-stat-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 30px 8px;
  background: linear-gradient(145deg, #020308 0%, #060a12 42%, #0a101c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.solutions-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(59,130,246,.10), transparent 38%),
    radial-gradient(circle at 86% 78%, rgba(109,40,217,.08), transparent 40%);
  pointer-events: none;
}
.solutions-stat-card > * {
  position: relative;
  z-index: 1;
}
.solutions-stat-card .stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.solutions-stat-card .stat-item:last-child {
  border-right: 0;
}
.solutions-stat-card .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #8eb8ff;
  background: rgba(18, 32, 58, .92);
  border: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.solutions-stat-card .stat-icon svg {
  width: 22px;
  height: 22px;
}
.solutions-stat-card .rnd-stat-number {
  color: #fff;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: Manrope, sans-serif;
  display: block;
}
.solutions-stat-title {
  display: block;
  margin-top: 8px;
  color: #fff;
  font: 700 14px/1.3 Manrope, sans-serif;
}
.solutions-stat-desc {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.55;
  max-width: 220px;
}

.solutions-delivery { background: var(--soft-white); }
.solutions-delivery .button { margin-top: 24px; }
.solutions-delivery-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 18px;
}
.solutions-cta.contact { margin-top: 0; }
.quote { background: var(--midnight); color: #fff; padding: 70px 0; text-align: center; }
.quote blockquote {
  font: 700 31px/1.35 Manrope, sans-serif;
  letter-spacing: -1px;
  max-width: 820px;
  margin: 0 auto;
}
.quote p { color: #b8d0ef; margin: 20px 0 0; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { background: var(--soft-white); padding: 0 26px 28px; border-radius: 16px; overflow: hidden; }
.article-art { height: 155px; margin: 0 -26px 25px; background: center/cover; }
.article-card small { color: var(--electric); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.article-card h3 { font: 700 20px/1.35 Manrope, sans-serif; margin: 12px 0; }
.article-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Insights page */
.insights-hero.inner-hero {
  min-height: 440px;
  padding: 128px 0 52px;
}
.insights-hero.has-image {
  background-position: center right;
  background-size: cover;
}
.insights-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 260px;
}
.insights-hero-copy {
  max-width: 620px;
  width: 100%;
}
.insights-hero-text {
  max-width: 520px;
  color: #d9e6f8;
  line-height: 1.75;
  margin: 20px 0 0;
  font-size: 17px;
}
.insights-articles .section-head {
  margin-bottom: 40px;
}
.insights-cta .button { margin-top: 24px; }
.insights-cta > div > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 18px;
}

/* Single insight / blog post */
.rnds-single {
  background: var(--soft-white);
}
.article-hero.inner-hero {
  min-height: 380px;
  padding: 128px 0 72px;
}
.article-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 220px;
}
.article-hero-copy {
  max-width: 760px;
}
.article-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  max-width: 760px;
}
.article-meta {
  margin: 18px 0 0;
  color: #d9e6f8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}
.article-featured {
  margin-top: 0;
  padding-top: 48px;
  margin-bottom: 48px;
}
.article-featured-image {
  min-height: 360px;
  border-radius: 18px;
  background: center/cover no-repeat;
  box-shadow: 0 18px 40px rgba(5, 11, 26, .12);
}
.article-content {
  padding-top: 0;
}
.article-body {
  max-width: 760px;
  color: var(--deep-navy);
  font-size: 17px;
  line-height: 1.85;
}
.article-body > :first-child { margin-top: 0; }
.article-body p { margin: 0 0 1.2em; color: #334155; }
.article-body h2,
.article-body h3 {
  font-family: Manrope, sans-serif;
  color: var(--deep-navy);
  margin: 1.8em 0 .8em;
}
.article-body ul,
.article-body ol {
  margin: 0 0 1.2em 1.2em;
  color: #334155;
}
.article-back {
  margin: 40px 0 0;
}
.article-card h3 a {
  color: inherit;
  text-decoration: none;
}
.article-card h3 a:hover {
  color: var(--electric);
}
.insight-related {
  padding-top: 0;
  padding-bottom: 96px;
}

.contact-page { background: var(--soft-white); padding-bottom: 100px; }
.contact-page .page-section { padding-top: 72px; }
.contact-hero.inner-hero {
  min-height: 440px;
  padding: 128px 0 52px;
}
.contact-hero.has-image {
  background-position: center right;
  background-size: cover;
}
.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 260px;
}
.contact-hero-copy {
  max-width: 620px;
  width: 100%;
}
.contact-hero-text {
  max-width: 520px;
  color: #d9e6f8;
  line-height: 1.75;
  margin: 20px 0 0;
  font-size: 17px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px 0 56px;
}
.contact-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
  border: 1px solid rgba(15, 23, 42, .04);
}
.contact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  color: var(--electric);
  background: rgba(37, 99, 235, .10);
  border: 0;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font: 700 18px/1.3 Manrope, sans-serif;
  margin: 0 0 10px;
  color: var(--deep-navy);
}
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .06);
}
.contact-form-panel-main {
  padding: 40px 42px 36px;
}
.contact-form-title {
  margin: 0 0 28px;
  font: 700 32px/1.15 Manrope, sans-serif;
  letter-spacing: -0.8px;
  color: var(--deep-navy);
}
.contact-form-panel-aside {
  padding: 40px 34px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border-left: 1px solid rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-panel-aside h2 {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.contact-form-panel-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  max-width: 320px;
}
.contact-form-panel-art {
  margin-top: 28px;
  min-height: 220px;
  border-radius: 16px;
  background: center/contain no-repeat;
}
.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.contact-notice--success {
  background: rgba(16, 185, 129, .12);
  color: #047857;
}
.contact-notice--error {
  background: rgba(239, 68, 68, .10);
  color: #b91c1c;
}
.contact-form--panel {
  display: block;
  padding: 0;
  background: transparent;
  color: inherit;
  border-radius: 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field--full { grid-column: 1 / -1; }
.contact-field-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: .02em;
}
.contact-field-control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-field-control:focus-within {
  border-color: rgba(37, 99, 235, .45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}
.contact-field-control--textarea {
  align-items: flex-start;
  min-height: 140px;
  padding-top: 14px;
}
.contact-field-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.contact-field-icon svg { width: 18px; height: 18px; }
.contact-field-control input,
.contact-field-control textarea {
  width: 100%;
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--deep-navy);
  font: 15px/1.5 "DM Sans", sans-serif;
  padding: 0;
  resize: vertical;
}
.contact-field-control textarea {
  min-height: 108px;
  padding-top: 2px;
}
.contact-form-submit {
  width: 100%;
  margin-top: 22px;
  justify-content: center;
}
.contact-form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}
.contact-form-privacy .contact-field-icon {
  width: 16px;
  height: 16px;
}
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature-row article { padding: 27px 34px 8px 0; border-right: 1px solid var(--line); }
.feature-row article:not(:first-child) { padding-left: 34px; }
.feature-row article:last-child { border: 0; }
.number { font: 700 12px Manrope, sans-serif; color: var(--electric); }
.feature-row h3 { margin: 25px 0 12px; }
.feature-row p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width: 1080px) {
  .hero-pills { display: none; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .values-bar { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 18px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 32px, 600px); }
  .site-header { height: auto; }
  .nav { height: 64px; gap: 12px; width: min(100% - 32px, 600px); }
  .nav-end { display: none; }
  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: 22px;
    color: #fff;
  }
  .nav.open {
    height: auto;
    padding: 16px 0 18px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .nav.open .nav-end {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin: 12px 0 0;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin: 0;
  }
  .nav.open .nav-cta { display: inline-flex; margin-top: 0; }
  .hero { min-height: 0; padding: 120px 0 72px; }
  .hero.has-stats { padding-bottom: calc(var(--stat-h) / 2); }
  .hero h1 { font-size: 40px; letter-spacing: -1.4px; }
  .hero-copy { font-size: 16px; }
  .hero-stats { margin-top: calc(var(--stat-h) / -2); }
  .rnd-stat-card {
    grid-template-columns: 1fr 1fr;
    padding: 16px 8px;
  }
  .stat-item {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: 0; }
  .solutions-stat-card {
    grid-template-columns: 1fr 1fr;
    padding: 18px 8px;
  }
  .solutions-stat-card .stat-item {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .solutions-stat-card .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.10); }
  .solutions-stat-card .stat-item:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 80px 0 64px; }
  .solutions.section { padding-top: 56px; }
  .section-head { display: block; }
  .section-head h2, .about h2, .client-heading h2 { font-size: 32px; }
  .section-head > p { margin-top: 16px; }
  .solution-grid { grid-template-columns: 1fr; }
  .about { padding: 70px 0; }
  .about-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .about-image { height: 320px; }
  .image-card { right: 12px; }
  .about-points { flex-direction: column; gap: 16px; }
  .process { grid-template-columns: 1fr; }
  .process:before { display: none; }
  .values-bar { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .value-item:last-child { border-bottom: 0; }
  .contact { padding: 64px 0; }
  .contact h2 { font-size: 36px; }
  .footer-main { display: grid; gap: 28px; }
  .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .outline { margin-top: 18px; }
  .about-hero,
  .inner-hero { min-height: 0; padding: 120px 0 64px; }
  .contact-hero.inner-hero { min-height: 0; padding: 108px 0 44px; }
  .contact-hero-grid { min-height: 0; }
  .insights-hero.inner-hero { min-height: 0; padding: 108px 0 44px; }
  .insights-hero-grid { min-height: 0; }
  .article-hero.inner-hero { min-height: 0; padding: 108px 0 56px; }
  .article-hero-grid { min-height: 0; }
  .article-featured { padding-top: 32px; margin-bottom: 36px; }
  .article-featured-image { min-height: 220px; }
  .about-hero h1,
  .inner-hero h1 { font-size: 38px; letter-spacing: -1px; }
  .page-section { padding: 70px 0; }
  .page-section h2 { font-size: 32px; }
  .image-panel,
  .about-expertise-image { min-height: 280px; }
  .about-expertise-grid,
  .about-approach-grid,
  .about-testimonials-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-float-card { left: 14px; right: 14px; max-width: none; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .about-value-cards { grid-template-columns: 1fr; }
  .about-process { grid-template-columns: 1fr 1fr; }
  .about-process:before { display: none; }
  .about-approach { padding: 72px 0; }
  .about-testimonial-card { padding: 26px 22px; }
  .about-testimonial-card blockquote { font-size: 17px; }
  .about-testimonial-footer { flex-direction: column; align-items: flex-start; }
  .stat-band .shell { grid-template-columns: 1fr 1fr; }
  .solution-detail-grid, .article-grid, .contact-cards { grid-template-columns: 1fr; }
  .contact-form-panel { grid-template-columns: 1fr; }
  .contact-form-panel-aside {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, .06);
  }
  .contact-form-panel-main,
  .contact-form-panel-aside { padding: 24px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .quote { padding: 55px 0; }
  .quote blockquote { font-size: 24px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row article,
  .feature-row article:not(:first-child) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stories-slider { grid-template-columns: 1fr; }
  .story-nav { display: none; }
  .stories-window { height: 320px; }
  .story-card.is-prev,
  .story-card.is-next { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .story-card { transition: none; }
}
