:root {
  --navy-950: #04111f;
  --navy-900: #07192b;
  --navy-850: #0a2138;
  --navy-800: #102b46;
  --blue: #1a8fff;
  --blue-2: #49d7ff;
  --violet: #7f7cff;
  --cyan: #50e3ff;
  --text: #0c1c2d;
  --muted: #637083;
  --line: #dfe7f1;
  --surface: #ffffff;
  --surface-2: #f4f8fc;
  --surface-3: #edf4fa;
  --success: #41d9a0;
  --shadow: 0 30px 80px rgba(10, 30, 52, .12);
  --shadow-soft: 0 16px 45px rgba(17, 43, 70, .09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #2ea4ff #07192b;
}

/* Gradient custom scrollbar */
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, #04111f 0%, #0a2138 50%, #07192b 100%);
  border-left: 1px solid rgba(255, 255, 255, .04);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #49d7ff 0%, #1a8fff 48%, #7f7cff 100%);
  border-radius: 999px;
  border: 2px solid #07192b;
  background-clip: padding-box;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6de7ff 0%, #3aa0ff 48%, #9a98ff 100%);
  border: 2px solid #07192b;
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: #07192b;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  height: 3px;
  width: 0%;
  pointer-events: none;
  background: linear-gradient(90deg, #49d7ff, #1a8fff 45%, #7f7cff);
  box-shadow: 0 0 16px rgba(73, 215, 255, .45);
  transition: width .12s linear;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor .magnetic {
  cursor: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  mix-blend-mode: difference;
  transition: opacity .35s ease, width .35s cubic-bezier(.22, 1, .36, 1), height .35s cubic-bezier(.22, 1, .36, 1), background .3s ease, border-color .3s ease, scale .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(73, 215, 255, .55);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .7);
}

body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: rgba(73, 215, 255, .95);
  box-shadow: 0 0 24px rgba(73, 215, 255, .35);
}

body.cursor-hover .cursor-dot {
  scale: 1.65;
  background: var(--blue-2);
  mix-blend-mode: normal;
  box-shadow: 0 0 18px rgba(73, 215, 255, .8);
}

body.hero-pointer .cursor-ring {
  border-color: rgba(73, 215, 255, .85);
  box-shadow:
    0 0 0 6px rgba(73, 215, 255, .06),
    0 0 28px rgba(26, 143, 255, .28);
}

.mouse-glow {
  position: fixed;
  width: 560px;
  height: 560px;
  margin: -280px 0 0 -280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle at 42% 40%, rgba(120, 235, 255, .28), transparent 28%),
    radial-gradient(circle at 58% 55%, rgba(26, 143, 255, .2), transparent 42%),
    radial-gradient(circle, rgba(73, 215, 255, .12), transparent 62%);
  filter: blur(2px);
  mix-blend-mode: screen;
  transition: opacity .55s ease, transform .2s linear;
  will-change: transform, opacity;
}

.mouse-glow-trail {
  width: 720px;
  height: 720px;
  margin: -360px 0 0 -360px;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(26, 143, 255, .1), transparent 48%),
    radial-gradient(circle at 60% 40%, rgba(127, 124, 255, .08), transparent 55%);
  filter: blur(18px);
  z-index: 0;
}

body.has-custom-cursor .mouse-glow.is-active,
body.has-hero-ambience .mouse-glow.is-active {
  opacity: 1;
}

body.has-custom-cursor .mouse-glow-trail.is-active,
body.has-hero-ambience .mouse-glow-trail.is-active {
  opacity: .85;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(34, 140, 255, .16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #0a2035);
}

.light-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(69, 205, 255, .1), transparent 32%),
    radial-gradient(circle at 88% 40%, rgba(127, 124, 255, .06), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #fff 45%, #f4f8fc 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(4, 17, 31, .82);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 30px;
}

.brand-mark span {
  position: absolute;
  top: 0;
  width: 17px;
  height: 30px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%, 38% 50%);
}

.brand-mark span:first-child {
  left: 0;
}

.brand-mark span:last-child {
  right: 0;
  transform: scaleX(-1);
  filter: brightness(.82);
}

