:root {
  --bg: #fcfcfd;
  --bg-2: #f6f8fb;
  --bg-feature: #eef4ff;
  --card: #ffffff;
  --border: #e2e8f0;
  --border-soft: #eef2f7;
  --ink: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --brand: #2563eb;
  --brand-2: #3b82f6;
  --brand-3: #60a5fa;
  --brand-soft: #dbeafe;
  --brand-tint: #eff6ff;
  --navy: #1e3a8a;
  --success: #22c55e;
  --warn: #f59e0b;
  --sh-sm: 0 10px 30px rgba(15, 23, 42, 0.05);
  --sh-md: 0 20px 60px rgba(15, 23, 42, 0.08);
  --sh-lg: 0 40px 120px rgba(37, 99, 235, 0.12);
  --radius: 18px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Space Grotesk", sans-serif;
  --display: "Tajawal", sans-serif;
  --alt: "Plus Jakarta Sans", sans-serif;
  --font: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
::selection {
  background: var(--brand-soft);
  color: var(--navy);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
section {
  position: relative;
}

/* animated gradient text */
.grad,
.gradient-text {
  background: linear-gradient(
    90deg,
    #1e3a8a,
    #2563eb,
    #3b82f6,
    #60a5fa,
    #2563eb
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradpan 13s linear infinite;
}
@keyframes gradpan {
  to {
    background-position: 220% center;
  }
}

/* ambient decorative layer (behind hero only; sections below are opaque) */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 55% at 60% 22%,
    #000,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse 70% 55% at 60% 22%,
    #000,
    transparent 72%
  );
  animation: gridfloat 34s linear infinite;
}
@keyframes gridfloat {
  to {
    background-position: 60px 60px;
  }
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.glow.g1 {
  width: 600px;
  height: 600px;
  top: -160px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.28),
    transparent 70%
  );
  animation: drift1 26s var(--ease) infinite alternate;
}
.glow.g2 {
  width: 520px;
  height: 520px;
  top: 6%;
  right: -160px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
  animation: drift2 30s var(--ease) infinite alternate;
}
@keyframes drift1 {
  to {
    transform: translate(50px, 40px);
  }
}
@keyframes drift2 {
  to {
    transform: translate(-60px, 30px);
  }
}

/* ---------- Nav ---------- */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition:
    padding 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(252, 252, 253, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  padding: 13px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.5);
  position: relative;
  overflow: hidden;
}
.brand .mark svg {
  width: 18px;
  height: 18px;
}
.navlinks {
  display: flex;
  gap: 4px;
  align-items: center;
}
.navlinks a {
  font-size: 14.5px;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 500;
  transition:
    color 0.25s,
    background 0.25s;
  position: relative;
}
.navlinks a:hover {
  color: var(--ink);
  background: rgba(37, 99, 235, 0.05);
}
.navlinks a.active {
  color: var(--brand);
}
.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  font-family: var(--alt);
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.5);
}
.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 14px 30px -8px rgba(37, 99, 235, 0.6);
}
.btn-primary svg path {
  stroke: #fff !important;
}
.btn-ghost {
  background: var(--brand-tint);
  color: var(--brand);
  border: 1px solid #dbeafe;
}
.btn-ghost:hover {
  background: #e0ebff;
  border-color: var(--brand-3);
}
.btn-ghost svg path {
  stroke: var(--brand) !important;
  fill: var(--brand);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.burger {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-links-mobile {
  display: none;
}

/* ---------- Hero ---------- */
#hero {
  background: transparent;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 30%,
    rgba(252, 252, 253, 0.72) 46%,
    rgba(252, 252, 253, 0) 64%
  );
}
#globe-canvas {
  position: absolute;
  top: 0;
  right: -3%;
  width: 64%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--alt);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid #dbeafe;
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 26px;
  box-shadow: var(--sh-sm);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.5rem);
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero p.sub {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--body);
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-cta .btn {
  padding: 15px 28px;
  font-size: 15.5px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-row .stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.trust-row .stars svg {
  width: 16px;
  height: 16px;
}
.trust-row .t-txt {
  font-size: 13.5px;
  color: var(--muted);
}
.trust-row .t-txt b {
  color: var(--ink);
  font-weight: 600;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background-size: cover;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--alt);
  box-shadow: var(--sh-sm);
}
.avatars span:first-child {
  margin-left: 0;
}

