/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: #08080c;
  color: #ffffff;
  overflow-x: hidden;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

/* ─── ANIMATED MESH GRADIENT BACKGROUND ─── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* GPU layer for better performance */
  transform: translateZ(0);
  contain: strict;
}
.mesh-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px); /* Reduced from 120px */
  opacity: 0.45; /* Slightly reduced */
  will-change: transform;
  transform: translateZ(0); /* Force GPU layer */
}
.mesh-bg .orb--indigo {
  width: 500px; height: 500px; /* Reduced size */
  background: radial-gradient(circle, #5b4cff 0%, #3a1dff 40%, transparent 70%);
  top: -10%; left: -8%;
  animation: drift-1 24s ease-in-out infinite alternate; /* Slower animation */
}
.mesh-bg .orb--teal {
  width: 450px; height: 450px; /* Reduced size */
  background: radial-gradient(circle, #2dd4b8 0%, #1a9e8a 40%, transparent 70%);
  bottom: -15%; right: -5%;
  animation: drift-2 28s ease-in-out infinite alternate; /* Slower animation */
}
.mesh-bg .orb--violet {
  width: 400px; height: 400px; /* Reduced size */
  background: radial-gradient(circle, #a86bef 0%, #7a3ec8 40%, transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%) translateZ(0);
  animation: drift-3 26s ease-in-out infinite alternate; /* Slower animation */
}
.mesh-bg .orb--accent {
  width: 280px; height: 280px; /* Reduced size */
  background: radial-gradient(circle, #4f6cff 0%, transparent 70%);
  top: 20%; right: 15%;
  animation: drift-4 30s ease-in-out infinite alternate; /* Slower animation */
}
@keyframes drift-1 { to { transform: translate3d(60px, 45px, 0) scale(1.08); } }
@keyframes drift-2 { to { transform: translate3d(-50px, -35px, 0) scale(1.1); } }
@keyframes drift-3 { to { transform: translate3d(30px, -60px, 0) scale(0.92); } }
@keyframes drift-4 { to { transform: translate3d(-45px, 30px, 0) scale(1.12); } }

/* Remove heavy SVG noise overlay - use simple gradient instead */
.mesh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,12,0.1) 0%, transparent 50%, rgba(8,8,12,0.2) 100%);
  pointer-events: none;
}

/* ─── GLASS UTILITY ─── */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px); /* Reduced from 40px */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 100%) 1;
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px); /* Reduced from 40px */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0); /* GPU acceleration */
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ─── SHIMMER BORDER EFFECT ─── */
/* Only apply to nav and footer, not all glass cards (reduces animations) */
.nav-inner::after,
.footer-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.4) 48%,
    rgba(91,76,255,0.5) 50%,
    rgba(45,212,184,0.4) 52%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: shimmer-border 8s ease-in-out infinite; /* Slower: 8s instead of 4s */
  pointer-events: none;
  opacity: 0.6;
}

.footer-inner::after { animation-delay: 4s; }

