/* ============================================================
   THE GUARDIAN – styles.css
   Design premium or/noir avec animations laser
   ============================================================ */

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --gold:        #d4a017;
  --gold-light:  #e8b93a;
  --gold-dark:   #a07810;
  --laser:       #00d4ff;
  --laser-glow:  rgba(0, 212, 255, 0.4);
  --danger:      #c0392b;
  --danger-light:#e74c3c;
  --bg-dark:     #0a0a0f;
  --bg-1:        #0f0f1a;
  --bg-2:        #13131f;
  --bg-3:        #1a1a2e;
  --text:        #f0f0f0;
  --text-muted:  #8a8a9a;
  --border:      rgba(212, 160, 23, 0.15);
  --border-laser:rgba(0, 212, 255, 0.2);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.3);
  --shadow-laser:0 0 30px rgba(0, 212, 255, 0.3);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold  { color: var(--gold); }
.text-blue  { color: var(--laser); }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-laser {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
  box-shadow: 0 0 8px var(--gold);
}
body.hovering .cursor-laser {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--laser);
  border-width: 1px;
}
@media (hover: none) {
  .cursor-laser, .cursor-dot { display: none; }
}

/* ── LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-svg { width: 100px; height: 100px; margin: 0 auto 24px; }
.loader-shield { stroke-dasharray: 360; stroke-dashoffset: 360; animation: drawShield 1.5s ease forwards; }
@keyframes drawShield { to { stroke-dashoffset: 0; } }
.loader-bar {
  width: 240px;
  height: 2px;
  background: rgba(212,160,23,0.2);
  border-radius: 2px;
  margin: 16px auto;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loadProgress 2s ease forwards;
  box-shadow: 0 0 8px var(--gold);
}
@keyframes loadProgress { from { width: 0; } to { width: 100%; } }
.loader-text {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 4px;
  color: var(--gold);
  font-size: 13px;
  animation: blink 1.2s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-laser-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--laser), var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.header.scrolled .header-laser-line { opacity: 0.6; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(212,160,23,0.5)); }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 60%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0f !important;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(212,160,23,0.3);
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(212,160,23,0.5); transform: translateY(-1px); }
.nav-cta::after { display: none; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(212,160,23,0.04) 0%, transparent 70%),
    linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
  pointer-events: none;
}
.laser-sweep {
  position: absolute;
  top: 0; left: -200px;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.08), transparent);
  animation: laserSweep 8s linear infinite;
  pointer-events: none;
}
@keyframes laserSweep {
  0%   { left: -200px; }
  100% { left: calc(100% + 200px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 4px var(--gold); }
  50%      { box-shadow: 0 0 14px var(--gold), 0 0 28px rgba(212,160,23,0.4); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 110px);
  line-height: 0.92;
  margin-bottom: 28px;
  letter-spacing: 2px;
}
.title-line { display: block; }
.title-line--gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212,160,23,0.4);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0f;
  box-shadow: 0 8px 32px rgba(212,160,23,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-light));
  color: #fff;
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}
.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.6);
}
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}
.stat-unit {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-left: 2px;
}
.stat p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-sep {
  width: 1px; height: 50px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeInUp 1s 2s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp { to { opacity: 0.5; transform: translateX(-50%) translateY(0); } }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.8; transform: scaleY(1.3); }
}
.hero-scroll-hint span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
}

/* ── URGENCY BAND ───────────────────────────────────────── */
.urgency-band {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.urgency-ticker {
  display: flex;
  gap: 64px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.urgency-ticker span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0a0a0f;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS COMMUNES ──────────────────────────────────── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 20px;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(212,160,23,0.06);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.0;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services { background: var(--bg-1); }

.services-category { margin-bottom: 80px; }
.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.category-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(212,160,23,0.12);
  border: 1.5px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,160,23,0.15);
}
.category-icon--laser {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
  color: var(--laser);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--gold);
}
.laser-category .category-title { color: var(--laser); }
.category-subtitle { color: var(--text-muted); font-size: 14px; }
.category-laser-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,160,23,0.5), transparent);
}
.category-laser-line--blue {
  background: linear-gradient(90deg, rgba(0,212,255,0.5), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card--laser {
  border-color: var(--border-laser);
}
.service-card--laser:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: var(--shadow-laser);
}
.service-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition);
}
.service-card:hover .service-card-glow {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
}
.service-card-glow--laser {
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
}
.service-card--laser:hover .service-card-glow--laser {
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
}

.service-icon-wrap {
  width: 80px; height: 80px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(212,160,23,0.05);
  border: 1px solid rgba(212,160,23,0.1);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.3);
}
.service-icon-wrap--laser {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.1);
}
.service-card--laser:hover .service-icon-wrap--laser {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
}
.service-icon-svg { width: 100%; height: 100%; }