/* floating holo cards */
.holo {
  display: none;
  position: absolute;
  z-index: 4;
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: var(--sh-md);
  will-change: transform;
}
.holo .lbl {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--alt);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.holo .val {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: 22px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.holo .val .up {
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
}
.holo.h1 {
  top: 22%;
  right: 5%;
}
.holo.h2 {
  bottom: 18%;
  right: 22%;
}
.holo.h3 {
  top: 46%;
  right: 42%;
}
.spark {
  margin-top: 10px;
  height: 30px;
}
.spark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* hero decorative 3D layer */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor .ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.09);
}
.hero-decor .ring::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(37, 99, 235, 0.2);
  border-right-color: rgba(96, 165, 250, 0.12);
}
.hero-decor .r1 {
  width: 520px;
  height: 520px;
  top: 8%;
  right: 2%;
  animation: spin 46s linear infinite;
}
.hero-decor .r2 {
  width: 300px;
  height: 300px;
  top: 24%;
  right: 14%;
  border-color: rgba(96, 165, 250, 0.12);
  animation: spin 34s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-decor .gshape {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(96, 165, 250, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--sh-md);
}
.hero-decor .s1 {
  width: 104px;
  height: 104px;
  border-radius: 26px;
  top: 16%;
  right: 30%;
  transform: rotate(18deg);
  animation: bob 10s ease-in-out infinite;
}
.hero-decor .s2 {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  bottom: 22%;
  right: 22%;
  transform: rotate(-12deg);
  animation: bob 12s ease-in-out infinite 0.6s;
}
.hero-decor .s3 {
  display: none;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-14px) rotate(var(--r, 0deg));
  }
}
.hero-decor .s1 {
  --r: 18deg;
}
.hero-decor .s2 {
  --r: -12deg;
}
.hero-decor .float-grad {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hero-decor .fg1 {
  width: 360px;
  height: 360px;
  top: 12%;
  right: 6%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 68%);
  animation: drift1 24s var(--ease) infinite alternate;
}
.hero-decor .fg2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 24%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09), transparent 68%);
  animation: drift2 28s var(--ease) infinite alternate;
}

/* ---------- Section shell ---------- */
.sec {
  padding: 112px 0;
  position: relative;
  z-index: 2;
}
.sec-head {
  max-width: 660px;
  margin: 0 auto 58px;
  text-align: center;
}
.sec-head.left {
  text-align: left;
  margin-left: 0;
}
.kicker {
  font-family: var(--alt);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-block;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.6;
}
.sec-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.sec-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Section backgrounds (alternating rhythm) */
#services {
  background: var(--bg-2);
}
#tech {
  background: var(--bg);
}
#results {
  background: var(--bg-2);
}
#work {
  background: var(--card);
}
#pfpin {
  background: var(--card);
}
#process {
  background: var(--bg-feature);
}
#testimonials {
  background: var(--bg-2);
}

/* Logo bar */
.logobar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.logobar .wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logobar .lead {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--alt);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
}
.logos span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: #94a3b8;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.logos span:hover {
  color: var(--navy);
}

