/* ============================================================
   ISANA SECURITY — style.css
   Mobile-first, zero framework, CSS custom properties
   ============================================================ */

/* ---------- FONTELLO ICON FONT (ProGuards) ---------- */
@font-face {
  font-family: 'fontello';
  src: url('../fonts/fontello.woff2') format('woff2'),
       url('../fonts/fontello.woff')  format('woff'),
       url('../fonts/fontello.ttf')   format('truetype'),
       url('../fonts/fontello.svg#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-security-camera-alt:before { content: '\ea4f'; }
.icon-shield:before               { content: '\ea50'; }
.icon-target-1:before             { content: '\ea53'; }
.icon-fingerprint-scan:before     { content: '\ea55'; }
.icon-safebox:before              { content: '\ea57'; }
.icon-security-camera:before      { content: '\ea59'; }

/* ---------- UTILITAIRE ACCESSIBILITÉ ---------- */
.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;
}

/* ---------- SKIP TO CONTENT (A11Y) ---------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary, #0D0D0D);
  color: #FFFFFF;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 4px 4px;
  z-index: var(--z-skip);
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; outline: 3px solid #0A0A0A; }

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 100%;
  overflow-x: hidden;
  background-color: #1A1A2E; /* iOS Safari bounce révèle html — couleur footer = pas d'espace blanc */
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- VARIABLES ---------- */
:root {
  --color-primary:   #0A0A0A;   /* Noir profond Isana */
  --color-secondary: #0094C7;   /* Bleu electrique Isana PANTONE 801 C */
  --color-accent:    #1A1A2E;   /* Bleu nuit Isana */
  --color-bg:        #FAFAFA;   /* Fond clair Isana */
  --color-bg-dark:   #1A1A2E;   /* Fond sombre Isana */
  --color-text:      #1A1A1A;   /* Texte Isana */
  --color-text-light:#666666;   /* Texte léger Isana */
  --color-white:     #FFFFFF;
  --color-border:    #E5E5E5;
  --color-success:   #22C55E;
  --color-error:     #EF4444;

  --font-display: 'Red Hat Display', sans-serif;
  --font-heading: 'Red Hat Display', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --section-padding: 80px 0;
  --container-max:   1290px;
  --border-radius:   0px;
  --shadow:          0 4px 20px rgba(0,0,0,0.08);
  --shadow-strong:   0 8px 40px rgba(0,0,0,0.20);
  --transition:      all 0.3s ease;

  --navbar-height: 116px;   /* 21px top + 74px logo + 21px bottom = 115.69px */

  /* Échelle z-index */
  --z-content:  1;
  --z-skip:     1100;
  --z-navbar:   1000;
  --z-lightbox: 2000;
  --z-lb-ctrl:  2001;
}


/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 55px;    /* exact ProGuards header padding */
}
@media (max-width: 1024px) { .container { padding: 0 20px; } }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

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

/* ---------- BUTTONS — valeurs exactes ProGuards ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 40px;            /* exact ProGuards base */
  border-radius: 0;              /* var(--theme-var-rad) = 0px */
  font-family: var(--font-heading);
  font-weight: 700;              /* button_font-weight */
  font-size: 0.75rem;            /* 12px */
  letter-spacing: 0.2em;        /* 0.2em exact ProGuards */
  text-transform: uppercase;    /* button_text-transform */
  line-height: 1.25rem;         /* button_line-height ~20px */
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 0;
}
/* Jaune — ProGuards primary */
.btn--gold {
  background: var(--color-secondary);
  color: #0A0A0A;
}
.btn--gold:hover { background: #007AAA; }
/* Outline blanc — second CTA */
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.9);
  color: rgba(255,255,255,0.9);
}
.btn--outline:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: #0A0A0A; }
/* Sombre */
.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--dark:hover { background: #333; }
/* Large — hero CTA : sc_button_size_large exact ProGuards */
.btn--lg { padding: 19px 45px; font-size: 0.8125rem; } /* 13px */
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.7; cursor: not-allowed; pointer-events: none; }

/* ---------- SECTION COMMONS ---------- */
.section { padding: var(--section-padding); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);   /* sombre par défaut — fond clair */
  margin-bottom: 0.75rem;
}
/* Jaune sur fonds sombres uniquement — contraste suffisant */
.temoignages .section__eyebrow,
.contact .section__eyebrow { color: var(--color-secondary); }
.section__title { margin-bottom: 1rem; color: var(--color-primary); }
.section__desc { color: var(--color-text-light); max-width: 560px; margin: 0 auto; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   NAVBAR  — identique ProGuards
   ============================================================ */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: var(--z-navbar);
  background: transparent;
}
/* Wrapper principal */
.top-bar {
  display: flex;
  align-items: center;
  padding: 21px 55px;
  gap: 0;
}

/* ---- Blocs internes ProGuards ---- */
.navbar__block {
  display: flex;
  align-items: center;
  height: 73.69px;       /* 115.69 − 21×2 = 73.69px */
  padding: 0 10px;
  font-size: 1.125rem;   /* 18px */
  font-family: 'Open Sans', sans-serif;
}
/* Bloc 1 : logo + nav + search (~794px) */
.navbar__block--main { flex: 1; }
/* Bloc 2 : téléphone + CTA (~447px) */
.navbar__block--right { flex-shrink: 0; gap: 1.5rem; }

/* Logo */
.navbar__logo { flex-shrink: 0; margin-right: 2.5rem; }
.navbar__logo img { width: 154px; height: 49px; display: block; }

/* Nav — occupe l'espace restant dans bloc 1 */
.navbar__nav { flex: 1; }
.navbar__list {
  display: flex;
  align-items: center;
  gap: 0;
}
/* Liens nav — 17px Red Hat Display (ProGuards exact) */
.navbar__link {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.0625rem;   /* 17px */
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.9);
  padding: 0.9em 0.9em 0 0.9em;   /* pas de padding-bottom : underline colle au texte */
  position: relative;
  transition: color 0.3s ease;
}
/* Soulignement ProGuards — grandit depuis la gauche, collé sous le texte */
.navbar__link::after {
  content: '';
  display: block;
  position: relative;   /* suit le flux : juste après le texte */
  left: 0;
  margin-top: 2px;
  width: 0; height: 2px;
  background: var(--color-secondary);
  transition: width 0.2s ease;
}
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }
.navbar__link:hover, .navbar__link.active { color: var(--color-secondary); }

/* Icône Search ProGuards */
.navbar__search {
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: color 0.2s ease;
}
.navbar__search:hover { color: var(--color-secondary); }
/* Icône search Fontello — ProGuards exact */
.search_modern > .search_submit {
  display: block;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.4em;
  text-align: center;
  position: relative;
  top: -2px;
  transition: all 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  opacity: 1;
  cursor: pointer;
  padding: 1px;
  color: inherit;
  background-color: transparent;
  font-size: 22px;
  box-sizing: border-box;
}
.search_modern > .search_submit:before {
  padding: 1px;
  font-size: 22px !important;
  font-family: 'fontello';
  content: '\ea15';
  margin: 0;
  transition: color 0.3s ease;
  font-style: normal;
  font-weight: normal;
}

