/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #8b5cf6;
  --fuchsia: #d946ef;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --bg: #000000;
  --bg2: #0a0a0a;
  --zinc9: #18181b;
  --zinc8: #27272a;
  --gray4: #9ca3af;
  --gray3: #6b7280;
  --white: #ffffff;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --nav-h: 80px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8b5cf6, #ec4899);
  border-radius: 4px;
}

::selection {
  background: rgba(139, 92, 246, 0.3);
  color: white;
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700;800;900&display=swap');

h1,
h2,
h3,
.display {
  font-family: var(--font-body);
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.grad-text {
  background: linear-gradient(135deg, var(--purple), var(--fuchsia), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-text-pf {
  background: linear-gradient(135deg, var(--purple), var(--fuchsia));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #7c3aed, #d946ef, #db2777);
  color: white;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(168, 85, 247, .6);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, .2);
  color: white;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, .15), rgba(217, 70, 239, .15));
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: 9999px;
  backdrop-filter: blur(20px);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.badge span {
  background: linear-gradient(135deg, #a78bfa, #e879f9, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== NAVIGATION ===== */
.nav {
  width: 65%;
  margin: auto;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgb(0 0 0 / 65%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  box-shadow: 0 0 28px #9968e747;
}

@media (max-width: 1250px) {
  .nav {
    width: 80%;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav {
    width: 90%;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .nav {
    width: 95%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nav {
    width: 95%;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.nav-logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  transition: transform .3s;
  flex-shrink: 0;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(6deg);
}

.nav-logo-text {
  display: block;
}

@media (min-width: 480px) {
  .nav-logo-text {
    display: block;
  }
}

.nav-logo-name {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: white;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: .65rem;
  color: var(--purple);
  font-weight: 700;
  letter-spacing: .1em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: .5rem 1.25rem;
  color: var(--gray4);
  font-weight: 600;
  text-decoration: none;
  border-radius: .75rem;
  transition: color .3s;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, .2), rgba(217, 70, 239, .2));
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: .75rem;
  pointer-events: none;
}

.nav-cta {
  display: none;
  margin-left: 1rem;
  padding: .6rem 1.5rem;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow .3s, transform .2s;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(139, 92, 246, .5);
  transform: scale(1.03);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .97);
  backdrop-filter: blur(30px);
  z-index: 99;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77, 0, .18, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--gray4);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 1rem;
  transition: color .2s, background .2s;
  margin-bottom: .5rem;
}

.mobile-link:hover,
.mobile-link.active {
  color: white;
  background: linear-gradient(135deg, rgba(139, 92, 246, .2), rgba(217, 70, 239, .2));
}

.mobile-cta {
  display: block;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  color: white;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: 4rem 0 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

footer h3 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: white;
}

footer ul {
  list-style: none;
}

footer ul li+li {
  margin-top: .75rem;
}

footer a {
  color: var(--gray4);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

footer a:hover {
  color: white;
}

.footer-desc {
  color: var(--gray4);
  line-height: 1.6;
  margin: 1rem 0 1.25rem;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform .2s, box-shadow .2s;
}

.footer-social:hover {
  transform: scale(1.15) rotate(5deg);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .08), transparent);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--gray3);
  font-size: .875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139, 92, 246, .4);
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s, box-shadow .2s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, .6);
}

/* ===== CARDS ===== */
.card-glow {
  position: relative;
  border-radius: var(--radius-2xl);
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139, 92, 246, .0), rgba(217, 70, 239, .0));
  transition: background .4s;
  pointer-events: none;
  z-index: 0;
}

.card-glow:hover::before {
  background: linear-gradient(135deg, rgba(139, 92, 246, .3), rgba(217, 70, 239, .3));
  filter: blur(12px);
}

.card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--zinc9), var(--zinc8), var(--zinc9));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-2xl);
  transition: border-color .3s;
}

.card-glow:hover .card-inner {
  border-color: rgba(255, 255, 255, .25);
}

