* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
section[id] {
  scroll-margin-top: 100px;
}
@media (max-width: 720px) {
  section[id] {
    scroll-margin-top: 80px;
  }
}
body {
  font-family: Inter, sans-serif;
  background: #000;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
}
body.loading {
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  a,
  body,
  button,
  input,
  select,
  textarea {
    cursor: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.2s ease;
}
.cursor-dot.cursor-big {
  width: 84px;
  height: 84px;
}
body:has(img:hover) .cursor-dot {
  opacity: 0 !important;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999999;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 20px;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}
.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: min(250px, 68vw);
  margin: 0 auto 28px;
  position: relative;
  overflow: hidden;
}
.loader-logo img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.loader-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 2;
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0% {
    left: -150%;
  }
  100% {
    left: 200%;
  }
}
.loader-line {
  width: min(360px, 74vw);
  height: 4px;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
  margin: 0 auto 16px;
}
.loader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
  animation: loaderProgress 2s ease forwards;
}
.loader-content p {
  color: #94a3b8;
  font-size: 15px;
}
@keyframes logoShine {
  0%,
  45% {
    transform: translateX(-120%) rotate(8deg);
  }
  100%,
  72% {
    transform: translateX(120%) rotate(8deg);
  }
}
@keyframes logoCrossShine {
  0%,
  56% {
    transform: translateY(120%) rotate(-8deg);
  }
  100%,
  84% {
    transform: translateY(-120%) rotate(-8deg);
  }
}
@keyframes loaderProgress {
  to {
    width: 100%;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.navbar {
  max-width: 1180px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  width: 142px;
  min-width: 142px;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a:hover {
  color: #38bdf8;
}
.nav-btn,
.primary-btn {
  background: #f8fafc;
  color: #020617;
  padding: 10px 10px 10px 24px;
  border-radius: 50px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
}
.nav-btn span,
.primary-btn span {
  width: 42px;
  height: 42px;
  background: #020617;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.nav-btn:hover,
.primary-btn:hover {
  transform: translateY(-4px);
}
.nav-btn:hover span,
.primary-btn:hover span {
  transform: translateX(4px);
}
.secondary-btn {
  padding: 15px 26px;
  border-radius: 50px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.65);
  font-weight: 800;
  transition: 0.3s ease;
}
.secondary-btn:hover {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-4px);
}
.menu-btn {
  display: none;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 28px;
}
.hero {
  max-width: 1180px;
  margin: auto;
  padding: 70px 20px 90px;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.14),
    transparent 62%
  );
  left: -220px;
  top: 40px;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.13),
    transparent 62%
  );
  right: -220px;
  bottom: 20px;
  z-index: -1;
}
.hero-content {
  opacity: 0;
  animation: heroIn 1s ease forwards;
  animation-delay: 1s;
}
.badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 32px);
  line-height: 1.2;
  margin-bottom: 28px;
  font-weight: 900;
}
.hero-mobile-br {
  display: none;
}
.typewriter-word {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: #38bdf8;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.38);
  padding-right: 4px;
  position: relative;
  display: inline-block;
  min-height: 1em;
  white-space: nowrap;
}
.typewriter-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-18px);
  animation: letterEnter 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}
.typewriter-letter.exiting {
  animation: letterExit 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes letterEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes letterExit {
  to {
    opacity: 0;
    transform: translateY(18px);
  }
}
.hero-text {
  max-width: 620px;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.stats {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
}
.stats div {
  flex: 1;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.13);
}
.stats strong {
  display: block;
  font-size: 26px;
}
.stats span {
  color: #94a3b8;
  font-size: 13px;
}
.hero-visual {
  opacity: 0;
  animation: visualIn 1s ease forwards;
  animation-delay: 1.15s;
}
.dashboard-card {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.9)
  );
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}
.dashboard-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(56, 189, 248, 0.14);
  filter: blur(80px);
  right: -80px;
  top: -80px;
}
.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}
.dashboard-top span {
  width: 12px;
  height: 12px;
  background: rgba(148, 163, 184, 0.45);
  border-radius: 50%;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-header p {
  color: #94a3b8;
}
.dashboard-header strong {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  padding: 6px 12px;
  border-radius: 30px;
}
.dashboard-box {
  padding: 22px;
  border-radius: 24px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  margin-bottom: 18px;
}
.dashboard-box span,
.dashboard-grid span {
  color: #94a3b8;
  font-size: 14px;
}
.dashboard-box h2,
.dashboard-box h3 {
  margin-top: 8px;
  font-size: 26px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dashboard-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.dashboard-grid strong {
  display: block;
  margin-top: 6px;
}
.contact,
.process,
.section {
  max-width: 1180px;
  margin: auto;
  padding: 85px 20px;
}
.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}
.section-head p,
.small-title {
  color: #38bdf8;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-sub-desc {
  color: #94a3b8 !important;
  font-weight: 500 !important;
  font-size: 17px;
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 0 !important;
}
.contact h2,
.cta h2,
.section-head h2,
.why h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.5px;
}
.process-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.premium-services {
  max-width: 1180px;
  margin: auto;
  padding: 110px 20px 90px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
  position: relative;
}
.premium-services::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -260px;
  top: 110px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.18),
    transparent 64%
  );
  pointer-events: none;
}
.services-sticky {
  position: sticky;
  top: 120px;
  min-height: 420px;
  padding-top: 12px;
}
.premium-services .small-title {
  color: #7c3aed;
}
.services-sticky h2 {
  max-width: 520px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -2px;
}
.services-sticky p:not(.small-title) {
  color: #a1a1aa;
  max-width: 450px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
}
.services-stack {
  display: grid;
  gap: 0;
  padding-bottom: clamp(180px, 24vh, 280px);
  position: relative;
}
.service-stack-card {
  min-height: 390px;
  padding: 34px;
  margin-bottom: 0;
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transform-origin: center top;
  will-change: transform;
  position: sticky;
  top: 118px;
  z-index: 1;
}
.service-stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(124, 58, 237, 0.22),
      transparent 32%
    ),
    radial-gradient(circle at 85% 80%, rgba(56, 189, 248, 0.1), transparent 28%);
  opacity: 0.9;
  pointer-events: none;
}
.service-stack-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    transparent 42%
  );
  pointer-events: none;
}
.service-stack-card > * {
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.42);
  font-weight: 900;
}
.service-stack-card span {
  display: block;
  color: #7c3aed;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -4px;
  margin-bottom: 26px;
  opacity: 0.95;
}
.service-stack-card h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.service-stack-card p {
  max-width: 540px;
  color: #a1a1aa;
  font-size: 17px;
  line-height: 1.7;
}
.process-grid div,
.service-card,
.work-card {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.86)
  );
  border: 1px solid rgba(148, 163, 184, 0.13);
  padding: 30px;
  border-radius: 26px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}
