:root {
  --bg: #f4f8fd;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #14243a;
  --muted: #6e7d92;
  --line: rgba(20, 36, 58, 0.1);
  --primary: #1665d8;
  --primary-deep: #0d4fb1;
  --accent: #ff8c42;
  --accent-soft: rgba(255, 140, 66, 0.12);
  --shadow: 0 22px 60px rgba(24, 54, 102, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

@media (max-width: 767px) {
  .policy-page-section {
    padding: 8.5rem 0 4.5rem;
  }

  .policy-page-intro h1 {
    line-height: 1.02;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 112px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.12), transparent 34%),
    radial-gradient(circle at right center, rgba(255, 140, 66, 0.16), transparent 26%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 52%, #f2f6fb 100%);
  overflow-x: hidden;
}

body.cursor-enabled,
body.cursor-enabled a,
body.cursor-enabled button,
body.cursor-enabled summary,
body.cursor-enabled input,
body.cursor-enabled textarea,
body.cursor-enabled select {
  cursor: none !important;
}

.development-page {
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.12), transparent 34%),
    radial-gradient(circle at right center, rgba(255, 140, 66, 0.16), transparent 26%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 52%, #f2f6fb 100%);
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    width 220ms ease,
    height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(22, 101, 216, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.08), rgba(255, 140, 66, 0));
  box-shadow: 0 0 0 8px rgba(22, 101, 216, 0.04);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(22, 101, 216, 0.28);
}

.cursor-ring.is-visible,
.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-ring.is-hover {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 140, 66, 0.34);
  background: radial-gradient(circle, rgba(22, 101, 216, 0.12), rgba(22, 101, 216, 0));
}

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

button {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 0 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  max-width: 1248px;
  padding: 12px 16px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.52));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 40px rgba(24, 54, 102, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.brand-logo {
  display: block;
  width: 42px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.brand-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(20px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.96rem;
  color: #fff;
  border: 1px solid rgba(22, 101, 216, 0.14);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 22px rgba(22, 101, 216, 0.22);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.is-open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: 76px 0 56px;
}

.development-hero {
  position: relative;
  padding: 34px 0 96px;
  overflow: hidden;
}

.marketing-hero {
  position: relative;
  padding: 46px 0 108px;
  overflow: hidden;
}

.marketing-hero::before,
.marketing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.marketing-hero::before {
  background:
    radial-gradient(circle at top left, rgba(255, 140, 66, 0.16), transparent 24%),
    radial-gradient(circle at right center, rgba(22, 101, 216, 0.14), transparent 28%);
}

.marketing-hero::after {
  background:
    linear-gradient(rgba(20, 36, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.2;
}

.marketing-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.marketing-hero-copy {
  max-width: 590px;
}

.marketing-hero-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.marketing-hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.marketing-hero-copy h1 {
  margin: 0;
  color: #071222;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.marketing-hero-copy h1 span {
  display: block;
  color: var(--primary);
}

.marketing-hero-description {
  margin: 26px 0 0;
  color: #32445c;
  font-size: 1.08rem;
  line-height: 1.82;
}

.marketing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.marketing-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.marketing-hero-button:hover {
  transform: translateY(-1px);
}

.marketing-hero-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 24px rgba(22, 101, 216, 0.22);
}

.marketing-hero-button-secondary {
  color: var(--text);
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(24, 54, 102, 0.08);
}

.marketing-orbit-stage {
  position: relative;
}

.marketing-orbit-panel {
  position: relative;
  min-height: 640px;
  background: transparent;
  overflow: hidden;
}

.marketing-orbit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(20, 36, 58, 0.04), transparent 42%);
  pointer-events: none;
}

.marketing-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(7, 18, 34, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.marketing-orbit-ring-one {
  width: 290px;
  height: 290px;
}

.marketing-orbit-ring-two {
  width: 430px;
  height: 430px;
}

.marketing-orbit-ring-three {
  width: 560px;
  height: 560px;
  opacity: 0.72;
}

.marketing-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.marketing-orbit-center strong {
  display: block;
  color: #071222;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.marketing-orbit-center span {
  display: block;
  margin-top: 8px;
  color: rgba(7, 18, 34, 0.72);
  font-size: 1.04rem;
  font-weight: 600;
}

.marketing-orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.marketing-orbit-track-one {
  width: 290px;
  height: 290px;
  animation: marketing-orbit-spin 20s linear infinite;
}

.marketing-orbit-track-two {
  width: 430px;
  height: 430px;
  animation: marketing-orbit-spin-reverse 28s linear infinite;
}

.marketing-orbit-track-three {
  width: 560px;
  height: 560px;
  animation: marketing-orbit-spin 34s linear infinite;
}

.marketing-orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
}

.marketing-orbit-track-one .marketing-orbit-node,
.marketing-orbit-track-two .marketing-orbit-node,
.marketing-orbit-track-three .marketing-orbit-node {
  animation: marketing-orbit-spin-keep 20s linear infinite reverse;
}

.marketing-orbit-track-two .marketing-orbit-node {
  animation-duration: 28s;
}

.marketing-orbit-track-three .marketing-orbit-node {
  animation-duration: 34s;
}

.marketing-orbit-node-top {
  top: 0;
  left: 50%;
}

.marketing-orbit-node-right {
  top: 50%;
  left: 100%;
}

.marketing-orbit-node-bottom {
  top: 100%;
  left: 50%;
}

.marketing-orbit-node-upper-left {
  top: 17%;
  left: 18%;
}

.marketing-orbit-node-upper-right {
  top: 22%;
  left: 82%;
}

.marketing-orbit-node-lower-right {
  top: 82%;
  left: 76%;
}

.marketing-orbit-node-lower-left {
  top: 80%;
  left: 22%;
}

.marketing-orbit-node-far-top {
  top: 6%;
  left: 62%;
}

.marketing-orbit-node-far-right {
  top: 56%;
  left: 100%;
}

.marketing-orbit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(7, 18, 34, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 24px rgba(24, 54, 102, 0.08);
}

.marketing-orbit-chip span {
  color: #071222;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.marketing-orbit-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #071222;
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.92));
  border: 2px solid rgba(7, 18, 34, 0.08);
  box-shadow: 0 0 0 10px rgba(22, 101, 216, 0.05);
}

.marketing-services-section {
  padding: 0 0 108px;
}

.marketing-services-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.marketing-services-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.marketing-services-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-services-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.marketing-services-intro h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.marketing-services-intro p {
  margin: 20px auto 0;
  color: #32445c;
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.marketing-service-card {
  position: relative;
  min-height: 280px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 253, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(24, 54, 102, 0.08);
}

.marketing-service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(22, 101, 216, 0.16),
    rgba(22, 101, 216, 0.02),
    rgba(255, 140, 66, 0.18)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

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

.marketing-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.12), rgba(255, 140, 66, 0.14));
  color: #071222;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 24px rgba(24, 54, 102, 0.08);
}

.marketing-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marketing-service-card h3 {
  margin: 0;
  color: #071222;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.marketing-service-card p {
  margin: 16px 0 0;
  color: #364961;
  font-size: 0.98rem;
  line-height: 1.72;
}

.marketing-results-section {
  padding: 0 0 108px;
}

.marketing-results-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.marketing-results-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.marketing-results-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-results-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(22, 101, 216, 0.12);
}

.marketing-results-intro h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.marketing-results-intro p {
  margin: 20px auto 0;
  color: #32445c;
  font-size: 1.04rem;
  line-height: 1.8;
}

.pricing-hero {
  position: relative;
  padding: 34px 0 108px;
  overflow: hidden;
}

.pricing-hero::before,
.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pricing-hero::before {
  background:
    radial-gradient(circle at bottom left, rgba(26, 178, 255, 0.18), transparent 22%),
    radial-gradient(circle at center, rgba(22, 101, 216, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 18, 0.96) 0%, rgba(8, 17, 36, 0.94) 46%, rgba(16, 59, 106, 0.86) 100%);
}

.pricing-hero::after {
  background:
    radial-gradient(circle, rgba(27, 193, 255, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84) 36%, rgba(0, 0, 0, 0.12));
}

.pricing-hero-shell {
  position: relative;
  z-index: 1;
}

.pricing-hero-stage {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.pricing-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
}

.pricing-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
}

