:root {
  --bg: #020817;
  --bg-deep: #010511;
  --bg-soft: #061225;
  --panel: rgba(11, 22, 42, 0.78);
  --panel-strong: rgba(15, 28, 52, 0.9);
  --line: rgba(127, 160, 217, 0.18);
  --line-bright: rgba(0, 109, 255, 0.42);
  --text: #f8fafc;
  --muted: #aab4c5;
  --quiet: #74839a;
  --blue: #007bff;
  --blue-hot: #0a84ff;
  --cyan: #00a3ff;
  --purple: #a855f7;
  --magenta: #d946ef;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-blue: 0 22px 80px rgba(0, 109, 255, 0.2);
  --container: 1520px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 109, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 82% 10%, rgba(168, 85, 247, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 36%, #031027 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 123, 255, 0.1), transparent 45rem),
    linear-gradient(90deg, rgba(0, 6, 22, 0.1), rgba(0, 0, 0, 0.35), rgba(0, 6, 22, 0.1));
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 72px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(2, 8, 23, 0.78);
  border-color: rgba(127, 160, 217, 0.12);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue-hot);
}

.brand-logo {
  width: clamp(168px, 12vw, 206px);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(0, 123, 255, 0.38));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #f2f6ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  transition: color 180ms ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-hot);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  display: grid;
  gap: 4px;
  min-width: 286px;
  padding: 12px;
  border: 1px solid rgba(127, 160, 217, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 123, 255, 0.18), transparent 10rem),
    linear-gradient(145deg, rgba(7, 17, 34, 0.98), rgba(2, 8, 23, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 36px rgba(0, 123, 255, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #dbe8ff;
  font-size: 0.84rem;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(0, 123, 255, 0.14);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, #006dff, #0a63ff);
  color: #fff;
  font-weight: 800;
  font-size: 0.93rem;
  box-shadow: 0 12px 35px rgba(0, 109, 255, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #168bff, #006dff);
  box-shadow: 0 18px 48px rgba(0, 123, 255, 0.42);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 20, 42, 0.82);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(56px, 7vh, 110px) 0 clamp(48px, 6vh, 86px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(75vw, 1200px);
  background: url("./assets/hero-scene-full.webp") center right / cover no-repeat;
  opacity: 0.9;
  filter: saturate(1.05);
  mask-image: linear-gradient(to right, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.36) 35%, #000 50%, #000 100%);
}

.section-glow::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 160, 217, 0.34), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: clamp(46px, 5vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-hot);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.tech-copy h2,
.metrics h2,
.cta-panel h2 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.05rem;
  line-height: 1.08;
  text-shadow: 0 14px 52px rgba(0, 0, 0, 0.38);
}

.hero h1 span,
.section-heading h2 span,
.tech-copy h2 span,
.metrics h2 span,
.cta-panel h2 span {
  color: var(--blue-hot);
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 760px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.quick-benefits li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.quick-benefits svg,
.response-note svg {
  width: 23px;
  height: 23px;
  color: var(--blue-hot);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-benefits strong {
  display: block;
  color: var(--text);
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 9px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.btn:hover svg,
.btn:focus-visible svg {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, #006dff, #095fff);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-secondary {
  border: 1px solid rgba(0, 123, 255, 0.42);
  background: rgba(0, 123, 255, 0.1);
  color: #edf4ff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue-hot);
  background: rgba(0, 123, 255, 0.18);
  box-shadow: 0 18px 48px rgba(0, 123, 255, 0.22);
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #edf4ff;
  font-weight: 800;
  font-size: 0.93rem;
}

.play-link span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(230, 240, 255, 0.48);
  border-radius: 50%;
  background: rgba(10, 22, 42, 0.7);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.play-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.play-link:hover span,
.play-link:focus-visible span {
  transform: scale(1.06);
  border-color: var(--blue-hot);
  background: rgba(0, 123, 255, 0.14);
}

.hero-visual {
  position: relative;
  min-height: clamp(555px, 62vh, 720px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  width: min(112%, clamp(620px, 43vw, 820px));
  border-radius: 0;
  opacity: 0;
  filter: drop-shadow(0 38px 60px rgba(0, 0, 0, 0.34));
}

.smoke {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.58;
}

.smoke-magenta {
  width: 220px;
  height: 170px;
  left: 4%;
  top: 35%;
  background: var(--magenta);
  animation: driftLeft 7s ease-in-out infinite;
}

.smoke-cyan {
  width: 260px;
  height: 180px;
  right: 0;
  top: 28%;
  background: #9fdcff;
  animation: driftRight 8s ease-in-out infinite;
}

.video-hero {
  min-height: 150vh;
  padding: 0;
  display: block;
  overflow: visible;
  background: var(--ink);
  --hero-left-shade: 0.9;
  --hero-side-shade: 0.48;
  --hero-bottom-shade: 0.9;
}

.video-hero::before {
  display: none;
}

.video-hero-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.video-hero-media,
.video-hero-media::before,
.video-hero-media::after {
  position: absolute;
  inset: 0;
}

.video-hero-media {
  z-index: -3;
  background: var(--ink);
}

.video-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08) brightness(0.88);
  will-change: transform, filter;
}

.video-hero-media::before {
  content: "";
  z-index: 1;
  background:
    radial-gradient(circle at 72% 48%, rgba(0, 109, 255, 0.18), transparent 34%),
    radial-gradient(circle at 58% 42%, rgba(168, 85, 247, 0.16), transparent 30%);
  pointer-events: none;
}

.video-hero-media::after {
  content: "";
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, var(--hero-left-shade)) 0%, rgba(2, 8, 23, 0.68) 30%, rgba(2, 8, 23, 0.14) 64%, rgba(2, 8, 23, var(--hero-side-shade)) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.24) 0%, rgba(2, 8, 23, 0.01) 44%, rgba(2, 8, 23, var(--hero-bottom-shade)) 100%);
  pointer-events: none;
}