/* Téléphone */
.navbar__phone {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.375rem;   /* 22px */
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: 0;
  transition: color 0.2s ease;
}
.navbar__phone:hover { color: var(--color-secondary); }

/* CTA navbar — sc_button_size_small compact row exact ProGuards */
.btn.navbar__cta {
  background: var(--color-secondary);
  border: 0;
  color: #0A0A0A;
  padding: 13px 28px;   /* exact ProGuards compact row small */
  font-size: 0.75rem;   /* 12px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.25rem;
  transition: background 0.25s ease;
}
.btn.navbar__cta:hover {
  background: #007AAA;
  color: #0A0A0A;
}

/* Burger mobile */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Bouton search mobile (caché sur desktop) */
.navbar__mob-search {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
}
.navbar__mob-search .search_submit { font-family: 'fontello'; font-size: 18px; }
.navbar__mob-search .search_submit:before { content: '\ea15'; }

/* Bouton téléphone mobile — cercle jaune */
.navbar__mob-phone {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0094C7;
  color: #0A0A0A;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.navbar__mob-phone:hover { background: #fff; }
.navbar__mob-phone span { font-family: 'fontello'; font-size: 1rem; line-height: 1; }

/* ============================================================
   OVERLAY MENU MOBILE — ProGuards style
   ============================================================ */
.mob-nav {
  position: fixed;
  inset: 0;
  background: #1A1A2E;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mob-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  flex-shrink: 0;
}
.mob-nav__logo img { height: 40px; width: auto; }
.mob-nav__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mob-nav__close:hover { opacity: 1; }
.mob-nav__close span { font-family: 'fontello'; }

.mob-nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-nav__links ul {
  list-style: none;
  padding: 0; margin: 0;
  text-align: center;
}
.mob-nav__links li { margin: 0; }
.mob-nav__link {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}
.mob-nav__link:hover,
.mob-nav__link.active { color: #0094C7; }

.mob-nav__footer { flex-shrink: 0; padding: 0 28px 36px; }
.mob-nav__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.mob-nav__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mob-nav__socials a {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.mob-nav__socials a:hover { color: #0094C7; }
.mob-nav__socials span { font-family: 'fontello'; }

/* ============================================================
   OVERLAY SEARCH — ProGuards style
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #1A1A2E;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  flex-shrink: 0;
}
.search-overlay__logo img { height: 40px; width: auto; }
.search-overlay__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.search-overlay__close:hover { opacity: 1; }
.search-overlay__close span { font-family: 'fontello'; }

.search-overlay__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}
.search-overlay__field {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 12px;
  gap: 1rem;
}
.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1rem, 3vw, 1.375rem);
  font-weight: 300;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,0.35); }
.search-overlay__submit {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  transition: color 0.2s;
}
.search-overlay__submit:hover { color: #0094C7; }
.search-overlay__submit .search_submit { font-family: 'fontello'; font-size: 22px; }
.search-overlay__submit .search_submit:before { content: '\ea15'; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 607px;
  display: flex;
  align-items: flex-start;
  background: var(--color-primary);
  overflow: hidden;
}

/* ---- Slider d'arrière-plan ---- */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 9s ease-in-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, 0.5%); }
}


/* ---- Flèches gauche/droite — exactement ProGuards ---- */
/* Left:  top:50%; left:0px; transform:translate(70px,-32px) */
/* Right: top:50%; left:100%; transform:translate(-134px,-32px) */
.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 0;
  color: var(--color-white);
  font-size: 0;
  line-height: 64px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  padding: 0;
}
.hero__arrow span {
  font-family: 'fontello';
  font-size: 18px;
  color: #ffffff;
  display: block;
  line-height: 64px;
  text-align: center;
  transition: .3s ease;
  font-style: normal;
  font-weight: normal;
}
.hero__arrow--prev span:before {
  content: '\E907';
}
.hero__arrow--next span:before {
  content: '\E908';
}
.hero__arrow--prev {
  left: 0;
  transform: translate(70px, -50%);
}
.hero__arrow--next {
  left: 100%;
  transform: translate(-134px, -50%);
}
.hero__arrow:hover { background: rgba(255,255,255,0.28); }
@media (max-width: 768px) {
  .hero__arrow--prev { transform: translate(10px, -22px); }
  .hero__arrow--next { transform: translate(-74px, -22px); }
}

/* ---- Dots en bas centrés — exactement ProGuards ---- */
/* bullets: width:68px; height:8px; spaced 30px — ProGuards exact */
.hero-slider__dots {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 0;
  z-index: 3;
  align-items: center;
}
.hero-slider__dot {
  width: 32px;
  height: 4px;
  border-radius: 0;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
  margin: 0 5px;
}
.hero-slider__dot.active {
  background: var(--color-secondary);
}
.hero-slider__dot:hover:not(.active) { background: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .hero-slider__dot { width: 20px; height: 3px; margin: 0 4px; }
}

/* ---- Barre de progression (bas du hero) ---- */
.hero-slider__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 3;
}
.hero-slider__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-secondary);
}

@media (max-width: 768px) {
  .hero__arrow { width: 44px; height: 44px; font-size: 1.8rem; }
  .hero-slider__dots { bottom: 1.5rem; }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--navbar-height) + 5rem);  /* 116px + 80px = 196px depuis le haut */
  padding-bottom: 0;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
/* ---- Hero meta (live badge + location) ---- */
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 14px;
  border-radius: 20px;
}
.hero__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}
.hero__meta-sep {
  color: rgba(255,255,255,0.18);
  font-size: 0.9rem;
}
.hero__location {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
/* Tagline — 395.73 × 26px : 16px × line-height 1.625 = 26px */
.hero__tagline {
  font-family: var(--font-heading);
  font-size: 1rem;        /* 16px */
  font-weight: 400;
  line-height: 1.625;     /* 16 × 1.625 = 26px */
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}
/* Titre hero — 560.58 × 108px : 54px × line-height 1.0 × 2 lignes = 108px */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3.375rem); /* max 54px = 3.375rem */
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.0;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  margin: 0 auto 2.25rem;
  max-width: 560px;
  line-height: 1.75;
  border-left: none;
  padding-left: 0;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--color-secondary);
  border-radius: 2px;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