.service-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li .fa-check {
  color: var(--gold);
  font-size: 11px;
}
.service-card--laser .service-features li .fa-check { color: var(--laser); }

.service-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }
.service-link--laser { color: var(--laser); }

/* ── EXPERTISE ──────────────────────────────────────────── */
.expertise { background: var(--bg-dark); position: relative; overflow: hidden; }
.expertise::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.expertise-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.expertise-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border-laser);
  transition: var(--transition);
}
.expertise-point:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
  transform: translateX(6px);
}
.expertise-point h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.expertise-point p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.point-icon--blue {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--laser);
  flex-shrink: 0;
}

/* Laser Demo */
.laser-demo {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-laser);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
}
.laser-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.laser-demo-before, .laser-demo-after {
  height: 140px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-label {
  position: absolute;
  top: 10px; left: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--danger-light);
  background: rgba(0,0,0,0.5);
  padding: 3px 10px;
  border-radius: 50px;
}
.demo-label--after { color: var(--laser); }
.demo-surface--dirty {
  background: linear-gradient(135deg, #2a1a0e, #1a1510, #251e14);
  width: 100%;
}
.demo-dirt {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(80,50,20,0.4) 8px, rgba(80,50,20,0.4) 10px),
    radial-gradient(ellipse at 30% 40%, rgba(100,60,20,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(50,30,10,0.6) 0%, transparent 40%);
}
.demo-surface--clean {
  background: linear-gradient(135deg, #1e1e2a, #151520, #1a1a28);
  width: 100%;
  box-shadow: inset 0 0 30px rgba(0,212,255,0.1);
}

.laser-demo-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}
.laser-beam-demo {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser), transparent);
  box-shadow: 0 0 10px var(--laser), 0 0 20px rgba(0,212,255,0.5);
  animation: beamScan 2s ease-in-out infinite;
}
@keyframes beamScan {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
.laser-center-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--laser);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--laser);
  box-shadow: 0 0 20px rgba(0,212,255,0.4);
  animation: rotateLaser 6s linear infinite;
  position: relative;
  z-index: 2;
}
@keyframes rotateLaser { to { transform: rotate(360deg); } }