/* Services — grouped bento */
.svc-group {
  margin-bottom: 52px;
}
.svc-group:last-child {
  margin-bottom: 0;
}
.svc-band {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.svc-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1em;
  padding-top: 5px;
  flex: 0 0 auto;
  background: var(--brand);
  padding: 5px;
  border-radius: 4px;
}
.svc-label {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.svc-blurb {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 640px;
}
.svc-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  grid-auto-rows: minmax(148px, auto);
}
.s-feat {
  grid-column: span 3;
  grid-row: span 2;
}
.s-half {
  grid-column: span 3;
}
.s-full {
  grid-column: span 6;
}
.s-w4 {
  grid-column: span 4;
}
.s-w2 {
  grid-column: span 2;
}
.card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.4s,
    box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: var(--sh-sm);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.5s;
  background: radial-gradient(
    440px circle at var(--mx, 50%) var(--my, 0%),
    rgba(37, 99, 235, 0.07),
    transparent 45%
  );
  pointer-events: none;
}
.card:hover::before {
  opacity: 1;
}
.card:hover {
  border-color: #cbd9ee;
  box-shadow: var(--sh-lg);
}
.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--brand-tint), #f5f9ff);
  border: 1px solid #dbeafe;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s;
}
.card:hover .icon {
  transform: translateZ(30px) scale(1.05);
  box-shadow: 0 12px 26px -8px rgba(37, 99, 235, 0.35);
}
.card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
}
.card h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
  transition: transform 0.5s var(--ease);
}
.card:hover h4 {
  transform: translateZ(20px);
}
.card p {
  font-size: 0.93rem;
  color: var(--body);
  transition: transform 0.5s var(--ease);
}
.card:hover p {
  transform: translateZ(12px);
}
.card--feat {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(160deg, #fff, #f7faff);
}
.card--feat .feat-body {
  display: flex;
  flex-direction: column;
}
.feat-points {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feat-points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--body);
}
.feat-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--brand);
  opacity: 0.9;
}
.feat-visual {
  align-self: stretch;
  min-height: 190px;
  display: flex;
}
.fv {
  flex: 1;
  background: #f6f9fe;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset 0 1px 0 #fff;
}
.fv-row {
  display: flex;
  gap: 6px;
}
.fv-tool {
  width: 22px;
  height: 8px;
  border-radius: 4px;
  background: #dde6f3;
}
.fv-tool:first-child {
  background: var(--brand);
  opacity: 0.85;
}
.fv-canvas {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: var(--sh-sm);
}
.fv-blocks {
  display: flex;
  gap: 9px;
}
.fv-block {
  flex: 1;
  height: 38px;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.16),
    rgba(96, 165, 250, 0.08)
  );
}
.fv-block.b {
  background: #eef2f8;
}
.fv-line {
  height: 6px;
  border-radius: 3px;
  background: #e4eaf3;
}
.fv-line.s {
  width: 62%;
}
.fv-btn {
  margin-top: 2px;
  width: 70px;
  height: 19px;
  border-radius: 6px;
  background: var(--brand);
}

/* Tech sphere */
.tech-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tag-sphere {
  position: relative;
  width: 100%;
  height: 440px;
}
.tag-sphere .tag {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--alt);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  white-space: nowrap;
  will-change: transform, opacity;
  box-shadow: var(--sh-sm);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.tag-sphere .tag:hover {
  color: var(--brand);
  border-color: var(--brand-3);
  background: var(--brand-tint);
}
.tech-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.tech-copy p {
  color: var(--body);
  margin-bottom: 26px;
  font-size: 1.02rem;
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-pills li {
  list-style: none;
  font-size: 13px;
  color: var(--navy);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--alt);
  font-weight: 500;
  box-shadow: var(--sh-sm);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  position: relative;
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.4s,
    box-shadow 0.5s var(--ease);
  box-shadow: var(--sh-sm);
}
.stat:hover {
  transform: translateY(-5px);
  border-color: #cbd9ee;
  box-shadow: var(--sh-md);
}
.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
}
.stat .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 3.8vw, 3rem);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat .num .u {
  color: var(--brand);
}
.stat .lbl {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.97rem;
  font-family: var(--alt);
  font-weight: 500;
}

