/* ═══════════════════════════════════════════════
   devmoumini.fr — Custom CSS
   Dark tech aesthetic + animations
═══════════════════════════════════════════════ */

/* ─── Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --brand:       #6366f1;
  --brand-dark:  #4f46e5;
  --brand-light: #818cf8;
  --accent:      #06b6d4;
  --violet:      #8b5cf6;
  --surface:     #0a0f1e;
  --surface-2:   #0f172a;
  --card:        #1e293b;
  --card-2:      #162032;
  --border:      #1e3a5f;
  --border-light:#334155;
  --muted:       #64748b;
  --text:        #e2e8f0;
  --text-dim:    #94a3b8;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--surface);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ─── Selection ─────────────────────────────── */
::selection { background: var(--brand); color: white; }

/* ─── Typography ────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--violet), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: linear-gradient(135deg, var(--accent), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout helpers ────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ─── Section tags ──────────────────────────── */
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--brand-light);
  background: rgba(99,102,241,0.08);
  margin-bottom: 16px;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 0 32px rgba(99,102,241,0.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(99,102,241,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

/* ─── Cards ─────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 16px 48px rgba(99,102,241,0.15);
}

.card-glass {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}

/* ─── Icon boxes ────────────────────────────── */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-box svg { width: 22px; height: 22px; }

.icon-brand  { background: rgba(99,102,241,0.15); color: var(--brand); }
.icon-violet { background: rgba(139,92,246,0.15); color: var(--violet); }
.icon-cyan   { background: rgba(6,182,212,0.15);  color: var(--accent); }
.icon-emerald{ background: rgba(16,185,129,0.15); color: #10b981; }
.icon-orange { background: rgba(249,115,22,0.15); color: #f97316; }
.icon-pink   { background: rgba(236,72,153,0.15); color: #ec4899; }
.icon-red    { background: rgba(239,68,68,0.15);  color: #ef4444; }
.icon-yellow { background: rgba(234,179,8,0.15);  color: #eab308; }

/* ─── Badge / tag ───────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  font-weight: 500;
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  background: var(--card);
  transition: border-color 0.2s, color 0.2s;
}
.badge:hover { border-color: var(--brand); color: var(--brand-light); }

/* ─── Navigation ────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--text-dim); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.2s;
  border-radius: 1px;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: white; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--brand);
  color: white !important;
  border-radius: 10px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; transform: none !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.15s;
}
.mobile-menu a:hover { background: var(--card); color: white; }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--brand);
  color: white;
  text-align: center;
}

/* ─── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--brand) 1px, transparent 1px),
    linear-gradient(90deg, var(--brand) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

#canvas-particles {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 9999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--brand-light);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--text-dim); }
.stat-sep {
  width: 1px;
  background: var(--border-light);
  align-self: stretch;
  margin: 4px 0;
}

/* ─── Scroll animations ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Services grid ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.service-tag {
  font-size: 0.68rem;
  font-family: 'JetBrains Mono', monospace;
  padding: 2px 9px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 6px;
  color: var(--brand-light);
}

/* ─── Process / Timeline ────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.process-card { text-align: center; padding: 32px 24px; }
.process-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.process-card p { font-size: 0.82rem; color: var(--text-dim); }

/* ─── Stack badges ──────────────────────────── */
.stack-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ─── Compliance bars ───────────────────────── */
.compliance-item { margin-bottom: 24px; }
.compliance-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}
.compliance-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.compliance-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  width: 0;
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── CTA Banner ────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1), rgba(6,182,212,0.08));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { color: var(--text-dim); max-width: 520px; margin: 0 auto 32px; }

/* ─── Contact form ──────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--brand);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.form-check a { color: var(--brand-light); text-decoration: none; }
.form-check a:hover { text-decoration: underline; }

/* ─── Footer ────────────────────────────────── */
footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--brand); color: var(--brand); background: rgba(99,102,241,0.1); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }

.footer-info { font-size: 0.8rem; color: var(--text-dim); line-height: 1.8; }
.footer-info strong { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-dim); }

/* ─── Page header (inner pages) ─────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-dim); max-width: 560px; margin: 0 auto; }

/* ─── Breadcrumb ────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
  justify-content: center;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--border-light); }

/* ─── Pricing / Service detail ──────────────── */
.pricing-card {
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.25s ease;
}
.pricing-card.featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.05));
  box-shadow: 0 0 40px rgba(99,102,241,0.15);
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; margin: 16px 0 4px; }
.pricing-card .price-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-card li {
  font-size: 0.875rem;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }

/* ─── Legal / Prose ─────────────────────────── */
.prose h2 { font-size: 1.4rem; font-weight: 700; color: white; margin: 40px 0 16px; }
.prose h3 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 24px 0 10px; }
.prose p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose a { color: var(--brand-light); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.legal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
.legal-box h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-box h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 20px 0 8px; }
.legal-box p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 10px; }
.legal-box ul { padding-left: 18px; }
.legal-box ul li { font-size: 0.86rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 4px; }
.legal-box strong { color: var(--text); }
.legal-box a { color: var(--brand-light); }

/* ─── Alert / info box ──────────────────────── */
.alert {
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.875rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.alert-info { background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25); color: #67e8f9; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.alert-warning { background: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.25); color: #fde68a; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ─── Dividers ──────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── Animations ────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-float { animation: float 4s ease-in-out infinite; }

.animated-gradient {
  background: linear-gradient(270deg, var(--brand), var(--violet), var(--accent), var(--brand));
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .hero-stats { gap: 24px; }
  .stat-sep { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
}