.pricing-rain span {
  position: absolute;
  top: 0;
  color: rgba(214, 235, 255, 0.2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.32em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.pricing-rain span:nth-child(1) {
  left: 2.5%;
}

.pricing-rain span:nth-child(2) {
  left: 14%;
}

.pricing-rain span:nth-child(3) {
  left: 30%;
}

.pricing-rain span:nth-child(4) {
  left: 51%;
}

.pricing-rain span:nth-child(5) {
  left: 74%;
}

.pricing-rain span:nth-child(6) {
  left: 90%;
}

.pricing-hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 110px 32px 56px;
  text-align: center;
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 34px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(70, 206, 255, 0.24);
  background: rgba(8, 24, 46, 0.44);
  color: #d7efff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(40, 164, 255, 0.06);
}

.pricing-hero-badge span:first-child {
  color: #7fe2ff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-hero-badge span:last-child {
  color: rgba(225, 239, 252, 0.88);
  font-size: 0.98rem;
  font-weight: 600;
}

.pricing-hero-copy {
  max-width: 860px;
}

.pricing-hero-copy h1 {
  margin: 0;
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.pricing-hero-copy h1 span {
  display: block;
  color: #dcecff;
}

.pricing-hero-copy p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(224, 238, 251, 0.86);
  font-size: 1.08rem;
  line-height: 1.82;
}

.pricing-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.pricing-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.pricing-hero-button:hover {
  transform: translateY(-1px);
}

.pricing-hero-button-primary {
  color: #071222;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 255, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 28px rgba(18, 122, 214, 0.24);
}

.pricing-hero-button-secondary {
  color: #e5f2ff;
  border: 1px solid rgba(149, 205, 255, 0.24);
  background: rgba(9, 24, 45, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(5, 13, 25, 0.18);
}

.pricing-hero-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  margin-top: 54px;
}

.pricing-insight-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(163, 214, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(4, 11, 22, 0.16);
  text-align: left;
}

.pricing-insight-card strong {
  display: block;
  color: #f3f9ff;
  font-size: 1.05rem;
}

.pricing-insight-card span {
  display: block;
  margin-top: 10px;
  color: rgba(220, 235, 248, 0.8);
  font-size: 0.95rem;
  line-height: 1.68;
}

.pricing-value-section,
.pricing-plans-section {
  padding: 0 0 108px;
}

.pricing-value-shell,
.pricing-plans-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.pricing-value-intro,
.pricing-plans-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.pricing-value-kicker,
.pricing-plans-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-value-kicker::before,
.pricing-plans-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.pricing-value-intro h2,
.pricing-plans-intro h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.pricing-value-intro p,
.pricing-plans-intro p {
  margin: 20px auto 0;
  color: #32445c;
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.pricing-value-card {
  min-height: 238px;
  padding: 26px 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 253, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 30px rgba(24, 54, 102, 0.08);
}

.pricing-value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 101, 216, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-value-card h3 {
  margin: 18px 0 0;
  color: #071222;
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pricing-value-card p {
  margin: 14px 0 0;
  color: #364961;
  font-size: 0.98rem;
  line-height: 1.72;
}

.pricing-currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(24, 54, 102, 0.08);
}

.pricing-currency-button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.pricing-currency-button.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 20px rgba(22, 101, 216, 0.18);
}

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

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 36px rgba(24, 54, 102, 0.08);
}

.pricing-plan-card-featured {
  transform: translateY(-10px);
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.94));
}

.pricing-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.12);
  color: #c36418;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 34px;
}

.pricing-plan-tier {
  margin: 0;
  color: #071222;
  font-size: 1.26rem;
  font-weight: 800;
}

.pricing-plan-price {
  margin-top: 14px;
}

.pricing-plan-price strong {
  display: block;
  color: #071222;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.pricing-plan-price span {
  display: block;
  margin-top: 10px;
  color: #44566d;
  font-size: 0.96rem;
  line-height: 1.65;
}

.pricing-plan-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-plan-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 24px;
  color: #364961;
  font-size: 0.98rem;
  line-height: 1.65;
}

.pricing-plan-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.pricing-plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 24px rgba(22, 101, 216, 0.2);
}

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

.marketing-result-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 253, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 36px rgba(24, 54, 102, 0.08);
}

.marketing-result-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(22, 101, 216, 0.14),
    rgba(22, 101, 216, 0.02),
    rgba(255, 140, 66, 0.16)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

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

.marketing-result-preview {
  padding: 12px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 244, 252, 0.84));
  border: 1px solid rgba(20, 36, 58, 0.06);
}

.marketing-result-preview-commerce {
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 240, 233, 0.84));
}

.marketing-result-preview-saas {
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 244, 253, 0.84));
}

.marketing-result-preview-seo {
  background:
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 252, 0.84));
}

.marketing-result-browser {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.marketing-result-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 36, 58, 0.14);
}

.marketing-result-screen {
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 36, 58, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(236, 243, 251, 0.74));
}

.marketing-result-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.marketing-result-label {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-result-copy h3 {
  margin: 0;
  color: #071222;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.marketing-result-copy p:last-child {
  margin: 14px 0 0;
  color: #364961;
  font-size: 0.98rem;
  line-height: 1.72;
}

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

.marketing-result-metric {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 36, 58, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 20px rgba(24, 54, 102, 0.05);
}

.marketing-result-metric strong {
  display: block;
  color: #071222;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.marketing-result-metric span {
  display: block;
  margin-top: 8px;
  color: #42546b;
  font-size: 0.92rem;
  font-weight: 700;
}

.development-hero::before,
.development-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.development-hero::before {
  background:
    linear-gradient(rgba(20, 36, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.28;
}

.development-hero::after {
  background:
    url("./devback.webp") center / cover no-repeat;
  opacity: 1;
}

.development-hero-shell {
  position: relative;
  z-index: 1;
}

.development-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(24, 54, 102, 0.06);
}

.development-social-avatars {
  display: flex;
  align-items: center;
}

.development-social-avatars span {
  display: block;
  width: 40px;
  height: 40px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(22, 101, 216, 0.42));
  overflow: hidden;
}

.development-social-avatars span:first-child {
  margin-left: 0;
}

.development-social-avatars img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.development-social-copy strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
}

.development-social-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.development-hero-copy {
  max-width: 940px;
  margin: 34px auto 0;
  text-align: center;
}

.development-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.development-hero-copy h1 span {
  color: var(--primary);
}

.development-hero-copy p {
  max-width: 900px;
  margin: 24px auto 0;
  color: #42546b;
  font-size: 1.12rem;
  line-height: 1.8;
}

.development-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.development-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.development-hero-button:hover {
  transform: translateY(-1px);
}

.development-hero-button-primary {
  border: 1px solid rgba(22, 101, 216, 0.18);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 30px rgba(22, 101, 216, 0.22);
}

.development-hero-button-secondary {
  border: 1px solid rgba(20, 36, 58, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.development-video-stage {
  margin-top: 48px;
}

.development-video-frame {
  position: relative;
  max-width: 960px;
  min-height: 540px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(11, 18, 28, 0.96), rgba(16, 24, 37, 0.94)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 70px rgba(24, 54, 102, 0.18);
  overflow: hidden;
}

.development-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 101, 216, 0.12), rgba(22, 101, 216, 0)),
    radial-gradient(circle at center, rgba(255, 140, 66, 0.12), rgba(255, 140, 66, 0));
  pointer-events: none;
}

.development-video {
  display: block;
  width: 100%;
  min-height: 508px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02) brightness(0.92);
}

.development-video-play {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 18, 28, 0.78);
  color: #f5f9f3;
  font-size: 1rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.development-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.development-video-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 10px 20px rgba(22, 101, 216, 0.24);
  position: relative;
}

.development-video-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #09100a;
  transform: translate(-50%, -50%);
}

.tech-stack-section {
  padding: 8px 0 108px;
}

.tech-stack-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.tech-stack-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.tech-stack-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.tech-stack-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(22, 101, 216, 0.12);
}

.tech-stack-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: #071222;
}

.tech-stack-intro p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #42546b;
  font-size: 1.04rem;
  line-height: 1.76;
}

.tech-stack-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 36, 58, 0.18) transparent;
}

.tech-stack-rail::-webkit-scrollbar {
  height: 8px;
}

.tech-stack-rail::-webkit-scrollbar-thumb {
  background: rgba(20, 36, 58, 0.18);
  border-radius: 999px;
}

.tech-stack-card {
  position: relative;
  min-height: 290px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.1), transparent 26%),
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 253, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 36px rgba(24, 54, 102, 0.08);
  scroll-snap-align: start;
  overflow: hidden;
}

.tech-stack-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    rgba(22, 101, 216, 0.08),
    rgba(22, 101, 216, 0.02),
    rgba(255, 140, 66, 0.12),
    rgba(22, 101, 216, 0.08)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.tech-stack-number,
.tech-stack-card h3,
.tech-stack-card p {
  position: relative;
  z-index: 1;
}

.tech-stack-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 36, 58, 0.05);
  color: rgba(20, 36, 58, 0.7);
  font-size: 0.92rem;
  font-weight: 800;
}

.tech-stack-card h3 {
  margin: 24px 0 0;
  color: #071222;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tech-stack-card p {
  margin: 18px 0 0;
  color: #42546b;
  font-size: 1rem;
  line-height: 1.76;
}

.development-capabilities-section {
  padding: 0 0 112px;
}

.development-capabilities-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.development-capabilities-list {
  display: grid;
  gap: 28px;
}

.development-capability-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 36, 58, 0.08);
}

.development-capability-item-reverse .development-capability-copy {
  order: 2;
}

.development-capability-item-reverse .development-capability-preview {
  order: 1;
}

.development-capability-copy {
  max-width: 560px;
}

.development-capability-meta {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.development-capability-copy h3 {
  margin: 0;
  color: #071222;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.development-capability-copy p:last-child {
  margin: 22px 0 0;
  color: #42546b;
  font-size: 1.02rem;
  line-height: 1.78;
}

.development-capability-preview {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 36px rgba(24, 54, 102, 0.08);
}

.development-capability-preview-frameworks {
  background:
    radial-gradient(circle at top right, rgba(22, 101, 216, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.92));
}

.development-capability-preview-apis {
  background:
    radial-gradient(circle at top left, rgba(255, 140, 66, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 238, 0.92));
}

.development-capability-preview-automation {
  background:
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 252, 0.92));
}

.development-capability-preview-deployment {
  background:
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.92));
}

.development-capability-browser {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.development-capability-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 36, 58, 0.14);
}

.development-capability-screen {
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(20, 36, 58, 0.06);
  background:
    linear-gradient(rgba(20, 36, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 243, 251, 0.72));
  background-size: 26px 26px, 26px 26px, auto;
  overflow: hidden;
}

.development-capability-image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
}

.development-capability-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
}

.development-capability-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 36, 58, 0.08);
  color: #071222;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 30px rgba(24, 54, 102, 0.08);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: 58px;
  left: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(22, 101, 216, 0.14) 0%, rgba(22, 101, 216, 0) 72%);
}

.hero::after {
  right: 10%;
  bottom: 44px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.16) 0%, rgba(255, 140, 66, 0) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  padding: 0;
}

