/* =========================================================
   85 MICRO — CSS (réorganisé / nettoyé)
   ✅ Garde ton design
   ✅ Supprime doublons & conflits
   ✅ Un seul système de navbar : .site-header (ton HTML actuel)
   ✅ Fix HERO : voir le haut de l’image + cartouche en bas
========================================================= */

/* =========================
   1) FONT
   ========================= */
@font-face {
  font-family: eesti;
  src: url("HelveticaNeueLTProRoman.woff2") format("woff2"),
    url("HelveticaNeueLTProRoman.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   2) RESET + BASE
   ========================= */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: eesti, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0c1220;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(199, 247, 54, .65);
  outline-offset: 2px;
}


/* =========================
   3) THEME TOKENS
   ========================= */
:root {
  --brand: #c7f736;
  --brand-2: #b1cb4b;
  --ink: #0c1220;
  --muted: #566075;

  --bg-soft: #f6f8fb;
  --line: rgba(12, 18, 32, .12);

  --shadow: 0 18px 45px rgba(10, 18, 30, .12);
  --shadow-soft: 0 10px 25px rgba(10, 18, 30, .10);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1200px;
}


/* =========================
   4) HELPERS / LAYOUT
   ========================= */
.flex {
  display: flex;
  gap: var(--gap, 2rem);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

::selection {
  background: rgba(199, 247, 54, .65);
  color: #0a0f16;
}


/* =========================================================
   5) NAVBAR (ton HTML : .site-header / .nav-wrapper / .main-nav)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;

  background: rgba(11, 16, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all .25s ease;
}


.site-header.is-scrolled {
  background: rgba(11, 16, 32, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}


.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

/* Logo (link + image + span) */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.3px;
  color: var(--ink);
  text-decoration: none;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10, 18, 30, .10));
}

.logo span {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  /* blanc net */
}



/* Nav desktop */
.main-nav {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  margin: 0;
  padding: 0;
}

.nav-item a {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: transform .15s ease, background .15s ease, color .15s ease;
  position: relative;
}

.nav-item a:hover {
  background: rgba(199, 247, 54, .22);
  color: #c7f736;
  transform: translateY(-1px);
}

.nav-item a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(199, 247, 54, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav-item a:hover::after {
  transform: scaleX(1);
}

/* CTA Contact */
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  color: #0a0f16;
  background: linear-gradient(90deg, rgba(199, 247, 54, .95), rgba(199, 247, 54, .72));
  border: 1px solid rgba(12, 18, 32, .10);
  box-shadow: 0 14px 30px rgba(10, 18, 30, .12);
  transition: transform .15s ease, filter .15s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

/* Mobile button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(12, 18, 32, .10);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 10px 24px rgba(10, 18, 30, .10);
  cursor: pointer;
  position: relative;
}

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

.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 4px auto;
  transition: transform .18s ease, opacity .18s ease;
}

/* Mobile panel */
@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 86vw);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(.8rem);
    -webkit-backdrop-filter: blur(.8rem);
    border-left: 1px solid rgba(12, 18, 32, .10);
    box-shadow: -18px 0 50px rgba(10, 18, 30, .14);
    transform: translateX(102%);
    transition: transform .24s ease;
    padding: 96px 18px 18px;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-item a {
    padding: 14px 14px;
    border: 1px solid rgba(12, 18, 32, .08);
    background: rgba(246, 248, 251, .75);
  }

  .nav-cta {
    margin-top: 10px;
  }

  .btn-nav {
    width: 100%;
    padding: 14px 16px;
  }
}

/* burger -> croix */
.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   6) HERO (slides .imgBx)
   ========================================================= */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(1100px 600px at 10% 10%, rgba(199, 247, 54, .25), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(17, 106, 255, .12), transparent 50%),
    linear-gradient(#0b1020, #070a12);
  padding-top: 94px;
  /* place pour header fixed */
  position: relative;
  overflow: hidden;
}

/* wrapper direct dans ton HTML : <section class="hero"><div> ... </div></section> */
.hero>div {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 46px);
  display: grid;
  gap: 22px;
  align-items: center;
}

/* Slide */
.hero .imgBx {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .10);
  min-height: 420px;
  isolation: isolate;

  /* FIX : contenu en bas, ne cache pas le haut de l’image */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(18px, 4vw, 46px);
}

/* Un SEUL overlay (on supprime l’ancien ::after global) */
.hero .imgBx::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(199, 247, 54, .55), rgba(0, 0, 0, 0) 55%),
    linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%);
  z-index: 1;
}

.hero .imgBx img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* FIX : montre le haut */
  object-position: top center;

  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

