@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,600&family=Barlow:wght@300;400;500&display=swap');

/* ═══════════════════════════════════════
   VARIABLES
═══════════════════════════════════════ */
:root {
  --bleu:       #0af;           /* bleu électrique vif */
  --bleu-2:     #0088cc;
  --bleu-dark:  #004466;
  --bleu-glow:  rgba(0, 170, 255, 0.15);
  --noir:       #080808;
  --noir-2:     #0e0e0e;
  --noir-3:     #141414;
  --noir-4:     #1c1c1c;
  --texte:      #c8d4dc;
  --texte-fort: #e8f0f4;
  --muted:      #5a6a74;
  --ligne:      #1e2a30;

  --font-h: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-b: 'Barlow', Arial, sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--texte);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

a { color: var(--bleu); text-decoration: none; transition: color .15s; }
a:hover { color: #4dcfff; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════ */
.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 10px;
}

.h-xl {
  font-family: var(--font-h);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--texte-fort);
}

.h-xl em {
  font-style: italic;
  font-weight: 300;
  color: var(--bleu);
}

.h-lg {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--texte-fort);
}

.h-md {
  font-family: var(--font-h);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--bleu);
  margin-bottom: 10px;
}

.trait {
  width: 32px;
  height: 2px;
  background: var(--bleu);
  margin: 14px 0;
}
.trait.c { margin: 14px auto; }

.btn {
  display: inline-block;
  padding: 13px 36px;
  background: var(--bleu);
  color: var(--noir);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s;
}
.btn:hover {
  background: #4dcfff;
  color: var(--noir);
  box-shadow: 0 0 24px rgba(0,170,255,.35);
}

.btn-outline {
  display: inline-block;
  padding: 11px 34px;
  border: 1px solid var(--bleu);
  color: var(--bleu);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--bleu); color: var(--noir); }

.btn-sm {
  display: none;
  padding: 8px 18px;
  background: var(--bleu);
  color: var(--noir);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.btn-sm:hover { background: #4dcfff; color: var(--noir); }
@media (min-width: 641px) { .btn-sm { display: inline-block; } }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ligne);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img { height: 34px; width: auto; }

.site-nav { list-style: none; display: flex; gap: 32px; }
.site-nav a {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--texte);
  transition: color .15s;
}
.site-nav a:hover,
.site-nav a.actif { color: var(--bleu); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1px; background: var(--bleu); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 16px;
  background: var(--noir-2);
  border-top: 1px solid var(--ligne);
}
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--texte);
}
.nav-mobile a:hover { color: var(--bleu); }
.nav-mobile.open { display: flex; }

@media (max-width: 640px) {
  .site-nav { display: none; }
  .burger { display: flex; }
}

/* ═══════════════════════════════════════
   HERO — pleine largeur, texte massif
═══════════════════════════════════════ */
/* ══ HERO : image plein fond + overlay + widget flottant ══ */
/* ══ HERO split 55/45 : texte+widget gauche | photo droite ══ */
.hero {
  border-bottom: 1px solid var(--ligne);
  overflow: hidden;
}

/* Ligne lumineuse en haut */
.hero-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 540px;
  position: relative;
}

/* Colonne gauche : fond noir + contenu */
.hero-left {
  background: var(--noir-2);
  padding: 52px 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Ligne déco gauche */
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--bleu) 0%, transparent 60%);
}

.hero-left .label { margin-bottom: 18px; }
.hero-titre { margin-bottom: 16px; }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--texte);
  max-width: 460px;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--ligne);
  width: fit-content;
}
.stat {
  padding: 10px 20px;
  border-right: 1px solid var(--ligne);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--bleu);
  line-height: 1;
  display: block;
}
.stat-l {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.hero-widget { width: 100%; min-height: 260px; }

/* Colonne droite : photo pleine hauteur */
.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Dégradé fondu côté gauche */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--noir-2) 0%, rgba(14,14,14,.3) 25%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   BANDE CHIFFRES (sous hero)
═══════════════════════════════════════ */
.bande-stats {
  background: var(--bleu);
  padding: 0;
}
.bande-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.bande-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.bande-item:last-child { border-right: none; }
.bande-nb {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1;
  flex-shrink: 0;
}
.bande-txt {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.65);
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   AVANTAGES — bande liste verticale
═══════════════════════════════════════ */
.bloc-avantages {
  background: var(--noir);
  padding: 72px 24px;
  border-bottom: 1px solid var(--ligne);
}

.avantages-bande {
  max-width: var(--max);
  margin: 40px auto 0;
  border-top: 1px solid var(--ligne);
}

.avantage-ligne {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ligne);
  transition: background .2s;
}
.avantage-ligne:hover { background: var(--noir-2); }

.av-num {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  color: var(--bleu-dark);
  line-height: 1;
  padding-left: 8px;
  transition: color .2s;
}
.avantage-ligne:hover .av-num { color: var(--bleu); }

.av-sep {
  width: 1px;
  height: 100%;
  min-height: 48px;
  background: var(--ligne);
}

.av-body { padding: 0 8px; }

.av-titre {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--texte-fort);
  margin-bottom: 6px;
}