.hero-stage-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0 0;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--text);
}

.hero-line {
  display: block;
}

.hero-line + .hero-line::before {
  content: none;
}

.hero-line-three {
  display: none;
}

.hero-description {
  max-width: 820px;
  margin: 24px 0 0;
  color: #4f6078;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.hero-button-primary {
  color: var(--text);
  border: 1px solid rgba(20, 36, 58, 0.06);
  background: rgba(242, 245, 248, 0.92);
  box-shadow:
    0 16px 32px rgba(24, 54, 102, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  animation: hero-bounce 1.9s ease-in-out infinite;
}

.hero-scroll-button span {
  font-size: 1.2rem;
  line-height: 1;
}

.hero-scroll-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(17, 17, 17, 0.18);
}

.hero-marquee {
  width: min(980px, 100%);
  margin-top: 56px;
  padding: 14px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: hero-marquee 18s linear infinite;
}

.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 24px;
  border: 1px solid rgba(20, 36, 58, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 14px 26px rgba(24, 54, 102, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.hero-stat-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-stat-pill span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.section-anchor {
  height: 1px;
}

.about-hero-section {
  padding: 34px 0 96px;
}

.about-hero-shell {
  position: relative;
}

.about-hero-intro {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-hero-kicker {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.about-hero-intro h1 {
  margin: 0;
  color: #071222;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.about-hero-intro p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: #4a5b71;
  font-size: 1.08rem;
  line-height: 1.82;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 0.94fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.about-hero-column {
  display: grid;
  gap: 22px;
}

.about-hero-media-card,
.about-hero-message-card {
  overflow: hidden;
  border-radius: 30px;
}

.about-hero-media-card {
  min-height: 220px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(24, 54, 102, 0.08);
}

.about-hero-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
}

.about-hero-message-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 464px;
  padding: 42px 36px;
  background:
    linear-gradient(180deg, rgba(15, 21, 34, 0.98), rgba(28, 36, 52, 0.96)),
    rgba(10, 14, 22, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 44px rgba(10, 16, 28, 0.24);
}

.about-hero-message-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.about-hero-message-card > * {
  position: relative;
  z-index: 1;
}

.about-hero-message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.about-hero-message-icon svg {
  width: 28px;
  height: 28px;
  stroke: #f4f8fd;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero-message-card h2 {
  margin: 0;
  text-align: center;
  color: #f7fbff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-hero-message-card p {
  max-width: 460px;
  margin: 22px auto 0;
  text-align: center;
  color: rgba(229, 239, 250, 0.78);
  font-size: 1.02rem;
  line-height: 1.86;
}

.about-section {
  padding: 28px 0 96px;
}

.about-story-section {
  padding: 6px 0 96px;
}

.about-story-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 48px;
}

.about-story-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-story-intro p {
  margin: 0;
  color: #16263b;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin: 54px auto 0;
}

.about-story-stat {
  text-align: center;
}

.about-story-stat strong {
  display: block;
  color: #071222;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.about-story-stat span {
  display: block;
  margin-top: 14px;
  color: #5c6b7f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-shell {
  position: relative;
}

.about-mission-section {
  padding: 0 0 104px;
}

.about-mission-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(300px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.about-mission-media {
  position: relative;
  min-height: 600px;
}

.about-mission-image {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 36px rgba(24, 54, 102, 0.08);
}

.about-mission-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-mission-image-large {
  width: min(100%, 520px);
  height: 500px;
}

.about-mission-image-small {
  position: absolute;
  right: 18px;
  bottom: 68px;
  width: min(48%, 250px);
  height: 280px;
  border: 10px solid #ffffff;
  box-shadow:
    0 20px 40px rgba(24, 54, 102, 0.14),
    0 0 0 1px rgba(20, 36, 58, 0.04);
}

.about-mission-copy {
  max-width: 560px;
}

.about-mission-kicker {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.about-mission-copy h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.about-mission-copy p {
  margin: 22px 0 0;
  color: #44556b;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-mission-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #2f3f56;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-mission-check {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(31, 129, 74, 0.1);
}

.about-mission-check::before,
.about-mission-check::after {
  content: "";
  position: absolute;
  background: #2f8b4a;
  border-radius: 999px;
}

.about-mission-check::before {
  top: 11px;
  left: 5px;
  width: 5px;
  height: 2px;
  transform: rotate(45deg);
}

.about-mission-check::after {
  top: 10px;
  left: 8px;
  width: 9px;
  height: 2px;
  transform: rotate(-45deg);
}

.about-work-section {
  padding: 0 0 108px;
}

.about-work-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 38px;
}

.about-work-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-work-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-work-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.about-work-intro h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.about-work-intro p {
  max-width: 740px;
  margin: 18px auto 0;
  color: #42546b;
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-work-stage {
  position: relative;
}

.about-work-frame {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 18px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(22, 101, 216, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 140, 66, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 48px rgba(24, 54, 102, 0.1);
}

.about-work-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.about-work-video {
  display: block;
  width: 100%;
  min-height: 604px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
}

.about-work-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 22px 36px rgba(10, 20, 34, 0.18);
}

.about-work-play-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ffcb57 100%);
  box-shadow: 0 16px 28px rgba(255, 140, 66, 0.28);
}

.about-work-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #101826;
  transform: translate(-50%, -50%);
}

.about-work-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 240px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(10, 18, 30, 0.52);
  color: #f6faff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 30px rgba(8, 14, 24, 0.24);
}

.about-work-note strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.about-work-note span {
  color: rgba(233, 241, 250, 0.8);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-work-note-top {
  top: 40px;
  left: 40px;
}

.about-work-note-bottom {
  right: 40px;
  bottom: 40px;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 12px 0 0;
}

.about-vision-section {
  padding: 0 0 104px;
}

.about-vision-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.98fr) minmax(320px, 1.02fr);
  gap: 56px;
  align-items: center;
}

.about-vision-copy {
  max-width: 560px;
}

.about-vision-kicker {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.about-vision-copy h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.about-vision-copy p {
  margin: 22px 0 0;
  color: #44556b;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-vision-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-vision-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #2f3f56;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-vision-media {
  position: relative;
  min-height: 600px;
}

.about-vision-image {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 36px rgba(24, 54, 102, 0.08);
}

.about-vision-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-vision-image-large {
  width: min(100%, 520px);
  height: 500px;
  margin-left: auto;
}

.about-vision-image-small {
  position: absolute;
  left: 18px;
  top: 96px;
  width: min(48%, 250px);
  height: 280px;
  border: 10px solid #ffffff;
  box-shadow:
    0 20px 40px rgba(24, 54, 102, 0.14),
    0 0 0 1px rgba(20, 36, 58, 0.04);
}

.about-kicker,
.about-eyebrow {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.about-history-section {
  padding: 0 0 108px;
}

.about-history-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 38px;
}

.about-history-intro {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.about-history-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-history-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(22, 101, 216, 0.12);
}

.about-history-intro h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.about-history-intro p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #42546b;
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-history-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(22, 101, 216, 0.05),
    rgba(22, 101, 216, 0.24),
    rgba(255, 140, 66, 0.22),
    rgba(255, 140, 66, 0.05)
  );
  transform: translateX(-50%);
}

.about-history-card {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 101, 216, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 140, 66, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 34px rgba(24, 54, 102, 0.08);
}

.about-history-card:nth-child(odd) {
  margin-right: 18px;
}

.about-history-card:nth-child(even) {
  margin-left: 18px;
  margin-top: 44px;
}

.about-history-card::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 8px rgba(22, 101, 216, 0.08);
}

.about-history-card:nth-child(odd)::before {
  right: -25px;
}

.about-history-card:nth-child(even)::before {
  left: -25px;
}

.about-history-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 36, 58, 0.05);
  color: #42546b;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-history-card h3 {
  margin: 18px 0 0;
  color: #071222;
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-history-card p {
  margin: 16px 0 0;
  color: #42546b;
  font-size: 0.98rem;
  line-height: 1.72;
}

.about-team-section {
  padding: 0 0 112px;
}

.about-team-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 38px;
}

.about-team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.about-team-intro {
  max-width: 860px;
  text-align: center;
}

.about-team-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-team-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(22, 101, 216, 0.12);
}

.about-team-intro h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.about-team-intro p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #42546b;
  font-size: 1.02rem;
  line-height: 1.76;
}

.about-team-badge {
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 150px;
  padding: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 140, 66, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 253, 0.94));
  border: 1px solid rgba(20, 36, 58, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 34px rgba(24, 54, 102, 0.08);
  text-align: center;
  margin: 0 auto;
}

.about-team-badge strong {
  display: block;
  color: #071222;
  font-size: 3.2rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.about-team-badge span {
  display: block;
  margin-top: 8px;
  color: #52647a;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.about-team-card {
  display: flex;
  flex-direction: column;
}

.about-team-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 30px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background:
    radial-gradient(circle at top right, rgba(22, 101, 216, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(24, 54, 102, 0.08);
  cursor: zoom-in;
}

.about-team-photo {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.about-team-card:hover .about-team-photo {
  transform: scale(1.03);
}

.about-team-socials {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 10px;
}

.about-team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #071222;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 20px rgba(24, 54, 102, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.about-team-socials a:hover,
.about-team-socials a:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent), #ffcb57);
  color: #101826;
}

.about-team-socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-lightbox-open {
  overflow: hidden;
}

.team-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 18, 34, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  backdrop-filter: blur(12px);
}

.team-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.team-lightbox-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.98), rgba(230, 239, 251, 0.95));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.team-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20, 36, 58, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #071222;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.team-lightbox-close:hover,
.team-lightbox-close:focus-visible {
  background: linear-gradient(135deg, var(--accent), #ffcb57);
}

.team-lightbox-media {
  overflow: hidden;
  border-radius: 26px;
  background: #eff4fb;
}

.team-lightbox-media img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #edf3fb 100%);
}