.process-grid div:hover,
.service-card:hover,
.work-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.42);
}
.process-grid span,
.service-card span {
  color: #38bdf8;
  font-weight: 900;
}
.process-grid h3,
.service-card h3,
.work-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}
.process-grid p,
.service-card p,
.work-card p {
  color: #94a3b8;
}
.premium-services .service-stack-card {
  min-height: 390px;
  padding: 34px;
  margin-bottom: 0;
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transform-origin: center top;
  will-change: transform;
  position: sticky;
  overflow: hidden;
}
.premium-services .service-stack-card:hover {
  transform: none;
  border-color: rgba(124, 58, 237, 0.44);
}
.why {
  max-width: 1180px;
  margin: auto;
  padding: 75px 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: start;
  position: relative;
}
.why-copy p:not(.small-title) {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 18px;
}
.why-list {
  display: grid;
  gap: 12px;
}
.why-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(226, 232, 240, 0.16);
  backdrop-filter: blur(14px);
  padding: 16px 18px;
  border-radius: 18px;
  color: #e2e8f0;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.why-list div::before {
  content: "✓";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #38bdf8;
  color: #020617;
  font-size: 14px;
  font-weight: 900;
}
.motion-section {
  max-width: 1180px;
  margin: 40px auto 75px;
  padding: 24px;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(
      circle at 22% 24%,
      rgba(56, 189, 248, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95));
  overflow: hidden;
  position: relative;
}
.motion-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  animation: motionGrid 18s linear infinite;
  pointer-events: none;
}
.motion-visual {
  min-height: 380px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(56, 189, 248, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 35% 35%,
      rgba(192, 132, 252, 0.14),
      transparent 34%
    ),
    rgba(2, 6, 23, 0.46);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.motion-dot,
.motion-ring,
.motion-sweep,
.motion-visual::after,
.motion-visual::before {
  position: absolute;
  pointer-events: none;
}
.motion-visual::before {
  content: "";
  width: 360px;
  height: 360px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      transparent,
      rgba(56, 189, 248, 0.58),
      transparent 32%,
      rgba(129, 140, 248, 0.5),
      transparent 65%
    ),
    radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 62%);
  transform: translate(-50%, -50%);
  filter: blur(0.5px);
  animation: motionSpin 11s linear infinite;
}
.motion-visual::after {
  content: "";
  width: 540px;
  height: 160px;
  left: -24%;
  top: 22%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.34),
    rgba(255, 255, 255, 0.2),
    transparent
  );
  filter: blur(16px);
  transform: rotate(-18deg);
  animation: motionSweep 5.2s ease-in-out infinite;
}
.motion-ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.32);
  transform: translate(-50%, -50%);
}
.motion-ring-one {
  width: 260px;
  height: 260px;
  animation: motionOrbitOne 7.8s ease-in-out infinite;
}
.motion-ring-two {
  width: 360px;
  height: 190px;
  border-color: rgba(192, 132, 252, 0.3);
  animation: motionOrbitTwo 9.4s ease-in-out infinite;
}
.motion-sweep {
  width: 2px;
  height: 150%;
  left: 48%;
  top: -25%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    rgba(56, 189, 248, 0.35),
    transparent
  );
  transform: rotate(28deg);
  animation: motionBeam 5.2s ease-in-out infinite;
}
.motion-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 26px rgba(125, 211, 252, 0.95);
  animation: motionFloat 4.8s ease-in-out infinite;
}
.motion-dot-one {
  left: 25%;
  top: 26%;
}
.motion-dot-two {
  right: 22%;
  top: 34%;
  background: #c084fc;
  box-shadow: 0 0 26px rgba(192, 132, 252, 0.9);
  animation-delay: -1.4s;
}
.motion-dot-three {
  left: 52%;
  bottom: 22%;
  animation-delay: -2.2s;
}
.motion-content {
  position: relative;
  z-index: 2;
  padding: 20px 8px;
}
.motion-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.motion-content > p:not(.small-title) {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.7;
  margin: 18px 0 24px;
}
.motion-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.motion-metrics div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.14);
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(14px);
}
.motion-metrics span {
  color: #38bdf8;
  font-size: 13px;
  font-weight: 900;
}
.motion-metrics strong {
  display: block;
  margin-top: 8px;
  color: #f8fafc;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.75),
    rgba(2, 6, 23, 0.95)
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.work-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  box-shadow:
    0 24px 48px -15px rgba(2, 6, 23, 0.8),
    0 0 30px -5px rgba(56, 189, 248, 0.12) !important;
}
.work-card:hover::after {
  opacity: 1;
}
.work-category {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.work-card:hover .work-category {
  opacity: 1;
}
.work-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}
.work-card:hover h3 {
  color: #fff;
}
.work-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.work-card:hover p {
  color: #cbd5e1;
}
.work-img {
  height: 170px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  padding: 24px;
  transition:
    border-color 0.4s ease,
    background 0.4s ease;
}
.work-card:hover .work-img {
  border-color: rgba(56, 189, 248, 0.2);
  background: rgba(15, 23, 42, 0.45);
}
.work-img::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.14) 0,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.work-card:hover .work-img::before {
  opacity: 1;
  transform: scale(1.15);
}
.work-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover .work-img img {
  transform: scale(1.06);
}
.work-img.mockup {
  padding: 0 !important;
  height: 220px !important;
}
.work-img.mockup img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 17px !important;
}
@media (max-width: 950px) {
  .work-img.mockup {
    height: 200px !important;
  }
}
@media (max-width: 720px) {
  .work-img.mockup {
    height: 190px !important;
  }
}
.cta {
  max-width: 1180px;
  margin: 75px auto;
  padding: 85px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 36px;
}
.cta p {
  color: #cbd5e1;
  margin: 16px 0 30px;
}
.contact {
  max-width: 1180px;
  margin: auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: start;
}
.contact-desc {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin: 18px 0 28px;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.42);
}
.contact-card span {
  display: block;
  color: #38bdf8;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}
.contact-card strong {
  color: #f8fafc;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f8fafc;
  color: #020617;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-5px);
  background: #38bdf8;
}
.contact-form {
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.12),
      transparent 36%
    ),
    rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 30px;
  border-radius: 30px;
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input,
select,
textarea {
  width: 100%;
  padding: 17px;
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.58);
  color: #f8fafc;
  outline: 0;
  font-family: inherit;
  font-size: 15px;
}
select {
  appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: #64748b;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(56, 189, 248, 0.5);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form button {
  background: #f8fafc;
  color: #020617;
  border: none;
  padding: 17px 20px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.contact-form button span {
  transition: 0.3s ease;
}
.contact-form button:hover span {
  transform: translateX(5px);
}
.footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.08),
      transparent 30%
    ),
    #020617;
}
.footer-inner {
  max-width: 1180px;
  margin: auto;
  padding: 35px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 156px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.footer-links a,
.footer-social a {
  color: #cbd5e1;
  font-weight: 700;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #38bdf8;
  transform: translateY(-2px);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  color: #38bdf8;
  transform: translateY(-2px) scale(1.08);
}
.footer-bottom {
  max-width: 1180px;
  margin: auto;
  padding: 22px 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #64748b;
  font-size: 14px;
}
@media (max-width: 850px) {
  .contact {
    grid-template-columns: 1fr;
    padding: 72px 20px;
    gap: 32px;
  }
  .contact-desc {
    max-width: none;
    font-size: 17px;
  }
  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 46px 20px;
    gap: 28px;
  }
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }
  .footer-social {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
.back-to-top svg {
  transition: transform 0.3s ease;
}
.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top.active:hover {
  background: #38bdf8;
  color: #020617;
  border-color: #38bdf8;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.35);
}
.back-to-top.active:hover svg {
  transform: translateY(-2px);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes visualIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes motionGrid {
  to {
    background-position: 42px 42px;
  }
}
@keyframes motionSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes motionSweep {
  0%,
  30% {
    transform: translateX(-20%) rotate(-18deg);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100%,
  88% {
    transform: translateX(86%) rotate(-18deg);
    opacity: 0;
  }
}
@keyframes motionOrbitOne {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.08);
  }
}
@keyframes motionOrbitTwo {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-18deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(18deg) scale(1.06);
  }
}
@keyframes motionBeam {
  0%,
  35% {
    transform: translateX(-180px) rotate(28deg);
    opacity: 0;
  }
  58% {
    opacity: 0.9;
  }
  100%,
  90% {
    transform: translateX(220px) rotate(28deg);
    opacity: 0;
  }
}
@keyframes motionFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translate3d(22px, -18px, 0) scale(1.35);
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .contact,
  .footer-bottom,
  .footer-inner,
  .hero,
  .motion-section,
  .navbar,
  .premium-services,
  .process,
  .section,
  .why {
    max-width: 920px;
  }
  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }
  .hero-title {
    font-size: clamp(52px, 7vw, 76px);
  }
  .hero-text {
    font-size: 18px;
  }
  .dashboard-card {
    padding: 24px;
    border-radius: 28px;
  }
  .process-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid div,
  .service-card,
  .work-card {
    padding: 24px;
  }
}
@media (max-width: 950px) {
  a,
  body,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }
  .cursor-dot {
    display: none;
  }
  .navbar {
    padding: 16px 20px;
  }
  .contact,
  .hero,
  .why {
    grid-template-columns: 1fr;
  }
  .premium-services {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 20px 56px;
  }
  .services-sticky {
    min-height: auto;
    position: relative;
    top: auto;
  }
  .services-sticky h2,
  .services-sticky p:not(.small-title) {
    max-width: 760px;
  }
  .service-stack-card,
  .service-stack-card:nth-child(n) {
    position: relative;
    top: auto;
    min-height: auto;
    margin-bottom: 18px;
  }
  .hero {
    min-height: auto;
    padding: 78px 20px 64px;
    gap: 44px;
  }
  .hero::after,
  .hero::before {
    width: 420px;
    height: 420px;
  }
  .hero::before {
    left: -180px;
    top: 20px;
  }
  .hero::after {
    right: -190px;
    bottom: 130px;
  }
  .hero-title {
    max-width: 760px;
  }
  .hero-text {
    max-width: 700px;
  }
  .hero-actions {
    margin-bottom: 28px;
  }
  .stats div {
    flex: 1 1 180px;
  }
  .hero-visual {
    max-width: 680px;
    width: 100%;
  }
  .process-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process,
  .section,
  .why {
    padding: 68px 20px;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .why {
    gap: 30px;
  }
  .motion-section {
    grid-template-columns: 1fr;
    margin: 36px 20px 52px;
    padding: 20px;
    gap: 24px;
  }
  .motion-visual {
    min-height: 320px;
  }
  .cta {
    margin: 60px 20px;
    padding: 64px 24px;
    border-radius: 28px;
  }
  .nav-btn,
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-links.active {
    display: flex;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.16);
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  }
  .contact-card:hover,
  .nav-btn:hover,
  .primary-btn:hover,
  .process-grid div:hover,
  .secondary-btn:hover,
  .service-card:hover,
  .social-links a:hover,
  .work-card:hover {
    transform: none;
  }
}
@media (max-width: 720px) {
  .dashboard-grid,
  .process-grid,
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }
  .primary-btn,
  .secondary-btn {
    justify-content: center;
    width: 100%;
  }
  .hero-actions .primary-btn {
    width: auto;
    flex: 1;
  }
  .stats {
    display: grid;
    grid-template-columns: 1fr;
  }
  .stats div {
    min-width: 0;
  }
  .work-img {
    height: 140px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .navbar {
    padding: 14px 16px;
  }
  .logo {
    width: 122px;
    min-width: 122px;
  }
  .menu-btn {
    font-size: 25px;
  }
  .nav-links.active {
    top: 64px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 16px;
    gap: 18px;
  }
  .loader-logo {
    width: min(210px, 72vw);
    margin-bottom: 22px;
    border-radius: 14px;
  }
  .loader-line {
    width: min(300px, 76vw);
  }
  .loader-content p {
    font-size: 13px;
    line-height: 1.45;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-loader {
    padding: 18px;
  }
  .hero {
    padding: 58px 16px 48px;
    gap: 32px;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero-mobile-br {
    display: block;
  }
  .hero-text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .badge {
    padding: 8px 12px;
    font-size: 12px;
    margin-bottom: 18px;
  }
  .primary-btn,
  .secondary-btn {
    min-height: 52px;
    padding: 12px 16px;
    font-size: 15px;
  }
  .primary-btn span {
    width: 36px;
    height: 36px;
  }
  .hero-actions .primary-btn {
    padding: 10px 10px 10px 18px;
    font-size: 13.5px;
    gap: 8px;
    min-height: 48px;
  }
  .hero-actions .primary-btn span {
    width: 30px;
    height: 30px;
  }
  .stats strong {
    font-size: 24px;
  }
  .dashboard-card {
    padding: 18px;
    border-radius: 22px;
  }
  .dashboard-top {
    margin-bottom: 20px;
  }
  .dashboard-box {
    padding: 18px;
    border-radius: 18px;
  }
  .dashboard-box h2,
  .dashboard-box h3 {
    font-size: 21px;
    line-height: 1.25;
  }
  .dashboard-grid div {
    padding: 16px;
    border-radius: 15px;
  }
  .process,
  .section,
  .why {
    padding: 54px 16px;
  }
  .premium-services {
    padding: 48px 16px 38px;
    gap: 24px;
  }
  .premium-services::before {
    width: 340px;
    height: 340px;
    left: -190px;
    top: 40px;
  }
  .services-sticky h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1.4px;
  }
  .services-sticky p:not(.small-title) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }
  .premium-services .service-stack-card {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
  .service-stack-card span {
    font-size: 54px;
    letter-spacing: -2px;
    margin-bottom: 18px;
  }
  .service-stack-card h3 {
    font-size: 26px;
  }
  .service-stack-card p {
    font-size: 15px;
    line-height: 1.65;
  }
  .section-head {
    margin-bottom: 26px;
  }
  .contact h2,
  .cta h2,
  .section-head h2,
  .why h2 {
    font-size: clamp(28px, 9vw, 36px);
    letter-spacing: -1px;
  }
  .section-head p,
  .small-title {
    font-size: 14px;
  }
  .process-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid div,
  .service-card,
  .why-list div,
  .work-card {
    padding: 20px;
    border-radius: 20px;
  }
  .process-grid h3,
  .service-card h3,
  .work-card h3 {
    font-size: 20px;
  }
  .why {
    gap: 24px;
  }
  .why-copy p:not(.small-title) {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
  }
  .motion-section {
    margin: 30px 16px 40px;
    padding: 16px;
    border-radius: 20px;
    gap: 18px;
  }
  .motion-visual {
    min-height: 260px;
    border-radius: 18px;
  }
  .why-list {
    gap: 10px;
  }
  .why-list div {
    gap: 10px;
  }
  .why-list div::before {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
  .motion-content {
    padding: 0;
  }
  .motion-content h2 {
    font-size: clamp(28px, 9vw, 36px);
    letter-spacing: -1px;
  }
  .motion-content > p:not(.small-title) {
    font-size: 15px;
    line-height: 1.65;
    margin: 12px 0 16px;
  }
  .motion-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .motion-metrics div {
    padding: 14px;
    border-radius: 15px;
  }
  .work-img {
    height: 128px;
    border-radius: 16px;
    font-size: 19px;
    margin-bottom: 18px;
  }
  .cta {
    margin: 42px 16px;
    padding: 48px 18px;
    border-radius: 22px;
  }
  .cta p {
    margin: 14px 0 24px;
  }
  .contact {
    padding: 56px 16px;
    gap: 26px;
  }
  .contact-desc {
    font-size: 16px;
    line-height: 1.65;
    margin: 14px 0 22px;
  }
  .contact-cards {
    gap: 12px;
    margin-bottom: 20px;
  }
  .contact-card {
    padding: 16px;
    border-radius: 15px;
  }
  .social-links {
    gap: 10px;
  }
  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }
  .contact-form {
    padding: 18px;
    border-radius: 20px;
    gap: 13px;
  }
  input,
  select,
  textarea {
    padding: 15px;
    border-radius: 13px;
    font-size: 14px;
  }
  textarea {
    min-height: 130px;
  }
  .contact-form button {
    width: 100%;
    min-height: 52px;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: 15px;
  }
  .footer {
    margin-top: 24px;
  }
  .footer-inner {
    padding: 48px 20px 32px;
    gap: 36px 16px;
    text-align: left;
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > div:first-child {
    grid-column: 1/-1;
  }
  .footer-logo {
    width: 142px;
    margin-bottom: 18px;
  }
  .footer-inner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 100%;
  }
  .footer-links,
  .footer-social {
    justify-content: center;
  }
  .footer-links::before {
    color: #f8fafc;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    width: 100%;
    display: block;
    text-align: center;
  }
  .footer-social::before {
    color: #f8fafc;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    width: 100%;
    display: block;
    text-align: center;
  }
  .footer-links a:hover,
  .footer-social a:hover {
    transform: none;
  }
  .footer-bottom {
    padding: 24px 20px;
    align-items: flex-start;
    text-align: left;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
  }
}
@media (max-width: 380px) {
  .hero-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .contact-form button,
  .primary-btn,
  .secondary-btn {
    font-size: 14px;
  }
  .primary-btn {
    gap: 10px;
  }
  .hero-actions {
    gap: 8px;
  }
  .contact-card,
  .contact-form,
  .process-grid div,
  .service-card,
  .stats div,
  .why-list div,
  .work-card {
    padding: 16px;
  }
  .footer-bottom {
    font-size: 13px;
  }
}
.trust-strip {
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
  font-weight: 800;
  text-align: center;
}
.trust-item::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 999px;
  background: #38bdf8;
  color: #020617;
  font-weight: 900;
}
.featured-card {
  border-color: rgba(56, 189, 248, 0.36);
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.16),
      transparent 36%
    ),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.9));
}
.shopify-section {
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(56, 189, 248, 0.12),
      transparent 34%
    ),
    rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: end;
}
.head-desc {
  color: #94a3b8 !important;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  justify-self: end;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.feature-list span {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
  font-weight: 800;
}
.pro-list span:hover {
  border-color: rgba(56, 189, 248, 0.46);
  color: #7dd3fc;
}
.founder-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.founder-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.14),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
}
.founder-avatar {
  width: 200px;
  height: 200px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  color: #f8fafc;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
}
.founder-card h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.4px;
}
.founder-card p:not(.small-title) {
  max-width: 760px;
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 14px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.founder-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #cbd5e1;
  font-weight: 800;
}
.case-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #94a3b8;
  margin: 0 !important;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.case-card li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  opacity: 0.75;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.work-card:hover .case-card li {
  color: #e2e8f0;
}
.work-card:hover .case-card li::before {
  opacity: 1;
  transform: scale(1.1);
}
.testimonial-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(148, 163, 184, 0.35);
  padding: 0;
  cursor: pointer;
  position: relative;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.testimonial-dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}
