:root {
  --ink: #05060a;
  --muted: #5d6372;
  --line: #e8ebf3;
  --bg: #ffffff;
  --soft: #f7f8fb;
  --blue: #2456ff;
  --violet: #6e3cff;
  --dark: #070a12;
  --shadow: 0 18px 48px rgba(20, 26, 48, 0.1);
  --container: min(1160px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
.container { width: var(--container); margin-inline: auto; }

.top-strip {
  display: none;
  color: #fff;
  background: #070a0f;
  font-size: 0.8rem;
}
.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.top-social a {
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(232, 235, 243, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(20, 26, 48, 0.06);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-logo {
  width: 86px;
  height: 32px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.brand-mark,
.footer-brand span {
  width: 72px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #06070a;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  transform: skew(-8deg);
}
.brand-copy {
  display: grid;
  gap: 0.16rem;
}
.brand-copy strong,
.footer-brand strong {
  font-weight: 900;
  text-transform: uppercase;
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-links a {
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  border-color: var(--blue);
}
.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}
.nav-cta {
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.55rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(55, 65, 255, 0.18);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  isolation: isolate;
  margin-top: 0;
  padding: 72px 0 118px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 24%, rgba(97, 74, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 252, 255, 0.66) 72%, rgba(244, 246, 251, 0.76));
}
.hero-video-bg {
  position: absolute;
  right: 0;
  top: 24px;
  z-index: -1;
  width: 68%;
  height: 78%;
  object-fit: cover;
  object-position: center 68%;
  opacity: 0.28;
  filter: grayscale(0.35) contrast(1.08) brightness(1.05);
  transform: scale(1.18);
  transform-origin: center center;
  mask-image: radial-gradient(circle at 62% 45%, black, rgba(0, 0, 0, 0.72) 48%, transparent 76%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  gap: 0;
}
.hero-panels {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.8rem;
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 4.6rem;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}
.assemble-title {
  display: grid;
  gap: 0.02em;
}
.assemble-line {
  display: block;
  white-space: nowrap;
}
.rocket-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 690px;
}
.rocket-we {
  display: inline-flex;
  align-items: flex-end;
  line-height: 0.78;
  white-space: nowrap;
}
.rocket-words {
  display: grid;
  gap: 0.08em;
  padding-top: 0.22em;
}
.rocket-words .assemble-line {
  font-size: 0.52em;
  line-height: 1;
}
.letter-piece {
  display: inline-block;
  opacity: 0;
  color: var(--ink);
  transform:
    translate3d(calc((var(--i) - 5) * 4px), calc(-170px - (var(--line) * 18px)), 0)
    rotate(calc(-54deg + (var(--i) * 11deg)))
    scale(0.72);
  transform-origin: 50% 70%;
  filter: blur(2px);
  animation: assemblePiece 1.05s cubic-bezier(0.18, 0.88, 0.18, 1.12) forwards;
  animation-delay: calc((var(--line) * 0.2s) + (var(--i) * 0.045s));
}
.rocket-title .letter-piece {
  transform: translate3d(0, calc(-240px - (var(--i) * 10px)), 0) scale(0.92);
  filter: blur(1px);
  animation: rocketDrop 0.86s cubic-bezier(0.2, 0.95, 0.15, 1.08) forwards;
  animation-delay: calc((var(--line) * 0.14s) + (var(--i) * 0.035s));
  text-shadow: 0 -18px 14px rgba(36, 86, 255, 0.1);
}
.mega-letter {
  font-size: 1.72em;
  letter-spacing: 0;
  animation-duration: 0.74s;
}
.small-e {
  margin-left: -0.06em;
  font-size: 0.66em;
  animation-delay: 0.12s;
}
.assemble-title:not(.rocket-title) .assemble-line:nth-child(2) .letter-piece {
  transform:
    translate3d(calc((6 - var(--i)) * 4px), calc(-185px - (var(--line) * 12px)), 0)
    rotate(calc(48deg - (var(--i) * 9deg)))
    scale(0.7);
}
.assemble-title:not(.rocket-title) .assemble-line:nth-child(3) .letter-piece {
  transform:
    translate3d(calc((var(--i) - 4) * -5px), -165px, 0)
    rotate(calc(-42deg + (var(--i) * 8deg)))
    scale(0.72);
}
.assemble-title:not(.rocket-title) .assemble-line:nth-child(4) .letter-piece {
  transform:
    translate3d(calc((var(--i) - 3) * 5px), -195px, 0)
    rotate(calc(60deg - (var(--i) * 12deg)))
    scale(0.68);
}
.drop-title {
  max-width: 720px;
}
.drop-title .assemble-line {
  line-height: 0.98;
}
.drop-title .letter-piece {
  transform: translate3d(0, -210px, 0) scale(0.98);
  filter: blur(2px);
  clip-path: none;
  animation: letterDrop 0.72s cubic-bezier(0.17, 0.92, 0.17, 1.16) forwards;
  animation-delay: calc(var(--global-i, var(--i, 0)) * 0.034s);
}
.hero-proof {
  width: fit-content;
  margin-top: 1.1rem;
  border-left: 3px solid var(--blue);
  padding-left: 0.85rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}
.section-title h2 span {
  color: var(--blue);
}
.hero-text {
  max-width: 560px;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1.35rem;
  font-weight: 900;
}
.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0 50px;
  background:
    radial-gradient(circle at 2% 3%, rgba(36, 86, 255, 0.08), transparent 22%),
    radial-gradient(circle at 96% 84%, rgba(36, 86, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #fff, #f7faff 82%, #fff);
}
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 86, 255, 0.2) 1px, transparent 1px);
  background-size: 14px 14px;
}
.process-section::before {
  left: 22px;
  top: 18px;
}
.process-section::after {
  right: 38px;
  bottom: 104px;
}
.process-heading {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
}
.process-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.process-heading .section-kicker::before,
.process-heading .section-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
}
.process-heading h2 {
  max-width: 920px;
  font-size: 2.75rem;
  line-height: 1.12;
}
.process-heading h2 span {
  color: var(--blue);
}
.process-heading > p:last-child {
  color: #858b9c;
  font-size: 1.05rem;
  font-weight: 700;
}
.process-heading::after {
  content: "";
  width: 50px;
  height: 4px;
  border-radius: 999px;
  margin-top: 0.35rem;
  background: var(--blue);
  transform: skewX(-28deg);
}
.process-map {
  position: relative;
  z-index: 2;
  height: 820px;
  margin-top: 2rem;
}
.process-path-svg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 760px;
  overflow: visible;
  pointer-events: none;
}
.process-path-base,
.process-path-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-path-base {
  stroke: #d8deea;
  stroke-width: 2;
}
.process-path-progress {
  stroke: var(--blue);
  stroke-width: 3.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.12s linear;
  filter: drop-shadow(0 5px 10px rgba(36, 86, 255, 0.3));
}
.process-start-ring {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 3;
  filter: drop-shadow(0 8px 16px rgba(36, 86, 255, 0.2));
}
.process-start-point {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 3;
}
.process-marker {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  filter:
    drop-shadow(0 0 10px rgba(36, 86, 255, 0.62))
    drop-shadow(0 8px 14px rgba(36, 86, 255, 0.3));
  animation: runnerPulse 1.2s ease-in-out infinite;
}
.process-section.is-rope-moving .process-marker {
  animation: runnerPulse 0.45s ease-in-out infinite;
}
.process-section.is-rope-moving .process-path-progress {
  stroke-width: 4.5;
  filter:
    drop-shadow(0 0 8px rgba(36, 86, 255, 0.5))
    drop-shadow(0 8px 14px rgba(36, 86, 255, 0.22));
}
.process-icon {
  position: absolute;
  z-index: 4;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1f62ff, #3154ff);
  box-shadow: 0 16px 34px rgba(36, 86, 255, 0.26);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.process-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 8px solid rgba(36, 86, 255, 0.08);
  z-index: -1;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.process-icon.is-complete {
  box-shadow:
    0 0 0 4px rgba(36, 86, 255, 0.08),
    0 16px 34px rgba(36, 86, 255, 0.26);
}
.process-icon.is-active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 8px rgba(36, 86, 255, 0.12),
    0 0 34px rgba(36, 86, 255, 0.42),
    0 18px 40px rgba(36, 86, 255, 0.28);
}
.process-icon.is-active::after {
  border-color: rgba(36, 86, 255, 0.18);
}
.process-section.is-rope-moving .process-icon.is-active {
  animation: iconReachGlow 0.7s ease-in-out infinite;
}
.icon-1 {
  left: 113px;
  top: 94px;
}
.icon-2 { right: 353px; top: 174px; }
.icon-3 { left: 113px; top: 309px; }
.icon-4 { right: 353px; top: 384px; }
.icon-5 { left: 113px; top: 524px; }
.icon-6 { right: 353px; top: 539px; }
.icon-7 { left: 428px; top: 699px; }
.process-step {
  position: absolute;
  z-index: 2;
  width: 360px;
  min-height: 112px;
  border: 1px solid rgba(36, 86, 255, 0.28);
  border-right: 2px solid var(--blue);
  border-radius: 16px;
  display: grid;
  gap: 0.25rem;
  padding: 1.3rem 1.25rem 1rem 6.45rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(20, 26, 48, 0.1);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.process-step::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    0 0 0 3px rgba(36, 86, 255, 0.14),
    0 0 38px rgba(36, 86, 255, 0.24);
  transition: opacity 0.25s ease;
}
.process-step.is-complete {
  border-color: rgba(36, 86, 255, 0.44);
  box-shadow: 0 18px 48px rgba(20, 26, 48, 0.1), 0 0 18px rgba(36, 86, 255, 0.08);
}
.process-step.is-active {
  border-color: rgba(36, 86, 255, 0.95);
  background: #fff;
  transform: translateY(-4px);
  box-shadow:
    0 22px 58px rgba(20, 26, 48, 0.12),
    0 0 34px rgba(36, 86, 255, 0.22);
}
.process-step.is-active::before {
  opacity: 1;
}
.process-section.is-rope-moving .process-step.is-active::before {
  animation: stepReachGlow 0.75s ease-in-out infinite;
}
.process-section.is-rope-moving .process-step.is-active {
  animation: activeStepGlow 0.75s ease-in-out infinite;
}
.process-step b {
  position: absolute;
  left: 6.45rem;
  top: 1rem;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
}
.process-step h3 {
  margin-top: 1.9rem;
  font-size: 0.95rem;
  line-height: 1.28;
}
.process-step h3::after {
  display: none;
}
.process-step p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.step-1 { left: 85px; top: 70px; }
.step-2 { right: 85px; top: 150px; }
.step-3 { left: 85px; top: 285px; }
.step-4 { right: 85px; top: 360px; }
.step-5 { left: 85px; top: 500px; }
.step-6 { right: 85px; top: 515px; }
.step-7 { left: 400px; top: 675px; }
.process-benefits {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(36, 86, 255, 0.56);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1rem;
  padding: 1.6rem 1.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 2% 10%, rgba(36, 86, 255, 0.18), transparent 25%),
    #050915;
  box-shadow: 0 24px 58px rgba(5, 9, 21, 0.2);
}
.process-benefits article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 0.35rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.process-benefits article:last-child {
  border-right: 0;
}
.process-benefits span {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 900;
}
.process-benefits h3 {
  font-size: 1.06rem;
}
.process-benefits p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.choose-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 86, 255, 0.07), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(110, 60, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #fff, #f8faff);
}
.choose-section::before,
.choose-section::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 86, 255, 0.22) 1px, transparent 1px);
  background-size: 14px 14px;
}
.choose-section::before {
  left: 0;
  top: 16px;
}
.choose-section::after {
  right: 18px;
  bottom: 12px;
}
.choose-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
}
.choose-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.choose-heading .section-kicker::before,
.choose-heading .section-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
}
.choose-heading h2 {
  max-width: 760px;
  font-size: 2.4rem;
  line-height: 1.15;
}
.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 0;
}
.feature-strip article {
  min-height: 278px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.35rem 1.1rem;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 26, 48, 0.07);
}
.feature-strip span,
.services-grid article > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef2ff;
  font-weight: 900;
}
.feature-strip b {
  color: var(--blue);
  font-size: 0.95rem;
}
.feature-strip h3,
.services-grid h3,
.portfolio-card h3 {
  font-size: 1rem;
}
.feature-strip h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 0.8rem;
  background: var(--blue);
}
.feature-strip p,
.services-grid p,
.portfolio-card p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 74px 0 0;
}
.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
}
.section-title h2 {
  margin-top: 0.6rem;
  font-size: 3rem;
  line-height: 1.08;
}
.section-intro {
  color: var(--muted);
  line-height: 1.7;
}
.services {
  padding-top: 70px;
}
.services .section-row {
  grid-template-columns: minmax(0, 700px);
  justify-content: center;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
}
.services .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.services .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.services .section-title h2 {
  margin-top: 0.5rem;
  font-size: 2.35rem;
  line-height: 1.12;
}
.services .section-intro {
  max-width: 520px;
}
.black-btn {
  min-height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1.2rem;
  color: #fff;
  background: #05060a;
  font-weight: 900;
}
.services-grid {
  counter-reset: service-card;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.services-grid article {
  --accent: var(--blue);
  --accent-soft: #edf2ff;
  counter-increment: service-card;
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.35rem 1.1rem;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 26, 48, 0.08);
}
.services-grid article:nth-child(2) {
  --accent: #7a3cff;
  --accent-soft: #f1eaff;
}
.services-grid article:nth-child(3) {
  --accent: #ff7a1a;
  --accent-soft: #fff0e7;
}
.services-grid article:nth-child(4) {
  --accent: #14b86a;
  --accent-soft: #eafff4;
}
.services-grid article:nth-child(5) {
  --accent: #2456ff;
  --accent-soft: #edf2ff;
}
.services-grid article::after {
  content: counter(service-card, decimal-leading-zero);
  position: absolute;
  right: 0.75rem;
  bottom: 0.1rem;
  color: rgba(5, 6, 10, 0.06);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}