.brand-text {
  font-size: 1.18rem;
}

.brand-text strong {
  color: var(--blue-2);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .93rem;
  font-weight: 600;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  transition: right .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transform: translateY(0);
  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s cubic-bezier(.22, 1, .36, 1),
    background .3s ease,
    border-color .3s ease;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.btn:hover {
  transform: translateY(-5px);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #139aff, #276dff);
  box-shadow: 0 16px 35px rgba(23, 135, 255, .28);
}

.btn-primary:hover {
  box-shadow: 0 26px 52px rgba(23, 135, 255, .45);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}

.btn-large {
  min-height: 58px;
  padding: 0 26px;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 0;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      520px circle at var(--hero-mx, 50%) var(--hero-my, 40%),
      rgba(73, 215, 255, .16),
      rgba(26, 143, 255, .08) 28%,
      transparent 55%
    ),
    radial-gradient(
      240px circle at var(--hero-mx, 50%) var(--hero-my, 40%),
      rgba(255, 255, 255, .07),
      transparent 42%
    );
  transition: opacity .45s ease;
  mix-blend-mode: screen;
}

.hero.is-pointer-active .hero-spotlight {
  opacity: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .55;
  will-change: transform, opacity;
  z-index: 1;
  transition: opacity .4s ease;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 50px;
  background: rgba(49, 146, 255, .22);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  left: 35%;
  bottom: 60px;
  background: rgba(71, 224, 255, .11);
}

.hero-orb-three {
  width: 180px;
  height: 180px;
  left: 8%;
  top: 22%;
  background: rgba(127, 124, 255, .12);
  opacity: .4;
  filter: blur(36px);
}

.hero.is-pointer-active .hero-orb-one {
  opacity: .7;
}

.hero.is-pointer-active .hero-orb-two {
  opacity: .65;
}

.hero.is-pointer-active .hero-orb-three {
  opacity: .55;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  min-height: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1687d7;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--blue-2);
  margin-bottom: 26px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--blue-2);
  box-shadow: 0 0 18px var(--blue-2);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .7; }
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--i, 0) * .1s + .15s);
}

.hero-copy.visible .hero-animate {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 760px;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #6de7ff 55%, #7e85ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 640px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.68);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack div {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e9f7ff, #a7cfff);
  color: #0b2742;
  border: 3px solid var(--navy-900);
  font-size: .67rem;
  font-weight: 800;
}

.avatar-stack div:first-child {
  margin-left: 0;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  font-size: .9rem;
}

.hero-trust span {
  margin-top: 4px;
  color: rgba(255,255,255,.52);
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.visual-shell {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)),
    rgba(6, 21, 37, .72);
  box-shadow: 0 40px 100px rgba(0,0,0,.34);
  backdrop-filter: blur(22px);
  transform-style: preserve-3d;
  transition: box-shadow .4s ease;
  will-change: transform;
}

.visual-shell.is-tilting {
  box-shadow: 0 50px 120px rgba(0,0,0,.42);
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(75,214,255,.55), transparent 34%, rgba(118,118,255,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 4px 18px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
}

.live-pill {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #79e6bc;
}

.live-pill i,
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54e4ae;
  box-shadow: 0 0 14px #54e4ae;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(84, 228, 174, .55); }
  50% { box-shadow: 0 0 0 8px rgba(84, 228, 174, 0); }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 145px;
  gap: 16px;
}

.dashboard-main,
.mini-card,
.metric-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.045);
}

