/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080c14;
  --bg2: #0d1117;
  --surface: #111827;
  --surface2: #1a2235;
  --border: rgba(255,255,255,.08);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #6366f1;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --grad: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  --grad-text: linear-gradient(90deg, #6366f1, #a78bfa, #38bdf8);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.4);
  --shadow-glow: 0 0 40px rgba(99,102,241,.25);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: var(--font); }

::selection { background: rgba(99,102,241,.4); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══════════════════════════════════════════
   CANVAS BG
═══════════════════════════════════════════ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}

/* ═══════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s, background .2s;
}
.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(99,102,241,.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, width .3s, height .3s, opacity .3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; background: var(--accent2); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 52px; height: 52px; opacity: .5; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.section-pad { padding: 120px 0; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.outline-text {
  -webkit-text-stroke: 2px rgba(255,255,255,.25);
  color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--grad);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #818cf8, #c084fc, #67e8f9);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(99,102,241,.08); transform: translateY(-2px); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--grad);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: .875rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }

.btn-primary.full, .btn-ghost.full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
[data-delay="100"] { transition-delay: .1s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="450"] { transition-delay: .45s; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  flex-direction: column;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.navbar.scrolled {
  background: rgba(8,12,20,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  flex: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.4rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,.06); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.nav-progress {
  height: 2px;
  background: var(--grad);
  width: 0%;
  transition: width .1s;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.shape-1 { width: 600px; height: 600px; background: #6366f1; top: -200px; right: -100px; animation: float1 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: #8b5cf6; bottom: -100px; left: -100px; animation: float2 10s ease-in-out infinite; }
.shape-3 { width: 300px; height: 300px; background: #06b6d4; top: 40%; left: 40%; animation: float1 12s ease-in-out infinite reverse; }
.shape-4 { width: 200px; height: 200px; background: #f43f5e; top: 20%; left: 20%; animation: float2 7s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.05); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,20px) scale(.95); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: #a5b4fc;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 8px #4ade80; } 50% { box-shadow: 0 0 16px #4ade80, 0 0 24px #4ade8055; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat span { font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Hero Visual — Form */
.hero-visual { position: relative; }

.hero-form-wrap {
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(99,102,241,.1);
}
.hero-form-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: #a5b4fc;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}


.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(.6) translateY(10px); } }

/* ═══════════════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════════════ */
.marquee-band {
  overflow: hidden;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface2) 50%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-muted);
}
.marquee-track .dot { color: var(--accent); font-size: .6rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { position: relative; z-index: 1; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 440px;
}
.about-img-bg {
  position: absolute;
  inset: 20px 0 0 20px;
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(139,92,246,.1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99,102,241,.2);
}
.about-img-card {
  position: absolute;
  top: 0; left: 0;
  right: 20px; bottom: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: var(--shadow);
}
.about-img-card p { color: var(--text-muted); font-weight: 500; }
.team-faces { display: flex; gap: 8px; }
.face {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin-left: -12px;
}
.face:first-child { margin-left: 0; }
.face.f1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.face.f2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.face.f3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.face.f4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.award-icon { font-size: 1.5rem; }
.about-floating-badge strong { display: block; font-size: .9rem; font-weight: 700; }
.about-floating-badge span { font-size: .75rem; color: var(--text-muted); }
.about-accent-ring {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px dashed rgba(99,102,241,.3);
  border-radius: 50%;
  bottom: -40px; right: -40px;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-content .section-desc { margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feat-icon {
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feat-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.feat-item p { font-size: .875rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  background: linear-gradient(to bottom, transparent, rgba(99,102,241,.04), transparent);
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(99,102,241,.1);
}
.service-card:hover .card-glow { opacity: 1; }
.card-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,.2), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.service-icon-wrap svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-tags { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.service-tags li {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
}
.service-link { font-size: .875rem; font-weight: 600; color: var(--accent); transition: color .2s, gap .2s; }
.service-link:hover { color: #a5b4fc; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  background: linear-gradient(to bottom, transparent, rgba(6,182,212,.03), transparent);
  position: relative;
  z-index: 1;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-line {
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: .4;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: .25;
  position: absolute;
  top: 0;
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.process-step:hover .step-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(99,102,241,.4);
}
.process-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.process-step p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials { position: relative; z-index: 1; overflow: hidden; }
.testi-slider { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  /* width set dynamically by JS to avoid % resolving against the track */
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.testi-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-weight: 700; font-size: .95rem; }
.testi-author span { font-size: .8rem; color: var(--text-muted); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.testi-btn svg { width: 18px; height: 18px; }
.testi-btn:hover { border-color: var(--accent); background: rgba(99,102,241,.1); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .25s, width .25s;
}
.testi-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact-item span { font-size: .875rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(99,102,241,.08); transform: translateY(-2px); }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg); }

.submit-btn { margin-top: 4px; }
.form-success {
  text-align: center;
  color: #4ade80;
  font-weight: 600;
  padding: 12px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 10px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-col h4 {
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: .9rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  width: 46px; height: 46px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 8px 24px rgba(99,102,241,.4);
}
.back-top svg { width: 20px; height: 20px; }
.back-top.visible { opacity: 1; transform: none; }
.back-top:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,12,20,.96);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open + .btn-nav { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }

  /* testi-card width handled by JS */

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section-pad { padding: 80px 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .process-steps { grid-template-columns: 1fr; }
}
