:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --bg-card: #111111;
  --red: #d40000;
  --red-dark: #990000;
  --text: #f5f5f7;
  --muted: #b8b8bd;
  --line: rgba(255, 255, 255, .12);
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 0, 0, .18), transparent 34rem),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(5, 5, 5, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-logo {
  width: 168px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(212, 0, 0, .35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.15;
}

.brand-text strong { color: var(--red); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 650;
  font-size: 15px;
}

.main-nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 85px);
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 110px) clamp(20px, 5vw, 72px);
}

.hero-content { max-width: 760px; }

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.05; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 86px);
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

h3 { font-size: 23px; margin-bottom: 12px; }

.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 42px rgba(212, 0, 0, .3);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.03);
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: calc(var(--radius) + 20px);
  background: linear-gradient(135deg, rgba(212,0,0,.5), transparent 55%);
  filter: blur(10px);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #151515;
}

.section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 40px;
  background: var(--bg-soft);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 20px;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: rgba(212, 0, 0, .14);
  color: var(--red);
  font-size: 25px;
}

.card p,
.area-box p,
.contact p,
.legal-block p,
.reviews-note { color: var(--muted); margin-bottom: 0; }

.area {
  background:
    linear-gradient(90deg, rgba(212,0,0,.12), transparent),
    var(--bg-soft);
}

.area-box {
  max-width: 960px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.reviews { overflow: hidden; }

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.reviews-head h2 { max-width: 900px; }

.rating-box {
  min-width: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-card);
  text-align: center;
}

.stars {
  display: block;
  color: var(--red);
  letter-spacing: .08em;
  font-size: 18px;
}

.rating-box strong {
  display: block;
  margin-top: 4px;
  font-size: 36px;
  line-height: 1;
}

.rating-box small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.reviews-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.reviews-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  color: var(--text);
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 0, 0, .55);
  background: rgba(212, 0, 0, .16);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.review-dot:hover { transform: translateY(-1px); }

.review-dot.is-active {
  width: 28px;
  background: var(--red);
}

.review-card {
  width: min(360px, 78vw);
  min-height: 220px;
  flex: 0 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(212, 0, 0, .6);
  background: linear-gradient(180deg, rgba(212,0,0,.16), rgba(255,255,255,.03));
  outline: none;
}

.review-card p {
  color: var(--text);
  font-size: 18px;
}

.review-card strong {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.reviews-note {
  margin-top: 18px;
  font-size: 14px;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (max-width: 720px) {
  .reviews-carousel-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    background: rgba(5, 5, 5, .82);
    backdrop-filter: blur(10px);
  }

  .reviews-arrow:hover { transform: translateY(calc(-50% - 2px)); }
  .reviews-arrow-prev { left: 8px; }
  .reviews-arrow-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track,
  .review-dot,
  .reviews-arrow { transition: none; }
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 40px;
  align-items: start;
}

.contact-panel { display: grid; gap: 14px; }

.contact-line {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-line strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(22px, 3vw, 32px);
}

.legal { background: var(--bg-soft); }

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.legal-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.legal-block.wide { grid-column: 1 / -1; }
.legal-block p + p { margin-top: 10px; }
.legal-block a { color: #fff; text-decoration: underline; text-decoration-color: rgba(212,0,0,.75); }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #020202;
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--text); }

.cookie-banner {
  position: fixed;
  left: clamp(16px, 4vw, 40px);
  right: clamp(16px, 4vw, 40px);
  bottom: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 8, 8, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] { display: none; }

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .72);
}

.cookie-modal-card {
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080808;
  box-shadow: var(--shadow);
}

.cookie-modal-card p { color: var(--muted); }

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  color: var(--text);
}

.cookie-option input { accent-color: var(--red); }

.cookie-modal-actions {
  justify-content: flex-end;
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .hero,
  .intro,
  .contact,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .legal-block.wide { grid-column: auto; }
  .reviews-head { align-items: start; flex-direction: column; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #080808;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .main-nav a:hover { background: rgba(255,255,255,.05); }
  .brand-text { display: none; }
  h1 { font-size: 42px; }
  .cards { grid-template-columns: 1fr; }
  .contact-line strong { font-size: 22px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}

.reviews-intro {
  max-width: 820px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.reviews-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.reviews-sources a {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.reviews-sources span,
.reviews-sources small {
  display: block;
  color: var(--muted);
}

.reviews-sources span {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviews-sources strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .reviews-sources { grid-template-columns: 1fr; }
}

.reviews-sources a {
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.reviews-sources a:hover,
.reviews-sources a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 0, 0, .55);
  background: rgba(212, 0, 0, .12);
  outline: none;
}


/* Formulaire de contact avec contrôle anti-robot */
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}

.contact-form .form-row {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: var(--text);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(0,0,0,.45);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212,0,0,.8);
  box-shadow: 0 0 0 4px rgba(212,0,0,.14);
}

.robot-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(0,0,0,.35);
}

.robot-check input {
  width: 22px;
  height: 22px;
  accent-color: var(--red);
}

.form-help,
.form-status {
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-error {
  color: #ffb3b3;
}

.form-status.is-success {
  color: #d7ffd7;
}

@media (max-width: 720px) {
  .brand-logo { width: 138px; }
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-links a {
  border: 1px solid rgba(212, 0, 0, .35);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(212, 0, 0, .08);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  padding: clamp(54px, 7vw, 110px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(212,0,0,.24), transparent 30rem),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 55%);
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(40px, 5.8vw, 76px);
}

.page-lead {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a { color: var(--text); font-weight: 700; }

.page-content article p,
.page-content li {
  color: var(--muted);
  font-size: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.content-grid article h2:not(:first-child) { margin-top: 42px; }

.side-card {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.side-card ul { padding-left: 20px; margin-bottom: 0; }

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: #080808;
}

.cta-strip p { color: var(--muted); max-width: 760px; }

.page-contact-panel { margin-top: 28px; }

@media (max-width: 880px) {
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

/* V10 - email affiché en texte simple sans lien mailto visible */
.btn-static {
  cursor: default;
  user-select: text;
}

.contact-line:not(a) {
  cursor: default;
}