.services-grid article > span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.82rem;
}
.services-grid article > .mobile-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}
.mobile-icons svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.mobile-icons svg:first-child {
  color: #18a957;
}
.mobile-icons svg:last-child {
  color: #05060a;
}
.services-grid article > .service-icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.35rem;
  color: var(--accent);
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, #f3f6ff, var(--accent-soft));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 28px rgba(20, 26, 48, 0.08);
}
.service-icon img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(20, 26, 48, 0.1));
}
.service-icon svg {
  width: 68px;
  height: 68px;
  overflow: visible;
}
.service-icon svg path,
.service-icon svg rect,
.service-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.service-icon .gear {
  stroke: #4152a4;
}
.icon-web,
.icon-software {
  color: #2456ff;
}
.icon-app {
  color: #7a3cff;
}
.icon-app .phone {
  stroke: #7a3cff;
  stroke-width: 4;
}
.icon-app .phone-line {
  stroke: #7a3cff;
  stroke-width: 2;
}
.icon-app .android {
  fill: #28c35c;
  stroke: #fff;
  stroke-width: 1.6;
}
.icon-app .apple {
  fill: #05060a;
  stroke: #fff;
  stroke-width: 1.4;
}
.icon-menu {
  color: #ff7a1a;
}
.icon-menu .dish {
  stroke: #ffb05b;
}
.icon-seo {
  color: #13b66a;
}
.icon-seo .bar {
  stroke-width: 5;
}
.services-grid h3 {
  margin-top: 1.2rem;
  font-size: 1.02rem;
}
.services-grid p {
  margin-top: 0.7rem;
  font-size: 0.91rem;
}
.services-grid a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
}

