:root {
  --ink: #17263a;
  --ink-soft: #4c5a6b;
  --paper: #f3f5f8;
  --white: #ffffff;
  --line: #d8dde5;
  --blue: #5a86d8;
  --blue-strong: #244b7a;
  --navy: #21476f;
  --yellow: #ffd21a;
  --charcoal: #18283c;
  --shadow: 0 24px 70px rgba(33, 71, 111, 0.18);
  --shadow-strong: 0 30px 90px rgba(33, 71, 111, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --strip-speed: 32s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --pointer-x: 50vw;
  --pointer-y: 20vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.lightbox-open {
  overflow: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-glow {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(90, 134, 216, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(255, 210, 26, 0.16), transparent 20rem);
  mix-blend-mode: multiply;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--ink);
  animation: header-in 700ms var(--ease) both;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms var(--ease);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.brand-logo {
  display: block;
  width: clamp(142px, 13vw, 210px);
  height: auto;
  transition: transform 220ms var(--ease), filter 220ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 18px rgba(33, 71, 111, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--blue-strong);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 86vh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  color: var(--ink);
  padding: 126px clamp(20px, 6vw, 80px) 96px;
  perspective: 1200px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.01);
  backface-visibility: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34) 34%, transparent 57%),
    linear-gradient(180deg, rgba(243, 245, 248, 0.2) 0%, rgba(243, 245, 248, 0.08) 58%, rgba(243, 245, 248, 0.02) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1160px, 100%);
  margin: 0 auto;
  animation: hero-content-in 900ms 120ms var(--ease) both;
}

.hero-layout {
  display: block;
}

.hero-copy-block {
  text-align: center;
}

.hero-brand-panel {
  text-align: center;
}

.hero-interactive {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 18%;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44));
  box-shadow:
    0 34px 90px rgba(33, 71, 111, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-interactive:hover {
  box-shadow:
    0 42px 110px rgba(33, 71, 111, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  animation: fade-up 700ms 220ms var(--ease) both;
}

.hero h1,
.section h2,
.field-copy h2,
.quote-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transform-style: preserve-3d;
  animation: fade-up 760ms 300ms var(--ease) both;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.52),
    0 18px 44px rgba(16, 32, 48, 0.2);
}

.hero-wordmark {
  display: block;
  width: min(620px, 78vw);
  margin: 0 auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7))
    drop-shadow(0 22px 34px rgba(33, 71, 111, 0.18));
  transform: translateZ(42px);
}

.hero-copy {
  max-width: 560px;
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 650;
  transform: translateZ(28px);
  animation: fade-up 760ms 390ms var(--ease) both;
}

.hero-copy span {
  display: block;
}

.hero-copy span + span {
  position: relative;
  margin-top: 16px;
  padding-top: 16px;
}

.hero-copy span + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(360px, 74%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 71, 111, 0.34), transparent);
  transform: translateX(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  animation: fade-up 760ms 480ms var(--ease) both;
}

.hero-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 54px rgba(33, 71, 111, 0.12);
  transform: translateZ(34px);
  text-align: left;
}

.hero-contact-form > div,
.hero-contact-form .full {
  grid-column: 1 / -1;
}

.hero-contact-form > div {
  display: grid;
  gap: 3px;
  margin-bottom: 2px;
}

.hero-contact-form span {
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-contact-form strong {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.05;
}

.hero-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-contact-form input,
.hero-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 71, 111, 0.16);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-weight: 650;
  resize: vertical;
}

.hero-contact-form input:focus,
.hero-contact-form textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-color: rgba(255, 210, 26, 0.7);
  background: var(--white);
}

.hero-contact-form .button {
  width: 100%;
  min-height: 46px;
}

.ops-console {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 80% 12%, rgba(255, 210, 26, 0.34), transparent 24%),
    radial-gradient(circle at 20% 90%, rgba(90, 134, 216, 0.34), transparent 28%);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  animation: console-in 900ms 360ms var(--ease) both, console-float 6s 1.2s ease-in-out infinite;
}

.ops-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(33, 71, 111, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 71, 111, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 74%);
}

.console-topline,
.console-metrics,
.console-feed {
  position: relative;
  z-index: 1;
}

.support-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.support-head,
.ticket-row,
.support-pills {
  position: relative;
  z-index: 1;
}

.support-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(33, 71, 111, 0.12);
}

