/* ============================================================
   SILVER WOLF LV.999 — STYLE.CSS v2
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; background: none; border: none; font: inherit; }

/* ---- VARIABLES ---- */
:root {
  --bg:           #0a0a12;
  --bg2:          #0f0f1a;
  --bg3:          #13131f;
  --violet:       #7c3aed;
  --violet-light: #a855f7;
  --cyan:         #06b6d4;
  --gold:         #f59e0b;
  --text:         #e2e8f0;
  --text-dim:     #94a3b8;
  --border:       rgba(124,58,237,0.3);
  --border-hover: rgba(168,85,247,0.6);
  --glow:         0 0 20px rgba(124,58,237,0.45), 0 0 40px rgba(124,58,237,0.2);
  --glow-cyan:    0 0 20px rgba(6,182,212,0.5);
  --glow-gold:    0 0 20px rgba(245,158,11,0.4);
  --font-title:   'Orbitron', monospace;
  --font-sub:     'Rajdhani', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }
::selection { background: var(--violet); color: #fff; }

/* ---- CANVAS ---- */
#bgCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.35;
}

/* ---- SCANLINES ---- */
.scanlines {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
}

/* ---- CURSEUR ---- */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--violet-light); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--violet-light), 0 0 18px var(--violet);
  transition: transform 0.1s, opacity 0.2s;
}
.cursor-trail {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid rgba(168,85,247,0.5);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--gold));
  z-index: 200;
  box-shadow: 0 0 6px var(--violet);
  transition: width 0.08s linear;
}

/* ---- CONTAINER / SECTION ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; z-index: 2; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--violet-light); letter-spacing: 0.25em;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: 0.06em;
  color: var(--text);
}
.section-title .accent { color: var(--violet-light); }
.section-sub {
  margin-top: 0.75rem;
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--text-dim); letter-spacing: 0.05em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; border-radius: 4px;
  transition: var(--transition); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: #fff; border: 1px solid var(--violet-light);
  box-shadow: var(--glow);
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(168,85,247,0.7), 0 0 56px rgba(124,58,237,0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--violet-light);
  border: 1px solid var(--violet);
}
.btn-secondary:hover {
  background: rgba(124,58,237,0.12);
  box-shadow: var(--glow); transform: translateY(-2px);
}
.btn-sm {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem;
  font-family: var(--font-mono); font-size: 0.78rem;
  background: rgba(124,58,237,0.25);
  border: 1px solid var(--violet-light);
  color: var(--text); border-radius: 3px;
  transition: var(--transition);
}
.btn-sm:hover { background: var(--violet); }

.proj-label {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem;
  font-family: var(--font-mono); font-size: 0.78rem;
  color: rgba(168,85,247,0.6);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 3px; cursor: default;
  letter-spacing: 0.04em;
}

/* ---- GLITCH BTN ---- */
.glitch-btn { position: relative; overflow: hidden; }
.glitch-btn::before {
  content: attr(data-text);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet-light));
  color: #fff; font: inherit; letter-spacing: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.3s var(--ease);
}
.glitch-btn:hover::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* ---- HUD CORNERS ---- */
.hud-corner {
  position: absolute; width: 12px; height: 12px;
  border-style: solid; border-color: var(--violet-light);
  pointer-events: none; transition: border-color var(--transition);
}
.hud-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed; top: 2px; left: 0;
  width: 100%; z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,18,0.96);
  backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-title); font-size: 0.95rem; font-weight: 900;
  color: var(--violet-light); letter-spacing: 0.12em;
  animation: neonText 4s ease-in-out infinite;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-family: var(--font-sub); font-size: 0.85rem; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--violet-light); box-shadow: 0 0 5px var(--violet-light);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--violet); border-radius: 3px;
  color: var(--violet-light) !important;
}
.nav-cta:hover { background: rgba(124,58,237,0.2); box-shadow: var(--glow); }
.nav-cta::after { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.burger span { display: block; height: 2px; background: var(--violet-light); transition: var(--transition); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(300px, 85vw); height: 100vh;
  background: rgba(10,10,18,0.97);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  transition: right 0.4s var(--ease);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-link {
  font-family: var(--font-title); font-size: 1rem; font-weight: 700;
  color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase;
  transition: var(--transition);
}
.mobile-link:hover { color: var(--violet-light); text-shadow: 0 0 12px var(--violet-light); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  padding: 8rem 2rem 5rem;
}
.hero-container {
  max-width: 960px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; text-align: center;
}

.lv-badge {
  display: inline-flex; align-items: baseline; gap: 0.1rem;
  padding: 0.35rem 1.1rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.5);
  border-radius: 2px;
  box-shadow: var(--glow-gold);
  font-family: var(--font-title); font-weight: 900; color: var(--gold);
}
.lv-label { font-size: 0.65rem; letter-spacing: 0.1em; }
.lv-counter { font-size: 1.3rem; }

/* AVATAR */
.avatar-wrapper { position: relative; display: inline-block; }
.avatar-hud {
  position: relative; width: 170px; height: 170px;
  border: 2px solid var(--violet);
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--glow), inset 0 0 20px rgba(124,58,237,0.1);
  background: var(--bg2);
}
.avatar-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
}
.avatar-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at center, rgba(124,58,237,0.3), var(--bg2));
}
.avatar-initials {
  font-family: var(--font-title); font-size: 3rem; font-weight: 900;
  color: var(--violet-light); text-shadow: 0 0 20px var(--violet);
}
.avatar-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50%; pointer-events: none;
}
.avatar-ring.r1 { width: 195px; height: 195px; animation: ringPulse 3s ease-in-out infinite; }
.avatar-ring.r2 { width: 220px; height: 220px; animation: ringPulse 3s ease-in-out 1.5s infinite; }