.portfolio {
  position: relative;
  width: min(1080px, calc(100vw - 48px));
  margin-top: 30px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.45rem 0.3rem 0.75rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 86, 255, 0.09), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(110, 60, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcff, #f7f9ff);
}
.portfolio::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.portfolio-copy {
  display: grid;
  align-content: start;
  padding: 0.8rem 0.85rem 0.2rem;
}
.portfolio-copy p {
  width: fit-content;
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  color: var(--blue);
  background: #eef2ff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.portfolio-copy p::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.45rem;
  background: var(--blue);
  vertical-align: 0.08em;
}
.portfolio-copy h2 {
  margin-top: 0.55rem;
  font-size: 1.82rem;
  line-height: 1.04;
}
.portfolio-copy > small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.34;
}
.portfolio-points {
  display: grid;
  gap: 0.42rem;
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
}
.portfolio-points li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.04rem 0.65rem;
  align-items: center;
}
.portfolio-points li span {
  grid-row: span 2;
  width: 27px;
  height: 27px;
  border: 2px solid #86a1ff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  font-size: 0.66rem;
  font-weight: 900;
}
.portfolio-points li:nth-child(2) span {
  border-color: #b58cff;
  color: #7a3cff;
}
.portfolio-points li:nth-child(3) span {
  border-color: #ec8bff;
  color: #d946ef;
}
.portfolio-points b {
  font-size: 0.76rem;
}
.portfolio-points em {
  color: var(--muted);
  font-size: 0.66rem;
  font-style: normal;
}
.portfolio-copy a {
  width: fit-content;
  min-height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 0 0.28rem 0 0.85rem;
  color: #fff;
  background: #05060a;
  font-weight: 900;
}
.portfolio-copy a b,
.portfolio-card a b {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}
.portfolio-card {
  border: 1px solid #e5e9f5;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 0.58rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(20, 26, 48, 0.12);
}
.portfolio-card span {
  position: relative;
  display: block;
  height: 118px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, #172554, #7c3aed);
}
.portfolio-card span::before,
.portfolio-card span::after {
  content: "";
  position: absolute;
  border-radius: 12px;
}
.portfolio-card span::before {
  left: 18px;
  top: 20px;
  width: 64%;
  height: 78px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 44px 0 rgba(255, 255, 255, 0.1),
    72px 18px 0 rgba(255, 255, 255, 0.08);
}
.portfolio-card span::after {
  right: 16px;
  bottom: 12px;
  width: 48px;
  height: 86px;
  border: 5px solid rgba(255, 255, 255, 0.32);
  background: rgba(20, 26, 48, 0.2);
}
.portfolio-card:nth-child(3) span {
  background:
    radial-gradient(circle at 70% 42%, #f59e0b 0 11%, transparent 12%),
    radial-gradient(circle at 34% 65%, #f97316 0 13%, transparent 14%),
    linear-gradient(135deg, #fff7ed, #7c2d12);
}
.portfolio-card:nth-child(4) span {
  background:
    linear-gradient(90deg, #111827 0 22%, transparent 22%),
    radial-gradient(circle at 74% 55%, rgba(124, 58, 237, 0.3), transparent 17%),
    linear-gradient(135deg, #f8fbff, #dce7ff);
}
.portfolio-card:nth-child(5) span {
  background:
    linear-gradient(90deg, #0f172a 0 36%, transparent 36%),
    radial-gradient(circle at 72% 32%, rgba(245, 158, 11, 0.22), transparent 14%),
    linear-gradient(135deg, #eef2ff, #c7d2fe);
}
.portfolio-card strong {
  width: fit-content;
  border-radius: 999px;
  margin-top: 0.55rem;
  padding: 0.22rem 0.58rem;
  color: var(--blue);
  background: #eef2ff;
  font-size: 0.75rem;
  font-weight: 900;
}
.portfolio-card h3 {
  margin-top: 0.38rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.portfolio-card p {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.34;
}
.portfolio-card a {
  border-top: 1px solid #eef1f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.55rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.stats {
  margin-top: 0.3rem;
  border: 0;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.6rem;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 86, 255, 0.18), transparent 28%),
    #050915;
  box-shadow: 0 24px 58px rgba(5, 9, 21, 0.24);
}
.stats article {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
}
.stats article:last-child {
  border-right: 0;
}
.stats span {
  font-size: 2rem;
  font-weight: 900;
}
.stats p {
  color: #fff;
  font-weight: 800;
}
.stats small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.project-cta {
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
}
.project-cta p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  color: #fff;
  background:
    radial-gradient(circle at 94% 28%, rgba(36, 86, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #07101d, #03050a 62%),
    #05060a;
}
.footer .container {
  width: min(1080px, calc(100vw - 48px));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.35fr;
  gap: 1.9rem;
  padding: 1.55rem 0 1rem;
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
}
.footer a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.42rem;
  line-height: 1.24;
}
.footer h3 {
  position: relative;
  color: #fff;
  font-size: 0.94rem;
}
.footer h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 0.42rem;
  background: var(--blue);
}
.footer-about p {
  max-width: 300px;
  margin-top: 0.72rem;
  line-height: 1.42;
}
.footer .footer-brand span {
  color: #05060a;
  background: #fff;
  border-radius: 3px;
}
.footer .brand-logo {
  width: 78px;
  height: 28px;
  filter: invert(1);
}
.footer-contact a::before,
.footer-contact p::before {
  content: none;
}
.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 0.62rem;
  margin-top: 0.54rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.26;
}
.footer-contact span {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
}
.footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.72rem;
}
.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0;
  color: #fff;
  font-weight: 900;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 0 0.9rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}
.footer-bottom a {
  display: inline-flex;
  margin: 0;
  color: #8ca2ff;
}
.footer-metrics {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.footer-metrics span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-page {
  position: relative;
  overflow: hidden;
  padding: 72px 0 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(36, 86, 255, 0.08), transparent 28%),
    radial-gradient(circle at 100% 80%, rgba(110, 60, 255, 0.09), transparent 22%),
    linear-gradient(180deg, #fff, #f8faff 76%, #eef3ff);
}
.contact-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(36, 86, 255, 0.22) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(36, 86, 255, 0.08) 49% 51%, transparent 52%);
  background-position: 53% 76px, 0 0;
  background-size: 18px 18px, 100% 100%;
  mask-image: radial-gradient(circle at 48% 18%, black, transparent 18%),
    radial-gradient(circle at 85% 86%, black, transparent 24%);
}
.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.08fr;
  gap: 4rem;
  align-items: center;
}
.contact-copy h1 {
  max-width: 620px;
  margin-top: 0.8rem;
  font-size: 4.25rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}
