*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Colors injected by WP plugin settings */

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* CANVAS BG */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* NAV */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(8,8,18,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(4,4,10,0.92);
  box-shadow: 0 8px 40px rgba(108,71,255,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--glass); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #9B72FF);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 35px var(--primary-glow) !important;
  transform: translateY(-1px) !important;
  background: var(--glass) !important;
  color: #fff !important;
}
.hamburger { display: none; cursor: pointer; }

/* SECTIONS SHARED */
section {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,71,255,0.12);
  border: 1px solid rgba(108,71,255,0.25);
  color: #9B72FF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text);
}
.section-title .accent {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin-top: 14px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 28px;
  animation: float 3s ease-in-out infinite;
}
.hero-badge span { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.5; transform: scale(1.4); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-h1 .line2 {
  background: linear-gradient(90deg, var(--primary) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typed-container {
  display: inline-block;
  position: relative;
}
.typed-text {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--cyan);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #9B72FF);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--primary-glow); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-3d-card {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(135deg, rgba(108,71,255,0.1), rgba(0,212,255,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.hero-3d-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(108,71,255,0.08), transparent, rgba(0,212,255,0.06), transparent);
  animation: rotate 12s linear infinite;
}
.hero-3d-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(8,8,18,0.9), rgba(8,8,18,0.7));
  border-radius: 27px;
  z-index: 0;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.card-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; gap: 20px; }
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.metric-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.metric-box:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(108,71,255,0.2); }
.metric-val {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }
.hero-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--muted);
  transition: all 0.2s;
}
.hero-service-chip:hover { background: rgba(108,71,255,0.1); border-color: rgba(108,71,255,0.3); color: var(--text); }
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.chip-dot.purple { background: var(--primary); box-shadow: 0 0 8px var(--primary); }
.chip-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.chip-dot.gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

/* CLIENTS MARQUEE */
#clients {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.client-logo:hover { color: rgba(255,255,255,0.7); }
.client-sep { width: 1px; height: 24px; background: var(--glass-border); flex-shrink: 0; align-self: center; }

/* SERVICES */
#services {
  padding: 100px 0;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-glow, rgba(108,71,255,0)), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 24px;
}
.service-card:hover { transform: translateY(-8px) rotateX(2deg); border-color: var(--card-border, rgba(108,71,255,0.3)); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap { box-shadow: 0 8px 32px var(--card-shadow, rgba(108,71,255,0.4)); }

.service-card.s1 { --card-glow: rgba(108,71,255,0.07); --card-border: rgba(108,71,255,0.35); --card-shadow: rgba(108,71,255,0.35); }
.service-card.s2 { --card-glow: rgba(0,212,255,0.07); --card-border: rgba(0,212,255,0.35); --card-shadow: rgba(0,212,255,0.35); }
.service-card.s3 { --card-glow: rgba(245,166,35,0.07); --card-border: rgba(245,166,35,0.35); --card-shadow: rgba(245,166,35,0.35); }

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: box-shadow 0.35s;
}
.s1 .service-icon-wrap { background: rgba(108,71,255,0.15); }
.s2 .service-icon-wrap { background: rgba(0,212,255,0.12); }
.s3 .service-icon-wrap { background: rgba(245,166,35,0.12); }
.service-icon { width: 28px; height: 28px; }
.s1 .service-icon { color: var(--primary); }
.s2 .service-icon { color: var(--cyan); }
.s3 .service-icon { color: var(--gold); }

.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.s1 .service-tag { color: var(--primary); }
.s2 .service-tag { color: var(--cyan); }
.s3 .service-tag { color: var(--gold); }
.service-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.service-desc { color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(240,240,255,0.6);
}
.service-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.s1 .service-item::before { background: var(--primary); }
.s2 .service-item::before { background: var(--cyan); }
.s3 .service-item::before { background: var(--gold); }
.service-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  opacity: 0;
  transform: translate(4px, 4px);
  transition: all 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translate(0,0); }

/* STATS */
#stats {
  padding: 80px 0;
}
.stats-card {
  background: linear-gradient(135deg, rgba(108,71,255,0.08), rgba(0,212,255,0.05));
  border: 1px solid rgba(108,71,255,0.2);
  border-radius: 28px;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}
.stats-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,71,255,0.12), transparent 70%);
  pointer-events: none;
}
.stats-card::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  pointer-events: none;
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-size: 0.6em;
  vertical-align: super;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
  max-width: 200px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}

/* PROCESS */
#process {
  padding: 100px 0;
}
.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-header .section-sub { margin: 14px auto 0; text-align: center; }
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(108,71,255,0.4), rgba(0,212,255,0.4), transparent);
  pointer-events: none;
}
.process-step {
  text-align: center;
  position: relative;
  padding-top: 8px;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 var(--primary-glow);
}
.process-step:hover .step-number {
  background: rgba(108,71,255,0.15);
  border-color: var(--primary);
  box-shadow: 0 0 0 8px rgba(108,71,255,0.08), 0 0 30px var(--primary-glow);
  color: #fff;
}
.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* TESTIMONIALS */
#testimonials {
  padding: 100px 0;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-sub { margin: 14px auto 0; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(108,71,255,0.15);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(108,71,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(108,71,255,0.1);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.star { color: var(--gold); font-size: 14px; }
.testimonial-text {
  color: rgba(240,240,255,0.75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* CTA */
#cta {
  padding: 100px 0;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(108,71,255,0.15), rgba(0,212,255,0.08));
  border: 1px solid rgba(108,71,255,0.25);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,71,255,0.18), transparent 70%);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236C47FF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-sub { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  cursor: pointer;
  color: var(--muted);
  text-decoration: none;
}
.social-btn:hover { background: rgba(108,71,255,0.15); border-color: rgba(108,71,255,0.3); color: var(--text); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
}
.footer-contact-item a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--cyan); }
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  font-size: 13px;
  color: rgba(240,240,255,0.3);
}
.footer-bottom a { color: rgba(240,240,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-indicator span { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { width: 60%; height: 1px; top: 0; left: 20%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .cta-inner { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* GLOW ORBS */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb1 { width: 500px; height: 500px; background: rgba(108,71,255,0.06); top: -150px; right: -150px; }
.orb2 { width: 400px; height: 400px; background: rgba(0,212,255,0.04); bottom: 20%; left: -100px; }

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--cyan));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--cyan-glow);
}