.hero__eyebrow-badge {
  display: inline-block;
  background: rgba(255,228,1,0.12);
  border: 1px solid rgba(255,228,1,0.35);
  color: var(--color-secondary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================================
   CTA BANNER — titre gauche + 2 boutons droite (ProGuards)
   ============================================================ */
.cta-banner {
  background: var(--color-secondary);   /* #0094C7 jaune ProGuards */
  padding: 58.235px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Titre gauche */
.cta-banner__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 34.992px);
  font-weight: 400;
  line-height: 1.35;
  color: #0A0A0A;
  max-width: 540px;
  margin: 0;
}
.cta-banner__title b { font-weight: 800; }

/* Groupe boutons droite */
.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Bouton commun */
.cta-banner__btn {
  display: inline-block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.8125rem;   /* 13px */
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid #0A0A0A;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

/* Bouton 1 — rempli sombre */
.cta-banner__btn--filled {
  background: #0A0A0A;
  color: #fff;
}
.cta-banner__btn--filled:hover {
  background: #000;
  border-color: #000;
}

/* Bouton 2 — contour sombre */
.cta-banner__btn--outlined {
  background: transparent;
  color: #0A0A0A;
}
.cta-banner__btn--outlined:hover {
  background: #0A0A0A;
  color: #fff;
}

@media (max-width: 900px) {
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__title { max-width: 100%; }
  .cta-banner { padding: 48px 0; }
}
@media (max-width: 480px) {
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__btn { width: 100%; text-align: center; }
}

/* ============================================================
   ABOUT INTRO — 2 colonnes image + texte (ProGuards pixel-perfect)
   ============================================================ */
.about-intro {
  background: #fff;
  padding: 100px 0;   /* sc_height_huge spacer ProGuards — 100px haut + bas */
}

/* Layout : image gauche full-bleed, texte droite avec padding interne */
.about-intro__wrap {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* Image — ratio ProGuards maintenu, fluide */
.about-intro__image {
  overflow: hidden;
  position: relative;
  flex: 0 0 clamp(260px, 40%, 443.84px);
  min-height: clamp(320px, 50vw, 599.19px);
}
.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Colonne texte — fluide */
.about-intro__content {
  display: flex;
  align-items: center;
  background: #fff;
  flex: 1;
  min-width: 0;
  padding: 60px clamp(30px, 7vw, 140px);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 18px);
  color: #797C7F;
}
.about-intro__content-inner {
  width: 100%;
}

/* Sous-titre — "Ce que nous faisons" */
.about-intro__eyebrow {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666666;
  margin: 0 0 14.3px;
}

/* Titre H2 */
.about-intro__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.6rem, 4vw, 46.998px);
  font-weight: 400;
  line-height: 1.2;
  color: #0A0A0A;
  margin: 0 0 20px;
}
.about-intro__title b {
  font-weight: 700;
}

/* Paragraphe */
.about-intro__desc-wrap { margin-bottom: 30px; }
.about-intro__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #797C7F;
  line-height: 1.75;
  margin-bottom: 30px;
}

/* Bouton "Notre entreprise" */
.about-intro__btn {
  display: inline-block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.8125rem;      /* 13px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  background: transparent;
  border: 2px solid #0A0A0A;
  padding: 15px 40px;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.about-intro__btn:hover {
  background: #0A0A0A;
  color: #fff;
}

@media (max-width: 900px) {
  .about-intro__wrap { flex-direction: column; }
  .about-intro__image { flex: none; width: 100%; min-height: 360px; }
  .about-intro__content { padding: 50px 30px; }
  .about-intro__title { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .about-intro { padding: 60px 0; }
  .about-intro__image { min-height: 260px; }
  .about-intro__content { padding: 36px 20px; }
}

/* ============================================================
   PREMIUM SERVICES — fond sombre ProGuards
   ============================================================ */
.pservices {
  background: #FAFAFA;
  padding: 100px 0;   /* sc_height_huge top + bottom */
}

/* Layout ligne 1 : 50/50 */
.pservices__row--top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: start;
  margin-bottom: 60px;
}

/* Colonne texte gauche */
.sc_item_subtitle.sc_title_subtitle,
.pservices__eyebrow {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666666;
  margin: 0 0 14.3px;
}
.sc_item_title.sc_title_title,
.pservices__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.6rem, 4vw, 46.998px);
  font-weight: 400;
  line-height: 1.2;
  color: #0A0A0A;
  margin: 0 0 20px;
}
/* Le span sc_item_title_text hérite du h2 — pas de font-size ici */
.sc_item_title_text {
  display: inline;
  font-weight: inherit;
  color: inherit;
}
/* <b> dans le titre = bold (Our Services / Nos Services) */
.pservices__title b,
.sc_item_title b {
  font-weight: 700;
}
.pservices__desc-wrap { margin-bottom: 0; }
.pservices__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 18px);
  color: #797C7F;
  line-height: 1.75;
  margin: 0;
}

/* Ligne 2 : le flex vient du trx_addons_columns_wrap à l'intérieur */
.pservices__row--bottom {
  display: block;
}

/* Séparateur */
.pservices__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 60px;
}

/* Système de colonnes trx_addons (ProGuards) */
.trx_addons_columns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.trx_addons_column-1_2 {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 15px 30px;
}
.trx_addons_column-1_4 {
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 15px 30px;
}

/* Card blanche — sc_icons_item ProGuards exact */
.sc_icons_item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 239.19px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  padding: 2.75em 2.2em 2.4em;
  -webkit-box-shadow: 0 3px 30px rgba(0,0,0,0.03);
  -ms-box-shadow: 0 3px 30px rgba(0,0,0,0.03);
  box-shadow: 0 3px 30px rgba(0,0,0,0.03);
  -webkit-transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  will-change: background-color, box-shadow;
}

/* Hover : fond jaune + icône noire + texte foncé */
.sc_icons_accent2 .sc_icons_item:hover {
  background-color: var(--color-secondary);
  -webkit-box-shadow: 0 3px 30px rgba(0,0,0,0.1);
  box-shadow: 0 3px 30px rgba(0,0,0,0.1);
}
.sc_icons_accent2 .sc_icons_item:hover .sc_icons_icon {
  color: #0A0A0A;
}
.sc_icons_accent2 .sc_icons_item:hover .sc_icons_item_title,
.sc_icons_accent2 .sc_icons_item:hover .sc_icons_item_title a {
  color: #0A0A0A;
}
.sc_icons_accent2 .sc_icons_item:hover .sc_icons_item_description {
  color: #0A0A0A;
}

/* Conteneur détails (titre + description) */
.sc_icons_item_details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Réinitialisation marges enfants directs */
.sc_icons_item > * {
  margin: 0;
}

/* Espacement icône → détails (ProGuards) — après le reset pour override */
.sc_icons_item .sc_icons_icon + .sc_icons_item_details,
.sc_icons_item .sc_icons_image + .sc_icons_item_details {
  margin-top: 1.3em;
}
.sc_icons_accent2 .sc_icons_item .sc_icons_icon + .sc_icons_item_details,
.sc_icons_accent2 .sc_icons_item .sc_icons_image + .sc_icons_item_details {
  margin-top: 2.55em;
}
@media (max-width: 1439px) {
  .sc_icons_accent2 .sc_icons_item .sc_icons_icon + .sc_icons_item_details,
  .sc_icons_accent2 .sc_icons_item .sc_icons_image + .sc_icons_item_details {
    margin-top: 3.4em;
  }
}

/* Icône — Fontello font */
.sc_icons_icon {
  position: relative;
  display: block;
  line-height: 1;
  color: var(--color-secondary);
}
/* Span hover (caché par défaut, visible au hover) */
.sc_icons .sc_icons_icon > span {
  display: inline-block;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: auto;
  color: #0A0A0A;
}

/* Titre — base (plugins.css ProGuards) */
.sc_icons_item_title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.25em;
  line-height: 1.3em;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Couleur + transition (sc_icons context) */