.support-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-head strong {
  display: block;
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.ticket-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.ticket-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(33, 71, 111, 0.1);
  animation: ticket-rise 760ms var(--ease) both;
}

.ticket-row:nth-child(2) {
  animation-delay: 120ms;
}

.ticket-row:nth-child(3) {
  animation-delay: 240ms;
}

.ticket-row.priority-high {
  background:
    linear-gradient(90deg, rgba(255, 210, 26, 0.18), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.68);
}

.ticket-status {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(90, 134, 216, 0.12);
}

.priority-high .ticket-status {
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(255, 210, 26, 0.18);
}

.ticket-row strong,
.ticket-row span,
.ticket-row em {
  display: block;
}

.ticket-row strong {
  color: var(--ink);
}

.ticket-row span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.ticket-row em {
  color: var(--blue-strong);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.support-meter {
  position: relative;
  z-index: 1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(33, 71, 111, 0.12);
}

.support-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  animation: support-fill 4.8s var(--ease) infinite;
}

.support-metrics {
  margin-top: 0;
}

.support-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-pills span {
  padding: 9px 11px;
  border: 1px solid rgba(33, 71, 111, 0.14);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 900;
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-weight: 900;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0d6b3d;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1ecb74;
  box-shadow: 0 0 0 8px rgba(30, 203, 116, 0.14);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.console-metrics div,
.console-feed {
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.console-metrics div {
  padding: 14px;
}

.console-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
}

.console-metrics span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.console-feed {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.console-feed span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.console-feed b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
}

.console-terminal {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(33, 71, 111, 0.18);
  border-radius: 8px;
  color: rgba(23, 38, 58, 0.76);
  background: rgba(23, 38, 58, 0.08);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.console-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: translateY(-100%);
  animation: terminal-scan 4.6s ease-in-out infinite;
}

.console-terminal span {
  position: relative;
}

.console-terminal span::before {
  content: "> ";
  color: var(--blue-strong);
}

.signal-strip {
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(33, 71, 111, 0.12);
  border-bottom: 1px solid rgba(33, 71, 111, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.signal-track {
  --marquee-distance: -16.6667%;
  display: flex;
  width: max-content;
  animation: marquee var(--strip-speed) linear infinite;
}

.signal-set {
  display: flex;
  flex: 0 0 auto;
}

.signal-set span {
  padding: 18px 28px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 34px rgba(33, 71, 111, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 48px rgba(33, 71, 111, 0.34);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(33, 71, 111, 0.28);
  background: rgba(255, 255, 255, 0.48);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto 76px;
  position: relative;
  z-index: 3;
  padding: 0;
}

.split + .proof-band {
  margin-top: 56px;
}

.proof-item {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(36, 75, 122, 0.98), rgba(24, 40, 60, 0.98));
  box-shadow: 0 18px 54px rgba(33, 71, 111, 0.16);
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18), transparent 52%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 260ms ease, transform 620ms var(--ease);
}

.proof-item > * {
  position: relative;
}

.proof-item:hover {
  border-color: rgba(255, 210, 26, 0.42);
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(33, 71, 111, 0.28);
}

.proof-item:hover::before {
  opacity: 1;
  transform: translateX(32%);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.72);
}

.logo-strip {
  overflow: hidden;
  border-top: 1px solid rgba(33, 71, 111, 0.12);
  border-bottom: 1px solid rgba(33, 71, 111, 0.12);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.logo-track {
  --marquee-distance: -33.3333%;
  display: flex;
  width: max-content;
  animation: marquee var(--strip-speed) linear infinite;
}

.logo-set {
  display: flex;
  flex: 0 0 auto;
}

.logo-set span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 88px;
  padding: 18px 28px;
}

.logo-set img {
  display: block;
  width: auto;
  max-width: 124px;
  height: 42px;
  object-fit: contain;
}

.logo-set .logo-large {
  max-width: 166px;
  height: 56px;
}

.logo-set .logo-apple {
  max-width: 108px;
  height: 34px;
}

.section,
.field-section,
.quote-section,
.site-footer {
  padding: 92px clamp(20px, 5vw, 64px);
}

.section > *,
.field-section,
.quote-panel,
.site-footer {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  padding-top: 72px;
  padding-bottom: 0;
  background: var(--paper);
}

.section-intro > .logo-strip {
  max-width: none;
  width: 100vw;
  margin: clamp(58px, 7vw, 96px) calc(50% - 50vw) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.split h2,
.section-heading h2,
.field-copy h2,
.quote-panel h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.service-section {
  background: var(--white);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading.compact {
  max-width: 720px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 240ms ease, transform 260ms var(--ease), box-shadow 260ms ease, background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(90, 134, 216, 0.16), transparent 18rem),
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.72), transparent 54%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 260ms ease, transform 540ms var(--ease);
}

.service-card:hover {
  border-color: rgba(90, 134, 216, 0.45);
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  background: var(--white);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.service-card > * {
  position: relative;
}

.service-number {
  display: inline-block;
  color: var(--blue-strong);
  font-weight: 900;
  transition: transform 260ms var(--ease), color 260ms ease;
}

.service-card:hover .service-number {
  color: var(--navy);
  transform: translateY(-2px);
}

.service-card h3,
.timeline h3 {
  margin: 34px 0 12px;
  font-size: 1.2rem;
}

.service-card p,
.timeline p {
  color: var(--ink-soft);
}

.approach {
  color: var(--white);
  background: var(--charcoal);
}

.approach .section-kicker {
  color: var(--yellow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.timeline article {
  position: relative;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 260ms var(--ease), border-color 260ms ease;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width 460ms var(--ease);
}

.timeline article:hover {
  border-color: rgba(255, 210, 26, 0.78);
  transform: translateY(-5px);
}

.timeline article:hover::before {
  width: 100%;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--yellow);
  font-weight: 900;
  transition: transform 260ms var(--ease);
}

.timeline article:hover span {
  transform: scale(1.08) rotate(-3deg);
}

.timeline p {
  color: rgba(255, 255, 255, 0.7);
}

.field-section {
  display: block;
  max-width: none;
  margin: 0;
  padding: 76px clamp(20px, 5vw, 64px);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 210, 26, 0.18), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(90, 134, 216, 0.22), transparent 28%),
    linear-gradient(145deg, #f7f9fc 0%, #eef4fb 48%, #ffffff 100%);
}

.field-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.field-copy {
  max-width: 760px;
  margin-bottom: 0;
}

.field-copy .section-kicker {
  color: var(--blue-strong);
}

.field-copy h2 {
  color: var(--ink);
}

.field-copy p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.field-actions span {
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.field-preview {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.field-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.14), transparent 48%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 260ms ease, transform 700ms var(--ease);
}

.field-preview:hover::after,
.field-preview:focus-visible::after {
  opacity: 1;
  transform: translateX(42%);
}

.field-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.98) contrast(1.04);
  transition: transform 620ms var(--ease), filter 260ms ease;
}