/* Cartouche */
.hero .imgBx .content {
  position: relative;
  z-index: 2;

  margin: 0;
  /* on annule l’ancien margin pour éviter de cacher le haut */
  max-width: min(720px, 92vw);

  color: #0a0f16;
  background: rgba(199, 247, 54, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(12, 18, 32, .10);
  border-radius: 26px;
  padding: clamp(18px, 3vw, 32px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.hero .imgBx .content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.6px;
  font-weight: 900;
}

.hero .imgBx .content p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  font-weight: 650;
}

.hero .imgBx .content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  border: 1px solid rgba(12, 18, 32, .10);
  box-shadow: 0 14px 30px rgba(10, 18, 30, .18);
  transition: transform .18s ease, filter .18s ease;
}

.hero .imgBx .content a:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
}

@media (min-width: 980px) {
  .hero>div {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }

  .hero .imgBx {
    min-height: 520px;
  }
}


/* =========================================================
   7) KEYS / SERVICES INTRO
   ========================================================= */
.keys {
  padding: clamp(52px, 7vw, 90px) 0;
  background: #fff;
  position: relative;
}

.keys .keys__content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: grid;
  gap: 32px;
  align-items: center;
}

.keys .keys__text {
  max-width: 560px;
}

.keys .keys__text h3 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: rgba(12, 18, 32, .75);
  font-weight: 900;
  letter-spacing: -.4px;
}

.keys .keys__text p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.keys .keys__text strong {
  color: var(--ink);
}

.keys .keys__text a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(199, 247, 54, .25);
  border: 1px solid rgba(12, 18, 32, .10);
  display: inline-flex;
}

.keys .keys__images {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.keys .keys__illu--1,
.keys .keys__illu--2 {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 18, 32, .08);
  background: var(--bg-soft);
}

.keys .keys__illu--1 {
  padding: 14px;
}

.keys .keys__illu--2 {
  position: absolute;
  left: -10%;
  bottom: -10%;
  width: 60%;
  padding: 12px;
  transform: rotate(-2deg);
}

.keys .illu__background {
  opacity: .85;
}

.keys .illu__foreground {
  margin-top: -62%;
  width: 85%;
  margin-left: 7%;
}

@media (min-width: 960px) {
  .keys .keys__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .keys .keys__illu--2 {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
}


/* =========================================================
   8) CTAS / DEVIS
   ========================================================= */
.ctas {
  background: var(--brand);
  clip-path: polygon(0% 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
  padding: clamp(58px, 8vw, 110px) 0;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  flex-wrap: wrap;
}

.ctas>* {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.ctas .contacts {
  flex: 1 1 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.ctas .contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #0a0f16;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(12, 18, 32, .10);
  box-shadow: 0 10px 24px rgba(10, 18, 30, .12);
}

.ctas .contact a img {
  width: 22px;
  height: 22px;
}

.ctas .map_integration {
  width: 100%;
  margin-top: 12px;
}

.ctas .map_integration #google_map {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 18, 32, .12);
  background: rgba(255, 255, 255, .35);
}

.ctas iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ctas .schedule {
  flex: 1 1 320px;
  max-width: 420px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(12, 18, 32, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.ctas .schedule .schedule_title {
  text-align: center;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 1000;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}

.ctas .schedule hr {
  height: 4px;
  border: 0;
  background: rgba(12, 18, 32, .35);
  border-radius: 999px;
  margin: 0 0 16px;
}

.ctas .schedule .schedule_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 1rem;
}

.ctas .schedule p {
  margin: 0 0 10px;
  font-weight: 800;
  color: rgba(12, 18, 32, .80);
}

.ctas .schedule_days p {
  color: rgba(12, 18, 32, .92);
}

.ctas .schedule_wrapper>div:last-child p {
  font-weight: 750;
  color: rgba(12, 18, 32, .72);
}


/* =========================================================
   9) REVIEWS
   ========================================================= */
.reviews {
  padding: clamp(56px, 7vw, 90px) 0;
  background: #fff;

  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  flex-wrap: wrap;
}

.reviews .reviews__header {
  text-align: center;
  width: min(520px, 92vw);
  padding: 0 clamp(16px, 2vw, 24px);
}

.reviews .reviews__header h3 {
  margin: 10px 0 4px;
  font-size: 1.55rem;
  font-weight: 1000;
}

.reviews .reviews__header p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.reviews .reviews__header hr {
  width: 78%;
  height: 3px;
  border: 0;
  background: rgba(12, 18, 32, .22);
  margin: 10px auto;
  border-radius: 999px;
}

.q-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #88b400, #0b1020);
  box-shadow: 0 14px 28px rgba(10, 18, 30, .16);
  transition: transform .18s ease, filter .18s ease;
}

.q-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
}

.reviews .reviews__content {
  width: min(860px, 92vw);
  height: clamp(220px, 30vw, 320px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12, 18, 32, .10);
  background: linear-gradient(180deg, rgba(246, 248, 251, .9), rgba(246, 248, 251, .7));
  box-shadow: inset 0 0 20px 10px rgba(10, 18, 30, .08);
  position: relative;
}

#reviews__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
}