/* Portfolio — pinned horizontal scroll */
.pf-pin {
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.pf-track {
  display: flex;
  gap: 26px;
  padding: 14px max(28px, calc((100vw - var(--maxw)) / 2 + 28px)) 34px
    max(28px, calc((100vw - var(--maxw)) / 2));
  will-change: transform;
}
.pf-pin.native {
  min-height: 0;
  display: block;
  overflow: visible;
}
.pf-pin.native .pf-track {
  flex-direction: column;
  align-items: center;
  transform: none !important;
  will-change: auto;
  padding: 4px 20px 0;
  gap: 20px;
  width: 100%;
}
.pf-pin.native .pf-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 520px;
  scroll-snap-align: none;
}
.pf-card {
  flex: 0 0 460px;
  max-width: 82vw;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.4s;
  perspective: 1200px;
  box-shadow: var(--sh-sm);
}
.pf-card:hover {
  transform: translateY(-8px);
  border-color: #cbd9ee;
  box-shadow: var(--sh-lg);
}
.pf-shot {
  height: 212px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #edf3fc, #f6f8fb);
  perspective: 900px;
}
.pf-shot .browser {
  position: absolute;
  inset: 22px 22px -26px 22px;
  border-radius: 12px 12px 0 0;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 22px 46px -18px rgba(15, 23, 42, 0.2);
  transition: transform 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  transform-origin: center top;
}
.pf-card:hover .browser {
  transform: rotateX(6deg) translateY(-6px);
}
.pf-shot .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border-soft);
}
.pf-shot .bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.pf-shot .bar i:nth-child(1) {
  background: #ff5f57;
}
.pf-shot .bar i:nth-child(2) {
  background: #febc2e;
}
.pf-shot .bar i:nth-child(3) {
  background: #28c840;
}
.pf-shot .bar .url {
  margin-left: 8px;
  font-family: var(--alt);
  font-size: 10px;
  color: var(--muted);
}
.pf-shot .screen {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #fbfcfe;
}
.pf-shot .screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(37, 99, 235, 0.06) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
}
.pf-card:hover .pf-shot .screen::after {
  transform: translateX(120%);
  transition: transform 1s var(--ease);
}
/* mini UI mockups (light) */
.mk {
  position: absolute;
  inset: 0;
  padding: 12px;
  font-family: var(--alt);
  font-size: 8px;
  color: var(--body);
}
.mk .tl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.mk .brandline {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--ink);
  font-size: 9px;
}
.mk .brandline .chip {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--acc);
}
.mk .navdots {
  display: flex;
  gap: 5px;
}
.mk .navdots span {
  width: 14px;
  height: 5px;
  border-radius: 3px;
  background: #e4eaf3;
}
.mk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mk-prod {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px;
  box-shadow: var(--sh-sm);
}
.mk-prod .img {
  height: 32px;
  border-radius: 5px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.14),
    rgba(96, 165, 250, 0.06)
  );
  margin-bottom: 6px;
}
.mk-prod .l {
  height: 4px;
  border-radius: 2px;
  background: #e4eaf3;
  margin-bottom: 4px;
}
.mk-prod .l.s {
  width: 60%;
}
.mk-prod .price {
  font-weight: 700;
  color: var(--acc);
  font-size: 9px;
  margin-top: 2px;
}
.mk-app {
  display: flex;
  gap: 9px;
  height: 100%;
}
.mk-side {
  width: 30px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mk-side i {
  height: 5px;
  border-radius: 3px;
  background: #e4eaf3;
}
.mk-side i:first-child {
  background: var(--acc);
}
.mk-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.mk-stats {
  display: flex;
  gap: 6px;
}
.mk-stats .st {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 6px;
  box-shadow: var(--sh-sm);
}
.mk-stats .st b {
  display: block;
  color: var(--ink);
  font-size: 10px;
}
.mk-stats .st span {
  display: block;
  height: 3px;
  width: 60%;
  background: #e4eaf3;
  border-radius: 2px;
  margin-top: 3px;
}
.mk-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px;
  box-shadow: var(--sh-sm);
}
.mk-chart i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(var(--acc), rgba(96, 165, 250, 0.25));
}
.mk-table {
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-sm);
}
.mk-tr {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr;
  gap: 8px;
  align-items: center;
  padding: 8px 9px;
  border-bottom: 1px solid var(--border-soft);
}
.mk-tr:last-child {
  border-bottom: none;
}
.mk-tr.h {
  background: #f6f9fe;
}
.mk-tr .c {
  height: 5px;
  border-radius: 3px;
  background: #e4eaf3;
}
.mk-tr .c.s {
  width: 70%;
}
.mk-pill {
  justify-self: start;
  font-size: 7px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.mk-pill.ok {
  color: #15803d;
  background: #dcfce7;
}
.mk-pill.wait {
  color: var(--brand);
  background: var(--brand-tint);
}
.mk-hero {
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: center;
}
.mk-hero .txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mk-hero .h {
  height: 10px;
  width: 88%;
  border-radius: 4px;
  background: #d3ddec;
}
.mk-hero .h.s {
  width: 58%;
}
.mk-hero .p {
  height: 4px;
  border-radius: 2px;
  background: #e4eaf3;
}
.mk-hero .btn2 {
  margin-top: 5px;
  width: 52px;
  height: 14px;
  border-radius: 6px;
  background: var(--acc);
}
.mk-hero .shot {
  width: 92px;
  align-self: stretch;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.14),
    rgba(96, 165, 250, 0.06)
  );
  border: 1px solid var(--border);
}
.mk-chat {
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 100%;
}
.mk-msg {
  max-width: 80%;
  padding: 8px 9px;
  border-radius: 9px;
}
.mk-msg .l {
  height: 4px;
  border-radius: 2px;
  background: #cbd5e1;
  margin-bottom: 4px;
}
.mk-msg .l:last-child {
  margin-bottom: 0;
}
.mk-msg.bot {
  align-self: flex-start;
  background: #f1f5fb;
  border: 1px solid var(--border);
}
.mk-msg.me {
  align-self: flex-end;
  background: var(--brand-tint);
  border: 1px solid #dbeafe;
}
.mk-input {
  margin-top: auto;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
}
.pf-hint {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--alt);
  margin-top: 8px;
}
.pf-hint svg {
  width: 15px;
  height: 15px;
  vertical-align: -3px;
}
/* portfolio card body */
.pf-body {
  padding: 22px 24px 24px;
}
.pf-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pf-tags span {
  font-family: var(--alt);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid #dbeafe;
  padding: 4px 10px;
  border-radius: 7px;
}
.pf-body h3 {
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pf-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.pf-metric {
  display: flex;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pf-metric > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pf-metric .m {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.pf-metric small {
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--alt);
  line-height: 1.3;
}

/* Process timeline */
.timeline {
  position: relative;
  margin-top: 20px;
}
.tl-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 2px;
  background: #d9e2f1;
}
.tl-line .fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
  transition: width 1.4s var(--ease);
}
.tl-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.tl-step {
  text-align: center;
}
.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #bfd2f0;
  margin: 12px auto 20px;
  transition: 0.5s var(--ease);
  box-shadow: var(--sh-sm);
}
.tl-step.on .tl-dot {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow:
    0 0 0 6px rgba(37, 99, 235, 0.12),
    0 8px 18px -4px rgba(37, 99, 235, 0.5);
  transform: scale(1.15);
}
.tl-num {
  font-family: var(--alt);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.tl-step h4 {
  font-size: 1.02rem;
  margin: 8px 0;
}
.tl-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Testimonials */
.tst-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s var(--ease);
}
.tst-viewport {
  overflow: hidden;
  padding: 8px 0;
}
.tst {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  transition:
    border-color 0.4s,
    box-shadow 0.4s,
    transform 0.4s var(--ease);
  box-shadow: var(--sh-sm);
}
.tst:hover {
  border-color: #cbd9ee;
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.tst .stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
}
.tst .stars svg {
  width: 16px;
  height: 16px;
}
.tst .quote {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 450;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 13px;
}
.tst .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--brand-soft);
  border: 1px solid #c7dbfb;
}
.tst .who .n {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.tst .who .c {
  font-size: 12.5px;
  color: var(--muted);
}
.tst-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}
.tst-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.tst-dots button.on {
  width: 26px;
  border-radius: 5px;
  background: var(--brand);
}