.field-preview:hover img,
.field-preview:focus-visible img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.04);
}

.field-preview-main {
  min-height: 402px;
}

.field-preview-stack {
  display: grid;
  gap: 14px;
}

.field-preview-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 34, 53, 0.82);
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
  font-weight: 900;
}

.gallery-teaser {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery-teaser img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(33, 71, 111, 0.16);
}

.gallery-teaser img:first-child {
  height: 460px;
}

.gallery-page {
  overflow: hidden;
  background: #f3f6fa;
}

.gallery-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 146px clamp(20px, 5vw, 64px) 76px;
}

.gallery-hero::before,
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
}

.gallery-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(90, 134, 216, 0.18), transparent 32%),
    radial-gradient(circle at 82% 26%, rgba(255, 210, 26, 0.14), transparent 28%),
    linear-gradient(180deg, #f9fbfe 0%, #eef4fb 100%);
}

.gallery-hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
}

.gallery-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.gallery-hero-stack {
  position: relative;
  min-height: 520px;
}

.gallery-hero-stack img {
  position: absolute;
  width: 62%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.gallery-hero-stack img:nth-child(1) {
  right: 0;
  top: 0;
  z-index: 3;
}

.gallery-hero-stack img:nth-child(2) {
  left: 0;
  top: 92px;
  z-index: 2;
}

.gallery-hero-stack img:nth-child(3) {
  right: 8%;
  bottom: 0;
  z-index: 1;
}

.gallery-section {
  position: relative;
  isolation: isolate;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px clamp(20px, 5vw, 64px);
}

.gallery-before-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 250, 253, 0.98) 100%);
  border-top: 1px solid rgba(33, 71, 111, 0.08);
  border-bottom: 1px solid rgba(33, 71, 111, 0.08);
}

