/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
  --font-primary: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --clr-bg: #06060E;
  --clr-bg-2: #0B0B1A;
  --clr-bg-3: #101025;
  --clr-surface: #13132B;
  --clr-surface-2: #1A1A3E;

  --clr-primary: #7C3AED;
  --clr-primary-light: #A78BFA;
  --clr-primary-dark: #5B21B6;
  --clr-accent: #06D6A0;
  --clr-accent-2: #00E5FF;
  --clr-warm: #F472B6;

  --clr-text: #F1F1F8;
  --clr-text-2: #C4C4E0;
  --clr-text-3: #8888B0;
  --clr-text-muted: #5A5A80;

  --glow-primary: 0 0 80px rgba(124, 58, 237, 0.3);
  --glow-accent: 0 0 60px rgba(6, 214, 160, 0.2);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--clr-primary); color: white; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================
   UTILITY
   ================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-accent), var(--clr-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-primary-light);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--clr-text);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-2);
  max-width: 600px;
  line-height: 1.8;
}

/* Reveal animation base state */
.reveal { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-60px); }
.reveal-right { opacity: 0; transform: translateX(60px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* ================================================
   CUSTOM CURSOR GLOW (desktop only)
   ================================================ */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ================================================
   NOISE OVERLAY — static SVG, GPU composited
   ================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  will-change: transform;
  transform: translateZ(0);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(6, 6, 14, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 180px;
  width: auto;
  display: block;
  margin: -55px 0;
}
.footer-logo-img {
  height: 140px;
  margin: -40px 0;
}
.nav-logo span { color: var(--clr-primary-light); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-2);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--clr-text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white !important;
  transition: var(--transition);
  border: 1px solid rgba(167, 139, 250, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   HERO SECTION — PERFORMANCE OPTIMIZED
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  contain: layout style;
}

/* SOFT GRADIENT ORBS — NO filter:blur(), pure radial-gradient with wide spread
   These look identical to blurred circles but cost zero GPU each frame */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.35) 0%, rgba(124, 58, 237, 0.15) 25%, rgba(124, 58, 237, 0.05) 50%, transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle at center, rgba(6, 214, 160, 0.22) 0%, rgba(6, 214, 160, 0.1) 25%, rgba(6, 214, 160, 0.03) 50%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.14) 0%, rgba(0, 229, 255, 0.06) 25%, rgba(0, 229, 255, 0.02) 50%, transparent 70%);
  top: 30%; left: 50%;
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translateZ(0) translate(0, 0) scale(1); }
  33% { transform: translateZ(0) translate(30px, -30px) scale(1.05); }
  66% { transform: translateZ(0) translate(-20px, 20px) scale(0.95); }
}

/* Grid lines background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-primary-light);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  will-change: transform, opacity;
  transform: translateZ(0);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(6, 214, 160, 0); }
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.hero h1 .line { display: block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-text-2);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: white;
  box-shadow: 0 4px 25px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--clr-primary-light);
  background: rgba(124, 58, 237, 0.08);
  transform: translateY(-3px);
}
.btn-icon {
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon { transform: translateX(3px); }

/* Floating badges around hero */
.hero-float {
  position: absolute;
  background: rgba(19, 19, 43, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  animation: float-badge 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(124, 58, 237, 0.08);
  will-change: transform, opacity;
  transform: translateZ(0);
}
.hero-float-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.hero-float-text { font-size: 15px; font-weight: 700; white-space: nowrap; letter-spacing: 0.2px; }
.hero-float-sub { font-size: 13px; color: var(--clr-accent); font-weight: 500; }

.hero-float-1 {
  top: 22%; left: 3%;
  animation-delay: 0s;
}
.hero-float-2 {
  top: 18%; right: 3%;
  animation-delay: -2s;
}
.hero-float-3 {
  bottom: 18%; left: 4%;
  animation-delay: -4s;
}
.hero-float-4 {
  bottom: 16%; right: 3%;
  animation-delay: -1s;
}
@keyframes float-badge {
  0%, 100% { transform: translateZ(0) translateY(0px); }
  50% { transform: translateZ(0) translateY(-12px); }
}

/* ================================================
   CLIENTS / LOGOS BAR
   ================================================ */
.logos-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  position: relative;
  z-index: 2;
}
.logos-bar p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}
.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.logos-track:hover { opacity: 0.7; }
.logo-item {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text-3);
  white-space: nowrap;
}

/* ================================================
   STATS BAR
   ================================================ */