@keyframes shimmer-border {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; z-index: 1; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px;
}
.nav-inner {
  max-width: 1200px; margin: 16px auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(8,8,12,0.85); /* More solid background, less blur needed */
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  position: relative;
  transform: translateZ(0);
}
.nav-inner::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.nav-logo { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-logo .gradient-text {
  background: linear-gradient(135deg, #5b4cff 0%, #2dd4b8 50%, #a86bef 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Hamburger Button */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
  position: relative; z-index: 110;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block; width: 20px; height: 1.5px; background: #fff;
  border-radius: 2px; transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hamburger span:nth-child(1) { margin-bottom: 5px; }
.hamburger span:nth-child(2) { margin-bottom: 5px; }
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Backdrop */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 104;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* Mobile Menu Panel (slides from right) */
.mobile-menu {
  position: fixed; top: 16px; right: 16px; z-index: 106;
  width: 280px; padding: 28px 24px;
  display: flex; flex-direction: column; align-items: stretch; gap: 6px;
  background: rgba(18,18,24,0.92); /* More solid */
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  transform: translateX(calc(100% + 32px)); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.03) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0); opacity: 1; pointer-events: auto;
}
.mobile-menu a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 1rem;
  font-weight: 500; letter-spacing: 0.04em; padding: 14px 16px;
  border-radius: 12px; transition: background 0.25s, color 0.25s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-menu .menu-cta {
  margin-top: 12px; padding: 14px 20px; border-radius: 12px; font-size: 0.95rem; font-weight: 600;
  color: #fff; background: rgba(91,76,255,0.35); border: 1px solid rgba(91,76,255,0.5);
  cursor: pointer; letter-spacing: 0.04em; transition: all 0.3s; text-align: center;
}
.mobile-menu .menu-cta:hover { background: rgba(91,76,255,0.55); box-shadow: 0 0 24px rgba(91,76,255,0.4); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 160px 24px 120px;
}
.hero-content { max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #5b4cff; box-shadow: 0 0 8px #5b4cff; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #5b4cff 0%, #2dd4b8 50%, #a86bef 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.5);
  max-width: 560px; margin: 0 auto 48px; font-weight: 400;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 42px; border-radius: 16px; font-size: 1rem; font-weight: 600;
  color: #fff; letter-spacing: 0.04em; cursor: pointer;
  text-decoration: none; /* For anchor tag */
  background: rgba(91,76,255,0.2); border: 1px solid rgba(91,76,255,0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(91,76,255,0.4) 0%, rgba(45,212,184,0.2) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.hero-cta:hover { box-shadow: 0 0 40px rgba(91,76,255,0.35), 0 0 80px rgba(91,76,255,0.15); transform: translateY(-2px); }
.hero-cta:hover::before { opacity: 1; }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta .gradient-text {
  background: linear-gradient(135deg, #5b4cff 0%, #2dd4b8 50%, #a86bef 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-cta svg { position: relative; z-index: 1; }

/* ─── ABOUT SECTION ─── */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}



/* Story card - the main glass panel */
.about-story1 {
  padding: 48px 56px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.about-story2 {
  padding: 48px 56px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.about-problem { margin-bottom: 40px; }
.about-story1 h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
.about-story1 p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  text-align: center;
}
.about-story1 p:last-child { margin-bottom: 0; }
.about-story1 strong { color: rgba(255,255,255,0.85); }

.about-story2 h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  
}
.about-story2 p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  text-align: center;
}
.about-story2 p:last-child { margin-bottom: 0; }
.about-story2 strong { color: rgba(255,255,255,0.85); }

/* Why Choose heading */
.about-why-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 38px;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Three pillars grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.about-card {
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.about-card:hover { transform: translateY(-6px); }
.about-card:nth-child(1):hover { box-shadow: 0 8px 48px rgba(91,76,255,0.15); }
.about-card:nth-child(2):hover { box-shadow: 0 8px 48px rgba(45,212,184,0.15); }
.about-card:nth-child(3):hover { box-shadow: 0 8px 48px rgba(168,107,239,0.15); }

.about-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.about-icon--speed {
  background: rgba(91,76,255,0.15);
  box-shadow: 0 0 24px rgba(91,76,255,0.2);
  color: #5b4cff;
}
.about-icon--design {
  background: rgba(45,212,184,0.15);
  box-shadow: 0 0 24px rgba(45,212,184,0.2);
  color: #2dd4b8;
}
.about-icon--human {
  background: rgba(168,107,239,0.15);
  box-shadow: 0 0 24px rgba(168,107,239,0.2);
  color: #a86bef;
}

.about-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

/* About Card Images */
.about-card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
}
.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s;
}
.about-card:hover .about-card-image img {
  opacity: 1;
  transform: scale(1.03);
}
/* Colored border accents for each card */
.about-card:nth-child(1) .about-card-image {
  border-color: rgba(91,76,255,0.25);
}
.about-card:nth-child(2) .about-card-image {
  border-color: rgba(45,212,184,0.25);
}
.about-card:nth-child(3) .about-card-image {
  border-color: rgba(168,107,239,0.25);
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.about-card strong { color: rgba(255,255,255,0.75); }

/* ─── 3-STEP PROCESS ─── */
.process-section {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
  position: relative;
}
.process-card:hover { transform: translateY(-6px); }
.process-card:nth-child(1):hover { box-shadow: 0 8px 48px rgba(91,76,255,0.15); }
.process-card:nth-child(2):hover { box-shadow: 0 8px 48px rgba(45,212,184,0.15); }
.process-card:nth-child(3):hover { box-shadow: 0 8px 48px rgba(168,107,239,0.15); }

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.process-card:nth-child(1) .process-number {
  background: linear-gradient(135deg, #5b4cff 0%, #3a1dff 100%);
  box-shadow: 0 0 24px rgba(91,76,255,0.3);
}
.process-card:nth-child(2) .process-number {
  background: linear-gradient(135deg, #2dd4b8 0%, #1a9e8a 100%);
  box-shadow: 0 0 24px rgba(45,212,184,0.3);
}
.process-card:nth-child(3) .process-number {
  background: linear-gradient(135deg, #a86bef 0%, #7a3ec8 100%);
  box-shadow: 0 0 24px rgba(168,107,239,0.3);
}

.process-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.process-time {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.process-card:nth-child(1) .process-time { color: #5b4cff; }
.process-card:nth-child(2) .process-time { color: #2dd4b8; }
.process-card:nth-child(3) .process-time { color: #a86bef; }

.process-card p:last-child {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* ─── SERVICES ─── */
.services { padding: 120px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(91,76,255,0.8); text-align: center; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; text-align: center;
  margin-bottom: 64px; letter-spacing: -0.01em;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  padding: 44px 36px; border-radius: 24px; text-align: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.service-card:hover { transform: translateY(-8px); }
.service-card:nth-child(1):hover { box-shadow: 0 8px 48px rgba(91,76,255,0.15); }
.service-card:nth-child(2):hover { box-shadow: 0 8px 48px rgba(45,212,184,0.15); }
.service-card:nth-child(3):hover { box-shadow: 0 8px 48px rgba(168,107,239,0.15); }
.service-card:nth-child(4):hover { box-shadow: 0 8px 48px rgba(245,158,11,0.15); }
/* Service Badge Carousel */
.service-badge-carousel {
  width: 100%;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.service-badge-carousel--indigo {
  border-color: rgba(91,76,255,0.2);
  box-shadow: 0 0 20px rgba(91,76,255,0.1);
}
.service-badge-carousel--teal {
  border-color: rgba(45,212,184,0.2);
  box-shadow: 0 0 20px rgba(45,212,184,0.1);
}
.service-badge-carousel--violet {
  border-color: rgba(168,107,239,0.2);
  box-shadow: 0 0 20px rgba(168,107,239,0.1);
}
.service-badge-carousel--amber {
  border-color: rgba(245,158,11,0.2);
  box-shadow: 0 0 20px rgba(245,158,11,0.1);
}

.service-badge-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 12px 0;
  animation: service-marquee 18s linear infinite; /* Slower: 18s instead of 12s */
  will-change: transform;
  transform: translateZ(0);
}
.service-card:hover .service-badge-track {
  animation-play-state: paused;
}

@keyframes service-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.service-badge svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
.service-badge-carousel--indigo .service-badge { color: rgba(91,76,255,0.7); }
.service-badge-carousel--indigo .service-badge svg { fill: #5b4cff; opacity: 0.8; }
.service-badge-carousel--teal .service-badge { color: rgba(45,212,184,0.7); }
.service-badge-carousel--teal .service-badge svg { fill: #2dd4b8; opacity: 0.8; }
.service-badge-carousel--violet .service-badge { color: rgba(168,107,239,0.7); }
.service-badge-carousel--violet .service-badge svg { fill: #a86bef; opacity: 0.8; }
.service-badge-carousel--amber .service-badge { color: rgba(245,158,11,0.7); }
.service-badge-carousel--amber .service-badge svg { fill: #f59e0b; opacity: 0.8; }

.service-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.service-card p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* ─── PACKAGES / PRICING ─── */
.packages { padding: 120px 0; }
.packages-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-top: -40px;
  margin-bottom: 64px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.package-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.package-card:hover { transform: translateY(-8px); }
.package-card:nth-child(1):hover { box-shadow: 0 8px 48px rgba(91,76,255,0.15); }
.package-card:nth-child(2):hover { box-shadow: 0 8px 48px rgba(45,212,184,0.2); }
.package-card:nth-child(3):hover { box-shadow: 0 8px 48px rgba(168,107,239,0.15); }

/* Featured card styling */
.package-card--featured {
  background: rgba(45,212,184,0.08);
  border-color: rgba(45,212,184,0.25);
}
.package-card--featured::before {
  background: linear-gradient(135deg, rgba(45,212,184,0.4) 0%, rgba(45,212,184,0.05) 50%, rgba(45,212,184,0.1) 100%);
}
.package-badge {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2dd4b8 0%, #1a9e8a 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(45,212,184,0.3);
}

.package-header { text-align: center; margin-bottom: 24px; }
.package-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.package-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

.package-price {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.package-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  vertical-align: top;
  margin-right: 2px;
}
.package-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.package-card--featured .package-price .amount {
  background: linear-gradient(135deg, #2dd4b8 0%, #1a9e8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 32px;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.package-features li:last-child { border-bottom: none; }
.package-features svg {
  flex-shrink: 0;
  color: #5b4cff;
}
.package-card:nth-child(2) .package-features svg { color: #2dd4b8; }
.package-card:nth-child(3) .package-features svg { color: #a86bef; }

.package-cta {
  display: block;
  text-align: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(91,76,255,0.2);
  border: 1px solid rgba(91,76,255,0.4);
  transition: all 0.3s;
}
.package-cta:hover {
  background: rgba(91,76,255,0.35);
  box-shadow: 0 0 24px rgba(91,76,255,0.3);
}
.package-cta--featured {
  background: linear-gradient(135deg, rgba(45,212,184,0.3) 0%, rgba(45,212,184,0.15) 100%);
  border-color: rgba(45,212,184,0.5);
}
.package-cta--featured:hover {
  background: linear-gradient(135deg, rgba(45,212,184,0.45) 0%, rgba(45,212,184,0.25) 100%);
  box-shadow: 0 0 24px rgba(45,212,184,0.4);
}

.packages-note {
  text-align: center;
  margin-top: 48px;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
}
.packages-note a {
  color: #5b4cff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.packages-note a:hover { color: #2dd4b8; }

/* ─── TECH STACK MARQUEE ─── */
.tech-stack { padding: 100px 0 120px; }
.marquee-wrapper {
  overflow: hidden; padding: 32px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 40s linear infinite; /* Slower: 40s instead of 30s */
  will-change: transform;
  transform: translateZ(0);
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.3);
  white-space: nowrap; letter-spacing: 0.04em; transition: color 0.3s;
}
.marquee-item:hover { color: rgba(255,255,255,0.6); }
.marquee-item svg { width: 24px; height: 24px; opacity: 0.4; }

/* ─── FOOTER ─── */
.footer { padding: 60px 0 40px; position: relative; z-index: 1; }
.footer-inner {
  padding: 40px 48px; border-radius: 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  position: relative;
}
.footer-inner::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.footer-logo { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  /* Services - 2 columns on tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* About Section */
  .about-story { padding: 32px 24px; }
  .about-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-bg-21 { font-size: 200px; }

  /* Process Section */
  .process-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-section { margin-top: 60px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .package-card--featured { order: -1; }
  .packages-subtitle { margin-top: -30px; margin-bottom: 48px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .mesh-bg .orb { animation: none; }
  .marquee-track, .service-badge-track { animation: none; }
}