.testimonial-dots button.tc-dot-active {
  width: 22px;
  border-radius: 4px;
  background: #38bdf8;
}
.testimonial-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 18px;
  padding-top: 15px;
  padding-bottom: 25px;
}
.testimonial-grid::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  flex: 0 0 calc((100% - (2 * 18px)) / 3);
  max-width: calc((100% - (2 * 18px)) / 3);
  scroll-snap-align: start;
  padding: 28px;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition:
    transform 0.42s cubic-bezier(0.34, 1.26, 0.64, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}
.testimonial-card strong {
  color: #facc15;
  display: block;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-card span {
  color: #38bdf8;
  font-weight: 900;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-float svg {
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.45);
  filter: brightness(1.08);
}
.whatsapp-float:hover svg {
  transform: scale(1.1);
}
@media (max-width: 950px) {
  .founder-card,
  .split-head,
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
  .head-desc {
    justify-self: start;
  }
  .founder-card {
    gap: 22px;
  }
}
@media (max-width: 720px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-item {
    text-align: left;
  }
  .feature-list span {
    width: 100%;
    text-align: center;
  }
  .founder-avatar {
    width: 118px;
    height: 118px;
    border-radius: 28px;
    font-size: 34px;
  }
  .back-to-top {
    right: 16px;
    bottom: 76px;
    width: 46px;
    height: 46px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.growth-strip {
  padding-top: 36px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.growth-card,
.project-range-section .range-grid > div,
.support-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.growth-card {
  padding: 26px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}
.growth-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  filter: blur(8px);
}
.growth-card span,
.range-grid span {
  color: #38bdf8;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.growth-card h3 {
  margin-top: 12px;
  font-size: 23px;
  line-height: 1.18;
}
.growth-card p {
  margin-top: 12px;
  color: #94a3b8;
  line-height: 1.7;
}
.industries-section {
  padding-top: 55px;
  padding-bottom: 55px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industries-grid > div {
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(2, 6, 23, 0.8)
  );
  border: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 16px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.industries-grid > div::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
  transition: 0.3s ease;
  flex-shrink: 0;
}
.industries-grid > div:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.industries-grid > div:hover::before {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}
.support-section {
  padding-top: 55px;
  padding-bottom: 55px;
}
.support-card {
  padding: 38px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.14),
      transparent 34%
    ),
    rgba(15, 23, 42, 0.72);
}
.support-card h2 {
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.1;
  letter-spacing: -1.4px;
}
.support-card p:not(.small-title) {
  margin-top: 16px;
  color: #94a3b8;
  line-height: 1.75;
  font-size: 17px;
}
.support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.support-list span {
  padding: 16px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #cbd5e1;
  font-weight: 850;
}
.support-list span::before {
  content: "✓";
  color: #38bdf8;
  margin-right: 8px;
  font-weight: 900;
}
.project-range-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.range-grid > div {
  padding: 24px;
  border-radius: 24px;
  min-height: 160px;
}
.range-grid strong {
  display: block;
  margin-top: 14px;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .growth-strip,
  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2) !important;
    max-width: calc((100% - 18px) / 2) !important;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .growth-strip,
  .industries-grid,
  .range-grid,
  .support-list {
    grid-template-columns: 1fr;
  }
  .growth-strip,
  .industries-section,
  .project-range-section,
  .support-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .growth-card,
  .industries-grid > div,
  .range-grid > div,
  .support-card {
    border-radius: 20px;
  }
  .support-card {
    padding: 26px;
  }
  .testimonial-grid {
    display: flex;
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 45px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: fit-content;
    scroll-snap-align: center;
    margin-right: 0;
    border-radius: 24px;
    transform: scale(0.95);
    transform-origin: center;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.35),
      0 2px 8px rgba(0, 0, 0, 0.2);
    transition:
      transform 0.42s cubic-bezier(0.34, 1.26, 0.64, 1),
      box-shadow 0.42s ease,
      z-index 0s;
    position: relative;
    z-index: 1;
  }
  .testimonial-card.tc-active {
    transform: scale(1);
    z-index: 3;
    box-shadow:
      0 24px 70px rgba(56, 189, 248, 0.18),
      0 8px 28px rgba(0, 0, 0, 0.42);
    border-color: rgba(56, 189, 248, 0.28);
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .testimonial-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.35);
    padding: 0;
    cursor: pointer;
    position: relative;
    transition:
      width 0.3s ease,
      background 0.3s ease;
  }
  .testimonial-dots button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
  }
  .testimonial-dots button.tc-dot-active {
    width: 22px;
    border-radius: 4px;
    background: #38bdf8;
  }
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.expertise-card {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.45),
    rgba(2, 6, 23, 0.35)
  );
  border: 1px solid rgba(148, 163, 184, 0.1);
  padding: 24px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.08),
    rgba(129, 140, 248, 0.04)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.expertise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(56, 189, 248, 0.05);
}
.expertise-card:hover::before {
  opacity: 1;
}
.expertise-card > * {
  position: relative;
  z-index: 1;
}
.expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: grid;
  place-items: center;
  color: #38bdf8;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.expertise-card:hover .expertise-icon {
  background: #38bdf8;
  color: #020617;
  transform: scale(1.05);
}
.expertise-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #f8fafc;
  margin: 0;
  letter-spacing: -0.4px;
}
.expertise-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 980px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .expertise-card {
    padding: 20px;
    border-radius: 18px;
  }
}
.ivr-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  position: relative;
}
.ivr-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.08),
    transparent 65%
  );
  right: -100px;
  top: 100px;
  pointer-events: none;
  z-index: -1;
}
.ivr-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.ivr-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ivr-badge-wrapper {
  margin-bottom: 8px;
}
.ivr-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.ivr-badge svg {
  margin-right: 8px;
  color: #38bdf8;
}
.ivr-title {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: -1.5px;
}
.ivr-title .gradient-text-blue {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ivr-desc {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 540px;
}
.ivr-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.ivr-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ivr-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.ivr-feature-item:hover .ivr-feature-icon {
  background: #38bdf8;
  color: #020617;
  transform: scale(1.05);
}
.ivr-feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 4px;
}
.ivr-feature-text p {
  font-size: 14px;
  color: #94a3b8;
}
.ivr-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.ivr-primary-btn {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}
.ivr-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.ivr-primary-btn .arrow {
  transition: transform 0.3s ease;
}
.ivr-primary-btn:hover .arrow {
  transform: translateX(4px);
}
.ivr-secondary-link {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
  padding-bottom: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ivr-secondary-link::after {
  content: " >";
  transition: transform 0.3s ease;
}
.ivr-secondary-link:hover {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.6);
}
.ivr-secondary-link:hover::after {
  transform: translateX(3px);
}
.ivr-visual {
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(56, 189, 248, 0.03);
  backdrop-filter: blur(12px);
  overflow: hidden;
  width: 100%;
}
.ivr-visual::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.ivr-menu-box {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  font-family: monospace;
  font-size: 13px;
  color: #e2e8f0;
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}
.ivr-menu-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ivr-menu-key {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}
.ivr-diagram-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.ivr-flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.ivr-flow-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.ivr-node-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 14px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.ivr-node-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.08);
}
.ivr-node-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
}
.ivr-node-card:hover .ivr-node-icon {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}
.ivr-node-card.active-node {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}
.ivr-node-card.active-node .ivr-node-icon {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}
.ivr-node-card span {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
}
.ivr-connectors-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.ivr-highlights-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding: 30px 10px;
  margin-top: 50px;
  gap: 20px;
  width: 100%;
}
.ivr-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 10px;
}
.ivr-highlight-item:not(:last-child) {
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}
.ivr-highlight-icon {
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 3px;
}
.ivr-highlight-text h4 {
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 6px;
}
.ivr-highlight-text p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .ivr-highlight-item:not(:last-child) {
    border-right: none;
  }
  .ivr-highlights-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 980px) {
  .ivr-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ivr-desc {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .ivr-highlights-bar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }
  .ivr-flow-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ivr-flow-row-bottom {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 16px;
  }
  .ivr-connectors-svg {
    display: none;
  }
  .ivr-visual {
    padding: 30px 16px;
  }
}
/* Work Slider CSS */
.work-slider-wrapper {
  position: relative;
  max-width: 100%;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-family: monospace;
}
.slider-arrow:hover {
  background: #38bdf8;
  color: #020617;
}
.slider-arrow.prev {
  left: -22px;
}
.slider-arrow.next {
  right: -22px;
}
@media (min-width: 951px) {
  .work-slider-wrapper .work-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .work-slider-wrapper .work-grid::-webkit-scrollbar {
    display: none;
  }
  .work-slider-wrapper .work-card {
    flex: 0 0 calc((100% - (2 * 18px)) / 3);
    max-width: calc((100% - (2 * 18px)) / 3);
    scroll-snap-align: start;
  }
}
@media (max-width: 950px) {
  .slider-arrow {
    display: none;
  }
}