#reviews__wrapper::-webkit-scrollbar {
  height: 10px;
}

#reviews__wrapper::-webkit-scrollbar-thumb {
  background: rgba(12, 18, 32, .22);
  border-radius: 999px;
}

#reviews__wrapper .review {
  min-width: 280px;
  max-width: 320px;
  height: calc(100% - 10px);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(12, 18, 32, .10);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(10, 18, 30, .10);
  padding: 16px;
  scroll-snap-align: start;
}

#reviews__wrapper .review .content {
  color: rgba(12, 18, 32, .78);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

#reviews__wrapper .review .author_name {
  font-weight: 950;
  margin-bottom: 4px;
}

#reviews__wrapper .review .time {
  color: rgba(12, 18, 32, .55);
  font-style: italic;
  font-size: .9rem;
}

#reviews__wrapper .review .rating {
  margin-top: 10px;
  font-size: 1.1rem;
}


/* =========================================================
   10) FOOTER
   ========================================================= */
.footer {
  background: var(--brand);
  clip-path: polygon(0% 5vw, 100% 0, 100% 100%, 0 100%);
  padding: clamp(56px, 7vw, 90px) 0 26px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer>* {
  max-width: var(--container);
  width: 100%;
  padding: 0 clamp(16px, 3vw, 32px);
}

.footer .footer_logo,
.footer .description,
.footer .contact {
  flex: 1 1 280px;
}

.footer .footer_logo img {
  max-width: 300px;
  width: 100%;
}

.footer .description {
  max-width: 420px;
}

.footer .description h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 1000;
}

.footer .description p {
  margin: 0;
  color: rgba(12, 18, 32, .80);
  font-weight: 750;
  line-height: 1.55;
}

.footer .contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(12, 18, 32, .10);
  box-shadow: 0 10px 24px rgba(10, 18, 30, .10);
  margin: 0 0 10px;
}

.footer .contact a img {
  width: 22px;
  height: 22px;
}


/* =========================
   11) SMALL SCREENS
   ========================= */
@media (max-width: 560px) {
  .hero .imgBx {
    min-height: 420px;
  }

  .ctas {
    clip-path: none;
  }

  .footer {
    clip-path: none;
  }
}

/* Cartouche HERO en mode glass / transparent */
.hero .imgBx .content {
  background: rgba(199, 247, 54, 0.42);
  /* + transparent */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Optionnel : bouton un peu plus contrasté sur un fond transparent */
.hero .imgBx .content a {
  background: rgba(199, 247, 54, 0.85);
  border: 1px solid rgba(12, 18, 32, 0.12);
}

.keys__images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.keys__main-image {
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
  object-fit: cover;
  transition: transform .4s ease;
}

.keys__main-image:hover {
  transform: scale(1.02);
}

.contact .icon {
  padding: 8px;
  background: rgba(199, 247, 54, .25);
  border-radius: 12px;
}

/* ===== Animation images apparition ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(.2, .65, .3, 1),
    transform 0.8s cubic-bezier(.2, .65, .3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Petite variante plus classe */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s cubic-bezier(.2, .65, .3, 1),
    transform 0.8s cubic-bezier(.2, .65, .3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition:
    opacity 0.8s cubic-bezier(.2, .65, .3, 1),
    transform 0.8s cubic-bezier(.2, .65, .3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== HERO CLEAN (remplace le slider) ===== */
.hero--clean {
  padding-top: 94px;
  min-height: unset;
  background: radial-gradient(1100px 600px at 10% 10%, rgba(199, 247, 54, .18), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(17, 106, 255, .10), transparent 50%),
    linear-gradient(#0b1020, #070a12);
}

.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 46px);
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
  }
}

.hero__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero__text h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.6px;
  color: #fff;
  font-weight: 950;
}

.hero__lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .80);
  font-weight: 650;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .16);
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  color: #0a0f16;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
}

.hero__trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 650;
}

.hero__media {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  min-height: 360px;
  position: relative;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__cards {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 46px) clamp(24px, 4vw, 44px);
  display: grid;
  gap: 14px;
}

@media (min-width: 980px) {
  .hero__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.heroCard {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 16px;
  color: rgba(255, 255, 255, .90);
  backdrop-filter: blur(.6rem);
  -webkit-backdrop-filter: blur(.6rem);
}

.heroCard h3 {
  margin: 0 0 6px;
  font-weight: 950;
}

.heroCard p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.5;
}