/* ===== SECTION BASICS ===== */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-badge {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -.03em;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--gray4);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page heading */
.page-header {
  text-align: center;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
}

.page-header h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gray4);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BG EFFECTS ===== */
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

/* ===== ANIMATIONS ===== */
.will-animate {
  opacity: 0;
}

.gsap-from-below {
  transform: translateY(60px);
}

.gsap-from-left {
  transform: translateX(-60px);
}

.gsap-from-right {
  transform: translateX(60px);
}

.gsap-scale-in {
  transform: scale(0.8);
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-40px, 20px) scale(.95);
  }
}

.orb-float {
  animation: float 20s ease-in-out infinite;
}

.orb-float-2 {
  animation: float 25s ease-in-out infinite reverse;
  animation-delay: -8s;
}

.orb-float-3 {
  animation: float 18s ease-in-out infinite;
  animation-delay: -4s;
}

.service-tab-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-tab-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .service-tab-card {
    grid-template-columns: 1.2fr 1fr;
  }
}

.stc-visual {
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--zinc9), var(--zinc8));
  border: 1px solid rgba(255, 255, 255, .08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.stc-icon-bg {
  font-size: clamp(6rem, 15vw, 9rem);
  opacity: .12;
  position: absolute;
}

.stc-icon-center {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stc-icon-center svg {
  width: 48px;
  height: 48px;
  color: white;
}

.stc-body {
  padding: .5rem 0;
}

.stc-tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: 9999px;
}

.stc-body h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
}

.stc-body p {
  color: var(--gray4);
  line-height: 1.7;
  font-size: 1.05rem;
}

.stc-dots {
  display: flex;
  gap: .5rem;
  margin-top: 2rem;
}

.stc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: all .3s;
}

.stc-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--purple);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(to bottom, black, rgba(88, 28, 135, .07), black);
}

.why-card {
  padding: 2.5rem;
  height: 100%;
  border-radius: var(--radius-2xl);
  background: var(--zinc9);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: default;
}

.why-card:hover {
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-10px);
}

.why-num {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--gray4);
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, .18), transparent 65%);
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: .9;
    transform: scale(1.15);
  }
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-inner p {
  color: #d1d5db;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 3rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  --hero-mx: 0;
  --hero-my: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at calc(50% + var(--hero-mx)*30px) calc(50% + var(--hero-my)*20px), rgba(139, 92, 246, .14), transparent 55%);
  transition: background-position .25s ease;
}

.hero-orb1,
.hero-orb2,
.hero-orb3 {
  transition: transform .25s ease, opacity .25s ease;
}

.hero-orb1 {
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  background: rgba(139, 92, 246, .25);
  top: 15%;
  left: 10%;
  transform: translate(calc(var(--hero-mx)*20px), calc(var(--hero-my)*10px));
}

.hero-orb2 {
  width: min(450px, 55vw);
  height: min(450px, 55vw);
  background: rgba(217, 70, 239, .25);
  bottom: 15%;
  right: 10%;
  transform: translate(calc(var(--hero-mx)*-15px), calc(var(--hero-my)*-15px));
}

.hero-orb3 {
  width: min(350px, 40vw);
  height: min(350px, 40vw);
  background: rgba(6, 182, 212, .15);
  top: 40%;
  right: 25%;
  transform: translate(calc(var(--hero-mx)*10px), calc(var(--hero-my)*25px));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: calc(var(--nav-h) + 3rem) 1.25rem 4rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-badge {
  margin-bottom: 2rem;
}

.hero-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.75rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(217, 70, 239, .18), rgba(6, 182, 212, .18));
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: 9999px;
  backdrop-filter: blur(20px);
}

.hero-badge-inner span {
  background: linear-gradient(135deg, #a78bfa, #e879f9, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: .9rem;
}

.hero-badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(3.5rem, 13vw, 9rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}

.hero-title .line1 {
  color: white;
  display: block;
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, #8b5cf6, #d946ef, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .line3 {
  color: white;
  display: block;
  font-size: .75em;
  margin-top: .1em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gray4);
  max-width: 50rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
  font-weight: 300;
}