.team-lightbox-caption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 0.25rem;
}

.team-lightbox-caption h3 {
  margin: 0;
  color: #071222;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.team-lightbox-caption p {
  margin: 0;
  color: #5d6c80;
  font-size: 1rem;
  line-height: 1.6;
}

.about-team-card h3 {
  margin: 18px 0 0;
  color: #071222;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.about-team-card p {
  margin: 8px 0 0;
  color: #5d6c80;
  font-size: 0.98rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.about-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.about-showcase {
  padding: 16px;
  border-radius: 28px;
  background: #eaf0f6;
}

.about-showcase-screen {
  overflow: hidden;
  min-height: 300px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.about-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 2px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.about-pulse {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 8px rgba(22, 101, 216, 0.08);
}

.about-copy h2 {
  max-width: 11ch;
  margin: 0 0 26px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--text);
}

.about-copy p {
  max-width: 640px;
  margin: 0 0 24px;
  color: #2f3f56;
  font-size: 1.12rem;
  line-height: 1.65;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.12);
}

.services-hero {
  position: relative;
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.09), transparent 28%),
    radial-gradient(circle at right center, rgba(255, 140, 66, 0.1), transparent 24%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8fd 100%);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 34px 18px auto;
  height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(20, 36, 58, 0.06);
  background:
    linear-gradient(rgba(20, 36, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
  pointer-events: none;
}

.services-hero-shell {
  position: relative;
  z-index: 1;
  padding: 34px 0 0;
}

.services-hero-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(22, 101, 216, 0.12);
}

.services-hero-intro h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--text);
}

.services-hero-intro h1 span {
  color: var(--primary);
}

.services-hero-copy {
  max-width: 720px;
  margin: 22px auto 0;
  color: #42546b;
  font-size: 1.08rem;
  line-height: 1.82;
}

.services-hero-stage {
  position: relative;
  margin-top: 46px;
  padding-top: 110px;
}

.services-hero-note {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(100%, 420px);
  padding: 20px 22px;
  border: 1px solid rgba(20, 36, 58, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(24, 54, 102, 0.1);
  transform: translateX(-50%);
}

.services-hero-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(22, 101, 216, 0.08);
  color: var(--primary);
}

.services-hero-note-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-hero-note p {
  margin: 0;
  color: #31445d;
  font-size: 0.98rem;
  line-height: 1.75;
}

.services-flow {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 138px 24px 36px;
}

.services-flow-mobile {
  display: none;
}

.services-flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.services-flow-row-top {
  margin-bottom: 22px;
}

.services-flow-row-bottom {
  margin-top: 22px;
}

.services-flow-chip,
.services-flow-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.services-flow-chip {
  min-width: 180px;
}

.services-flow-chip.is-active {
  border-color: rgba(22, 101, 216, 0.18);
  background: linear-gradient(135deg, rgba(22, 101, 216, 0.16), rgba(255, 255, 255, 0.94));
  color: var(--primary-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(22, 101, 216, 0.12);
}

.services-flow-connector {
  position: relative;
  height: 58px;
}

.services-flow-connector::before,
.services-flow-connector::after,
.services-flow-connector span {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(22, 101, 216, 0.4), rgba(22, 101, 216, 0.12));
}

.services-flow-connector span {
  top: 0;
  left: 50%;
  width: 2px;
  height: 58px;
  transform: translateX(-50%);
}

.services-flow-connector::before,
.services-flow-connector::after {
  top: 18px;
  width: min(24vw, 220px);
  height: 2px;
}

.services-flow-connector::before {
  right: 50%;
  transform: skewY(24deg);
  transform-origin: right center;
}

.services-flow-connector::after {
  left: 50%;
  transform: skewY(-24deg);
  transform-origin: left center;
}

.services-flow-stack {
  display: grid;
  justify-content: center;
  gap: 14px;
}

.services-flow-panel {
  min-width: min(100%, 300px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 245, 252, 0.88));
}

.services-flow-panel-wide {
  min-width: min(100%, 380px);
}

.services-mobile-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 253, 0.9));
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  scroll-snap-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(24, 54, 102, 0.08);
}

.services-mobile-pill::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from 0deg,
    rgba(22, 101, 216, 0) 0deg,
    rgba(22, 101, 216, 0) 210deg,
    rgba(22, 101, 216, 0.95) 260deg,
    rgba(255, 140, 66, 0.95) 320deg,
    rgba(22, 101, 216, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
}

.services-mobile-pill.is-current {
  color: var(--primary-deep);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 30px rgba(22, 101, 216, 0.14);
}

.services-mobile-pill.is-current::before {
  opacity: 1;
  animation: services-pill-glow 1.8s linear infinite;
}

.services-offerings {
  padding: 24px 0 96px;
  background:
    radial-gradient(circle at left center, rgba(22, 101, 216, 0.05), transparent 24%),
    radial-gradient(circle at right top, rgba(255, 140, 66, 0.08), transparent 20%);
}

.services-offerings-shell {
  padding-top: 24px;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.services-offerings-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 38px;
}

.services-offerings-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.services-offerings-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.services-offerings-intro h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  color: var(--text);
}

.services-offerings-intro h2 span {
  display: block;
}

.services-offerings-intro h2 span:first-child {
  white-space: nowrap;
}

.services-offerings-intro p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

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

.service-flip-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 294px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  text-align: left;
  perspective: 1200px;
  cursor: pointer;
}

.service-flip-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from 0deg,
    rgba(22, 101, 216, 0.12),
    rgba(22, 101, 216, 0.04),
    rgba(255, 140, 66, 0.18),
    rgba(22, 101, 216, 0.12)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 220ms ease, transform 220ms ease;
  opacity: 0.9;
}

.service-flip-card:hover::before,
.service-flip-card:focus-visible::before,
.service-flip-card.is-flipped::before {
  animation: services-pill-glow 2.2s linear infinite;
  opacity: 1;
}

.service-flip-card:focus-visible {
  outline: none;
}

.service-flip-card-inner {
  position: relative;
  display: block;
  min-height: 294px;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-flip-card:hover .service-flip-card-inner,
.service-flip-card:focus-visible .service-flip-card-inner,
.service-flip-card.is-flipped .service-flip-card-inner {
  transform: rotateY(180deg);
}

.service-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: inherit;
  backface-visibility: hidden;
  overflow: hidden;
}

.service-flip-front {
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 253, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 36px rgba(24, 54, 102, 0.08);
}

.service-flip-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 36, 58, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.22;
  pointer-events: none;
}

.service-flip-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at bottom right, rgba(255, 140, 66, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(18, 34, 57, 0.98), rgba(27, 51, 86, 0.94));
  box-shadow: 0 18px 36px rgba(24, 54, 102, 0.14);
}

.service-flip-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}

.service-flip-number {
  position: relative;
  z-index: 1;
  color: rgba(20, 36, 58, 0.56);
  font-size: 1rem;
  font-weight: 700;
}

.service-flip-back .service-flip-number {
  color: rgba(255, 255, 255, 0.64);
}

.service-flip-visual {
  position: relative;
  display: block;
  flex: 1;
  min-height: 132px;
  margin: 10px 0 16px;
  border-radius: 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
  overflow: hidden;
}

.service-flip-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(8, 18, 33, 0.16) 100%),
    linear-gradient(135deg, rgba(22, 101, 216, 0.12), rgba(255, 140, 66, 0.08));
  pointer-events: none;
}

.service-flip-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.service-flip-title,
.service-flip-back-title {
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text);
}

.service-flip-back-title {
  margin-top: auto;
  color: #ffffff;
}

.service-flip-copy {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.75;
}

.services-expertise {
  padding: 20px 0 108px;
}

.services-expertise-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.services-expertise-copy {
  max-width: 540px;
}

.services-expertise-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.services-expertise-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.services-expertise-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.7vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: #071222;
}

.services-expertise-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #31445d;
  font-size: 1.08rem;
  line-height: 1.82;
}

.services-expertise-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.94));
  border: 1px solid rgba(20, 36, 58, 0.08);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 24px rgba(24, 54, 102, 0.08);
}

.services-expertise-stage {
  position: relative;
}

.services-expertise-canvas {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(22, 101, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #040608 0%, #0b0f16 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 60px rgba(6, 12, 22, 0.18);
  overflow: hidden;
}

.services-expertise-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
}

.services-expertise-video {
  position: absolute;
  inset: 18px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
}

.services-expertise-image {
  position: absolute;
  inset: 18px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
}

.services-expertise-video::-webkit-media-controls {
  display: none !important;
}

.services-expertise-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.services-expertise-video::-webkit-media-controls-panel {
  display: none !important;
}

.services-expertise-video::-webkit-media-controls-play-button {
  display: none !important;
}

.services-expertise-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.services-expertise-video {
  object-fit: cover;
  object-position: center;
}

.services-metrics {
  padding: 10px 0 108px;
}

.services-metrics-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 38px;
  padding: 46px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.08), transparent 26%),
    radial-gradient(circle at right center, rgba(255, 140, 66, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 56px rgba(24, 54, 102, 0.08);
  overflow: hidden;
}

.services-metrics-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 36, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
}

.services-metrics-copy,
.services-metrics-grid {
  position: relative;
  z-index: 1;
}

.services-metrics-copy {
  max-width: 420px;
}

.services-metrics-kicker {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.services-metrics-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.services-metrics-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  color: #071222;
}

.services-metrics-copy p {
  margin: 24px 0 0;
  color: #31445d;
  font-size: 1.08rem;
  line-height: 1.78;
}