.latest-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow:
    0 0 20px rgba(15, 23, 42, 0.5),
    0 0 10px rgba(15, 23, 42, 0.3);
  pointer-events: none;
}

/* ==========================================
   About Us Page Styles
   ========================================== */

.about-page {
  padding-top: 40px;
}

.about-breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.about-breadcrumbs a {
  transition: color 0.3s ease;
}

.about-breadcrumbs a:hover {
  color: #38bdf8;
}

.about-breadcrumbs span {
  color: #64748b;
}

.about-hero-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 40px;
  text-align: center;
}

.about-title-container {
  margin-bottom: 40px;
}

.about-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.about-main-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #f8fafc;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: rgba(15, 23, 42, 0.6);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 520px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card:hover img {
  transform: scale(1.03);
}

.about-intro-paragraph {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  color: #cbd5e1;
  font-weight: 500;
  text-align: justify;
}

/* Core Values Section */
.about-values-section {
  background: linear-gradient(180deg, #020617 0%, #000000 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  padding: 40px 20px;
}

.about-section-container {
  max-width: 1180px;
  margin: 0 auto;
}

.about-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.about-section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: 16px;
}

.about-section-head p {
  color: #94a3b8;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-value-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(56, 189, 248, 0.06),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.about-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.about-value-card:nth-child(2) .about-value-icon {
  background: rgba(129, 140, 248, 0.1);
  color: #818cf8;
}