.gallery-all-section::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(90, 134, 216, 0.18), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255, 210, 26, 0.13), transparent 24%),
    linear-gradient(180deg, #edf3f9 0%, #f8fbfe 100%);
}

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

.gallery-section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
}

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

.case-grid {
  display: grid;
  gap: 20px;
}

.case-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(33, 71, 111, 0.1);
}

.case-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.case-images button {
  appearance: none;
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  isolation: isolate;
}

.case-images button {
  min-height: 360px;
}

.case-images img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.01);
  transition: transform 700ms var(--ease), filter 260ms ease;
}

.case-images button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 24, 38, 0.76));
}

.case-images span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(24, 40, 60, 0.74);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 900;
}

.case-images button:hover img,
.case-images button:focus-visible img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.08);
}

.case-images button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.case-card h3 {
  margin: 20px 0 6px;
  font-size: 1.3rem;
}

.case-card p {
  margin: 0;
  color: var(--ink-soft);
}

.all-photos-button {
  width: auto;
  min-width: 220px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}

.comparison-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow);
}

.gallery-feature,
.gallery-card {
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  isolation: isolate;
}

.gallery-feature {
  min-height: 480px;
  border-radius: 0;
}

.gallery-feature + .gallery-feature {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.gallery-feature img,
.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.01);
  transition: transform 760ms var(--ease), filter 260ms ease;
}

.gallery-feature::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 24, 38, 0.04) 40%, rgba(12, 24, 38, 0.78));
  transition: opacity 260ms ease;
}

.gallery-feature span,
.gallery-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  max-width: calc(100% - 32px);
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(24, 40, 60, 0.72);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 900;
}

.gallery-feature:hover img,
.gallery-card:hover img,
.gallery-feature:focus-visible img,
.gallery-card:focus-visible img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.08);
}

.gallery-feature:hover::after,
.gallery-card:hover::after,
.gallery-feature:focus-visible::after,
.gallery-card:focus-visible::after {
  opacity: 0.72;
}

.gallery-feature:focus-visible,
.gallery-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.gallery-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 210, 26, 0.25), transparent 24%),
    linear-gradient(145deg, var(--navy), var(--charcoal));
  box-shadow: var(--shadow);
}

.gallery-note span {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-note strong {
  font-size: 1.65rem;
  line-height: 1.08;
}

.gallery-note p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.detail-page {
  overflow: hidden;
  padding-top: 118px;
  background:
    radial-gradient(circle at 18% 8%, rgba(90, 134, 216, 0.15), transparent 28rem),
    linear-gradient(180deg, var(--paper), #ffffff 48%, var(--paper));
}

.detail-hero,
.detail-section,
.detail-band,
.detail-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px clamp(20px, 5vw, 64px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: end;
}

.detail-hero h1,
.detail-section-heading h2,
.detail-band h2,
.detail-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 5.5rem);
  line-height: 0.98;
}

.detail-hero p,
.detail-copy p,
.detail-card p,
.approach-steps p,
.principle-grid p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.detail-hero-dark {
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + clamp(20px, 5vw, 64px)));
  padding-right: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + clamp(20px, 5vw, 64px)));
  color: var(--white);
  background: var(--charcoal);
}

.detail-hero-dark h1,
.detail-hero-dark p {
  color: var(--white);
}

.detail-hero-dark .section-kicker,
.detail-band-dark .section-kicker {
  color: var(--yellow);
}

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

.detail-section-heading h2,
.detail-band h2,
.detail-cta h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
}

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

.detail-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(33, 71, 111, 0.1);
}

.detail-card span {
  color: var(--blue-strong);
  font-weight: 900;
}

.detail-card h3,
.approach-steps h3,
.principle-grid h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 750;
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 58px;
  align-items: start;
}

.detail-band-dark {
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + clamp(20px, 5vw, 64px)));
  padding-right: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + clamp(20px, 5vw, 64px)));
  color: var(--white);
  background: var(--charcoal);
}

.detail-band-dark h2,
.detail-band-dark h3,
.detail-band-dark p {
  color: var(--white);
}

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

.detail-copy p {
  margin: 0;
}

.detail-copy.wide {
  max-width: 820px;
}

.approach-steps {
  display: grid;
  gap: 18px;
}