.stats {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-card {
  background: var(--clr-bg-2);
  padding: 44px 30px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: var(--clr-surface);
}
.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--clr-text-3);
  font-weight: 500;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header .section-subtitle {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: var(--glow-primary);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-icon-amazon   { background: linear-gradient(135deg, rgba(255,153,0,0.15), rgba(255,153,0,0.05)); }
.service-icon-ebay     { background: linear-gradient(135deg, rgba(0,100,210,0.15), rgba(0,100,210,0.05)); }
.service-icon-digital  { background: linear-gradient(135deg, rgba(6,214,160,0.15), rgba(6,214,160,0.05)); }
.service-icon-web      { background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05)); }
.service-icon-ai       { background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(0,229,255,0.05)); }
.service-icon-brand    { background: linear-gradient(135deg, rgba(244,114,182,0.15), rgba(244,114,182,0.05)); }

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--clr-text-2);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  font-size: 12px;
  color: var(--clr-text-3);
  font-weight: 500;
}

/* ================================================
   ABOUT / WHY US
   ================================================ */
.about {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-surface);
}
.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent);
  z-index: -1;
}
.about-stats-float {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: rgba(19, 19, 43, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  z-index: 3;
}
.about-stats-float .stat-number {
  font-size: 2rem;
}

.about-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-content > p {
  color: var(--clr-text-2);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(6, 214, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-accent);
  font-size: 16px;
}
.about-feature h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.about-feature p {
  font-size: 13px;
  color: var(--clr-text-3);
}

/* ================================================
   PROCESS / HOW WE WORK
   ================================================ */
.process {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--clr-bg-2);
}
.process-header {
  text-align: center;
  margin-bottom: 70px;
}
.process-header .section-subtitle { margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent), var(--clr-accent-2), var(--clr-warm));
  opacity: 0.3;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:nth-child(1) .process-number {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
  color: var(--clr-primary-light);
  border: 2px solid rgba(124, 58, 237, 0.3);
}
.process-step:nth-child(2) .process-number {
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.2), rgba(6, 214, 160, 0.05));
  color: var(--clr-accent);
  border: 2px solid rgba(6, 214, 160, 0.3);
}
.process-step:nth-child(3) .process-number {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.05));
  color: var(--clr-accent-2);
  border: 2px solid rgba(0, 229, 255, 0.3);
}
.process-step:nth-child(4) .process-number {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.05));
  color: var(--clr-warm);
  border: 2px solid rgba(244, 114, 182, 0.3);
}
.process-step:hover .process-number { transform: scale(1.15); }
.process-step h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--clr-text-3);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ================================================
   RESULTS / SHOWCASE
   ================================================ */
.results {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.results-header {
  text-align: center;
  margin-bottom: 70px;
}
.results-header .section-subtitle { margin: 0 auto; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.result-card:hover {
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-6px);
}
.result-metric {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.result-card:nth-child(1) .result-metric { color: var(--clr-accent); }
.result-card:nth-child(2) .result-metric { color: var(--clr-primary-light); }
.result-card:nth-child(3) .result-metric { color: var(--clr-accent-2); }
.result-label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.result-desc {
  font-size: 14px;
  color: var(--clr-text-3);
  line-height: 1.65;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--clr-bg-2);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--clr-text-2);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card:nth-child(1) .testimonial-avatar { background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(124,58,237,0.1)); color: var(--clr-primary-light); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, rgba(6,214,160,0.3), rgba(6,214,160,0.1)); color: var(--clr-accent); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, rgba(0,229,255,0.3), rgba(0,229,255,0.1)); color: var(--clr-accent-2); }
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--clr-text-3);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--clr-surface), var(--clr-surface-2));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(124,58,237,0.06), transparent, rgba(6,214,160,0.04), transparent);
  animation: cta-spin 12s linear infinite;
}
@keyframes cta-spin {
  to { transform: rotate(360deg); }
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 1.1rem;
  color: var(--clr-text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-text-2);
}
.cta-feature svg { width: 18px; height: 18px; color: var(--clr-accent); flex-shrink: 0; }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--clr-bg-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-info > p {
  color: var(--clr-text-2);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-method-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-method-text p {
  font-size: 14px;
  color: var(--clr-text-3);
}
.contact-method-text a {
  color: var(--clr-primary-light);
  transition: var(--transition-fast);
}
.contact-method-text a:hover { color: var(--clr-accent); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; fill: var(--clr-text-2); }

/* Form */
.contact-form {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--clr-text-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-bg-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xs);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-muted);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border: none;
  border-radius: var(--radius-xs);
  color: white;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--clr-text-3);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-2);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--clr-text-3);
  transition: var(--transition-fast);
}
.footer-col ul a:hover { color: var(--clr-primary-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--clr-text-muted);
}

/* ================================================
   MARQUEE SECTION
   ================================================ */
.marquee-section {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  white-space: nowrap;
  padding: 0 40px;
  color: rgba(255,255,255,0.04);
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.marquee-item .filled {
  -webkit-text-stroke: 0;
  color: rgba(124, 58, 237, 0.12);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================================================
   RESPONSIVE — See mobile.css
   ================================================ */