.sc_icons .sc_icons_item_title,
.sc_icons .sc_icons_item_title a {
  color: #0A0A0A;
}
.sc_icons .sc_icons_icon,
.sc_icons .sc_icons_item_title {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* sc_icons_accent2 : taille + poids + couleur override */
.sc_icons_accent2 .sc_icons_item_title,
.sc_icons_accent2 .sc_icons_item_title a {
  color: #0A0A0A;
}
.sc_icons_accent2 .sc_icons_item_title {
  font-size: 1.333em;
  line-height: 1.2em;
  font-weight: 700;
}

.sc_icons_item_title a {
  display: block;
}
.sc_icons_item_title a:hover { color: var(--color-secondary); }

/* Description */
.sc_icons_item_description {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #797C7F;
  line-height: 1.6;
  margin-top: 0.75em;
}
.sc_icons_item_description span {
  display: block;
}

/* Lien overlay pleine carte (sc_icons_item_linked) */
.sc_icons_item_linked {
  cursor: pointer;
}
.sc_icons_item_link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

/* Lien "more" visible (sc_icons_item_more_link) */
.sc_icons_item_more_link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-top: 1em;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.sc_icons_item_more_link .link_icon::after {
  content: ' →';
}
.sc_icons_item_more_link:hover {
  color: var(--color-primary);
}
.sc_icons_accent2 .sc_icons_item:hover .sc_icons_item_more_link {
  color: #0A0A0A;
}

/* Taille icône sc_icons (ProGuards) */
.sc_icons .sc_icons_icon > span:before,
.sc_icons .sc_icons_icon:before {
  font-size: 6em;
  line-height: 1.1em !important;
}

/* ---------- SC_ICONS RESPONSIVE (ProGuards) ---------- */
@media (max-width: 1679px) {
  .sc_icons_alter .sc_icons_item_title,
  .sc_icons_alter.sc_icons_size_small .sc_icons_item_title { font-size: 1.2em; }
  .sc_icons_alter .sc_icons_icon:before,
  .sc_icons_alter .sc_icons_icon > span:before { font-size: 3.4em; }
  .sc_icons_alter.sc_icons_size_large .sc_icons_item_title { font-size: 1.36em; }
  .sc_icons_alter.sc_icons_size_large .sc_icons_icon:before,
  .sc_icons_alter.sc_icons_size_large .sc_icons_icon > span:before { font-size: 3.8em; }
  .sc_icons_alter.sc_icons_size_large .sc_icons_icon + .sc_icons_item_details,
  .sc_icons_alter.sc_icons_size_large .sc_icons_image + .sc_icons_item_details { margin-left: 1.3em; margin-top: 1.1em; }
  .sc_icons_divider3 .sc_icons_item { padding: 3.8em 1.8em 3em; }
  .sc_icons_divider3 .sc_icons_columns_wrap .sc_icons_item_wrap { padding: 0 0.8em; }
}

@media (max-width: 1439px) {
  .sc_icons_motley .sc_icons_item { padding: 4.4em 2.4em; }
  .sc_icons_card .sc_icons_item { padding: 4em 2.2em 2.4em; }
  .sc_icons_hover .sc_icons_icon:before,
  .sc_icons_hover .sc_icons_icon > span:before { font-size: 4em; }
  .sc_icons_hover .sc_icons_icon + .sc_icons_item_details,
  .sc_icons_hover .sc_icons_image + .sc_icons_item_details { margin-left: 1.6em; margin-top: 0.6em; }
  .sc_icons_hover.sc_align_right .sc_icons_icon + .sc_icons_item_details,
  .sc_icons_hover.sc_align_right .sc_icons_image + .sc_icons_item_details { margin-left: 0; margin-right: 1.6em; }
  .sc_icons_divider2 .sc_icons_item_title { font-size: 1.5em; }
  .sc_icons_divider2 .sc_icons_icon:before,
  .sc_icons_divider2 .sc_icons_icon > span:before { font-size: 4.4em; }
  .sc_icons_divider3 .sc_icons_item { padding: 3.6em 1.6em 2.8em; }
  .sc_icons_divider3 .sc_icons_columns_wrap .sc_icons_item_wrap { padding: 0 0.2em; }
  .sc_icons_divider3 .sc_icons_item_title { font-size: 1.25em; }
}

@media (max-width: 1024px) {
  .pservices__row--top { grid-template-columns: 1fr; gap: 40px; }
  .pservices__row--bottom { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .trx_addons_column-1_2-mobile { width: 100%; }
}
@media (max-width: 1024px) {
  .trx_addons_column-1_2-tablet { width: 50%; }
}
@media (max-width: 580px) {
  .pservices__row--bottom { grid-template-columns: 1fr; }
  .pservices { padding: 60px 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: #FAFAFA; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  background: var(--color-white);
  border: 1px solid #E8E8E8;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-secondary);
  transition: width 0.35s ease;
}
.service-card:hover { background: var(--color-primary); box-shadow: var(--shadow-strong); }
.service-card:hover .service-card__title { color: var(--color-white); }
.service-card:hover .service-card__desc { color: rgba(255,255,255,0.65); }
.service-card:hover .service-card__icon svg { stroke: var(--color-secondary); }
.service-card:hover .service-card__icon { background: rgba(255,228,1,0.1); }
.service-card:hover::after { width: 100%; }
.service-card__icon {
  width: 56px; height: 56px;
  background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}
.service-card__icon svg { width: 28px; height: 28px; stroke: var(--color-primary); transition: stroke 0.3s ease; }
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.service-card__desc { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.65; transition: color 0.3s ease; }
.services__loading { text-align: center; color: var(--color-text-light); padding: 2rem; grid-column: 1/-1; }
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================================
   À PROPOS — image gauche | texte + stats droite (ProGuards)
   ============================================================ */
.apropos { background: #FAFAFA; color: var(--color-text); }
.apropos__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;   /* image 42% | contenu 58% */
  gap: 5rem;
  align-items: center;
}

/* ---- Image gauche ---- */
.apropos__image {
  position: relative;
  overflow: hidden;
}
.apropos__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* ---- Colonne droite ---- */
.apropos__right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.apropos__text .section__title { color: var(--color-primary); }
.apropos__text p { color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.75; }

/* ---- Features list — coche jaune style ProGuards ---- */
.apropos__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0 1.75rem;
}
.apropos__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}
.apropos__features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.apropos__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Stats 2×2 ---- */
address.footer__contact { font-style: normal; }
.apropos__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-radius: 0;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--color-secondary); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.stat-card__number::after { content: '+'; font-size: 2rem; }
.stat-card__label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie { background: #ffffff; }
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--color-border);
}
.galerie__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.galerie__item:hover img { transform: scale(1.08); }
.galerie__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
}
.galerie__item:hover .galerie__item__overlay { opacity: 1; }
.galerie__loading { text-align: center; color: var(--color-text-light); padding: 2rem; grid-column: 1/-1; }