.approach-steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(33, 71, 111, 0.16);
}

.approach-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--yellow);
  font-weight: 900;
}

.approach-steps h3 {
  margin-top: 0;
}

.approach-steps p {
  max-width: 760px;
  margin: 0;
}

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

.principle-grid article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 210, 26, 0.17), transparent 24rem),
    radial-gradient(circle at 12% 26%, rgba(90, 134, 216, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--paper), #ffffff 46%, var(--paper));
}

.about-hero,
.about-summary,
.about-feature,
.about-dark,
.about-proof {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: 92px clamp(20px, 5vw, 64px) 64px;
}

.about-hero-copy h1,
.about-feature h2,
.about-dark h2,
.about-proof h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 6.4vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-hero-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.about-hero-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 34, 53, 0.78));
  pointer-events: none;
}

.about-status-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 34, 53, 0.78);
  backdrop-filter: blur(14px);
}

.about-status-panel span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-status-panel strong {
  max-width: 420px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.about-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 64px) 78px;
}

.about-summary article {
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 210, 26, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(33, 71, 111, 0.1);
}

.about-summary span,
.about-process span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--yellow);
  font-weight: 900;
}

.about-summary strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.about-summary p,
.about-feature p,
.about-feature-list span,
.about-proof p,
.about-process p {
  color: var(--ink-soft);
}

.about-summary p {
  margin: 12px 0 0;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  padding: 84px clamp(20px, 5vw, 64px);
}

.about-feature h2,
.about-dark h2,
.about-proof h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.25rem);
}

.about-feature p {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.about-feature-list {
  display: grid;
  gap: 12px;
}

.about-feature-list div {
  padding: 22px;
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(33, 71, 111, 0.08);
}

.about-feature-list strong,
.about-feature-list span {
  display: block;
}

.about-feature-list strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.about-feature-list span {
  margin-top: 6px;
  font-weight: 700;
}

.about-dark {
  max-width: none;
  padding: 92px max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + clamp(20px, 5vw, 64px)));
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(90, 134, 216, 0.18), transparent 26rem),
    linear-gradient(145deg, #142235, var(--charcoal));
}

.about-dark .section-kicker {
  color: var(--yellow);
}

.about-dark h2,
.about-dark h3,
.about-dark p {
  color: var(--white);
}

.about-dark-heading {
  max-width: 820px;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.about-process article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-process h3 {
  margin: 24px 0 10px;
  font-size: 1.25rem;
}

.about-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
  padding: 92px clamp(20px, 5vw, 64px);
}

.about-proof p {
  margin: 22px 0 28px;
  font-size: 1.06rem;
}

.about-proof img {
  width: 100%;
  min-height: 440px;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.contact-page {
  overflow: hidden;
  min-height: 100vh;
  padding-top: 72px;
  background: var(--white);
}

.contact-split {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(420px, 1.04fr);
}

.contact-form-side {
  display: grid;
  align-content: center;
  width: min(560px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) 0;
  animation: contact-rise 760ms 120ms var(--ease) both;
}

.contact-copy {
  margin-bottom: 34px;
}

.contact-copy h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.contact-copy p {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 650;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  padding: 13px 14px;
  color: #111827;
  background: var(--white);
  font: inherit;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder {
  color: #9aa3b2;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(90, 134, 216, 0.34);
  outline-offset: 2px;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(90, 134, 216, 0.1);
}

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

.contact-form .button {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  background: #4257f3;
  box-shadow: 0 15px 30px rgba(66, 87, 243, 0.24);
}

.contact-map {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #eef0f3;
}

.contact-map .leaflet-container,
.contact-map .leaflet-pane,
.contact-map .leaflet-map-pane {
  font-family: inherit;
}

.contact-map .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  background: #eef0f3;
}

.contact-map .leaflet-control-attribution {
  color: rgba(17, 24, 39, 0.55);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
}

.contact-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.1);
}