.about-value-card:nth-child(3) .about-value-icon {
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
}

.about-value-card:nth-child(4) .about-value-icon {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-value-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 14px;
}

.about-value-card p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

/* Mission Section */
.about-mission-section {
  padding: 40px 20px;
  position: relative;
  background: #000;
}

.about-mission-card {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.5) 0%,
    rgba(30, 41, 59, 0.2) 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 32px;
  padding: 30px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-mission-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.about-mission-tag {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #38bdf8;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: block;
}

.about-mission-card h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.4;
  color: #f8fafc;
  margin-bottom: 24px;
}

.about-mission-card p {
  font-size: clamp(15px, 2vw, 17px);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

/* CTA Footer Join Us Section */
.about-join-section {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.about-join-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-join-container h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: 20px;
}

.about-join-container p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: justify;
}

.about-join-container .primary-btn {
  font-size: 16px;
  padding: 12px 12px 12px 30px;
}

/* OUR TEAM PAGE */
.team-page {
  background-color: #03080e;
  color: #fff;
  padding: 80px 20px;
  position: relative;
}
.team-page .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  position: relative;
}
.team-page .main-content {
  flex: 1;
  transition: all 0.3s ease;
}
.team-page .header-tag {
  text-align: center;
  color: #00f2fe;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-page .main-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.team-page .main-title span {
  color: #00f2fe;
}
.team-page .subtitle {
  text-align: center;
  color: #8b9bb4;
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}
.team-page .team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.team-page .team-card {
  flex: 0 1 calc(25% - 15px);
  min-width: 210px;
  max-width: calc(25% - 15px);
  background: rgba(13, 22, 33, 0.7);
  border: 1px solid #1a2b3c;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  cursor: default;
  transition: all 0.3s ease;
  position: relative;
}
.team-page .team-card:hover {
  border-color: #00f2fe;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.15);
}
.team-page .team-card.active {
  border-color: #00f2fe;
  background: rgba(13, 27, 42, 0.9);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}