.video-hero-content {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: clamp(96px, 13vh, 154px);
  padding-bottom: clamp(58px, 8vh, 112px);
}

.video-hero-copy {
  max-width: 870px;
  position: relative;
  z-index: 2;
}

.video-hero h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 5.4vw, 6.2rem);
}

.video-hero-text {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
}

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

.video-hero .btn-secondary {
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(6, 18, 37, 0.48);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.video-hero .btn-secondary:hover {
  border-color: rgba(0, 109, 255, 0.72);
  background: rgba(0, 109, 255, 0.13);
  transform: translateY(-3px);
}

.video-hero-progress {
  position: absolute;
  left: clamp(24px, 4vw, 72px);
  right: clamp(24px, 4vw, 72px);
  bottom: 28px;
  z-index: 4;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.video-hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet));
  box-shadow: 0 0 28px rgba(0, 109, 255, 0.78);
}

.services {
  padding: 62px 0 74px;
}

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

.section-heading .eyebrow,
.tech-copy .eyebrow,
.metrics .eyebrow,
.cta-panel .eyebrow {
  margin-bottom: 12px;
  font-size: 0.84rem;
}

.section-heading h2,
.tech-copy h2,
.metrics h2,
.cta-panel h2 {
  font-size: 2.7rem;
  line-height: 1.12;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 2vw, 34px);
}

.service-card {
  position: relative;
  flex: 1 1 250px;
  max-width: 282px;
  min-height: 315px;
  padding: 34px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(16, 29, 54, 0.88), rgba(7, 17, 34, 0.74)),
    radial-gradient(circle at 50% 0%, rgba(0, 123, 255, 0.16), transparent 56%);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.16), transparent 42%, rgba(168, 85, 247, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: var(--line-bright);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28), 0 0 45px rgba(0, 123, 255, 0.12);
}

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

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

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.blue {
  color: var(--blue-hot);
}

.service-icon.purple {
  color: var(--purple);
}

.service-card h3 {
  min-height: 58px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.42rem;
  line-height: 1.12;
}

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

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--blue-hot);
  font-weight: 800;
  font-size: 0.88rem;
}

.service-card:nth-child(2n) a {
  color: #c06cff;
}

.service-card a span {
  transition: transform 180ms ease;
}

.service-card a:hover span,
.service-card a:focus-visible span {
  transform: translateX(4px);
}

.tech-band {
  padding: 22px 0 76px;
}

.tech-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 50%, rgba(0, 123, 255, 0.36), transparent 32rem),
    radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(8, 18, 37, 0.95), rgba(7, 18, 38, 0.82));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.tech-copy {
  position: relative;
  z-index: 2;
  padding: 58px 46px;
}

.tech-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  color: #d9e6fb;
  list-style: none;
  font-size: 0.96rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(0, 123, 255, 0.38);
}

.laptop-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.laptop-visual::before,
.laptop-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.laptop-visual::before {
  background: linear-gradient(90deg, rgba(7, 18, 38, 0.96) 0%, rgba(7, 18, 38, 0.58) 18%, transparent 44%);
}