.dashboard-main {
  padding: 20px;
  border-radius: 20px;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dashboard-heading span {
  color: rgba(255,255,255,.42);
  font-size: .68rem;
}

.dashboard-heading h3 {
  margin: 7px 0 0;
  font-size: 1rem;
}

.growth-badge {
  color: #73e8be !important;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(77, 223, 168, .1);
}

.chart-area {
  margin-top: 18px;
}

.line-chart {
  width: 100%;
  height: 210px;
}

.chart-line {
  fill: none;
  stroke: url(#lineGlow);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(70,215,255,.38));
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.8s cubic-bezier(.22, 1, .36, 1);
}

.chart-fill {
  fill: url(#fillGlow);
  opacity: 0;
  transition: opacity 1.2s ease .4s;
}

.hero-visual.visible .chart-line {
  stroke-dashoffset: 0;
}

.hero-visual.visible .chart-fill {
  opacity: 1;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.3);
  font-size: .65rem;
}

.dashboard-side {
  display: grid;
  gap: 16px;
}

.mini-card {
  border-radius: 20px;
  padding: 16px;
  display: grid;
  place-items: center;
  gap: 14px;
}

.mini-card > span {
  text-align: center;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
}

.ring {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, #0b2138 72%, transparent 73% 99%),
    conic-gradient(var(--blue-2) calc(var(--value) * 1%), rgba(255,255,255,.08) 0);
}

.ring-alt {
  background:
    radial-gradient(circle closest-side, #0b2138 72%, transparent 73% 99%),
    conic-gradient(var(--violet) calc(var(--value) * 1%), rgba(255,255,255,.08) 0);
}

.ring strong {
  font-size: 1rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
}

.metric-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
}

.metric-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon.cyan {
  color: var(--cyan);
  background: rgba(79, 224, 255, .1);
}

.metric-icon.violet {
  color: #9c9aff;
  background: rgba(125, 124, 255, .12);
}

.metric-icon.blue {
  color: #4ea5ff;
  background: rgba(54, 145, 255, .12);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-size: .86rem;
}

.metric-card span {
  margin-top: 4px;
  color: rgba(255,255,255,.42);
  font-size: .63rem;
}

.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 13px;
  color: #fff;
  background: rgba(10, 34, 56, .8);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  font-size: .78rem;
  opacity: 0;
  transform: translateY(12px);
  translate: var(--tag-shift, 0 0);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform;
}

.hero-visual.visible .floating-tag {
  opacity: 1;
}

.hero-visual.visible .tag-one {
  animation: floatTag 5.5s ease-in-out .5s infinite;
  transition-delay: .45s;
  transform: translateY(0);
}

.hero-visual.visible .tag-two {
  animation: floatTag 6.2s ease-in-out .7s infinite reverse;
  transition-delay: .65s;
  transform: translateY(0);
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tag-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(77, 221, 167, .12);
  color: #71e5ba;
}

.tag-one {
  left: -36px;
  top: 78px;
}

.tag-two {
  right: -28px;
  bottom: 74px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: 72px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

.trust-label {
  color: rgba(255,255,255,.46);
  font-size: .78rem;
  line-height: 1.6;
}

.logo-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255,255,255,.45);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

.section-heading {
  margin-bottom: 56px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.why-copy h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 14px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading p,
.section-intro,
.proof-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease,
    box-shadow .45s ease;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(26, 143, 255, .12),
    transparent 45%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 174, 255, .14), transparent 70%);
  transition: transform .3s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(35, 143, 255, .3);
  box-shadow: 0 32px 64px rgba(14, 45, 75, .16);
}

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

.service-card:hover::after {
  transform: scale(1.25);
}

.service-card .service-icon {
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.06);
}

.service-card a span {
  display: inline-block;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover a span {
  transform: translate(3px, -2px);
}

.service-card.featured {
  grid-column: span 6;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(70, 225, 255, .18), transparent 35%),
    linear-gradient(145deg, #0a223a, #0d3458);
  border-color: rgba(255,255,255,.07);
}

.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:nth-child(n+3) {
  grid-column: span 4;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 16px;
  background: #eaf6ff;
}

.featured .service-icon {
  color: var(--blue-2);
  background: rgba(75, 215, 255, .1);
}

.service-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #9aa8b7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.featured .service-number {
  color: rgba(255,255,255,.35);
}

.service-card h3 {
  margin: 34px 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.38rem;
}

.service-card p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.featured p {
  color: rgba(255,255,255,.62);
}

.service-card a,
.text-link,
.industry-content a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: .9rem;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), color .3s ease;
}

.text-link:hover,
.industry-content a:hover {
  transform: translateY(-3px);
}