/* Placeholder for gallery items */
.galerie__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: var(--z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox__content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lightbox__caption { color: rgba(255,255,255,0.7); margin-top: 1rem; font-size: 0.9rem; }
.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  color: var(--color-white);
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: var(--z-lb-ctrl);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 3rem;
  opacity: 0.7;
  padding: 1rem;
  transition: opacity 0.2s;
  z-index: var(--z-lb-ctrl);
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
/* ============================================================
   TÉMOIGNAGES — design premium
   ============================================================ */
.tmg {
  position: relative;
  background: #1A1A2E;
  padding: 110px 0 120px;
  overflow: hidden;
}

/* Grand guillemet décoratif en fond */
.tmg__bg-quote {
  position: absolute;
  top: -60px;
  right: -40px;
  font-size: 42vw;
  line-height: 1;
  color: rgba(255, 228, 1, 0.03);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.tmg .container { position: relative; z-index: 1; }

/* Header */
.tmg__header {
  text-align: center;
  margin-bottom: 70px;
}
.tmg__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0094C7;
  margin-bottom: 1rem;
}
.tmg__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.tmg__title b { font-weight: 800; color: #0094C7; }
.tmg__title-line {
  width: 56px;
  height: 3px;
  background: #0094C7;
  margin: 0 auto;
}

/* Grille 2×2 */
.tmg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

/* Card */
.tmg-card {
  background: #0A0A0A;
  padding: 3rem 2.8rem 2.6rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease;
}
.tmg-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #0094C7;
  transition: width 0.4s ease;
}
.tmg-card:hover { background: #1e1e1e; transform: translateY(-4px); }
.tmg-card:hover::before { width: 100%; }

/* Card featured : accent gauche jaune */
.tmg-card--featured {
  background: #0094C7;
}
.tmg-card--featured::before { display: none; }
.tmg-card--featured .tmg-card__stars { color: #0A0A0A; }
.tmg-card--featured .tmg-card__deco-quote { color: rgba(24,24,24,0.12); }
.tmg-card--featured .tmg-card__text { color: #0A0A0A; }
.tmg-card--featured .tmg-card__divider { border-color: rgba(24,24,24,0.15); }
.tmg-card--featured .tmg-card__avatar {
  background: #0A0A0A;
  color: #0094C7;
}
.tmg-card--featured .tmg-card__info strong { color: #0A0A0A; }
.tmg-card--featured .tmg-card__info span { color: rgba(24,24,24,0.65); }
.tmg-card--featured:hover { background: #0094C7; transform: translateY(-4px); }

/* Top : étoiles + guillemet déco */
.tmg-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.tmg-card__stars {
  font-size: 1rem;
  color: #0094C7;
  letter-spacing: 2px;
}
.tmg-card__deco-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(255, 228, 1, 0.12);
  user-select: none;
}

/* Texte */
.tmg-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-style: italic;
}

/* Séparateur */
.tmg-card__divider {
  margin: 2rem 0 1.5rem;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Auteur */
.tmg-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tmg-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0094C7;
  color: #0A0A0A;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.tmg-card__info strong {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.tmg-card__info span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .tmg { padding: 70px 0 80px; }
  .tmg__grid { grid-template-columns: 1fr; }
  .tmg-card { padding: 2.2rem 1.8rem; }
  .tmg__bg-quote { font-size: 80vw; top: -20px; right: -20px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #FAFAFA; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item:first-child { border-top: 1px solid var(--color-border); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--color-secondary); }
.faq__question[aria-expanded="true"] { color: var(--color-secondary); }
.faq__icon {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  position: relative;
  transition: var(--transition);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-secondary);
  border-radius: 2px;
}
.faq__icon::before { width: 10px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 2px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s ease; }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer.open { max-height: 400px; padding-bottom: 1.25rem; }
.faq__answer p { color: var(--color-text-light); line-height: 1.7; }

/* ============================================================
   CONTACT — ProGuards style split-screen
   ============================================================ */

/* Section : background full-width, card flottant à droite */
.cform {
  background-image: url('../images/bg-04-copyright.jpg');
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}

/* Container : aligne le card à droite */
.cform__container {
  display: flex;
  justify-content: flex-end;
}

/* Élément image vide — non utilisé */
.cform__image { display: none; }

/* Card blanc */
.cform__panel {
  width: 550px;
  flex-shrink: 0;
  background: #ffffff;
}
.cform__inner {
  padding: 62px 60px;
  color: #797C7F;
}

/* Eyebrow */
.cform__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 0.75rem;
}

/* Titre */
.cform__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 46.998px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.15;
  margin: 0 0 2rem;
}
.cform__title b { font-weight: 800; }

/* Formulaire */
.cform__form { display: flex; flex-direction: column; gap: 0; }

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin-bottom: 1.5rem;
}
.cform__row--mb { margin-bottom: 2.5rem; }

/* Champ style-line : underline only, pas de box */
.cform__field {
  position: relative;
  padding-bottom: 8px;
}
.cform__field input,
.cform__field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  padding: 8px 0 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #0A0A0A;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.cform__field input::placeholder { color: #aaaaaa; }
.cform__field select { color: #aaaaaa; cursor: pointer; }
.cform__field select.filled { color: #0A0A0A; }

/* Ligne animée au focus */
.cform__field .line {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0A0A0A;
  transition: width 0.35s ease;
  display: block;
}
.cform__field input:focus ~ .line,
.cform__field select:focus ~ .line { width: 100%; }

/* Select container arrow */
.select_container { position: relative; }
.select_container::after {
  content: '\E906';
  font-family: 'fontello';
  font-size: 10px;
  color: #aaaaaa;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
}

/* Feedback */
.form__feedback {
  padding: 10px 0;
  font-size: 0.875rem;
  display: none;
  margin-bottom: 0.5rem;
}
.form__feedback.success { display: block; color: #22c55e; }
.form__feedback.error   { display: block; color: #ef4444; }

/* Bouton submit ProGuards */
.cform__submit {
  display: inline-block;
  background: #0094C7;
  color: #0A0A0A;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.cform__submit:hover { background: #0A0A0A; color: #0094C7; }

/* Responsive */
@media (max-width: 1024px) {
  .cform { padding: 60px 0; }
  .cform__container { justify-content: center; }
  .cform__panel { width: 100%; max-width: 550px; }
  .cform__title { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .cform__row { grid-template-columns: 1fr; }
  .cform__inner { padding: 40px 24px; }
  .cform__title { font-size: 1.8rem; }
}

/* ============================================================
   FOOTER — ProGuards style
   ============================================================ */
.ft {
  background: #1A1A2E;
}

/* Corps principal */
.ft__main {
  padding: 110px 0 80px;
}
.ft__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 3rem;
}

/* Titre de colonne — h6 ProGuards */
.ft__col-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 2rem;
}

/* Corps texte */
.ft__col-body p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.ft__col-body a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.ft__col-body a:hover { color: #0094C7; }

/* Email souligné style ProGuards */
.ft__col-body a[href^="mailto"] {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.25);
}
.ft__col-body a[href^="mailto"]:hover {
  color: #0094C7;
  text-decoration-color: #0094C7;
}

/* Téléphone : blanc pur, légèrement plus visible */
.ft__col-body a[href^="tel"] {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}
.ft__col-body a[href^="tel"]:hover { color: #0094C7; }

/* Liste liens */
.ft__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ft__links li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.ft__links li a:hover { color: #0094C7; }

/* Icônes sociales — cercles avec bordure */
.ft__socials {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.ft__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ft__social-link:hover {
  background: #0094C7;
  border-color: #0094C7;
  color: #0A0A0A;
}
.ft__social-link span {
  font-family: 'fontello';
  font-style: normal;
  font-weight: normal;
}

/* Barre basse */
.ft__bottom { padding: 0 0 32px; }
.ft__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.ft__copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ft__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .ft__main { padding: 70px 0 50px; }
}
@media (max-width: 480px) {
  .ft__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COOKIE BANNER — ProGuards style
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 320px;
  background: #ffffff;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 9998;
  text-align: center;
  /* Entrée depuis le bas */
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

/* Bouton fermer */
.cookie-banner__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.cookie-banner__close:before {
  font-family: 'fontello';
  content: '\e8ac';
  font-size: 19px;
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  color: #A5A6AA;
  transition: color 0.25s ease;
}
.cookie-banner__close:hover:before { color: #0A0A0A; }

/* Texte + icône cookie via :before (style ProGuards) */
.cookie-banner__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4em;
  color: #555555;
  margin: 0 0 20px;
  padding: 51px 0 0;
  text-align: center;
  position: relative;
}
.cookie-banner__text--icon:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 36px;
  line-height: 1em;
  content: "\ea0a";
  font-family: "fontello";
  color: #0A0A0A;
}
.cookie-banner__link {
  color: #0A0A0A;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.cookie-banner__link:hover { color: #0094C7; }

/* Bouton Accept */
.cookie-banner__accept {
  display: block;
  width: 100%;
  background: #1A1A2E;
  color: #ffffff;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-banner__accept:hover { background: #0094C7; color: #0A0A0A; }

@media (max-width: 480px) {
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; width: auto; }
}

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

/* ---- Hero page ---- */
.pg-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pg-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.pg-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.72);
}
.pg-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.pg-hero__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pg-hero__scroll {
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}
.pg-hero__scroll:hover { opacity: 1; }

/* ---- Info 3 colonnes ---- */
.cinfo {
  background: #ffffff;
  padding: 90px 0 80px;
}
.cinfo__grid {
  display: grid;
  grid-template-columns: repeat(3, 346.66px);
  gap: 2rem 3rem;
  justify-content: center;
  text-align: center;
}
.cinfo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cinfo__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  color: #0A0A0A;
  font-size: 2rem;
  transition: border-color 0.25s, color 0.25s;
}
.cinfo__item--linked:hover .cinfo__icon {
  border-color: #0094C7;
  color: #0094C7;
}
.cinfo__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 8px;
}
.cinfo__title a { color: inherit; text-decoration: none; }
.cinfo__title a:hover { color: #0094C7; }
.cinfo__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #797C7F;
  line-height: 1.7;
}
.cinfo__desc p { margin: 0; }
.cinfo__desc a { color: #797C7F; text-decoration: none; }
.cinfo__desc a:hover { color: #0A0A0A; }
.cinfo__more {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: #0A0A0A;
  text-decoration: none;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.cinfo__more:hover { color: #0094C7; border-color: #0094C7; }

/* ---- Carte + Formulaire ---- */
.cmap {
  display: grid;
  grid-template-columns: 833px 517.55px;
  justify-content: center;
  height: 640px;
}
.cmap__map {
  position: relative;
  height: 640px;
}
.cmap__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.cmap__form {
  background: #ffffff;
  display: flex;
  align-items: center;
  height: 640px;
  padding: 0;
}
.cmap__form-inner {
  width: 100%;
  max-width: 540px;
  padding: 0 60px;
}
.cmap__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #797C7F;
  display: block;
  margin-bottom: 12px;
}
.cmap__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.2;
  margin: 0 0 36px;
}
.cmap__title b { font-weight: 700; }

/* Champs */
.cmap__form-fields { width: 100%; }
.cmap__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-bottom: 28px;
}
.cmap__row--full { grid-template-columns: 1fr; }
.cmap__field { position: relative; }
.cmap__field input,
.cmap__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #0A0A0A;
  padding: 10px 0 10px;
  resize: none;
  transition: border-color 0.2s;
}
.cmap__field input:focus-visible,
.cmap__field textarea:focus-visible { outline: 2px solid transparent; }
.cmap__field input::placeholder,
.cmap__field textarea::placeholder { color: #797C7F; }
.cmap__field input:focus,
.cmap__field textarea:focus { border-bottom-color: #0A0A0A; }
.cmap__line {
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #0094C7;
  transition: width 0.3s ease;
}
.cmap__field input:focus ~ .cmap__line,
.cmap__field textarea:focus ~ .cmap__line { width: 100%; }
.cmap__submit {
  display: inline-block;
  margin-top: 8px;
  background: #0094C7;
  color: #0A0A0A;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.cmap__submit:hover { background: #0A0A0A; color: #0094C7; }
.cmap__success {
  background: #f0faf0;
  border-left: 4px solid #4caf50;
  padding: 16px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #2e7d32;
  margin-bottom: 24px;
}
.cmap__error {
  background: #fff3f3;
  border-left: 4px solid #e53935;
  padding: 16px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #c62828;
  margin-bottom: 24px;
}

/* ---- CTA sombre ---- */
.contact-cta {
  position: relative;
  padding: 130px 0 120px;
  overflow: hidden;
  text-align: center;
}
.contact-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.78);
}
.contact-cta__inner {
  position: relative;
  z-index: 2;
}
.contact-cta__subtitle {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.contact-cta__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
}
.contact-cta__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ---- Responsive page contact ---- */
@media (max-width: 1024px) {
  .cmap__form-inner { padding: 0 40px; }
}
@media (max-width: 900px) {
  .cinfo__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cmap { grid-template-columns: 1fr; height: auto; }
  .cmap__map { min-height: 360px; position: relative; height: 360px; }
  .cmap__form { height: auto; padding: 60px 0; }
  .cmap__form-inner { padding: 0 30px; max-width: 100%; }
}
@media (max-width: 580px) {
  .pg-hero { height: 380px; }
  .cinfo { padding: 60px 0 50px; }
  .cmap__row { grid-template-columns: 1fr; gap: 0; }
  .cmap__row--full { grid-template-columns: 1fr; }
  .cmap__form-inner { padding: 0 20px; }
  .contact-cta { padding: 90px 0 80px; }
}

/* ============================================================
   RESPONSIVE — COMPLÉMENTS (toutes pages)
   ============================================================ */

/* --- Navbar : collapse à 900px au lieu de 768px --- */
@media (max-width: 900px) {
  :root { --navbar-height: 68px; }
  .navbar__nav          { display: none; }
  .navbar__block        { height: auto; padding: 0 4px; }
  .navbar__block--right { gap: 0.6rem; align-items: center; }
  .btn.navbar__cta      { display: none; }
  .navbar__search       { display: none; }
  .navbar__burger       { display: flex; }
  .navbar__mob-search   { display: flex; align-items: center; }
  .navbar__mob-phone    { display: flex; }
  .navbar__logo img     { height: 38px; width: auto; }
}

/* --- Hero (index) hauteur fluide --- */
@media (max-width: 900px)  { .hero { height: 540px; } }
@media (max-width: 600px)  { .hero { height: 480px; } }
@media (max-width: 480px)  {
  .hero { height: 430px; }
  .hero__content { padding-top: calc(68px + 2.5rem); }
}

/* --- Services Premium cards : 25% → 50% sur tablette --- */
@media (max-width: 900px) {
  .trx_addons_column-1_4 { width: 50%; }
}
/* 100% sur mobile déjà défini à 580px */

/* --- À propos : empilage mobile --- */
@media (max-width: 900px) {
  .apropos__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .apropos__image {
    max-height: 400px;
    overflow: hidden;
  }
  .apropos__image img {
    height: 400px;
    object-fit: cover;
  }
  .apropos__right { padding: 48px 0 0; }
}
@media (max-width: 480px) {
  .apropos__image { max-height: 260px; }
  .apropos__image img { height: 260px; }
  .apropos__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .apropos { padding: 56px 0; }
}

/* --- Stat cards 1 col sur très petit écran --- */
@media (max-width: 360px) {
  .apropos__stats { grid-template-columns: 1fr; }
}

/* --- cinfo__grid : 3 → 2 → 1 cols --- */
@media (max-width: 768px) {
  .cinfo__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 480px) {
  .cinfo__grid { grid-template-columns: 1fr; }
  .cinfo { padding: 60px 0 50px; }
}

/* --- Page hero (secondaires) — tablet --- */
@media (max-width: 768px) {
  .pg-hero { height: 440px; }
}
@media (max-width: 480px) {
  .pg-hero { height: 360px; }
}

/* --- Contact CTA --- */
@media (max-width: 600px) {
  .contact-cta { padding: 80px 0 70px; }
}
@media (max-width: 480px) {
  .contact-cta { padding: 60px 0 56px; }
}

/* --- Booking steps : labels cachés sur petit tablet --- */
@media (max-width: 680px) {
  .booking__step span  { display: none; }
  .booking__step-line  { min-width: 20px; }
}

/* --- Booking services : 1 col sur mobile --- */
@media (max-width: 480px) {
  .booking__services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .booking__services { grid-template-columns: 1fr; }
}

/* --- Booking slots : taille mobile --- */
@media (max-width: 480px) {
  .booking__slots  { gap: 8px; }
  .booking__slot   { padding: 10px 14px; min-width: 70px; }
}

/* --- Submit wrap booking --- */
@media (max-width: 480px) {
  .booking__submit-wrap { flex-direction: column; align-items: stretch; }
  .booking__submit      { width: 100%; justify-content: center; }
}

/* --- Confirmation box mobile --- */
@media (max-width: 480px) {
  .booking__confirm { padding: 40px 20px; }
}

/* --- Legal content mobile --- */
@media (max-width: 480px) {
  .legal-content { padding: 60px 0 70px; }
  .legal-content__heading { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* --- iOS : prevention zoom auto sur tous les inputs --- */
@media (max-width: 480px) {
  .cmap__field input,
  .cmap__field textarea,
  .booking__field input,
  .booking__field textarea,
  .booking__date-input  { font-size: 16px; }
}

/* --- Sections padding global sur très petit écran --- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .booking__section { padding: 28px 18px; }
  .booking__submit-wrap { padding: 24px 18px; }
  .cmap__form-inner { padding: 0 14px; }
}

/* ============================================================
   PAGE RENDEZ-VOUS
   ============================================================ */

.booking {
  background: #f5f5f5;
  padding: 90px 0 110px;
}
.booking__container {
  max-width: 900px;
}

/* En-tête */
.booking__header {
  text-align: center;
  margin-bottom: 56px;
}
.booking__subtitle {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #797C7F;
  margin-bottom: 12px;
}
.booking__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.booking__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #797C7F;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Étapes */
.booking__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.booking__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.booking__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1A1A2E;
  color: #0094C7;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking__step span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #797C7F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking__step-line {
  flex: 1;
  height: 1px;
  background: #d0d0d0;
  margin: 0 12px;
  margin-bottom: 22px;
  min-width: 40px;
}

/* Sections */
.booking__section {
  background: #ffffff;
  padding: 40px 44px;
  margin-bottom: 4px;
}
.booking__section-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}
.booking__section-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0094C7;
  background: #1A1A2E;
  padding: 3px 9px;
  flex-shrink: 0;
}

/* Cartes service */
.booking__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.booking__service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px 18px;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.booking__service-card input { display: none; }
.booking__service-card:hover { border-color: #0A0A0A; }
.booking__service-card.selected {
  border-color: #0094C7;
  background: #1A1A2E;
}
.booking__service-card.selected .booking__service-label { color: #0094C7; }
.booking__service-card.selected .booking__service-icon { color: #0094C7; }
.booking__service-icon {
  font-size: 1.6rem;
  color: #0A0A0A;
  transition: color 0.2s;
}
.booking__service-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0A0A0A;
  transition: color 0.2s;
  line-height: 1.3;
}

/* Date */
.booking__date-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}
.booking__date-input {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #0A0A0A;
  border: none;
  border-bottom: 2px solid #0A0A0A;
  background: transparent;
  padding: 10px 0;
  width: 100%;
  cursor: pointer;
}
.booking__date-input:focus-visible { outline: 2px solid #0094C7; outline-offset: 4px; }
.booking__date-hint {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  color: #999;
}

/* Créneaux */
.booking__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-width: 80px;
}
.booking__slot input { display: none; }
.booking__slot span {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0A0A0A;
  transition: color 0.2s;
}
.booking__slot:hover { border-color: #0A0A0A; }
.booking__slot.selected {
  background: #0094C7;
  border-color: #0094C7;
}

/* Champs personnels */
.booking__fields { width: 100%; }
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-bottom: 28px;
}
.booking__row--full { grid-template-columns: 1fr; }
.booking__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking__field label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0A0A0A;
}
.booking__field label span { color: #0094C7; }
.booking__field input,
.booking__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #0A0A0A;
  padding: 8px 0;
  resize: none;
  transition: border-color 0.2s;
  width: 100%;
}
.booking__field input:focus,
.booking__field textarea:focus { border-bottom-color: #0A0A0A; }
.booking__field input:focus-visible,
.booking__field textarea:focus-visible { outline: none; }
.booking__field input::placeholder,
.booking__field textarea::placeholder { color: #b0b0b0; }
.booking__line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #0094C7;
  transition: width 0.3s ease;
}
.booking__field input:focus ~ .booking__line,
.booking__field textarea:focus ~ .booking__line { width: 100%; }

/* Soumission */
.booking__submit-wrap {
  background: #ffffff;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.booking__required-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  color: #999;
  margin: 0;
}
.booking__required-note span { color: #0094C7; }
.booking__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0094C7;
  color: #0A0A0A;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.booking__submit:hover { background: #0A0A0A; color: #0094C7; }
.booking__submit [class^="icon-"] { font-size: 1.1rem; }

/* Messages */
.booking__error {
  background: #fff3f3;
  border-left: 4px solid #e53935;
  padding: 16px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #c62828;
  margin-bottom: 28px;
}

/* Confirmation */
.booking__confirm {
  background: #ffffff;
  padding: 70px 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.booking__confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0094C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.75rem;
  color: #0A0A0A;
}
.booking__confirm-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 20px;
}
.booking__confirm p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 12px;
}
.booking__confirm-btn {
  display: inline-block;
  margin-top: 28px;
  background: #0A0A0A;
  color: #ffffff;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  transition: background 0.25s, color 0.25s;
}
.booking__confirm-btn:hover { background: #0094C7; color: #0A0A0A; }

/* Responsive */
@media (max-width: 768px) {
  .booking { padding: 60px 0 80px; }
  .booking__section { padding: 30px 24px; }
  .booking__submit-wrap { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .booking__services { grid-template-columns: repeat(2, 1fr); }
  .booking__steps { gap: 0; }
  .booking__step-line { min-width: 20px; }
}
@media (max-width: 580px) {
  .booking__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 20px; }
  .booking__services { grid-template-columns: 1fr 1fr; }
  .booking__steps { display: none; }
  .booking__confirm { padding: 40px 24px; }
}

/* ============================================================
   PAGE LÉGALE (politique de cookies, etc.)
   ============================================================ */

.legal-content {
  background: #ffffff;
  padding: 100px 0 120px;
}
.legal-content__container {
  max-width: 860px;
}
.legal-content__intro {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}
.legal-content__intro p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 12px;
}
.legal-content__date {
  font-size: 0.875rem !important;
  color: #999 !important;
}
.legal-content__block {
  margin-bottom: 60px;
}
.legal-content__heading {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
}
.legal-content__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0094C7;
  background: #1A1A2E;
  padding: 4px 10px;
  flex-shrink: 0;
}
.legal-content__block p,
.legal-content__block li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 14px;
}
.legal-content__block ul {
  padding-left: 20px;
  margin: 0 0 20px;
}
.legal-content__block a {
  color: #0A0A0A;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content__block a:hover { color: #0094C7; }
.legal-content__block code {
  background: #f4f4f4;
  padding: 2px 6px;
  font-size: 0.85em;
  border-radius: 3px;
  color: #0A0A0A;
}

/* Cartes types de cookies */
.legal-content__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.legal-content__card {
  display: flex;
  gap: 18px;
  background: #f8f8f8;
  padding: 24px 22px;
  border-left: 3px solid #0094C7;
}
.legal-content__card-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #0A0A0A;
  line-height: 1.4;
}
.legal-content__card-body h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 10px;
}
.legal-content__card-body p {
  font-size: 0.875rem !important;
  margin: 0 !important;
}

/* Tableau */
.legal-content__table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}
.legal-content__table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
}
.legal-content__table th {
  background: #1A1A2E;
  color: #0094C7;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  letter-spacing: 0.04em;
}
.legal-content__table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #555;
  vertical-align: top;
}
.legal-content__table tr:last-child td { border-bottom: none; }
.legal-content__table tr:hover td { background: #fafafa; }

/* Liens navigateurs */
.legal-content__browsers ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 8px 0 20px;
}
.legal-content__browsers li::before { content: none; }
.legal-content__browsers a {
  font-weight: 600;
}