.contact-copy {
  position: relative;
}
.contact-copy h1 span {
  color: var(--blue);
}
.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}
.contact-methods {
  width: min(360px, 100%);
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-methods a,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 52px rgba(20, 26, 48, 0.08);
  backdrop-filter: blur(16px);
}
.contact-methods a {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.2rem 0.9rem;
  padding: 1rem;
}
.contact-methods .contact-icon {
  grid-row: span 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 900;
}
.contact-methods span:not(.contact-icon) {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-methods strong {
  overflow-wrap: anywhere;
}
.contact-methods small {
  color: var(--muted);
}
.contact-note {
  position: absolute;
  left: 270px;
  top: 360px;
  width: 255px;
  margin: 0;
  transform: rotate(-6deg);
  filter: drop-shadow(0 10px 14px rgba(36, 86, 255, 0.1));
}
.contact-note svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.contact-note text {
  fill: #2857d9;
  font-family: "Caveat", "Comic Sans MS", cursive;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0;
  transform: rotate(-4deg);
  transform-origin: center;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 1.6px;
}
.signature-arrow,
.signature-head,
.signature-underline {
  fill: none;
  stroke: #2857d9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}
.signature-arrow,
.signature-head {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}
.signature-underline {
  stroke-width: 3.2;
  opacity: 0.78;
}
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
}
.form-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.4rem;
}
.form-heading h2 {
  font-size: 1.6rem;
}
.form-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef2ff;
  font-weight: 900;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
}
.contact-form label span {
  font-size: 0.86rem;
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce1ee;
  border-radius: 8px;
  padding: 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(36, 86, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(36, 86, 255, 0.1);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.submit-btn {
  width: 100%;
  border: 0;
  box-shadow: 0 16px 34px rgba(36, 86, 255, 0.18);
}
.submit-btn b {
  font-size: 1rem;
}
.form-note,
.form-status {
  color: var(--muted);
  line-height: 1.55;
}
.form-note {
  font-size: 0.86rem;
}
.form-status {
  min-height: 1.4em;
  font-weight: 800;
}
.form-status.is-success {
  color: #0b8f5a;
}
.form-status.is-error {
  color: #c23535;
}

@keyframes assemblePiece {
  0% {
    opacity: 0;
    clip-path: polygon(0 0, 58% 0, 46% 44%, 70% 100%, 0 100%);
  }
  42% {
    opacity: 1;
    filter: blur(1px);
    clip-path: polygon(0 0, 100% 0, 76% 52%, 100% 100%, 0 100%);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, 18px, 0) rotate(-6deg) scale(1.08);
  }
  78% {
    transform: translate3d(0, -9px, 0) rotate(3deg) scale(0.98);
  }
  90% {
    transform: translate3d(0, 3px, 0) rotate(-1deg) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter: blur(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -220px, 0) scale(0.96);
    filter: blur(3px);
  }
  48% {
    opacity: 1;
    transform: translate3d(0, 14px, 0) scale(1.04);
    filter: blur(0);
  }
  66% {
    transform: translate3d(0, -6px, 0) scale(0.99);
  }
  84% {
    transform: translate3d(0, 3px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes rocketDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -280px, 0) scale(0.88);
    filter: blur(3px);
  }
  58% {
    opacity: 1;
    transform: translate3d(0, 16px, 0) scale(1.06);
    filter: blur(0);
    text-shadow: 0 -28px 22px rgba(36, 86, 255, 0.18);
  }
  75% {
    transform: translate3d(0, -7px, 0) scale(0.98);
  }
  88% {
    transform: translate3d(0, 3px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    text-shadow: none;
  }
}

@keyframes runnerPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.28);
  }
}