.text-link span,
.industry-content a span {
  display: inline-block;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.text-link:hover span,
.industry-content a:hover span {
  transform: translate(3px, -2px);
}

.featured a {
  color: var(--blue-2);
}

.why-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 141, 255, .14), transparent 30%),
    linear-gradient(135deg, #071827, #0a2138 50%, #0b2c4b);
}

.why-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.visual-panel {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(6, 19, 33, .55);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 90px rgba(0,0,0,.25);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.56);
  font-size: .8rem;
}

.panel-date {
  margin-left: auto;
  color: #75e3b9;
}

.big-stat {
  padding: 38px 0 28px;
}

.big-stat > span {
  display: block;
  color: rgba(255,255,255,.42);
  font-size: .78rem;
  margin-bottom: 10px;
}

.big-stat strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 5.2rem;
  letter-spacing: -.08em;
  line-height: 1;
}

.big-stat em {
  font-style: normal;
  font-size: 2rem;
  color: var(--blue-2);
}

.progress {
  height: 8px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 0 !important;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-2), var(--violet));
  transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
}

.why-section .progress.is-animated span {
  width: 98% !important;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-grid > div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .4s ease;
}

.stat-grid > div:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.07);
  border-color: rgba(72, 214, 255, .22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.stat-grid span,
.stat-grid strong {
  display: block;
}

.stat-grid span {
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  margin-bottom: 8px;
  transition: color .3s ease;
}

.stat-grid > div:hover span {
  color: rgba(255,255,255,.62);
}

.stat-grid strong {
  font-size: 1.35rem;
}

.stat-grid em {
  font-style: normal;
  color: var(--blue-2);
  font-size: .86rem;
}

.team-row {
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 16px;
}

.team-bubbles {
  display: flex;
}

.team-bubbles span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border-radius: 50%;
  color: #09213b;
  background: linear-gradient(145deg, #d7f5ff, #92c4ff);
  border: 3px solid #0c263f;
  font-size: .65rem;
  font-weight: 800;
}

.team-bubbles span:first-child {
  margin-left: 0;
}

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

.team-row > div:last-child span {
  margin-top: 4px;
  color: rgba(255,255,255,.4);
  font-size: .74rem;
}

.section-kicker.light {
  color: var(--blue-2);
}

.why-copy h2 {
  max-width: 720px;
}

.why-copy .section-intro {
  margin-top: 24px;
  color: rgba(255,255,255,.58);
}

.benefit-list {
  margin: 38px 0;
  display: grid;
  gap: 24px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 12px;
  margin: -12px;
  border-radius: 16px;
  transition:
    background .4s cubic-bezier(.22, 1, .36, 1),
    transform .4s cubic-bezier(.22, 1, .36, 1);
}

.benefit-item:hover {
  background: rgba(255,255,255,.05);
  transform: translateX(8px);
}

.benefit-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-2);
  background: rgba(72, 214, 255, .09);
  border: 1px solid rgba(72, 214, 255, .12);
  font-weight: 800;
  font-size: .78rem;
  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    background .35s ease,
    border-color .35s ease;
}

.benefit-item:hover .benefit-badge {
  transform: translateY(-2px);
  background: rgba(72, 214, 255, .14);
  border-color: rgba(72, 214, 255, .28);
}

.benefit-item h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}

.benefit-item p {
  margin: 0;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
}

.why-copy .text-link {
  color: var(--blue-2);
}

.why-copy .text-link:hover {
  color: #7eecff;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered p {
  margin-top: 20px;
}

.process-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(50, 161, 255, .12), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(127, 124, 255, .06), transparent 30%),
    linear-gradient(180deg, #f8fbff, #ffffff 40%, #f3f7fb);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-line {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bfd3e7 10%, #bfd3e7 90%, transparent);
}