/* HERO TEXT */
.hero-path {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.2em; opacity: 0.85;
}
.hero-name {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900; letter-spacing: 0.08em; line-height: 1.1;
  color: var(--text); text-shadow: 0 0 30px rgba(168,85,247,0.3);
}
.hero-typewriter {
  font-family: var(--font-mono); font-size: 1rem;
  color: var(--cyan); height: 1.6rem;
  display: flex; align-items: center; justify-content: center; gap: 0.1rem;
}
.typewriter-cursor { animation: blink 1s step-end infinite; }
.hero-tagline {
  font-size: 1.05rem; font-weight: 500;
  color: var(--text-dim); line-height: 1.65;
}
.hero-tagline-accent { color: var(--violet-light); font-weight: 700; }

/* STATS */
.hero-stats { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.stats-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 0.5rem; font-family: var(--font-mono); }
.stat-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 1.4rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px; position: relative;
  min-width: 110px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-card:hover { border-color: var(--violet-light); box-shadow: var(--glow); }
.stat-top { display: flex; align-items: baseline; gap: 0.05rem; line-height: 1; }
.stat-prefix, .stat-suffix {
  font-family: var(--font-title); font-size: 1.4rem; font-weight: 900;
  color: var(--violet-light);
}
.stat-number {
  font-family: var(--font-title); font-size: 2rem; font-weight: 900;
  color: var(--violet-light); text-shadow: 0 0 12px rgba(168,85,247,0.4);
}
.stat-label {
  margin-top: 0.35rem;
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.05em; text-transform: uppercase;
  text-align: center;
}

/* CTA */
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* SOCIALS */
.hero-socials { display: flex; gap: 0.75rem; justify-content: center; }
.social-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 5px;
  color: var(--text-dim); transition: var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  border-color: var(--violet-light); color: var(--violet-light);
  box-shadow: var(--glow); transform: translateY(-3px);
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-dim); letter-spacing: 0.25em;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 28px; background: linear-gradient(to bottom, var(--violet), transparent); }