.av-texte { font-size: 14px; color: var(--texte); line-height: 1.6; max-width: 600px; }

/* ═══════════════════════════════════════
   TÉMOIGNAGE VEDETTE — fond bleu électrique
═══════════════════════════════════════ */
.bloc-temoignage-vedette {
  background: var(--bleu);
  padding: 56px 24px;
}

.temo-quote {
  font-family: var(--font-h);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--noir);
  line-height: 1.35;
  max-width: 820px;
  margin-bottom: 24px;
}

.temo-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.temo-trait {
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(0,0,0,.35);
  flex-shrink: 0;
}

.temo-auteur {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
}

.temo-lien {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--noir);
  border-bottom: 1px solid rgba(0,0,0,.3);
  padding-bottom: 1px;
  margin-left: auto;
}
.temo-lien:hover { color: var(--noir); border-color: var(--noir); }

/* ═══════════════════════════════════════
   SECTION SEO — fond alterné
═══════════════════════════════════════ */
.bloc-seo { padding: 72px 24px; background: var(--noir-2); border-bottom: 1px solid var(--ligne); }

.seo-grid {
  max-width: var(--max);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}

.seo-bloc h2 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bleu);
  margin-bottom: 10px;
}
.seo-bloc p { font-size: 14px; color: var(--texte); line-height: 1.75; }

/* ═══════════════════════════════════════
   PAGE INTÉRIEURE
═══════════════════════════════════════ */
.page-hero {
  background: var(--noir-2);
  border-bottom: 1px solid var(--ligne);
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bleu) 40%, transparent);
  opacity: .5;
}

/* ═══════════════════════════════════════
   ÉTAPES
═══════════════════════════════════════ */
.etapes { padding: 72px 24px; background: var(--noir); border-bottom: 1px solid var(--ligne); }

.etapes-liste {
  max-width: 720px;
  margin: 40px auto 0;
}

.etape {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ligne);
}
.etape:last-child { border-bottom: none; }

.etape-nb {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: var(--bleu-dark);
  line-height: 1;
  padding-top: 4px;
}

.etape-titre {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--texte-fort);
  margin-bottom: 8px;
}
.etape-texte { font-size: 14px; color: var(--texte); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.bloc-cta {
  background: var(--noir-3);
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
  padding: 64px 24px;
  text-align: center;
}
.bloc-cta p { font-size: 14px; color: var(--muted); margin: 14px 0 28px; }

/* ═══════════════════════════════════════
   TÉMOIGNAGES GRILLE
═══════════════════════════════════════ */
.temoignages-grille { padding: 72px 24px; background: var(--noir); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--ligne);
  max-width: var(--max);
  margin: 40px auto 0;
  border: 1px solid var(--ligne);
}

.temoignage-card {
  background: var(--noir-2);
  padding: 28px 24px;
  position: relative;
  transition: background .2s;
}
.temoignage-card:hover { background: var(--noir-3); }

.temoignage-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--bleu);
  transform: scaleX(0);
  transition: transform .25s;
}
.temoignage-card:hover::after { transform: scaleX(1); }

.temoignage-card blockquote {
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--texte-fort);
  line-height: 1.65;
  margin-bottom: 18px;
  padding-top: 4px;
}

.temoignage-meta { display: flex; align-items: center; gap: 10px; }
.temoignage-pseudo {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bleu);
}
.temoignage-ville { font-size: 11px; color: var(--muted); }
.etoiles { color: var(--bleu); font-size: 11px; margin-left: auto; }

/* ═══════════════════════════════════════
   CGU
═══════════════════════════════════════ */
.cgu-contenu {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.cgu-contenu h2 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bleu);
  margin: 36px 0 10px;
  padding-top: 4px;
  border-top: 1px solid var(--ligne);
}
.cgu-contenu h2:first-child { margin-top: 0; border-top: none; }
.cgu-contenu p { font-size: 14px; color: var(--texte); line-height: 1.8; margin-bottom: 10px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--noir-2);
  border-top: 1px solid var(--ligne);
  padding: 40px 24px 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-logo img { height: 28px; width: auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links a { color: var(--muted); transition: color .15s; }
.footer-links a:hover { color: var(--bleu); }

.footer-copy { font-size: 11px; color: var(--muted); text-align: right; white-space: nowrap; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 36px 20px 32px; }
  .hero-photo { height: 300px; position: relative; }
  .hero-photo img { position: absolute; }
  .avantages-grid { grid-template-columns: 1fr; }
  .avantage { border-right: none; border-bottom: 1px solid var(--ligne); }
  .avantage:last-child { border-bottom: none; }
  .seo-grid { grid-template-columns: 1fr; gap: 28px; }
  .bande-inner { grid-template-columns: 1fr; }
  .bande-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.15); }
  .bande-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .temoignage-vedette-inner { grid-template-columns: 1fr; }
  .temoignage-barre { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .temoignages-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--ligne);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--texte-fort);
  margin-bottom: 10px;
  cursor: default;
}
.faq-q::before {
  content: '→ ';
  color: var(--bleu);
}
.faq-r {
  font-size: 14px;
  color: var(--texte);
  line-height: 1.75;
  max-width: 640px;
}