.demo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.laser-specs {
  display: flex;
  justify-content: space-around;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-laser);
}
.spec-item { text-align: center; }
.spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--laser);
  display: block;
  line-height: 1;
}
.spec-unit {
  font-size: 14px;
  color: rgba(0,212,255,0.7);
}
.spec-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── GALERIE ────────────────────────────────────────────── */
.galerie { background: var(--bg-1); }
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 48px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item--large { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.gallery-item--large .gallery-placeholder { height: 280px; }
.gallery-placeholder--1 { background: linear-gradient(135deg, #1a1a0e, #2a2a10); }
.gallery-placeholder--2 { background: linear-gradient(135deg, #0e1a2e, #0a1525); }
.gallery-placeholder--3 { background: linear-gradient(135deg, #1a0e1a, #22122a); }
.gallery-placeholder--4 { background: linear-gradient(135deg, #0e1a15, #0a2018); }
.gallery-placeholder--5 { background: linear-gradient(135deg, #1a100e, #241510); }
.gallery-placeholder--6 { background: linear-gradient(135deg, #0f0f1a, #131326); }
.gallery-ph-icon { font-size: 48px; color: rgba(255,255,255,0.15); }
.gallery-ph-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}
.gallery-ph-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 15px;
  font-family: 'Rajdhani', sans-serif;
  color: var(--gold);
  letter-spacing: 1px;
}
.gallery-item:hover .gallery-ph-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder {
  border-color: rgba(212,160,23,0.4);
  box-shadow: 0 0 20px rgba(212,160,23,0.2);
}

.gallery-caption {
  padding: 12px 4px 4px;
}
.gallery-caption h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.gallery-caption span {
  font-size: 12px;
  color: var(--text-muted);
}
.gallery-cta { text-align: center; }
.gallery-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}
.gallery-item.hidden { display: none; }

/* ── GALLERY PHOTO / VIDEO LAYER ────────────────────────── */
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

/* When photo loaded: hide placeholder icon & label */
.gallery-photo-slot:not(.gallery-ph-empty) .gallery-ph-icon,
.gallery-photo-slot:not(.gallery-ph-empty) .gallery-ph-label { display: none; }

/* Overlay & overlay icon sit above photo */
.gallery-ph-overlay { z-index: 2; flex-direction: column; gap: 8px; }
.gallery-ph-overlay i { font-size: 22px; }

/* Video play button */
.gallery-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,160,23,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 0 30px rgba(212,160,23,0.4);
  transition: var(--transition);
  z-index: 1;
}
.gallery-item:hover .gallery-play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 50px rgba(212,160,23,0.7);
}

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: #0a0a0f; border-color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  font-size: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(212,160,23,0.25); box-shadow: 0 0 20px rgba(212,160,23,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-inner {
  max-width: 880px;
  width: calc(100% - 160px);
}
.lightbox-media { text-align: center; }
.lightbox-media img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-media iframe,
.lightbox-media video {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 74vh;
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,0.25);
  background: #000;
}
.lightbox-media video { outline: none; }
.lightbox-caption {
  margin-top: 14px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .lightbox-inner { width: 100%; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 40px,
      rgba(212,160,23,0.03) 40px, rgba(212,160,23,0.03) 41px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 40px,
      rgba(212,160,23,0.03) 40px, rgba(212,160,23,0.03) 41px
    );
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.shield-big {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(212,160,23,0.2));
  animation: shieldFloat 6s ease-in-out infinite;
}
@keyframes shieldFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.about-certifs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.certif-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.certif-badge:hover { border-color: var(--gold); color: var(--gold); }
.certif-badge i { color: var(--gold); font-size: 18px; }

.about-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text strong { color: var(--text); }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.value-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,160,23,0.1);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,160,23,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin: 0 auto 12px;
}
.value-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.value-item p { font-size: 13px; color: var(--text-muted); }

/* ── ZONES ──────────────────────────────────────────────── */
.zones { background: var(--bg-dark); }
.zones-map-wrapper {
  display: flex;
  justify-content: center;
}
.zones-map {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.idf-map-svg {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(212,160,23,0.2));
}
.dept-zone {
  transition: all 0.3s;
  cursor: pointer;
}
.dept-zone:hover {
  fill: rgba(212,160,23,0.15) !important;
  opacity: 1 !important;
}
.zone-dot { animation: mapPulse 2s ease infinite; }
@keyframes mapPulse {
  0%,100% { r: 18; opacity: 0.9; }
  50%      { r: 22; opacity: 1; }
}
.pulse-ring { animation: ringPulse 2.5s ease infinite; }
@keyframes ringPulse {
  0%   { r: 18; opacity: 0.6; }
  100% { r: 60; opacity: 0; }
}

.zones-legend h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.legend-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  flex-shrink: 0;
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact { background: var(--bg-1); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-card-info {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: block;
  transition: var(--transition);
}
a.contact-val:hover { color: var(--gold); }
.contact-note {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.contact-emergency {
  background: linear-gradient(135deg, rgba(192,57,43,0.15), rgba(192,57,43,0.05));
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.emergency-pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(192,57,43,0.4);
  animation: emergencyPulse 2s ease infinite;
}
@keyframes emergencyPulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.02); opacity: 1; }
}
.contact-emergency > i {
  font-size: 36px;
  color: var(--danger-light);
  flex-shrink: 0;
}
.contact-emergency h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-emergency p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Form */
.contact-form-wrap {
  background: var(--bg-2);
  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-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success .fa-check-circle {
  font-size: 64px;
  color: #27ae60;
  margin-bottom: 20px;
  display: block;
}
.form-success h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border); position: relative; }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-links h4, .footer-contact h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact ul li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13px;
}
.footer-contact ul a { transition: var(--transition); }
.footer-contact ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

.footer-laser-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--laser), var(--gold), transparent);
  animation: footerLaser 4s linear infinite;
}
@keyframes footerLaser {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.8; }
}

/* ── WHATSAPP BOUTON FLOTTANT ───────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 96px; right: 32px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.65);
}
.whatsapp-btn i { line-height: 1; }
.whatsapp-tooltip {
  position: absolute;
  right: 62px;
  background: #075e54;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.whatsapp-tooltip small { display: block; font-size: 11px; opacity: 0.8; margin-top: 2px; }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0f;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,160,23,0.6); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .expertise-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-grid { grid-template-columns: 1fr 1.5fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-shield-side { max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-1);
    border-left: 1px solid var(--border);
    padding: 100px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-link { font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .burger { display: flex; z-index: 1001; }

  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .zones-map { flex-direction: column; }
  .idf-map-svg { width: 100%; max-width: 360px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .urgency-band { display: none; }
  .contact-form-wrap { padding: 24px; }
  .hero-stats { justify-content: center; }
}

/* ── ANIMATIONS UTILITAIRES ─────────────────────────────── */
[data-aos] { transition-duration: 0.7s; }

/* ── HERO 2 COLONNES ────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 130px;
  padding-bottom: 80px;
}
.hero-left { max-width: none; }
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Override hero-content quand grid (étend à pleine largeur container) */
.hero-content.hero-grid {
  padding: 130px 24px 80px;
  max-width: 1280px;
}