.process-step {
  position: relative;
  z-index: 2;
  padding-top: 0;
  transition: transform .35s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step:hover .step-index {
  border-color: rgba(26, 143, 255, .35);
  box-shadow: 0 14px 32px rgba(13, 53, 89, .14);
  color: #0d6fd8;
}

.process-step:hover .step-icon {
  transform: scale(1.08);
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  border: 1px solid #dce8f3;
  box-shadow: 0 10px 28px rgba(13, 53, 89, .08);
  font-weight: 800;
  font-size: .75rem;
  transition: border-color .3s ease, box-shadow .3s ease, color .3s ease;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 28px 0 22px;
  border-radius: 15px;
  color: var(--blue);
  background: #edf7ff;
  transition: transform .3s ease;
}

.step-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.industries-section {
  background: var(--surface-2);
}

.industry-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 143, 255, .25);
  box-shadow: 0 28px 60px rgba(14, 45, 75, .12);
}

.industry-card:hover .industry-visual {
  transform: scale(1.04);
}

.industry-large {
  grid-column: span 2;
  grid-template-columns: 1.1fr .9fr;
  min-height: 380px;
}

.industry-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background-color: #0b2844;
  isolation: isolate;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.industry-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  filter: saturate(.88) contrast(1.04);
  transform: scale(1.01);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.industry-card:hover .industry-visual > img {
  transform: scale(1.075);
  filter: saturate(1) contrast(1.06);
}

.industry-visual::before,
.industry-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.industry-visual::before {
  width: 220px;
  height: 220px;
  right: -50px;
  top: -50px;
  background: rgba(70, 220, 255, .18);
}

.industry-visual::after {
  width: 150px;
  height: 150px;
  left: -30px;
  bottom: -40px;
  background: rgba(124, 124, 255, .16);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(3, 17, 31, .08), rgba(3, 17, 31, .68)),
    linear-gradient(180deg, transparent 40%, rgba(4, 17, 31, .32) 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.025) 43px);
}