@keyframes stepReachGlow {
  0%, 100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes activeStepGlow {
  0%, 100% {
    transform: translateY(-4px);
    box-shadow:
      0 22px 58px rgba(20, 26, 48, 0.12),
      0 0 30px rgba(36, 86, 255, 0.22);
  }
  50% {
    transform: translateY(-7px);
    box-shadow:
      0 24px 62px rgba(20, 26, 48, 0.13),
      0 0 52px rgba(36, 86, 255, 0.34);
  }
}

@keyframes iconReachGlow {
  0%, 100% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.17);
  }
}

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.is-open {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 88px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    gap: 0;
    padding: 0.6rem;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open a { padding: 0.85rem; }
  .hero-grid,
  .section-row,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    gap: 2.2rem;
  }
  .contact-note {
    display: none;
  }
  .hero {
    min-height: 650px;
    padding-bottom: 92px;
  }
  .hero h1 {
    font-size: 3.7rem;
  }
  .process-map {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .process-path-svg,
  .process-icon {
    display: none;
  }
  .process-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    min-height: 0;
    padding: 1.15rem;
  }
  .process-step b {
    position: static;
  }
  .process-step h3 {
    margin-top: 0.2rem;
  }
  .process-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-benefits article:nth-child(2) {
    border-right: 0;
  }
  .process-benefits article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .process-benefits article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .hero-panels {
    margin-top: 24px;
  }
  .hero-panels .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-panels .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-strip,
  .services-grid,
  .portfolio,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-copy { grid-column: 1 / -1; }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-metrics {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .letter-piece {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 28px); }
  .top-strip { display: none; }
  .nav-wrap { min-height: 72px; }
  .nav-links.is-open { top: 72px; }
  .brand-logo { width: 68px; height: 26px; }
  .brand-mark { width: 58px; }
  .brand-copy strong { font-size: 0.82rem; }
  .hero {
    min-height: auto;
    margin-top: 0;
    padding: 42px 0 64px;
  }
  .hero-video-bg {
    width: 100%;
    opacity: 0.18;
  }
  .hero-panels {
    margin-top: 18px;
  }
  .contact-page { padding: 54px 0; }
  .hero h1 {
    font-size: 2.85rem;
  }
  .section-title h2,
  .contact-copy h1 {
    font-size: 2.4rem;
  }
  .contact-page {
    padding-top: 54px;
  }
  .form-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .form-grid {
    display: grid;
  }
  .footer-bottom {
    display: grid;
  }
  .hero-actions,
  .project-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .btn,
  .black-btn,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
  .feature-strip,
  .services-grid,
  .portfolio,
  .stats {
    grid-template-columns: 1fr;
  }
  .choose-section {
    padding-top: 52px;
  }
  .choose-heading h2 {
    font-size: 1.9rem;
  }
  .process-section {
    padding-top: 54px;
  }
  .process-heading h2 {
    font-size: 2rem;
  }
  .process-map,
  .process-benefits {
    grid-template-columns: 1fr;
  }
  .process-benefits article,
  .process-benefits article:nth-child(2) {
    border-right: 0;
  }
  .process-benefits article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .process-benefits article:last-child {
    border-bottom: 0;
  }
  .stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .stats article:last-child {
    border-bottom: 0;
  }
  .footer-metrics {
    display: grid;
    gap: 0.7rem;
  }
  .footer-metrics span {
    border-left: 0;
    padding-left: 0;
  }
  .portfolio,
  .footer .container {
    width: calc(100vw - 28px);
  }
}