.team-page .avatar-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #09131d;
  position: relative;
}
.team-page .team-card[data-id="1"] .avatar-icon {
  border: 2px solid #00d2ff;
  color: #00d2ff;
}
.team-page .team-card[data-id="2"] .avatar-icon {
  border: 2px solid #3a7bd5;
  color: #3a7bd5;
}
.team-page .team-card[data-id="3"] .avatar-icon {
  border: 2px solid #8e2de2;
  color: #8e2de2;
}
.team-page .team-card[data-id="4"] .avatar-icon {
  border: 2px solid #00f2fe;
  color: #00f2fe;
}
.team-page .team-card[data-id="5"] .avatar-icon {
  border: 2px solid #f2994a;
  color: #f2994a;
}
.team-page .team-card[data-id="6"] .avatar-icon {
  border: 2px solid #2f80ed;
  color: #2f80ed;
}
.team-page .team-card[data-id="7"] .avatar-icon {
  border: 2px solid #27ae60;
  color: #27ae60;
}
.team-page .member-name {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.team-page .member-role {
  font-size: 14px;
  color: #5c7593;
  margin-bottom: 20px;
  min-height: 38px;
}
.team-page .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-page .social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1c2d3d;
  color: #8b9bb4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.2s;
  text-decoration: none;
}
.team-page .social-btn:hover {
  border-color: #00f2fe;
  color: #00f2fe;
}
.team-page .cta-banner {
  background: linear-gradient(90deg, #09131d 0%, #0d1e2e 100%);
  border: 1px solid #1a2b3c;
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.team-page .cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-page .cta-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #00f2fe;
  background: rgba(0, 242, 254, 0.08);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  color: #00f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}
.team-page .cta-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-page .cta-text p {
  font-size: 13px;
  color: #8b9bb4;
}
.team-page .cta-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  white-space: nowrap;
  text-decoration: none;
}
.team-page .cta-btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
}
.team-page .details-panel {
  width: 340px;
  background: rgba(7, 16, 26, 0.95);
  border: 1px solid #1a2b3c;
  border-radius: 20px;
  padding: 30px 24px;
  display: none;
  flex-direction: column;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  animation: fadeIn 0.3s ease;
}
.team-page .details-panel.active,
#detailsPanel.active,
.details-panel.active {
  display: flex !important;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.team-page .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #8b9bb4;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}
.team-page .close-btn:hover {
  color: #fff;
}
.team-page .panel-header-tag {
  font-size: 12px;
  color: #00f2fe;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-page .panel-avatar {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  max-height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: #09131d;
  border: 2px solid #00f2fe;
  color: #00f2fe;
}
.team-page .panel-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-page .panel-role {
  text-align: center;
  font-size: 13px;
  color: #00f2fe;
  margin-bottom: 15px;
}
.team-page .panel-bio {
  font-size: 13px;
  color: #8b9bb4;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 25px;
  border-bottom: 1px solid #1a2b3c;
  padding-bottom: 20px;
}
.team-page .section-title {
  font-size: 12px;
  color: #00f2fe;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-page .skills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  border-bottom: 1px solid #1a2b3c;
  padding-bottom: 20px;
}
.team-page .skill-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1a2b3c;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #cbd5e1;
}
.team-page .stats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  border-bottom: 1px solid #1a2b3c;
  padding-bottom: 20px;
}
.team-page .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.team-page .stat-number {
  font-size: 16px;
  font-weight: 700;
  color: #00f2fe;
  min-width: 35px;
}
.team-page .stat-label {
  font-size: 13px;
  color: #8b9bb4;
}
.team-page .panel-connect {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.team-page .connect-btn {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1a2b3c;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.team-page .connect-btn:hover {
  border-color: #00f2fe;
  color: #00f2fe;
}
@media (max-width: 1200px) {
  .team-page .team-card {
    flex: 0 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
}
@media (max-width: 992px) {
  .team-page .container {
    flex-direction: column;
  }
  .team-page .details-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    border: none !important;
    background: rgba(3, 8, 14, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 999999 !important;
    padding: 60px 20px 40px 20px !important;
    overflow-y: auto !important;
    animation: mobileSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    align-items: center !important;
    text-align: center !important;
  }
  .team-page .details-panel .panel-avatar {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
    flex-shrink: 0 !important;
    aspect-ratio: 1/1 !important;
    font-size: 32px !important;
    margin: 0 auto 16px auto !important;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.25) !important;
  }
  .team-page .details-panel .panel-header-tag {
    justify-content: center !important;
    margin-bottom: 20px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
  }
  .team-page .details-panel .panel-name {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
  }
  .team-page .details-panel .panel-role {
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }
  .team-page .details-panel .panel-bio {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    max-width: 480px !important;
    margin: 0 auto 20px auto !important;
    padding-bottom: 18px !important;
  }
  .team-page .details-panel .section-title {
    justify-content: center !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .team-page .details-panel .skills-wrapper {
    justify-content: center !important;
    max-width: 480px !important;
    margin: 0 auto 20px auto !important;
    padding-bottom: 18px !important;
  }
  .team-page .details-panel .skill-badge {
    font-size: 12px !important;
    padding: 6px 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(0, 242, 254, 0.25) !important;
  }
  .team-page .details-panel .stats-list {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto 24px auto !important;
    padding-bottom: 18px !important;
    gap: 10px !important;
  }
  .team-page .details-panel .stat-item {
    background: rgba(13, 22, 33, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    justify-content: space-between !important;
  }
  .team-page .details-panel .stat-number {
    font-size: 17px !important;
    font-weight: 800 !important;
  }
  .team-page .details-panel .stat-label {
    font-size: 13px !important;
  }
  .team-page .details-panel .panel-connect {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }
  .team-page .details-panel .connect-btn {
    min-height: 46px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    background: rgba(0, 242, 254, 0.1) !important;
    border: 1px solid rgba(0, 242, 254, 0.35) !important;
  }
  .team-page .close-btn {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    font-size: 22px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    z-index: 1000000 !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  }
  .team-page .close-btn:hover {
    background: rgba(0, 242, 254, 0.35) !important;
    border-color: #00f2fe !important;
    color: #00f2fe !important;
  }
}
@keyframes mobileSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .team-page {
    padding: 50px 16px;
  }
  .team-page .main-title {
    font-size: 30px;
  }
  .team-page .subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .team-page .team-card {
    flex: 0 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 20px 15px;
  }
  .team-page .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .team-page .cta-left {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .team-page .cta-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}
@media (max-width: 520px) {
  .team-page .team-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