.contact-map .leaflet-control-zoom a {
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.contact-map .leaflet-control-zoom a + a {
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(0, 1120px) minmax(52px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 30px;
  background: rgba(10, 18, 30, 0.88);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  grid-column: 2;
  margin: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.lightbox-frame figcaption {
  margin-top: 14px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 44px;
  padding: 10px 14px;
}

.lightbox-nav {
  min-height: 52px;
  padding: 12px 14px;
}

.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  justify-self: start;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.quote-section {
  background: var(--white);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 52px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 210, 26, 0.18), transparent 18%),
    linear-gradient(135deg, var(--navy), var(--charcoal));
  box-shadow: var(--shadow);
}

.quote-panel .section-kicker {
  color: var(--yellow);
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 210, 26, 0.34);
  border-radius: 8px;
  background: rgba(255, 210, 26, 0.12);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -45% 52%;
  height: 260px;
  border-radius: 999px;
  background: rgba(90, 134, 216, 0.32);
  filter: blur(48px);
  transform: rotate(-8deg);
  animation: glow-shift 9s var(--ease) infinite alternate;
}

.quote-panel > * {
  position: relative;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 800;
}

.contact-lines a:hover {
  color: var(--blue-strong);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-color: rgba(255, 210, 26, 0.52);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 6px rgba(255, 210, 26, 0.1);
}

.quote-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  max-width: none;
  margin: 0;
  padding: 0 clamp(20px, 5vw, 64px) 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 134, 216, 0.24), transparent 28%),
    linear-gradient(145deg, #142235, var(--charcoal));
}

.footer-main,
.footer-bottom {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 430px) max-content max-content;
  justify-content: center;
  gap: clamp(36px, 4vw, 70px);
  align-items: start;
  padding: 38px 0 28px;
}

.footer-about p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-about {
  text-align: center;
}

.footer-tagline span {
  display: block;
}

.footer-tagline span + span {
  position: relative;
  margin-top: 12px;
  padding-top: 12px;
}

.footer-tagline span + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(360px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-50%);
}