/* Bouton révoquer */
.legal-content__revoke {
  display: inline-block;
  background: #0A0A0A;
  color: #ffffff;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.25s, color 0.25s;
}
.legal-content__revoke:hover { background: #0094C7; color: #0A0A0A; }
.legal-content__revoke:disabled {
  background: #e0e0e0;
  color: #888;
  cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-content { padding: 70px 0 80px; }
  .legal-content__cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .legal-content__heading { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .top-bar { padding: 14px 20px; }
  .navbar__phone { display: none; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  :root { --section-padding: 70px 0; }

  /* Hero */
  .hero__arrow--prev { transform: translate(10px, -50%); }
  .hero__arrow--next { transform: translate(-54px, -50%); }

  /* Galerie */
  .galerie__grid { grid-template-columns: repeat(2, 1fr); }

  /* Témoignages */
  .tmg { padding: 70px 0 80px; }
  .tmg__grid { gap: 1px; }
  .tmg-card { padding: 2rem 1.6rem; }

  /* Footer */
  .ft__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .ft__main { padding: 70px 0 50px; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  :root { --section-padding: 56px 0; }

  /* Navbar mobile — desktop nav caché, overlay prend le relai */
  .navbar__nav { display: none; }
  .navbar__block { height: auto; padding: 0 4px; }
  .navbar__block--right { gap: 0.6rem; align-items: center; }
  .btn.navbar__cta { display: none; }
  .navbar__search { display: none; }        /* search desktop caché */
  .navbar__burger { display: flex; }
  .navbar__mob-search { display: flex; align-items: center; }
  .navbar__mob-phone { display: flex; }
  .navbar__logo img { height: 38px; width: auto; }

  /* Hero */
  .hero__arrow { width: 44px; height: 44px; }
  .hero__arrow--prev { transform: translate(6px, -50%); }
  .hero__arrow--next { transform: translate(-50px, -50%); }
  .hero-slider__dots { bottom: 1.5rem; }

  /* CTA Banner */
  .cta-banner__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cta-banner__title { max-width: 100%; }
  .cta-banner { padding: 48px 0; }

  /* Services Premium */
  .pservices { padding: 60px 0; }

  /* Témoignages */
  .tmg__grid { grid-template-columns: 1fr; gap: 1px; }
  .tmg__bg-quote { font-size: 80vw; top: -10px; right: -10px; }

  /* Contact */
  .cform { padding: 60px 0; }
  .cform__container { justify-content: center; }
  .cform__panel { width: 100%; max-width: 550px; }
  .cform__title { font-size: 2rem; }

  /* Footer */
  .ft__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ft__copy { text-align: center; }
}

/* ---- 580px ---- */
@media (max-width: 580px) {
  /* Services Premium colonnes */
  .pservices__row--bottom { grid-template-columns: 1fr; }
  .trx_addons_column-1_4 { width: 100%; }

  /* CTA buttons */
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__btn { width: 100%; text-align: center; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  :root { --section-padding: 48px 0; }

  /* Hero */
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero__arrow { display: none; }
  .hero-slider__dots { bottom: 1rem; }

  /* About intro */
  .about-intro { padding: 60px 0; }
  .about-intro__image { min-height: 260px; }
  .about-intro__content { padding: 36px 20px; }

  /* Galerie */
  .galerie__grid { grid-template-columns: 1fr; }

  /* Témoignages */
  .tmg-card { padding: 1.5rem 1.2rem; }

  /* Contact */
  .cform { padding: 40px 0; }
  .cform__row { grid-template-columns: 1fr; }
  .cform__inner { padding: 30px 20px; }
  .cform__title { font-size: 1.6rem; }
  /* Évite le zoom auto iOS sur les inputs */
  .cform__field input,
  .cform__field select { font-size: 16px; }

  /* Footer */
  .ft__main { padding: 50px 0 36px; }
}