.hero-sub strong {
  background: linear-gradient(135deg, #a78bfa, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-val {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #a78bfa, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: .3rem;
}

.hero-stat-label {
  color: var(--gray4);
  font-size: .9rem;
}

/* ===== SERVICES (SCROLL CARDS) ===== */
.services-section {
  background: black;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, .05), transparent 65%);
  pointer-events: none;
}

.services-slider {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.services-slider .slider-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(139, 92, 246, .12), transparent 25%),
    radial-gradient(circle at 85% 45%, rgba(6, 182, 212, .12), transparent 22%);
  pointer-events: none;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.slider-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  will-change: transform;
}

.slider-card {
  position: relative;
  min-width: 280px;
  flex: 0 0 280px;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
}

.slider-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, .16), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, .12), transparent 22%);
  opacity: .45;
  pointer-events: none;
}

.slider-card-inner {
  position: relative;
  z-index: 1;
}

.slider-card .service-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .1);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  border: 1px solid rgba(255, 255, 255, .12);
}

.slider-card h3 {
  margin: 1.25rem 0 .85rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.slider-card p {
  color: var(--gray4);
  line-height: 1.75;
  font-size: .95rem;
}

@media (min-width: 768px) {
  .slider-card {
    min-width: 320px;
  }
}

.service-stack {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-card {
    margin-top: -2rem;
  }

  .stack-card:nth-child(1),
  .stack-card:nth-child(2) {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .service-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .stack-card {
    margin-top: -2rem;
  }

  .stack-card:nth-child(-n+4) {
    margin-top: 0;
  }
}

.stack-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(24, 24, 27, .94), rgba(39, 39, 42, .98));
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
  transform-origin: center bottom;
}

.stack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(139, 92, 246, .12), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(6, 182, 212, .1), transparent 20%);
  opacity: .55;
  pointer-events: none;
}

.stack-card h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #a78bfa;
  margin-bottom: .85rem;
}

.stack-card h3 {
  font-size: 1.25rem;
  margin-bottom: .85rem;
  line-height: 1.15;
}

.stack-card p {
  color: var(--gray4);
  line-height: 1.75;
  font-size: .95rem;
}

.stack-card span {
  display: inline-flex;
  padding: .45rem .85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .08);
  color: white;
  font-size: .78rem;
  font-weight: 700;
}


/* SECTION */
.tab-card-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* PANEL WRAPPER */
#tabPanels {
  position: relative;
  height: 60vh;
}

/* PANEL */
.tab-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: rgba(19, 19, 19, 0.06);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}


.tab-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, .16), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, .12), transparent 22%);
  opacity: .45;
  pointer-events: none;
}

.gsap-curve-images {
  position: relative;
  height: 500px;
  margin-bottom: 80px;
}

.gsap-curve-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 360px;
  object-fit: cover;

  transform: translate(-50%, -50%);
  border-radius: 20px;

  will-change: transform;
}

#gsapImg1 {
  z-index: 5;
}

#gsapImg2 {
  z-index: 4;
}

#gsapImg3 {
  z-index: 3;
}

#gsapImg4 {
  z-index: 2;
}

#gsapImg5 {
  z-index: 1;
}


@media (max-width: 767px) {
  .gsap-curve-images {
    position: relative;
    height: 250px;
    margin-bottom: -50px;
  }

  .gsap-curve-img {
    width: 100px;
    height: 135px;
  }
  .section-title{
    font-size: 25px !important;
  }
  .section-sub{
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }
  .stc-visual{
    aspect-ratio: unset !important;
    width: max-content;
    padding: 10px;
  }
  .stc-icon-bg{
    display: none;
  }
  .stc-icon-center{
    width: 35px;
    height: 35px;
  }
  .stc-icon-center svg{
    width: 17px;
    height: 17px;
  }
  .service-tab-card{
    gap: 0px !important;
  }
  .stc-body{
    padding: 0px !important;
  }
}