.footer-brand {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.footer-brand .brand-logo {
  width: clamp(190px, 18vw, 280px);
}

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

.footer-column h3,
.footer-accordion-toggle {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.86rem;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-accordion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.footer-accordion-toggle::after {
  content: "";
  display: none;
}

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

.footer-accordion .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

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

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.site-footer > .reveal {
  opacity: 1;
  transform: none;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-legal a + a::before {
  content: "|";
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal a:hover {
  color: var(--white);
}

.legal-page {
  min-height: 100vh;
  padding-top: 118px;
  background:
    radial-gradient(circle at 20% 8%, rgba(90, 134, 216, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--paper), #ffffff 56%, var(--paper));
}

.legal-hero,
.legal-content {
  width: min(880px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.legal-hero {
  padding: 58px 0 28px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
}

.legal-hero p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.legal-content {
  padding-bottom: 96px;
}

.legal-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(33, 71, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(33, 71, 111, 0.1);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.12;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.legal-card a {
  color: var(--blue-strong);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes contact-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-shift {
  from {
    transform: translateX(-24px) rotate(-8deg);
  }
  to {
    transform: translateX(34px) rotate(-2deg);
  }
}

@keyframes console-in {
  from {
    opacity: 0;
    transform: translateY(26px) rotateX(8deg) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes console-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes terminal-scan {
  0%,
  54% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(120%);
  }
}

@keyframes ticket-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes support-fill {
  0%,
  100% {
    width: 64%;
  }
  50% {
    width: 92%;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(30, 203, 116, 0.12);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(30, 203, 116, 0.2);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-distance, -16.6667%));
  }
}

@media (max-width: 980px) {
  .proof-band,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .hero-layout,
  .quote-panel,
  .detail-hero,
  .detail-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .principle-grid,
  .about-summary,
  .about-process {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-feature,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 520px;
  }

  .about-hero-visual img {
    min-height: 520px;
  }

  .hero-copy-block {
    text-align: center;
  }

  .hero-interactive {
    grid-template-columns: 1fr;
  }

  .hero-contact-form {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-copy,
  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

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

  .ops-console {
    max-width: 560px;
    width: 100%;
    min-height: 480px;
    margin: 0 auto;
  }

  .gallery-teaser,
  .gallery-hero,
  .case-images {
    grid-template-columns: 1fr;
  }

  .gallery-hero-stack {
    min-height: 520px;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-note {
    min-height: 260px;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
    padding: 88px 14px 30px;
  }

  .hero-interactive {
    gap: 14px;
    padding: 14px;
  }

  .hero-contact-form {
    position: relative;
    padding-top: 22px;
  }

  .hero-contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    right: 8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33, 71, 111, 0.22), transparent);
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .hero-copy {
    margin-top: 12px;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-actions {
    display: none;
  }

  .hero-contact-form {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .hero-contact-form > div {
    margin-bottom: 0;
  }

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

  .hero-contact-form strong {
    font-size: 1.05rem;
  }

  .hero-contact-form label {
    gap: 4px;
    font-size: 0.72rem;
  }

  .hero-contact-form input,
  .hero-contact-form textarea {
    padding: 9px 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.58);
  }

  .hero-contact-form textarea {
    min-height: 62px;
    max-height: 96px;
  }

  .hero-contact-form .button {
    min-height: 42px;
  }

  .hero-wordmark {
    width: min(300px, 74vw);
  }

  .service-section {
    padding-top: 34px;
  }

  .service-section .section-heading {
    margin-bottom: 18px;
  }

  .service-section .section-kicker {
    display: none;
  }

  .service-section h2 {
    font-size: clamp(1.45rem, 6.8vw, 1.9rem);
    line-height: 1.05;
  }

  .field-section {
    padding: 0;
  }

  .field-copy {
    margin-bottom: 18px;
  }

  .field-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 18px;
  }

  .field-actions {
    gap: 10px;
  }

  .field-actions span {
    display: none;
  }

  .field-preview {
    min-height: 250px;
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .field-preview-stack {
    display: none;
  }

  .field-preview-main {
    min-height: 230px;
  }

  .field-preview-badge {
    left: 18px;
    bottom: 18px;
    font-size: 0.76rem;
  }

  .ops-console {
    min-height: 430px;
    padding: 18px;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .signal-set span {
    padding: 15px 20px;
  }

  .button {
    width: 100%;
  }

  .proof-band,
  .timeline,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .comparison-panel {
    grid-template-columns: 1fr;
  }

  .comparison-panel {
    min-height: 0;
  }

  .gallery-feature,
  .gallery-note,
  .gallery-card,
  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-feature + .gallery-feature {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .lightbox {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 72px 16px 22px;
  }

  .lightbox-frame {
    grid-column: 1;
  }

  .lightbox-nav {
    position: static;
    width: 100%;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-column: 1;
    justify-self: stretch;
  }

  .proof-band {
    margin-top: 0;
    padding: 0;
  }

  .proof-item {
    min-height: auto;
    padding: 16px 18px;
    border-radius: 8px;
  }

  .proof-item strong {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .proof-item span {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
  }

  .section,
  .field-section,
  .quote-section,
  .site-footer {
    padding: 44px 18px;
  }

  .detail-page {
    padding-top: 82px;
  }

  .detail-hero,
  .detail-section,
  .detail-band,
  .detail-cta {
    padding: 48px 20px;
  }

  .detail-hero-dark,
  .detail-band-dark {
    padding-left: 20px;
    padding-right: 20px;
  }

  .detail-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .detail-section-heading h2,
  .detail-band h2,
  .detail-cta h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .detail-card {
    min-height: auto;
    padding: 22px;
  }

  .approach-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .detail-cta {
    display: grid;
  }

  .about-hero {
    padding: 54px 20px 34px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .about-hero-copy p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .about-hero-visual {
    min-height: 390px;
  }

  .about-hero-visual img {
    min-height: 390px;
  }

  .about-status-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .about-status-panel strong {
    font-size: 1.22rem;
  }

  .about-summary,
  .about-feature,
  .about-dark,
  .about-proof {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-summary {
    gap: 10px;
    padding-bottom: 38px;
  }

  .about-summary article {
    min-height: auto;
    padding: 18px;
  }

  .about-summary strong {
    margin-top: 14px;
    font-size: 1.08rem;
  }

  .about-feature,
  .about-dark,
  .about-proof {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-feature h2,
  .about-dark h2,
  .about-proof h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .about-feature p,
  .about-proof p {
    font-size: 0.98rem;
  }

  .about-feature-list div {
    padding: 18px;
  }

  .about-process {
    gap: 0;
    margin-top: 34px;
  }

  .about-process article {
    padding: 20px 0;
  }

  .about-process h3 {
    margin: 14px 0 8px;
  }

  .about-proof img {
    min-height: 360px;
    border-width: 8px;
  }

  .contact-page {
    padding-top: 82px;
  }

  .contact-page {
    padding-top: 82px;
  }

  .contact-split {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .contact-form-side {
    width: auto;
    margin: 0;
    padding: 48px 20px;
  }

  .contact-copy {
    margin-bottom: 28px;
  }

  .contact-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .contact-copy p {
    font-size: 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 11px 12px;
  }

  .contact-map {
    min-height: 420px;
  }

  .site-footer {
    padding-top: 22px;
  }

  .section-intro {
    padding-bottom: 0;
  }

  .section-intro > .logo-strip {
    margin-top: 34px;
  }

  .section-kicker {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .split,
  .timeline {
    gap: 14px;
  }

  .split h2,
  .section-heading h2,
  .field-copy h2,
  .quote-panel h2 {
    font-size: clamp(1.7rem, 9vw, 2.45rem);
  }

  .intro-copy {
    font-size: 0.95rem;
  }

  .intro-copy p {
    margin: 12px 0 0;
  }

  .section-heading p,
  .field-copy p,
  .quote-panel p {
    display: none;
  }

  .section-heading,
  .field-copy {
    margin-bottom: 24px;
  }

  .service-grid,
  .timeline {
    gap: 10px;
  }

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

  .service-card {
    min-height: 104px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
    border-color: rgba(90, 134, 216, 0.24);
    background:
      radial-gradient(circle at 14% 0%, rgba(255, 210, 26, 0.14), transparent 34%),
      linear-gradient(145deg, rgba(35, 75, 122, 0.98), rgba(18, 32, 50, 0.98));
    box-shadow: 0 14px 34px rgba(33, 71, 111, 0.18);
    color: var(--white);
  }

  .service-card:hover {
    border-color: rgba(90, 134, 216, 0.24);
    transform: none;
    background:
      radial-gradient(circle at 14% 0%, rgba(255, 210, 26, 0.14), transparent 34%),
      linear-gradient(145deg, rgba(35, 75, 122, 0.98), rgba(18, 32, 50, 0.98));
    box-shadow: 0 14px 34px rgba(33, 71, 111, 0.18);
  }

  .service-card::before,
  .service-card:hover::before,
  .service-card:focus-visible::before,
  .service-card:active::before {
    opacity: 0;
    transform: none;
  }

  .service-number {
    display: none;
  }

  .service-card h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1rem, 4.2vw, 1.18rem);
    line-height: 1.12;
  }

  .timeline h3 {
    margin: 8px 0 0;
    font-size: 1rem;
  }

  .service-card p {
    display: none;
  }

  .timeline p {
    display: block;
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .timeline article {
    padding: 16px 0 0;
  }

  .timeline span {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .gallery-teaser {
    grid-template-columns: 1fr;
  }

  .gallery-teaser img:not(:first-child) {
    display: none;
  }

  .gallery-teaser img,
  .gallery-teaser img:first-child,
  .case-images button {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    min-height: 180px;
  }

  .quote-panel {
    gap: 24px;
  }

  .contact-lines {
    margin-top: 18px;
  }

  .gallery-hero {
    padding: 118px 20px 54px;
  }

  .gallery-section {
    padding: 58px 20px;
  }

  .gallery-hero-stack {
    min-height: 420px;
  }

  .gallery-hero-stack img {
    width: 76%;
    height: 260px;
  }

  .quote-panel {
    padding: 28px 20px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-left: 0;
  }

  .footer-legal a + a::before {
    margin-right: 10px;
  }

  .footer-about p {
    display: none;
  }

  .footer-about {
    display: none;
  }

  .footer-bottom span:last-child {
    display: none;
  }

  .footer-main {
    gap: 18px;
    padding-top: 0;
    padding-bottom: 28px;
  }

  .approach,
  .gallery-teaser,
  .field-section {
    display: none;
  }

  .footer-column {
    gap: 6px;
  }

  .footer-accordion {
    gap: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-accordion-toggle {
    width: 100%;
    min-height: 52px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: none;
    cursor: pointer;
  }

  .footer-accordion-toggle::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    margin-right: 2px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.78);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.78);
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .footer-accordion-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
  }

  .footer-accordion .footer-links {
    display: none;
    padding: 0 0 14px;
  }

  .footer-accordion.is-open .footer-links {
    display: grid;
  }

  .legal-page {
    padding-top: 82px;
  }

  .legal-hero {
    padding: 38px 0 22px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-content {
    padding-bottom: 54px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .signal-track {
    animation: none;
  }
}