.services-metrics-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.94));
  border: 1px solid rgba(20, 36, 58, 0.08);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 24px rgba(24, 54, 102, 0.08);
}

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

.services-metric-tile {
  position: relative;
  min-height: 220px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 244, 251, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(24, 54, 102, 0.06);
  overflow: hidden;
}

.services-metric-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    rgba(22, 101, 216, 0.08),
    rgba(22, 101, 216, 0.02),
    rgba(255, 140, 66, 0.14),
    rgba(22, 101, 216, 0.08)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.services-metric-index {
  display: block;
  margin-bottom: 52px;
  text-align: right;
  color: rgba(20, 36, 58, 0.54);
  font-size: 1rem;
  font-weight: 700;
}

.services-metric-tile strong {
  display: block;
  color: #071222;
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.services-metric-tile span:last-child {
  display: block;
  margin-top: 10px;
  color: #22344c;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
}

.services-faq {
  padding: 8px 0 112px;
}

.services-faq-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.services-faq-intro {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}

.services-faq-kicker {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.services-faq-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.services-faq-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: #071222;
}

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

.services-faq-column {
  display: grid;
}

.services-faq-item {
  border-top: 1px solid rgba(20, 36, 58, 0.12);
}

.services-faq-item:last-child {
  border-bottom: 1px solid rgba(20, 36, 58, 0.12);
}

.services-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
}

.services-faq-item summary::-webkit-details-marker {
  display: none;
}

.services-faq-item summary span:first-child {
  max-width: 520px;
  color: #071222;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.36;
}

.services-faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 251, 0.92));
  border: 1px solid rgba(20, 36, 58, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 24px rgba(24, 54, 102, 0.06);
}

.services-faq-icon::before,
.services-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.services-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.services-faq-item[open] .services-faq-icon::after {
  opacity: 0;
}

.services-faq-item p {
  max-width: 560px;
  margin: 0;
  padding: 0 0 24px;
  color: #42546b;
  font-size: 1rem;
  line-height: 1.76;
}

.services-cta-section {
  padding: 0 0 112px;
}

.services-cta-shell {
  padding: 40px 52px 48px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.08), transparent 24%),
    radial-gradient(circle at right center, rgba(255, 140, 66, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 56px rgba(24, 54, 102, 0.08);
}

.services-cta-kicker-row {
  margin-bottom: 34px;
}

.services-cta-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.services-cta-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.services-cta-content {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.services-cta-title-block h2 {
  margin: 0;
  max-width: 320px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  color: #071222;
}

.services-cta-copy-block p {
  max-width: 620px;
  margin: 0;
  color: #071222;
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.services-cta-button:hover {
  transform: translateY(-1px);
}

.services-cta-button-primary {
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.94));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 24px rgba(24, 54, 102, 0.08);
}

.services-cta-button-secondary {
  border: 1px solid rgba(20, 36, 58, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: #071222;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.services-section {
  padding: 30px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(22, 101, 216, 0.05), transparent 24%),
    radial-gradient(circle at right center, rgba(255, 140, 66, 0.08), transparent 22%);
  color: var(--text);
}

.services-shell {
  padding: 34px 0 0;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.services-intro {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.services-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.services-intro h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--text);
}

.services-intro p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 320px;
  padding: 30px 28px 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(22, 101, 216, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 251, 255, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(24, 54, 102, 0.07);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 150px;
  height: 76px;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-bottom: 0;
  transform: translateX(-50%);
  opacity: 0.9;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 36, 58, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

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

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 52px auto 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 14px 22px rgba(22, 101, 216, 0.18);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  text-align: center;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.service-card p {
  max-width: 520px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.service-meta span {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-meta strong {
  color: var(--text);
}

.service-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(20, 36, 58, 0.05);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.works-section {
  padding: 18px 0 110px;
}

.works-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.works-intro {
  max-width: 1200px;
  margin: 0 auto 28px;
  text-align: center;
}

.works-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.works-intro h2 {
  margin: 0;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--text);
  white-space: nowrap;
}

.works-list {
  display: grid;
  gap: 26px;
}

.work-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 36, 58, 0.08);
}

.work-item-reverse .work-copy {
  order: 2;
}

.work-item-reverse .work-preview {
  order: 1;
}

.work-copy {
  max-width: 520px;
}

.work-meta {
  margin: 0 0 22px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.work-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.work-copy p:not(.work-meta) {
  margin: 18px 0 0;
  color: #2f3f56;
  font-size: 1.08rem;
  line-height: 1.65;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.work-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.work-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.work-preview {
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(180deg, #eceff4 0%, #dfe6ee 100%);
}

.work-preview-dark {
  background: linear-gradient(180deg, #2a2a2d 0%, #232325 100%);
}

.work-preview-accent {
  background: linear-gradient(135deg, #e9f1ff 0%, #fdf1e6 100%);
}

.work-browser {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.work-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 36, 58, 0.18);
}

.work-preview-dark .work-browser span {
  background: rgba(255, 255, 255, 0.22);
}

.work-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background:
    radial-gradient(circle at top center, rgba(22, 101, 216, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.8));
  text-align: center;
}

.work-preview-dark .work-screen {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top center, rgba(255, 140, 66, 0.08), transparent 28%),
    linear-gradient(180deg, #111111 0%, #161616 100%);
}

.work-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(20, 36, 58, 0.06);
}

.partners-section {
  padding: 8px 0 110px;
}

.partners-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.partners-intro {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.partners-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.partners-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text);
}

.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partners-marquee 22s linear infinite;
}

.partner-logo-card {
  display: grid;
  place-items: center;
  width: 220px;
  height: 110px;
  padding: 18px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 30px rgba(24, 54, 102, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.flow-section {
  padding: 0 0 110px;
}

.flow-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.flow-intro {
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}

.flow-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.flow-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text);
}

.flow-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 10px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 36, 58, 0.18) transparent;
}

.flow-track::-webkit-scrollbar {
  height: 8px;
}

.flow-track::-webkit-scrollbar-thumb {
  background: rgba(20, 36, 58, 0.18);
  border-radius: 999px;
}

.flow-step {
  position: relative;
  min-height: 260px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(24, 54, 102, 0.07);
  scroll-snap-align: start;
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -20px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(22, 101, 216, 0.2), rgba(255, 140, 66, 0.28));
}

.flow-step:last-child::after {
  display: none;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.flow-step h3 {
  margin: 20px 0 12px;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonials-section {
  padding: 0 0 110px;
}

.testimonials-shell {
  border-top: 1px solid rgba(20, 36, 58, 0.08);
  padding-top: 34px;
}

.testimonials-intro {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.testimonials-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.12);
}

.testimonials-intro h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text);
}

.testimonials-intro p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonials-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 36, 58, 0.18) transparent;
}

.testimonials-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: rgba(20, 36, 58, 0.18);
  border-radius: 999px;
}

.contact-page-hero {
  padding: 36px 0 96px;
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: start;
}

.contact-page-shell > *,
.contact-location-shell > *,
.about-team-grid > *,
.about-history-timeline > * {
  min-width: 0;
}

.contact-page-copy {
  max-width: 520px;
  padding-top: 10px;
}

.contact-page-kicker,
.contact-location-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 22px rgba(24, 54, 102, 0.06);
}

.contact-page-copy h1,
.contact-location-copy h2 {
  margin: 0;
  color: #071222;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.contact-page-description,
.contact-location-copy p {
  margin: 22px 0 0;
  color: #4a5b71;
  font-size: 1.06rem;
  line-height: 1.8;
}

.contact-page-info-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-page-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-height: 56px;
  padding: 0 16px 0 12px;
  border-radius: 18px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: #364961;
  font-size: 1rem;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 22px rgba(24, 54, 102, 0.06);
}

.contact-page-info-card span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-page-info-icon,
.contact-location-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(22, 101, 216, 0.08);
  color: var(--primary);
}