/* CTA */
.cta-sec {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.cta-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 78px 40px;
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a, #2563eb 55%, #3b82f6);
  box-shadow: var(--sh-lg);
}
.cta-city {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}
.cta-city .b {
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  border-radius: 3px 3px 0 0;
}
.cta-spot {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  filter: blur(30px);
  z-index: 0;
}
.cta-box > * {
  position: relative;
  z-index: 2;
}
.cta-box h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.03em;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.08rem;
}
.cta-box .hero-cta {
  justify-content: center;
}
.cta-box .btn-primary {
  background: #fff;
  color: var(--brand);
}
.cta-box .btn-primary:hover {
  background: #f1f5ff;
}
.cta-box .btn-primary svg path {
  stroke: var(--brand) !important;
}
.cta-box .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.cta-box .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Footer (deep navy) */
footer {
  position: relative;
  z-index: 2;
  padding: 70px 0 34px;
  background: var(--ink);
  color: #94a3b8;
}
.foot-grad {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.6),
    transparent
  );
  margin-bottom: 52px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
}
footer .brand {
  color: #fff;
}
.foot-col h5 {
  font-family: var(--alt);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}
.foot-col a,
.foot-col p {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.25s;
}
.foot-col a:hover {
  color: var(--brand-3);
}
.foot-about p {
  max-width: 300px;
  margin-top: 16px;
  line-height: 1.7;
}
.news {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.news input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
}
.news input::placeholder {
  color: #64748b;
}
.news input:focus {
  outline: none;
  border-color: var(--brand-3);
}
.news button {
  border: none;
  background: var(--brand);
  border-radius: 10px;
  padding: 0 16px;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.news button:hover {
  background: #1d4ed8;
}
.news button svg {
  width: 18px;
  height: 18px;
}
.news button svg path {
  stroke: #fff !important;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #94a3b8;
  transition: 0.3s;
}
.socials a:hover {
  color: #fff;
  border-color: var(--brand-3);
  transform: translateY(-3px);
}
.socials svg {
  width: 17px;
  height: 17px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 13px;
}
.foot-bottom a {
  color: #64748b;
}
.foot-bottom a:hover {
  color: var(--brand-3);
}

/* service-page utilities (shared by every service page) */
.price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 4px 0 2px;
}
.price small {
  display: block;
  font-family: var(--alt);
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0;
}
a.card {
  display: block;
  color: inherit;
}
a.card h4 {
  transition: color 0.3s;
}
.card h4 a {
  color: inherit;
  transition: color 0.3s;
}
.card:hover h4 a {
  color: var(--brand);
}
a.card:hover h4 {
  color: var(--brand);
}
.lede {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 660px;
}
.sec-tight {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
.reveal.d5 {
  transition-delay: 0.4s;
}
/* text animations: kicker drops in, headings focus-in (blur+rise), paragraphs slide up after */
.r-kicker {
  opacity: 0;
  transform: translateY(-7px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.r-kicker.in {
  opacity: 1;
  transform: none;
}
.r-head {
  opacity: 0;
  transform: translateY(26px) scale(0.986);
  filter: blur(7px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.95s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: 0.06s;
  will-change: transform, filter, opacity;
}

.sec-head .r-head {
	margin-bottom: 20px;
}

.r-head.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.r-text {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: 0.2s;
}
.r-text.in {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  #globe-canvas {
    width: 112%;
    right: -6%;
    opacity: 0.42;
    top: 24%;
    height: 74%;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      var(--bg) 0%,
      var(--bg) 40%,
      rgba(252, 252, 253, 0.7) 58%,
      rgba(252, 252, 253, 0) 82%
    );
  }
  .holo {
    display: none;
  }
  .navlinks,
  .nav-cta .btn-ghost {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links-mobile.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    gap: 4px;
    box-shadow: var(--sh-md);
  }
  .nav-links-mobile.open a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--body);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .s-feat {
    grid-column: span 4;
    grid-row: auto;
  }
  .s-half {
    grid-column: span 2;
  }
  .s-full {
    grid-column: span 4;
  }
  .s-w4 {
    grid-column: span 2;
  }
  .s-w2 {
    grid-column: span 2;
  }
  .tech-wrap {
    grid-template-columns: 1fr;
  }
  .tag-sphere {
    height: 380px;
    max-width: 440px;
    margin: 0 auto;
  }
  .tl-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }
  .tl-line {
    display: none;
  }
  .tst {
    flex: 0 0 calc(50% - 12px);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-about {
    grid-column: 1/-1;
  }
  .pf-hint {
    display: none;
  }
}
@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .svc-bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .s-feat,
  .s-half,
  .s-full,
  .s-w4,
  .s-w2 {
    grid-column: span 1;
    grid-row: auto;
  }
  .card--feat {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .svc-band {
    gap: 12px;
  }
  .tst {
    flex: 0 0 100%;
  }
  .tl-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .sec {
    padding: 76px 0;
  }
  .sec-head {
    margin-bottom: 40px;
  }
  .svc-group {
    margin-bottom: 40px;
  }
  .hero {
    padding-top: 120px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 2.9rem);
  }
  .cta-sec {
    padding: 80px 0;
  }
  .cta-box {
    padding: 48px 20px;
  }
  .wrap {
    padding: 0 20px;
  }
  .logobar .wrap {
    gap: 20px;
  }
  .logos {
    gap: 26px;
  }
}
@media (max-width: 560px) {
  header.nav .nav-cta .btn-primary {
    display: none;
  }
}
@media (max-width: 400px) {
  .logos {
    gap: 18px;
  }
  .logos span {
    font-size: 16px;
  }
  .hero-cta {
    width: 100%;
  }
  .hero-cta .btn {
    flex: 1;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .r-head,
  .r-text,
  .r-kicker {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .grad,
  .gradient-text {
    -webkit-text-fill-color: transparent;
  }
}