.laptop-visual::after {
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.26), transparent 30%, rgba(2, 8, 23, 0.34)),
    radial-gradient(circle at 72% 82%, rgba(0, 82, 255, 0.18), transparent 42%);
}

.laptop-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.98;
  transform: none;
  filter: saturate(1.04) contrast(1.03);
}

.tech-video-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background: #020817;
}

.tech-video-visual::before,
.tech-video-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.tech-video-visual::before {
  background:
    linear-gradient(315deg, rgba(2, 8, 23, 0.9) 0%, rgba(2, 8, 23, 0.72) 8%, transparent 23%),
    linear-gradient(90deg, rgba(7, 18, 38, 0.96) 0%, rgba(7, 18, 38, 0.58) 18%, transparent 44%),
    radial-gradient(circle at 54% 30%, rgba(0, 123, 255, 0.22), transparent 30rem);
}

.tech-video-visual::after {
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.18), transparent 34%, rgba(2, 8, 23, 0.5)),
    linear-gradient(135deg, rgba(0, 123, 255, 0.12), transparent 38%, rgba(168, 85, 247, 0.12));
  mix-blend-mode: screen;
}

.tech-video-visual video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  filter: saturate(1.18) contrast(1.08) brightness(0.82);
}

.tech-video-glow {
  position: absolute;
  right: 9%;
  bottom: 8%;
  z-index: 3;
  width: min(46%, 320px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.26), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.wireframe-lines,
.wireframe-lines::before,
.wireframe-lines::after {
  position: absolute;
  border: 2px solid rgba(0, 123, 255, 0.58);
  transform: rotate(-12deg);
  box-shadow: 0 0 24px rgba(0, 123, 255, 0.42), inset 0 0 24px rgba(0, 123, 255, 0.14);
}

.wireframe-lines {
  display: none;
  width: 75%;
  height: 54%;
  right: -4%;
  top: 18%;
  clip-path: polygon(10% 0, 100% 13%, 82% 100%, 0 72%);
}

.wireframe-lines::before,
.wireframe-lines::after {
  content: "";
  inset: 12%;
}

.wireframe-lines::after {
  inset: 25%;
  opacity: 0.7;
}

.results {
  padding: 12px 0 72px;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  gap: clamp(58px, 5vw, 92px);
  align-items: start;
}

.metrics h2 {
  max-width: 570px;
}

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

.metric-item {
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.metric-item:first-child {
  padding-left: 0;
}

.metric-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.metric-item svg {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--blue-hot);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-item:nth-child(2) svg,
.metric-item:nth-child(4) svg {
  color: var(--purple);
}

.metric-item strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.metric-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.testimonial-card {
  position: relative;
  min-height: 270px;
  padding: 34px 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(14, 27, 51, 0.88), rgba(7, 17, 34, 0.78));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.quote-mark {
  display: block;
  height: 38px;
  color: var(--blue-hot);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.8;
}

.quote-mark.muted {
  color: rgba(148, 163, 184, 0.35);
}

.testimonial-card p {
  margin: 8px 0 30px;
  color: #d5deec;
  line-height: 1.65;
}

.person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.avatar-one {
  background: linear-gradient(135deg, #f0937b, #6236ff);
}

.avatar-two {
  background: linear-gradient(135deg, #ff8f70, #233b78);
}

.person strong,
.person small {
  display: block;
}

.person strong {
  color: #fff;
  font-size: 0.94rem;
}

.person small {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 0.78rem;
}

.testimonial-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.testimonial-dots span {
  width: 12px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.24);
}

.testimonial-dots .active {
  width: 22px;
  background: var(--blue-hot);
}

.final-cta {
  padding: 0 0 54px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 54px 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 20%, rgba(217, 70, 239, 0.2), transparent 19rem),
    radial-gradient(circle at 78% 20%, rgba(0, 123, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(13, 25, 49, 0.94), rgba(5, 15, 32, 0.88));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.cta-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.response-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: start;
  margin-top: 28px;
  padding: clamp(34px, 4.6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 158, 255, 0.16), transparent 19rem),
    radial-gradient(circle at 14% 78%, rgba(168, 85, 247, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(10, 22, 43, 0.94), rgba(4, 13, 29, 0.9));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.quote-copy h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.quote-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.quote-benefits {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #d9e6fb;
}

.quote-benefits li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.quote-benefits li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-hot);
  box-shadow: 0 0 18px rgba(0, 158, 255, 0.55);
}

.quote-form {
  position: relative;
  display: grid;
  gap: 20px;
}

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

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

.quote-form label {
  display: grid;
  gap: 9px;
  color: #e6eefb;
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(2, 8, 23, 0.54);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 50px;
  padding: 0 15px;
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 15px;
  line-height: 1.6;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(170, 180, 197, 0.68);
}

.quote-form select {
  cursor: pointer;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(0, 158, 255, 0.82);
  background: rgba(5, 15, 32, 0.74);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.14);
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-shell p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.86rem;
  text-align: center;
}

.footer-local-link {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-local-link:hover,
.footer-local-link:focus-visible,
.local-service-links a:hover,
.local-service-links a:focus-visible {
  color: var(--blue-hot);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(170, 180, 197, 0.34);
  border-radius: 50%;
  color: #dbe8ff;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--blue-hot);
  background: rgba(0, 123, 255, 0.12);
}

.service-detail-main {
  padding-bottom: 70px;
}

.local-service-links a {
  color: #f8fbff;
  transition: color 180ms ease;
}

.service-hero {
  position: relative;
  padding: clamp(92px, 12vw, 150px) 0 clamp(58px, 8vw, 96px);
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 123, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 14% 30%, rgba(168, 85, 247, 0.14), transparent 26rem);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
}

.service-hero h1 {
  max-width: 920px;
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2.55rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-hero h1 span,
.service-section h2 span {
  color: var(--blue-hot);
}

.service-intro {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.service-proof {
  --proof-pad: 28px;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: var(--proof-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 27, 51, 0.88), rgba(7, 17, 34, 0.72));
  box-shadow: var(--shadow-blue);
}

.service-proof .service-image {
  width: calc(100% + (var(--proof-pad) * 2));
  max-width: none;
  aspect-ratio: 1.36;
  margin: calc(var(--proof-pad) * -1) calc(var(--proof-pad) * -1) 6px;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 16px 16px;
  background: rgba(2, 8, 23, 0.42);
  filter: brightness(1.12) saturate(1.08) contrast(1.02);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.26),
    0 0 42px rgba(0, 123, 255, 0.14);
}

.service-proof strong {
  color: #fff;
  font-size: 1.12rem;
}

.service-proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.38fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.service-content {
  display: grid;
  gap: 28px;
}

.service-section,
.service-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(11, 22, 42, 0.82), rgba(5, 15, 32, 0.72));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.service-section {
  padding: clamp(28px, 4vw, 48px);
}