.contact-page-info-icon svg,
.contact-location-address-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page-form-card {
  padding: 28px 28px 22px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(22, 101, 216, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 42px rgba(24, 54, 102, 0.08);
}

.contact-page-form-card h2 {
  margin: 0 0 20px;
  color: #071222;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-page-form {
  display: grid;
  gap: 18px;
}

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

.contact-page-phone-grid {
  grid-template-columns: 108px minmax(0, 1fr);
}

.contact-page-field {
  display: grid;
  gap: 10px;
}

.contact-page-field span {
  color: #071222;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-page-field input,
.contact-page-field textarea {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid rgba(20, 36, 58, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

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

.contact-page-field input::placeholder,
.contact-page-field textarea::placeholder {
  color: #8a97aa;
}

.contact-page-field input:focus,
.contact-page-field textarea:focus {
  outline: none;
  border-color: rgba(22, 101, 216, 0.32);
  box-shadow:
    0 0 0 4px rgba(22, 101, 216, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.contact-page-form-actions {
  margin-top: 4px;
  display: grid;
  gap: 12px;
}

.contact-page-submit {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 28px rgba(22, 101, 216, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.contact-page-submit:hover {
  transform: translateY(-1px);
}

.contact-page-submit:disabled {
  cursor: wait;
}

.contact-page-submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: #ffffff;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-page-submit.is-loading .contact-page-submit-spinner {
  opacity: 1;
  transform: scale(1);
  animation: project-form-spin 700ms linear infinite;
}

.contact-page-submit.is-success {
  background: linear-gradient(135deg, #12805c 0%, #0f9b6b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 28px rgba(15, 155, 107, 0.18);
}

.contact-page-submit.is-error {
  background: linear-gradient(135deg, #a63c3c 0%, #c34b4b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 28px rgba(195, 75, 75, 0.18);
}

.contact-page-form-status {
  margin: 0;
  min-height: 1.4em;
  color: #7a8798;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.contact-page-form-status.is-success {
  color: #0f7a57;
}

.contact-page-form-status.is-error {
  color: #aa3f3f;
}

.contact-page-form-note {
  margin: 0;
  color: #7a8798;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.contact-location-section {
  padding: 0 0 108px;
}

.contact-location-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.contact-location-map-card {
  max-width: 440px;
}

.contact-location-map-canvas {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: #eef3f9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(24, 54, 102, 0.08);
}

.contact-location-map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact-location-copy {
  max-width: 560px;
}

.contact-location-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.contact-location-address div {
  display: grid;
  gap: 4px;
}

.contact-location-address strong {
  color: #071222;
  font-size: 1.02rem;
}

.contact-location-address span {
  color: #5e6d81;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px 20px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 28px rgba(24, 54, 102, 0.06);
  scroll-snap-align: start;
}

.testimonial-stars {
  margin-bottom: 14px;
  color: #ffb649;
  letter-spacing: 0.12em;
  font-size: 0.96rem;
}

.testimonial-card p {
  margin: 0;
  color: #2f3f56;
  font-size: 0.98rem;
  line-height: 1.7;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 18px;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.98rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form-section {
  padding: 8px 0 92px;
}

.contact-form-shell {
  padding: 38px 0 44px;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.contact-form-kicker-row {
  margin-bottom: 28px;
}

.contact-form-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.contact-form-copy h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  color: #071222;
}

.project-form {
  display: grid;
  gap: 28px;
}

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

.project-field {
  display: grid;
  gap: 10px;
}

.project-field span,
.project-options legend {
  color: #071222;
  font-size: 0.98rem;
  font-weight: 700;
}

.project-field input,
.project-field textarea {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(20, 36, 58, 0.14);
  background: transparent;
  color: var(--text);
  font: inherit;
}

.project-field textarea {
  min-height: 120px;
  padding-top: 4px;
  resize: vertical;
}

.project-field input::placeholder,
.project-field textarea::placeholder {
  color: #a2afc0;
}

.project-field input:focus,
.project-field textarea:focus {
  outline: none;
  border-bottom-color: rgba(22, 101, 216, 0.48);
}

.project-field-full {
  gap: 12px;
}

.project-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.project-options legend {
  margin-bottom: 16px;
  padding: 0;
}

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

.project-service-dropdown {
  border: 1px solid rgba(20, 36, 58, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 24px rgba(24, 54, 102, 0.06);
  overflow: hidden;
}

.project-service-dropdown.has-selection {
  border-color: rgba(22, 101, 216, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 28px rgba(22, 101, 216, 0.08);
}

.project-service-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.project-service-dropdown.has-selection summary {
  color: var(--primary-deep);
}

.project-service-dropdown summary::-webkit-details-marker {
  display: none;
}

.project-service-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.project-service-arrow::before,
.project-service-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.project-service-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.project-service-dropdown[open] .project-service-arrow::after {
  opacity: 0;
}

.project-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 18px 18px;
}

.project-price-option {
  position: relative;
  display: inline-flex;
}

.project-price-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-price-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.project-price-option input:checked + span,
.project-price-option:hover span {
  border-color: rgba(22, 101, 216, 0.22);
  background: rgba(232, 242, 255, 0.94);
  box-shadow: 0 8px 18px rgba(22, 101, 216, 0.08);
  transform: translateY(-1px);
}

.project-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.project-form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(22, 101, 216, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(22, 101, 216, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.project-form-submit:hover {
  transform: translateY(-1px);
}

.project-form-submit:disabled {
  cursor: wait;
}

.project-form-submit-label {
  transition: opacity 180ms ease;
}

.project-form-submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: #ffffff;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-form-submit.is-loading .project-form-submit-spinner {
  opacity: 1;
  transform: scale(1);
  animation: project-form-spin 700ms linear infinite;
}

.project-form-submit.is-success {
  background: linear-gradient(135deg, #12805c 0%, #0f9b6b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(15, 155, 107, 0.18);
}

.project-form-submit.is-error {
  background: linear-gradient(135deg, #a63c3c 0%, #c34b4b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(195, 75, 75, 0.18);
}

.project-form-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.project-form-status.is-success {
  color: #0f7a57;
}

.project-form-status.is-error {
  color: #aa3f3f;
}

@keyframes project-form-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  position: relative;
  padding: 0 0 36px;
  background:
    radial-gradient(circle at bottom left, rgba(22, 101, 216, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.08), transparent 22%),
    linear-gradient(180deg, #f7fafe 0%, #eef4fb 100%);
}

.footer-shell {
  padding: 34px 0 0;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.5fr);
  gap: 48px;
}

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

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text);
}

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

.footer-brand-block p {
  max-width: 420px;
  margin: 22px 0 0;
  color: #2f3f56;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 36, 58, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--text);
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 36, 58, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-page-section {
  padding: 10rem 0 6rem;
}

.policy-page-shell {
  display: grid;
  gap: 2rem;
}

.policy-page-intro {
  max-width: 760px;
  display: grid;
  gap: 1rem;
}

.policy-page-kicker {
  width: fit-content;
  margin: 0;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #2f6bff;
  font-size: 0.88rem;
  font-weight: 700;
}

.policy-page-intro h1 {
  margin: 0;
  color: #111827;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.policy-page-intro p {
  margin: 0;
  max-width: 60ch;
  color: #52607a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-page-content {
  display: grid;
  gap: 1.25rem;
}

.policy-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(160, 177, 208, 0.22);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(15, 31, 64, 0.08);
}

.policy-card h2 {
  margin: 0 0 0.85rem;
  color: #111827;
  font-size: 1.35rem;
}

.policy-card p,
.policy-card li {
  color: #52607a;
  line-height: 1.8;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

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

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

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

@keyframes hero-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes services-pill-glow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marketing-orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes marketing-orbit-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes marketing-orbit-spin-keep {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@media (max-width: 1040px) {
  body {
    padding-top: 96px;
  }

  .site-header {
    padding-top: 16px;
  }

  .header-inner {
    gap: 14px;
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 18px;
    max-width: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(20, 36, 58, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 253, 0.96));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      0 20px 42px rgba(24, 54, 102, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text);
    background: rgba(20, 36, 58, 0.05);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(20, 36, 58, 0.05);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(22, 101, 216, 0.1);
    color: var(--primary-deep);
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-cta {
    display: none;
  }

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

  .hero-stage-panel {
    padding: 22px 0 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6vw, 4.1rem);
  }

  .hero-description {
    max-width: 720px;
    font-size: 1.06rem;
  }

  .services-hero {
    padding: 42px 0 72px;
  }

  .marketing-hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .marketing-hero-copy {
    max-width: 100%;
  }

  .marketing-orbit-panel {
    min-height: 560px;
  }

  .marketing-orbit-ring-one {
    width: 250px;
    height: 250px;
  }

  .marketing-orbit-ring-two {
    width: 370px;
    height: 370px;
  }

  .marketing-orbit-ring-three {
    width: 490px;
    height: 490px;
  }

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

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

  .pricing-hero-panel {
    min-height: 680px;
    padding: 96px 26px 42px;
  }

  .pricing-value-grid,
  .pricing-plans-grid {
    grid-template-columns: 1fr;
  }

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

  .services-hero::before {
    inset: 26px 12px auto;
    height: 640px;
    background-size: 58px 58px;
  }

  .services-hero-shell {
    padding-top: 28px;
  }

  .services-flow {
    padding: 138px 0 20px;
  }

  .services-flow-chip,
  .services-flow-panel,
  .services-flow-panel-wide {
    min-width: 0;
    width: 100%;
  }

  .services-flow-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services-flow-row-bottom {
    grid-template-columns: 1fr;
  }

  .services-flow-connector::before,
  .services-flow-connector::after {
    width: min(22vw, 140px);
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-story-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .about-mission-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-mission-copy {
    max-width: 100%;
  }

  .about-vision-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-vision-copy {
    max-width: 100%;
  }

  .about-history-timeline {
    grid-template-columns: 1fr;
  }

  .about-history-timeline::before {
    left: 18px;
    transform: none;
  }

  .about-history-card:nth-child(odd),
  .about-history-card:nth-child(even) {
    margin: 0 0 0 28px;
  }

  .about-history-card:nth-child(even) {
    margin-top: 0;
  }

  .about-history-card::before,
  .about-history-card:nth-child(odd)::before,
  .about-history-card:nth-child(even)::before {
    left: -35px;
    right: auto;
  }

  .about-work-frame {
    min-height: 520px;
  }

  .about-work-video {
    min-height: 484px;
  }

  .about-team-header {
    flex-direction: column;
    align-items: start;
  }

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

  .contact-page-shell,
  .contact-location-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-page-copy,
  .contact-location-copy,
  .contact-location-map-card {
    max-width: 100%;
  }

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

  .about-hero-message-card {
    order: -1;
    min-height: 0;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 8px 0 0;
  }

  .about-copy h2 {
    max-width: 100%;
  }

  .services-offerings-intro {
    gap: 16px;
  }

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

  .services-expertise-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-expertise-copy {
    max-width: 100%;
  }

  .services-expertise-canvas {
    min-height: 420px;
  }

  .services-metrics-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
  }

  .services-metrics-copy {
    max-width: 100%;
  }

  .services-faq-grid {
    grid-template-columns: 1fr;
    gap: 0 0;
  }

  .services-cta-shell {
    padding: 34px 28px 38px;
  }

  .services-cta-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-cta-title-block h2 {
    max-width: 420px;
  }

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

  .work-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-item-reverse .work-copy,
  .work-item-reverse .work-preview {
    order: initial;
  }

  .works-intro h2 {
    max-width: 100%;
    white-space: normal;
  }

  .partner-logo-card {
    width: 200px;
    height: 102px;
  }

  .flow-track {
    grid-auto-columns: minmax(240px, 300px);
  }

  .testimonials-grid {
    grid-auto-columns: minmax(260px, 320px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

  .contact-form-copy h2 {
    max-width: 100%;
  }

  .development-hero {
    padding: 24px 0 82px;
  }

  .development-hero-copy h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
  }

  .development-video-frame {
    min-height: 460px;
  }

  .development-video {
    min-height: 428px;
  }

  .tech-stack-rail {
    grid-auto-columns: minmax(280px, 320px);
  }

  .development-capability-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .development-capability-item-reverse .development-capability-copy,
  .development-capability-item-reverse .development-capability-preview {
    order: initial;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 88px;
  }

  .header-inner {
    min-height: 60px;
    padding: 8px 10px;
    gap: 10px;
    border-radius: 16px;
  }

  .brand-logo {
    width: 38px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.7rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .services-hero {
    padding: 30px 0 60px;
  }

  .marketing-hero {
    padding: 24px 0 82px;
  }

  .marketing-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .marketing-hero-description {
    font-size: 1rem;
    line-height: 1.72;
  }

  .marketing-hero-actions {
    flex-direction: column;
  }

  .marketing-hero-button {
    width: 100%;
  }

  .marketing-orbit-panel {
    min-height: 460px;
    border-radius: 28px;
  }

  .marketing-orbit-ring-one {
    width: 180px;
    height: 180px;
  }

  .marketing-orbit-ring-two {
    width: 270px;
    height: 270px;
  }

  .marketing-orbit-ring-three {
    width: 360px;
    height: 360px;
  }

  .marketing-orbit-center {
    width: 170px;
    height: 170px;
  }

  .marketing-orbit-chip {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 18px;
  }

  .marketing-orbit-chip span {
    font-size: 0.82rem;
  }

  .marketing-orbit-avatar {
    width: 54px;
    height: 54px;
    font-size: 0.76rem;
  }

  .marketing-orbit-chip-seo {
    top: 34px;
    left: 22px;
  }

  .marketing-orbit-chip-content {
    top: 118px;
    right: 24px;
  }

  .marketing-orbit-chip-social {
    right: 12px;
    bottom: 106px;
  }

  .marketing-orbit-chip-ads {
    left: 16px;
    bottom: 82px;
  }

  .marketing-orbit-chip-brand {
    top: 40px;
    right: 94px;
  }

  .marketing-orbit-avatar-one {
    top: 16px;
    right: 88px;
  }

  .marketing-orbit-avatar-two {
    top: 176px;
    left: 42px;
  }

  .marketing-orbit-avatar-three {
    right: 74px;
    bottom: 18px;
  }

  .marketing-orbit-avatar-four {
    left: 132px;
    bottom: 12px;
  }

  .marketing-services-section {
    padding: 0 0 76px;
  }

  .marketing-services-intro h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .marketing-services-intro p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .marketing-services-grid {
    grid-template-columns: 1fr;
  }

  .marketing-service-card {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .marketing-service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
  }

  .marketing-service-card h3 {
    font-size: 1.3rem;
  }

  .marketing-results-section {
    padding: 0 0 76px;
  }

  .pricing-hero {
    padding: 16px 0 76px;
  }

  .pricing-value-section,
  .pricing-plans-section {
    padding: 0 0 76px;
  }

  .pricing-value-intro h2,
  .pricing-plans-intro h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .pricing-value-intro p,
  .pricing-plans-intro p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .pricing-hero-stage {
    border-radius: 0;
  }

  .pricing-hero-panel {
    min-height: 620px;
    padding: 84px 16px 26px;
  }

  .pricing-hero-badge {
    min-height: 42px;
    padding: 0 14px;
    gap: 8px;
  }

  .pricing-hero-badge span:first-child {
    font-size: 0.78rem;
  }

  .pricing-hero-badge span:last-child {
    font-size: 0.84rem;
  }

  .pricing-hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 4.1rem);
  }

  .pricing-hero-copy p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .pricing-hero-actions {
    flex-direction: column;
  }

  .pricing-hero-button {
    width: 100%;
  }

  .pricing-rain {
    opacity: 0.22;
  }

  .pricing-rain span:nth-child(2),
  .pricing-rain span:nth-child(5) {
    display: none;
  }

  .pricing-insight-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .pricing-value-card {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .pricing-currency-toggle {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .pricing-plan-card,
  .pricing-plan-card-featured {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 24px;
    transform: none;
  }

  .pricing-plan-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .pricing-plan-price strong {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .marketing-results-intro h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .marketing-results-intro p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .marketing-result-card {
    padding: 14px;
    border-radius: 24px;
  }

  .marketing-result-screen,
  .marketing-result-image {
    min-height: 200px;
    height: 200px;
  }

  .marketing-result-copy h3 {
    font-size: 1.32rem;
  }

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

  .contact-form-section {
    padding: 0 0 72px;
  }

  .development-hero {
    padding: 14px 0 64px;
  }

  .development-social-proof {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }

  .development-social-copy span {
    display: none;
  }

  .development-hero-copy {
    margin-top: 24px;
  }

  .development-hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .development-hero-copy p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .development-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .development-hero-button {
    width: 100%;
  }

  .development-video-stage {
    margin-top: 34px;
  }

  .development-video-frame {
    min-height: 300px;
    padding: 10px;
    border-radius: 24px;
  }

  .development-video {
    min-height: 280px;
    border-radius: 18px;
  }

  .development-video-play {
    bottom: 20px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .development-video-play-icon {
    width: 34px;
    height: 34px;
  }

  .tech-stack-section {
    padding: 0 0 76px;
  }

  .tech-stack-shell {
    padding-top: 26px;
  }

  .tech-stack-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .tech-stack-intro p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .tech-stack-rail {
    grid-auto-columns: minmax(260px, 86vw);
    gap: 14px;
    padding-inline: 2px;
  }

  .tech-stack-card {
    min-height: 250px;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .tech-stack-card h3 {
    margin-top: 18px;
    font-size: 1.65rem;
  }

  .tech-stack-card p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .development-capabilities-section {
    padding: 0 0 76px;
  }

  .development-capabilities-shell {
    padding-top: 26px;
  }

  .development-capability-item {
    gap: 22px;
    padding: 18px 0;
  }

  .development-capability-copy h3 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .development-capability-copy p:last-child {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .development-capability-preview {
    padding: 12px;
    border-radius: 24px;
  }

  .development-capability-screen,
  .development-capability-placeholder {
    min-height: 260px;
  }

  .contact-form-shell {
    padding: 26px 0 30px;
  }

  .contact-form-kicker-row {
    margin-bottom: 22px;
  }

  .contact-form-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .project-form {
    gap: 24px;
  }

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

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

  .project-form-actions {
    justify-content: stretch;
  }

  .project-form-submit {
    width: 100%;
  }

  .services-hero::before {
    inset: 18px 8px auto;
    height: 720px;
    border-radius: 24px;
    background-size: 42px 42px;
  }

  .services-hero-shell {
    padding-top: 22px;
  }

  .services-hero-intro h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .services-hero-copy {
    font-size: 1rem;
    line-height: 1.72;
  }

  .services-hero-stage {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 0;
  }

  .services-hero-note {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    width: 100%;
    padding: 18px;
    transform: none;
  }

  .services-flow-mobile {
    display: flex;
    gap: 14px;
    margin: 0 -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-flow-mobile::-webkit-scrollbar {
    display: none;
  }

  .services-flow {
    display: none;
  }

  .services-offerings {
    padding: 8px 0 72px;
  }

  .services-offerings-intro h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .services-offerings-intro h2 span:first-child {
    white-space: normal;
  }

  .services-offerings-intro p:last-child {
    font-size: 0.98rem;
  }

  .services-offerings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-flip-card,
  .service-flip-card-inner {
    min-height: 272px;
  }

  .service-flip-face {
    padding: 16px;
  }

  .service-flip-title,
  .service-flip-back-title {
    font-size: 1.48rem;
  }

  .service-flip-copy {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .services-expertise {
    padding: 10px 0 76px;
  }

  .services-expertise-shell {
    gap: 24px;
    padding-top: 26px;
  }

  .services-expertise-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .services-expertise-copy p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.76;
  }

  .services-expertise-cta {
    margin-top: 26px;
  }

  .services-expertise-canvas {
    min-height: 330px;
    border-radius: 26px;
  }

  .services-expertise-video {
    inset: 12px;
    border-radius: 18px;
  }

  .services-expertise-image {
    inset: 12px;
    border-radius: 18px;
  }

  .services-metrics {
    padding: 0 0 76px;
  }

  .services-metrics-card {
    gap: 22px;
    padding: 26px 16px;
    border-radius: 28px;
  }

  .services-metrics-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .services-metrics-copy p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .services-metrics-cta {
    margin-top: 24px;
  }

  .services-metrics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-metric-tile {
    min-height: 184px;
    padding: 18px;
    border-radius: 22px;
  }

  .services-metric-index {
    margin-bottom: 42px;
  }

  .services-metric-tile span:last-child {
    font-size: 1rem;
  }

  .services-faq {
    padding: 0 0 80px;
  }

  .services-faq-intro h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .services-faq-item summary {
    padding: 20px 0;
  }

  .services-faq-item summary span:first-child {
    font-size: 1rem;
  }

  .services-faq-icon {
    width: 50px;
    height: 50px;
  }

  .services-cta-section {
    padding: 0 0 80px;
  }

  .services-cta-shell {
    padding: 26px 16px 30px;
    border-radius: 28px;
  }

  .services-cta-kicker-row {
    margin-bottom: 24px;
  }

  .services-cta-title-block h2 {
    max-width: 240px;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .services-cta-copy-block p {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
    line-height: 1.28;
  }

  .services-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .services-cta-button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 32px 0 28px;
  }

  .hero::before {
    top: 22px;
    left: -42px;
    width: 220px;
    height: 220px;
  }

  .hero::after {
    right: -58px;
    bottom: 0;
    width: 240px;
    height: 240px;
  }

  .hero-stage-panel {
    padding: 8px 0 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-line {
    display: block;
  }

  .hero-line + .hero-line::before {
    content: none;
  }

  .hero-line-three {
    display: block;
  }

  .hero-description {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-button {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-scroll-button {
    width: 52px;
    height: 52px;
    margin-top: 16px;
  }

  .hero-marquee {
    margin-top: 34px;
    mask-image: none;
  }

  .hero-stat-pill {
    min-height: 64px;
    padding: 0 18px;
  }

  .hero-stat-pill strong {
    font-size: 1.35rem;
  }

  .hero-stat-pill span {
    font-size: 0.9rem;
  }

  .about-hero-section {
    padding: 18px 0 64px;
  }

  .about-hero-intro {
    margin-bottom: 28px;
  }

  .about-hero-intro h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .about-hero-intro p:last-child {
    font-size: 1rem;
    line-height: 1.72;
  }

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

  .about-hero-media-card,
  .about-hero-media-card img {
    min-height: 200px;
  }

  .about-hero-message-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .about-hero-message-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
  }

  .about-hero-message-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .about-hero-message-card p {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .about-section {
    padding: 18px 0 64px;
  }

  .about-story-section {
    padding: 0 0 64px;
  }

  .about-story-shell {
    padding-top: 34px;
  }

  .about-story-intro p {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    line-height: 1.34;
  }

  .about-story-stats {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .about-story-stat strong {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .about-story-stat span {
    margin-top: 10px;
    font-size: 0.96rem;
  }

  .about-mission-section {
    padding: 0 0 72px;
  }

  .about-mission-media {
    min-height: 0;
    margin-bottom: 8px;
  }

  .about-mission-image-large {
    width: 100%;
    height: 320px;
    border-radius: 28px;
  }

  .about-mission-image-small {
    right: 12px;
    bottom: 18px;
    width: min(48%, 180px);
    height: 190px;
    border-width: 8px;
    border-radius: 24px;
  }

  .about-mission-copy h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .about-mission-copy p {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.64;
  }

  .about-mission-list {
    gap: 12px;
    margin-top: 22px;
  }

  .about-mission-item {
    gap: 12px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .about-vision-section {
    padding: 0 0 72px;
  }

  .about-vision-media {
    order: -1;
    min-height: 0;
    margin-bottom: 8px;
  }

  .about-vision-image-large {
    width: 100%;
    height: 320px;
    border-radius: 28px;
    margin-left: 0;
  }

  .about-vision-image-small {
    left: 12px;
    bottom: 18px;
    top: auto;
    width: min(48%, 180px);
    height: 190px;
    border-width: 8px;
    border-radius: 24px;
  }

  .about-vision-copy h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .about-vision-copy p {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.64;
  }

  .about-vision-list {
    gap: 12px;
    margin-top: 22px;
  }

  .about-vision-item {
    gap: 12px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .about-history-section {
    padding: 0 0 72px;
  }

  .about-history-shell {
    padding-top: 30px;
  }

  .about-history-intro {
    margin-bottom: 28px;
  }

  .about-history-intro h2 {
    font-size: clamp(2rem, 10vw, 2.95rem);
  }

  .about-history-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-history-timeline {
    gap: 16px;
  }

  .about-history-timeline::before {
    left: 14px;
  }

  .about-history-card:nth-child(odd),
  .about-history-card:nth-child(even) {
    margin-left: 24px;
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .about-history-card::before,
  .about-history-card:nth-child(odd)::before,
  .about-history-card:nth-child(even)::before {
    left: -28px;
    width: 12px;
    height: 12px;
  }

  .about-history-card h3 {
    font-size: 1.42rem;
  }

  .about-history-card p {
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .about-work-section {
    padding: 0 0 72px;
  }

  .about-work-shell {
    padding-top: 30px;
  }

  .about-work-intro {
    margin-bottom: 24px;
  }

  .about-work-intro h2 {
    font-size: clamp(2rem, 10vw, 2.95rem);
  }

  .about-work-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-work-frame {
    min-height: 320px;
    padding: 12px;
    border-radius: 26px;
  }

  .about-work-frame::before {
    inset: 12px;
    border-radius: 18px;
  }

  .about-work-video {
    min-height: 296px;
    border-radius: 18px;
  }

  .about-work-play {
    width: 82px;
    height: 82px;
  }

  .about-work-play-icon {
    width: 58px;
    height: 58px;
  }

  .about-work-play-icon::before {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 13px;
  }

  .about-work-note {
    max-width: 180px;
    padding: 14px 14px 12px;
    border-radius: 18px;
  }

  .about-work-note strong {
    font-size: 0.9rem;
  }

  .about-work-note span {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .about-work-note-top {
    top: 22px;
    left: 22px;
  }

  .about-work-note-bottom {
    right: 22px;
    bottom: 22px;
  }

  .about-team-section {
    padding: 0 0 72px;
  }

  .about-team-shell {
    padding-top: 30px;
  }

  .about-team-header {
    margin-bottom: 24px;
    gap: 18px;
  }

  .about-team-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-team-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-team-badge {
    min-width: 122px;
    min-height: 122px;
    padding: 16px;
  }

  .about-team-badge strong {
    font-size: 2.5rem;
  }

  .about-team-badge span {
    font-size: 0.84rem;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-team-photo-wrap {
    min-height: 280px;
    border-radius: 24px;
  }

  .about-team-photo {
    height: 280px;
  }

  .about-team-socials {
    top: 14px;
    right: 14px;
    gap: 8px;
  }

  .about-team-socials a {
    width: 38px;
    height: 38px;
  }

  .about-team-card h3 {
    font-size: 1.38rem;
  }

  .about-team-card p {
    font-size: 0.94rem;
  }

  .team-lightbox {
    padding: 14px;
  }

  .team-lightbox-dialog {
    border-radius: 24px;
    max-height: calc(100vh - 28px);
  }

  .team-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .team-lightbox-media {
    border-radius: 20px;
  }

  .team-lightbox-media img {
    max-height: 68vh;
  }

  .contact-page-hero {
    padding: 24px 0 72px;
  }

  .contact-page-copy h1,
  .contact-location-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .contact-page-description,
  .contact-location-copy p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .contact-page-info-list {
    margin-top: 26px;
  }

  .contact-page-info-card {
    width: 100%;
    min-height: 52px;
    font-size: 0.95rem;
  }

  .contact-page-form-card {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .contact-page-form-card h2 {
    font-size: 2rem;
  }

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

  .contact-page-field input,
  .contact-page-field textarea {
    padding: 14px 14px;
  }

  .contact-location-section {
    padding: 0 0 72px;
  }

  .contact-location-map-canvas {
    min-height: 300px;
    border-radius: 24px;
  }

  .contact-location-map-overlay {
    top: 28px;
    left: 22px;
    right: 22px;
    max-width: none;
    padding: 16px;
    border-radius: 18px;
  }

  .contact-location-pin {
    left: 50%;
    bottom: 42px;
  }

  .contact-location-address {
    margin-top: 22px;
  }

  .about-panel {
    gap: 26px;
    padding: 0;
  }

  .about-kicker,
  .about-eyebrow {
    margin-bottom: 16px;
    font-size: 0.96rem;
  }

  .about-showcase {
    padding: 12px;
    border-radius: 20px;
  }

  .about-showcase-screen {
    min-height: 240px;
    border-radius: 18px;
  }

  .about-showcase-video {
    min-height: 240px;
  }

  .about-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .services-section {
    padding: 10px 0 72px;
  }

  .services-shell {
    padding-top: 44px;
  }

  .services-intro {
    margin-bottom: 30px;
  }

  .services-intro p:last-child {
    font-size: 0.96rem;
  }

  .service-card {
    min-height: auto;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .service-card::before {
    top: 18px;
    width: 130px;
    height: 66px;
  }

  .service-icon {
    margin: 42px auto 22px;
    width: 48px;
    height: 48px;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-card h3 {
    font-size: 1.65rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-section {
    padding: 6px 0 80px;
  }

  .partners-section {
    padding: 0 0 80px;
  }

  .flow-section {
    padding: 0 0 80px;
  }

  .testimonials-section {
    padding: 0 0 80px;
  }

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

  .partners-intro h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .partners-marquee {
    mask-image: none;
  }

  .partner-logo-card {
    width: 170px;
    height: 90px;
    border-radius: 18px;
  }

  .partner-logo-card img {
    max-height: 42px;
  }

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

  .flow-intro h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .flow-track {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 16px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .flow-step {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .flow-step::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -16px;
    width: 2px;
    height: 16px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(22, 101, 216, 0.2), rgba(255, 140, 66, 0.28));
  }

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

  .testimonials-intro h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .testimonials-grid {
    grid-auto-columns: 86%;
    gap: 14px;
    padding-bottom: 10px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .work-item {
    gap: 22px;
    padding: 20px 0 26px;
  }

  .works-intro {
    margin-bottom: 20px;
  }

  .works-intro h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .work-copy h3 {
    font-size: 1.8rem;
  }

  .work-copy p:not(.work-meta) {
    font-size: 1rem;
  }

  .work-preview {
    padding: 16px;
    border-radius: 24px;
  }

  .work-screen {
    min-height: 240px;
    border-radius: 18px;
  }

  .work-image {
    min-height: 180px;
    border-radius: 14px;
  }
}