/* ── SPARTAN WRAPPER ────────────────────────────────────── */
.spartan-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 460px;
}

/* ── SVG PRINCIPAL ──────────────────────────────────────── */
.spartan-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(212,160,23,0.35))
          drop-shadow(0 0 80px rgba(212,160,23,0.15));
  animation: spartanFloat 5s ease-in-out infinite;
  transform-origin: center;
  cursor: pointer;
  transition: filter 0.4s ease;
}
.spartan-svg:hover {
  filter: drop-shadow(0 0 60px rgba(212,160,23,0.6))
          drop-shadow(0 0 120px rgba(212,160,23,0.25));
}

/* ── ANIMATION FLOTTANTE ────────────────────────────────── */
@keyframes spartanFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-14px) rotate(0.5deg); }
  50%  { transform: translateY(-20px) rotate(0deg); }
  75%  { transform: translateY(-10px) rotate(-0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ── PANACHE / PLUME ────────────────────────────────────── */
.helm-plume {
  transform-origin: 160px 110px;
  animation: plumeSway 4s ease-in-out infinite;
}
@keyframes plumeSway {
  0%,100% { transform: rotate(0deg) scaleX(1); }
  30%     { transform: rotate(1.5deg) scaleX(1.02); }
  70%     { transform: rotate(-1.5deg) scaleX(0.99); }
}

/* ── YEUX (pulse lumineux) ──────────────────────────────── */
.spart-eye {
  animation: eyePulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes eyePulse {
  0%,100% { opacity: 0.85; rx: 26; ry: 9; }
  50%     { opacity: 1;    rx: 28; ry: 10; filter: url(#eyeF); }
}

/* ── AURA EXTERNE ───────────────────────────────────────── */
.helm-aura {
  animation: auraPulse 3.5s ease-in-out infinite;
  transform-origin: 160px 260px;
}
@keyframes auraPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%     { opacity: 0.7; transform: scale(1.06); }
}

/* ── ANNEAUX LUMINEUX ───────────────────────────────────── */
.spartan-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.25);
  pointer-events: none;
  animation: ringExpand 4s ease-out infinite;
}
.spartan-ring-1 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}
.spartan-ring-2 {
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.3s;
  border-color: rgba(212,160,23,0.15);
}
.spartan-ring-3 {
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2.6s;
  border-color: rgba(212,160,23,0.08);
}
@keyframes ringExpand {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.7); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.2); }
}

/* ── PARTICULES SPARTAN ─────────────────────────────────── */
.spartan-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

/* ── LABEL SOUS LE CASQUE ───────────────────────────────── */
.spartan-label {
  text-align: center;
  margin-top: 16px;
}
.spartan-label-main {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,160,23,0.5);
  animation: labelGlow 3s ease-in-out infinite;
}
.spartan-label-sub {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
@keyframes labelGlow {
  0%,100% { text-shadow: 0 0 20px rgba(212,160,23,0.4); }
  50%     { text-shadow: 0 0 35px rgba(212,160,23,0.8), 0 0 60px rgba(212,160,23,0.3); }
}

/* ── LOGO SPARTAN (header/footer) ───────────────────────── */
.logo-spartan {
  width: 48px !important;
  height: 62px !important;
  filter: drop-shadow(0 0 6px rgba(212,160,23,0.4));
  transition: filter 0.3s ease;
}
.logo:hover .logo-spartan {
  filter: drop-shadow(0 0 12px rgba(212,160,23,0.7));
}

/* ── LOADER SPARTAN ─────────────────────────────────────── */
.loader-eye { animation: loaderEyePulse 1.5s ease infinite; }
@keyframes loaderEyePulse {
  0%,100% { opacity: 0.5; }
  50%     { opacity: 1; }
}
.loader-crest {
  transform-origin: 60px 45px;
  animation: loaderCrestSway 2s ease-in-out infinite;
}
@keyframes loaderCrestSway {
  0%,100% { transform: rotate(0deg); }
  50%     { transform: rotate(2deg); }
}

/* ── RESPONSIVE SPARTAN ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
  .spartan-svg { max-width: 340px; }
  .spartan-ring-3 { display: none; }
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }
  .hero-right {
    order: -1;
    padding-top: 0;
  }
  .spartan-svg { max-width: 260px; }
  .spartan-ring-1, .spartan-ring-2, .spartan-ring-3 { display: none; }
  .spartan-label-main { font-size: 22px; }
}
@media (max-width: 480px) {
  .spartan-svg { max-width: 200px; }
  .spartan-label { display: none; }
}