.service-section h2,
.service-section h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

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

.service-section h3 {
  margin-top: 24px;
  font-size: 1.2rem;
}

.service-section p {
  color: var(--muted);
  line-height: 1.75;
}

.service-list,
.service-steps {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.service-steps li {
  position: relative;
  padding-left: 32px;
  color: #dbe8ff;
  line-height: 1.65;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-hot);
  box-shadow: 0 0 18px rgba(0, 132, 255, 0.55);
}

.service-steps {
  counter-reset: service-step;
}

.service-steps li {
  counter-increment: service-step;
}

.service-steps li::before {
  content: counter(service-step);
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.faq-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.04rem;
}

.faq-item p {
  margin: 0;
}

.service-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}

.service-side-card {
  padding: 28px;
}

.service-side-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.45rem;
}

.service-side-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-side-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-hot);
  font-weight: 800;
}

.motion-ready .reveal.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.motion-ready .delay-1 {
  transition-delay: 130ms;
}

@keyframes driftLeft {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.07);
  }
}

@keyframes driftRight {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-14px, 8px) scale(1.06);
  }
}

@media (min-width: 1120px) {
  .service-card {
    flex-basis: calc((100% - 84px) / 4);
    max-width: calc((100% - 84px) / 4);
  }
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 22px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .video-hero h1 {
    font-size: clamp(3rem, 8vw, 5.6rem);
  }

  .quick-benefits {
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 18px;
  }

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

  .tech-copy {
    padding-bottom: 22px;
  }

  .laptop-visual,
  .tech-video-visual {
    min-height: 330px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

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

  .service-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero::before {
    display: none;
  }

  .header-shell {
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 14, 31, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .mobile-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 14px 14px;
    border-radius: 12px;
    color: #edf4ff;
    font-weight: 800;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(0, 123, 255, 0.12);
  }

  .mobile-services {
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(127, 160, 217, 0.16);
    border-radius: 14px;
    background: rgba(0, 123, 255, 0.07);
  }

  .mobile-services span {
    padding: 4px 4px 8px;
    color: var(--blue-hot);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-services a {
    padding: 10px 12px;
    color: #dbe8ff;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-nav .mobile-cta {
    margin-top: 6px;
    text-align: center;
    background: var(--blue);
    color: #fff;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .video-hero {
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  .video-hero-stage {
    position: relative;
    min-height: 100svh;
  }

  .video-hero-content {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .video-hero-copy {
    max-width: 620px;
  }

  .video-hero h1 {
    max-width: 620px;
    margin-inline: 0;
    font-size: clamp(2.6rem, 10vw, 4.6rem);
    text-align: left;
  }

  .video-hero-text {
    max-width: 540px;
    margin-inline: 0;
    text-align: left;
  }

  .video-hero-actions {
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .video-hero-media::after {
    background:
      linear-gradient(90deg, rgba(2, 8, 23, 0.94) 0%, rgba(2, 8, 23, 0.72) 56%, rgba(2, 8, 23, 0.42) 100%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.48) 0%, rgba(2, 8, 23, 0.16) 44%, rgba(2, 8, 23, 0.96) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: 2rem;
    line-height: 1.14;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  .hero-text,
  .quick-benefits {
    margin-inline: auto;
  }

  .hero-text {
    max-width: 420px;
  }

  .quick-benefits li {
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual img {
    width: min(82%, 420px);
    opacity: 1;
  }

  .services {
    padding-top: 44px;
  }

  .section-heading h2,
  .tech-copy h2,
  .metrics h2,
  .cta-panel h2 {
    font-size: 2.18rem;
  }

  .service-card {
    max-width: calc(50% - 14px);
    flex-basis: calc(50% - 14px);
  }

  .tech-copy {
    padding: 42px 30px 18px;
  }

  .laptop-visual img,
  .tech-video-visual video {
    width: 100%;
    height: 100%;
    object-position: center right;
  }

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

  .metric-item:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .metric-item:nth-child(3) {
    padding-left: 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 42px 32px;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding-top: 64px;
  }

  .service-hero h1 {
    font-size: 2.55rem;
  }

  .service-intro {
    font-size: 1rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: 160px;
  }

  .brand-logo {
    width: 150px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 1.82rem;
  }

  .hero-text {
    max-width: 310px;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .quick-benefits {
    max-width: 310px;
    margin-top: 30px;
  }

  .hero-actions {
    align-items: stretch;
    max-width: 280px;
  }

  .btn,
  .play-link {
    width: 100%;
    max-width: 100%;
  }

  .play-link {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual img {
    width: min(96%, 360px);
  }

  .section-heading h2,
  .tech-copy h2,
  .metrics h2,
  .cta-panel h2 {
    font-size: 1.78rem;
  }

  .service-card {
    flex-basis: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .service-card h3 {
    min-height: 0;
  }

  .tech-panel,
  .cta-panel {
    border-radius: 18px;
  }

  .tech-copy {
    padding: 34px 22px 12px;
  }

  .laptop-visual,
  .tech-video-visual {
    min-height: 250px;
  }

  .laptop-visual img,
  .tech-video-visual video {
    width: 100%;
    height: 100%;
    object-position: center right;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-item,
  .metric-item:first-child,
  .metric-item:last-child,
  .metric-item:nth-child(3) {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .cta-panel {
    padding: 34px 22px;
  }

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

  .quote-copy h3 {
    font-size: 2rem;
  }

  .quote-form input,
  .quote-form select {
    height: 48px;
  }

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

  .form-footer {
    align-items: stretch;
  }

  .form-footer .btn {
    width: 100%;
  }

  .service-hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .local-hero h1 {
    max-width: 310px;
    font-size: 1.74rem;
    overflow-wrap: break-word;
  }

  .local-hero .service-intro {
    max-width: 310px;
  }

  .service-section,
  .service-side-card,
  .service-proof {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .service-proof {
    --proof-pad: 20px;
  }

  .service-section h2 {
    font-size: 1.65rem;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .video-hero-content {
    padding-top: 104px;
  }

  .video-hero-copy {
    width: min(100%, 310px);
    max-width: 310px;
  }

  .video-hero h1 {
    width: 100%;
    max-width: 310px;
    margin-inline: 0;
    font-size: clamp(1.92rem, 8.9vw, 2.62rem);
    overflow-wrap: break-word;
    text-align: left;
    text-wrap: wrap;
    white-space: normal;
  }

  .video-hero-text {
    margin-inline: 0;
    text-align: left;
  }

  .video-hero-actions {
    align-items: stretch;
    width: min(100%, 310px);
  }

  .video-hero-actions .btn {
    width: 100%;
  }

  .video-hero-progress {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