.industry-code {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.healthcare-visual {
  background: linear-gradient(135deg, #0c2b45, #0d6989);
}

.insurance-visual {
  background: linear-gradient(135deg, #161f49, #3f5fad);
}

.support-visual {
  background: linear-gradient(135deg, #112848, #136879);
}

.hospitality-visual {
  background: linear-gradient(135deg, #3d2f2b, #a66a3f);
}

.security-visual {
  background: linear-gradient(135deg, #2b1f24, #8f3b38);
}

.industry-content {
  padding: 34px;
  align-self: center;
}

.industry-content > span {
  color: var(--blue);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

.industry-content h3 {
  margin: 12px 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.industry-large .industry-content h3 {
  font-size: 2.2rem;
}

.industry-content p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.proof-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(82, 120, 255, .18), transparent 30%),
    linear-gradient(140deg, #061522, #0a2035);
}

.proof-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.proof-copy p {
  margin-top: 24px;
  color: rgba(255,255,255,.5);
}

.proof-nav {
  margin-top: 34px;
  display: flex;
  gap: 10px;
}

.proof-nav button {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.proof-nav button:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.testimonial-slider {
  position: relative;
  min-height: 390px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  padding: 46px;
  border-radius: 28px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 35px 80px rgba(0,0,0,.2);
  transition: opacity .45s ease, transform .45s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-mark {
  color: var(--blue-2);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .7;
}

.testimonial > p {
  margin: 28px 0 42px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.55;
  letter-spacing: -.02em;
}

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

.person-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #0b2239;
  background: linear-gradient(145deg, #def6ff, #93c3ff);
  font-weight: 800;
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}


.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person span {
  margin-top: 5px;
  color: rgba(255,255,255,.44);
  font-size: .78rem;
}

.contact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(42, 153, 255, .15);
  filter: blur(30px);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-copy p {
  margin-top: 24px;
  color: rgba(255,255,255,.56);
  max-width: 620px;
}

.contact-points {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  color: rgba(255,255,255,.72);
}

.contact-points div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-points span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #77e6ba;
  background: rgba(74, 223, 170, .1);
}

.contact-form {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}

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

.form-group {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.form-group label {
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.form-group input,
.form-group select {
  height: 54px;
  padding: 0 15px;
}

.form-group textarea {
  padding: 15px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.28);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(69, 206, 255, .6);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 4px rgba(69, 206, 255, .08);
}

.form-group select option {
  color: #111;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.38);
  text-align: center;
  font-size: .76rem;
}

.site-footer {
  color: rgba(255,255,255,.66);
  background: #03101d;
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.75;
  font-size: .9rem;
}

.footer-grid h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: .9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid a,
.footer-grid span {
  font-size: .82rem;
}

.footer-grid a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .76rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  padding: 16px 20px;
  border-radius: 14px;
  color: #fff;
  background: #0b2c46;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

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

/* Keep card hover lift after scroll-reveal (reveal.visible otherwise wins transform) */
.service-card.reveal,
.service-card.reveal.visible {
  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease,
    box-shadow .45s ease,
    opacity .45s ease !important;
  transition-delay: 0s !important;
}

.service-card.reveal.visible:hover,
.service-card.reveal:hover {
  transform: translateY(-10px);
  border-color: rgba(35, 143, 255, .3);
  box-shadow: 0 32px 64px rgba(14, 45, 75, .16);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

.magnetic {
  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s cubic-bezier(.22, 1, .36, 1),
    background .3s ease,
    border-color .3s ease;
}

.btn.magnetic > span,
.btn.magnetic > svg {
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.logo-list span {
  transition: color .3s ease, transform .3s ease, opacity .3s ease;
  opacity: .7;
}

.logo-list span:hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-progress {
    display: none !important;
  }

  /* Disable decorative/autoplay motion only — keep intentional hover transitions */
  .status-dot,
  .floating-tag,
  .hero-orb,
  .chart-line,
  .chart-fill,
  .progress span {
    animation: none !important;
    transition: none !important;
  }

  /* Instantly show content, but do not kill hover transitions on cards */
  .reveal,
  .hero-animate {
    opacity: 1;
    transform: none;
  }

  .reveal:not(.service-card):not(.industry-card):not(.process-step),
  .hero-animate {
    transition: none !important;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .chart-fill {
    opacity: 1;
  }

  .floating-tag {
    opacity: 1;
    transform: none;
  }

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .hero-dots {
    opacity: .55;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout,
  .why-layout,
  .contact-layout,
  .proof-grid {
    gap: 48px;
  }

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

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

  .dashboard-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(n+1) {
    grid-column: span 6;
  }

  .industry-card {
    grid-template-columns: 190px 1fr;
  }
}

@media (max-width: 900px) {
  .cursor-dot,
  .cursor-ring,
  .mouse-glow,
  .mouse-glow-trail,
  .hero-spotlight {
    display: none !important;
  }

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: auto;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(4, 17, 31, .96);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    padding-top: 120px;
  }

  .hero-layout,
  .why-layout,
  .contact-layout,
  .proof-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-bottom: 40px;
  }

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

  .eyebrow {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }

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

  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

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

  .logo-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .split-heading {
    gap: 20px;
  }

  .section-heading p {
    max-width: 700px;
  }

  .why-visual {
    order: 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }

  .process-line {
    display: none;
  }

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

  .industry-large {
    grid-column: span 1;
  }

  .testimonial-slider {
    min-height: 430px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section,
  .contact-section {
    padding: 84px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .main-nav {
    inset: 72px 12px auto 12px;
  }

  .hero {
    padding-top: 110px;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-trust {
    align-items: flex-start;
    text-align: left;
  }

  .visual-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .dashboard-main {
    padding: 15px;
  }

  .dashboard-side,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .floating-tag {
    display: none;
  }

  .trust-strip {
    margin-top: 40px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .why-copy h2,
  .proof-copy h2,
  .contact-copy h2 {
    font-size: 2.45rem;
  }

  .service-card,
  .service-card:nth-child(n+1) {
    grid-column: span 12;
    min-height: auto;
  }

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

  .industry-card,
  .industry-large {
    grid-template-columns: 1fr;
  }

  .industry-visual {
    min-height: 220px;
  }

  .industry-large .industry-content h3 {
    font-size: 1.8rem;
  }

  .testimonial-slider {
    min-height: 510px;
  }

  .testimonial {
    padding: 30px;
  }

  .testimonial > p {
    font-size: 1.25rem;
  }

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

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