.heroCard a {
  display: inline-block;
  font-weight: 900;
  color: var(--brand);
}

/* =========================
   PAGE CONTACT
========================= */

.contact-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bg-soft);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;
  padding: 0 20px;
}

@media(min-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  border: none;
  box-shadow: var(--shadow-soft);
}

/* Form */

.contact-form-wrapper {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  transition: border .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  outline: none;
}

.btn-submit {
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  padding: 14px;
  border-radius: 14px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: transform .2s ease;
}

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

.success-message {
  background: #e8ffe1;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #1a5e00;
  font-weight: 700;
}

.error-message {
  background: #ffe1e1;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #8a0000;
  font-weight: 700;
}

/* =========================
   FOOTER PROFESSIONNEL
   ========================= */

.site-footer {
  background: #0b1020;
  color: #ffffff;
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #c7f736;
  font-weight: 800;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #c7f736;
}

/* Logo */
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

/* Bas de footer */
.footer-bottom {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  background: #080c18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
  color: #c7f736;
}

.form-group.rgpd {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.rgpd-text strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.rgpd-text small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #5b6476;
  line-height: 1.6;
}

.rgpd-text a {
  color: #0c1220;
  font-weight: 600;
  text-decoration: underline;
}

.pro-section {
  padding: clamp(56px, 7vw, 90px) 0;
  background: #fff;
}

.pro-section--soft {
  background: #f6f8fb;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 26px;
  padding: 0 clamp(16px, 3vw, 32px);
  text-align: center;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 950;
}

.section-head p {
  margin: 0;
  color: rgba(12, 18, 32, .65);
  font-weight: 650;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid rgba(12, 18, 32, .12);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(10, 18, 30, .08);
  padding: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 900;
}

.card p {
  margin: 0 0 10px;
  color: rgba(12, 18, 32, .7);
  line-height: 1.6;
}

.card .card-link {
  display: inline-block;
  font-weight: 900;
  margin-top: 6px;
}

.mini-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  margin: 6px 0;
  color: rgba(12, 18, 32, .72);
  font-weight: 650;
}

.small-note {
  font-size: .9rem;
  opacity: .75;
}

@media (min-width: 860px) {
  .card {
    grid-column: span 4;
  }
}

/* HERO SINGLE VERSION */
.hero--single {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero--single .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--single .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.hero--single .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero--single .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(199, 247, 54, 0.2);
  border: 1px solid rgba(199, 247, 54, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero--single h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero--single h1 span {
  color: #c7f736;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c7f736;
  color: #0c1220;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* =========================
   MINI HERO PAGE (Particuliers / Pro / Gaming)
   ========================= */

.page-intro {
  padding: 140px 0 70px;
  /* espace pour header fixed */
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(199, 247, 54, .25), transparent 60%),
    linear-gradient(#0b1020, #070a12);
  color: #fff;
}

.page-intro__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Titre */
.page-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -1px;
}

.page-intro p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, .85);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

/* CTA bloc */
.page-intro__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bouton principal */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, #b1cb4b, #c7f736);
  color: #0c1220;
  border: 1px solid rgba(12, 18, 32, .15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
  transition: .2s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

/* Bouton secondaire */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: .2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .page-intro {
    padding: 120px 0 50px;
    text-align: center;
  }

  .page-intro__inner {
    flex-direction: column;
  }

  .page-intro__cta {
    justify-content: center;
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  color: #0c1220;
}

.logo img {
  width: 42px;
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: .2s ease;
}

.nav-links a:hover {
  color: #88b400;
}

/* Partie droite */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Brand (logo + nom) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo mieux visible */
.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;

  /* petit fond pour le détacher du header */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 8px;

  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

/* Texte plus clean */
.brand__name {
  font-size: 1.9rem;
  font-weight: 950;
  letter-spacing: -0.6px;
  color: #fff;
  line-height: 1;
}

/* Option : mettre “85” en vert (si tu veux) */
.brand__name strong {
  color: #c7f736;
}

.brand__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;

  background: none;
  border: none;
  padding: 0;

  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .4));
}

/* Agrandir le logo dans la navbar */
.brand__logo {
  width: 190px;
  height: 40px;
  transform: scale(4.0);
  transform-origin: left center;
}

/* Enlève le cadre/boîte derrière le logo */
.site-header .brand__logo,
.site-header .logo img {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* (option) garde le logo plus grand */
.site-header .brand__logo,
.site-header .logo img {
  width: auto;
  object-fit: contain;
}

.footer-logo {
  width: 50px;
  height: 40px;
  transform: scale(4.0);
  transform-origin: left center;
}

.keys__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.keys__images {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.keys__images img {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.reveal-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}