/* ================================================================
   À PROPOS
   ================================================================ */
.about { background: var(--bg2); }

/* ================================================================
   SERVICES — PRICING
   ================================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: stretch;
}
.pricing-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: var(--transition);
  overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--glow); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover .hud-corner { border-color: var(--cyan); }

/* FEATURED */
.pricing-featured {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.2), 0 0 40px rgba(6,182,212,0.08);
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-5px); box-shadow: 0 0 30px rgba(6,182,212,0.35); }
.pricing-featured .hud-corner { border-color: var(--cyan); }
.pricing-featured::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }

.pricing-badge {
  position: absolute; top: -1px; right: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--cyan);
  color: #000; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; border-radius: 0 0 6px 6px;
}
.pricing-medal { font-size: 1.75rem; }
.pricing-tier {
  font-family: var(--font-title); font-size: 1.1rem; font-weight: 900;
  color: var(--text); letter-spacing: 0.1em;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount {
  font-family: var(--font-title); font-size: 2.2rem; font-weight: 900;
  color: var(--violet-light); text-shadow: 0 0 12px rgba(168,85,247,0.3);
}
.pricing-featured .price-amount { color: var(--cyan); text-shadow: 0 0 12px rgba(6,182,212,0.4); }
.pricing-features { display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-dim); line-height: 1.4;
}
.feat-check { color: var(--violet-light); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.05rem; }
.gold-feat { color: var(--gold) !important; }
.pricing-featured .feat-check { color: var(--cyan); }
.services-note {
  text-align: center; margin-top: 2rem;
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-dim); letter-spacing: 0.08em;
}

/* ================================================================
   PORTFOLIO
   ================================================================ */
.portfolio { background: var(--bg2); }
.filter-buttons { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.45rem 1.2rem;
  font-family: var(--font-mono); font-size: 0.76rem;
  color: var(--text-dim); border: 1px solid var(--border); border-radius: 3px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(124,58,237,0.18);
  border-color: var(--violet-light); color: var(--violet-light);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.project-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: var(--transition); animation-delay: var(--delay, 0s);
}
.project-card:hover { border-color: var(--violet-light); transform: translateY(-4px); box-shadow: var(--glow); }
.project-img { position: relative; height: 185px; overflow: hidden; }

.project-img--screenshot { background: var(--bg3); }

.project-screenshot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block;
  filter: blur(5px) brightness(0.65);
  transition: filter 0.4s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}
.project-screenshot.active { opacity: 1; }
.project-card:hover .project-screenshot.active { filter: blur(0) brightness(1); }

.gallery-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 10;
}
.gallery-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(168,85,247,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-dot.active {
  background: var(--violet-light);
  box-shadow: 0 0 6px var(--violet-light);
  transform: scale(1.2);
}
.gallery-dot:hover { background: rgba(168,85,247,0.7); }

.project-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,18,0.93);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.25rem; text-align: center;
  opacity: 0; transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h4 { font-family: var(--font-title); font-size: 0.88rem; color: var(--text); letter-spacing: 0.05em; }
.project-overlay p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.55; }
.project-footer {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
}
.project-name { font-family: var(--font-sub); font-size: 0.9rem; font-weight: 600; color: var(--text); }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.project-tags span {
  padding: 0.15rem 0.55rem;
  background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25);
  border-radius: 3px; font-family: var(--font-mono); font-size: 0.68rem; color: var(--violet-light);
}
.project-card.hidden { display: none; }


/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }

.tally-panel {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  overflow: hidden;
}
.calendly-panel {
  position: relative; padding: 2.25rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; text-align: center;
  box-shadow: var(--glow);
}
.calendly-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.12); border: 1px solid var(--border);
  border-radius: 10px; margin: 0 auto 1.25rem; color: var(--violet-light);
}
.calendly-icon svg { width: 28px; height: 28px; }
.calendly-panel h3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.65rem; }
.calendly-panel p { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 1.75rem; line-height: 1.6; }
.calendly-badges { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
.badge-item { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  position: relative; z-index: 2;
  padding: 4rem 0 2rem;
  background: var(--bg); border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo {
  font-family: var(--font-title); font-size: 1rem; font-weight: 900;
  color: var(--violet-light); letter-spacing: 0.12em;
  text-shadow: 0 0 12px rgba(168,85,247,0.35); margin-bottom: 0.85rem;
}
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.6rem; }
.footer-quote { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); font-style: italic; animation: goldGlow 3s ease-in-out infinite; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-title); font-size: 0.75rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-dim); transition: var(--transition); }
.footer-links a:hover { color: var(--violet-light); }
.footer-email { display: block; color: var(--violet-light); font-family: var(--font-mono); font-size: 0.82rem; margin-bottom: 1.1rem; transition: var(--transition); }
.footer-email:hover { text-shadow: 0 0 8px var(--violet-light); }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
  font-size: 0.76rem; color: var(--text-dim); font-family: var(--font-mono);
}
.footer-credit { color: var(--violet-light); opacity: 0.55; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ================================================================
   AVANTAGES NO-CODE
   ================================================================ */
.about-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-intro strong { color: var(--violet-light); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.advantage-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.advantage-card:hover {
  border-color: var(--violet-light);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
.advantage-card:hover .hud-corner { border-color: var(--cyan); }
.adv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.advantage-card h3 {
  font-family: var(--font-title);
  font-size: 0.9rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ================================================================
   PROCESS
   ================================================================ */
.process { background: var(--bg2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem; left: calc(16.67% + 1rem); right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), var(--violet), transparent);
  opacity: 0.4;
  pointer-events: none;
}
.process-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.process-card:hover {
  border-color: var(--violet-light);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.process-step {
  font-family: var(--font-title);
  font-size: 0.65rem; font-weight: 900;
  color: var(--violet-light);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.process-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.process-card h3 {
  font-family: var(--font-title);
  font-size: 0.9rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.process-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.process-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--violet-light);
}

/* ---- TABLETTE (max 1024px) ---- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ---- MOBILE LARGE (max 768px) ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Masquer curseur custom sur tactile */
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

  .hero { padding: 6.5rem 1.5rem 4rem; }
  .hero-name { font-size: 1.8rem; letter-spacing: 0.05em; }
  .avatar-hud { width: 140px; height: 140px; }
  .avatar-ring.r1 { width: 160px; height: 160px; }
  .avatar-ring.r2 { width: 180px; height: 180px; }
  .avatar-initials { font-size: 2.4rem; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-stats { gap: 0.75rem; }
  .stat-card { min-width: 95px; padding: 0.8rem 1rem; }
  .stat-number { font-size: 1.65rem; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-featured { transform: none; order: -1; }
  .pricing-featured:hover { transform: translateY(-4px); }

  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tally-panel { padding: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ---- MOBILE PETIT (max 480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }

  .hero-name { font-size: 1.5rem; }
  .hero-path { font-size: 0.62rem; letter-spacing: 0.1em; }
  .hero-typewriter { font-size: 0.88rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { padding: 0.75rem 1.2rem; }

  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
  .stat-card { min-width: calc(50% - 0.6rem); flex: 1; }
  .stat-card:last-child { min-width: 100%; }

  .section-title { font-size: 1.5rem; }
  .filter-buttons { gap: 0.35rem; }
  .filter-btn { padding: 0.4rem 0.85rem; font-size: 0.72rem; }

  .pricing-grid { max-width: 100%; }
  .price-amount { font-size: 1.8rem; }

  .lv-badge { font-size: 1rem; }
  .lv-counter { font-size: 1.1rem; }

  .calendly-badges { gap: 0.35rem; }
  .advantages-grid { grid-template-columns: 1fr; }

  .footer-socials { justify-content: flex-start; }
}
