/* ========================================================
   MK PREMIUM CLEAN — v2 image-led premium
   Inspired by taste-skill principles: image-first,
   composition variety, anti-slop, generous spacing.
   ======================================================== */

:root {
  /* === Thème « Azure premium » : blanc frais + bleu profond === */
  /* Fonds (anciennes variables navy, désormais en tons clairs frais) */
  --navy-950: #f7f9fc;   /* fond principal — blanc cassé frais */
  --navy-900: #eef2f8;   /* fond alterné — bleu-gris très clair */
  --navy-800: #e2e9f3;   /* bleu-gris clair */
  --navy-700: #cfdcef;   /* bleu clair */
  --navy-600: #b3c8e6;   /* bleu moyen clair */

  --surface: #ffffff;    /* cartes blanches */
  --wood-100: #e6eefb;   /* tuile bleue claire (icônes) */

  --ice-100: #e8f0fb;    /* texte clair sur fonds bleus foncés (hero, bandeau) */

  /* Accent azur */
  --gold: #1c5cc2;       /* azur — lisible sur blanc (texte accent) */
  --gold-light: #4f9be8; /* ciel — fonds dégradés (boutons, badges) */
  --gold-dark: #0e3f8c;  /* bleu marine profond */

  --cream: #eef2f8;
  --white: #ffffff;
  --ink: #122036;        /* texte foncé : titres + texte posé sur les accents */

  --text-light: #1f2c3f; /* texte courant — charbon-bleu */
  --text-muted: #56657a; /* texte secondaire */
  --text-dim: #8a97a8;   /* texte discret */

  --border-soft: rgba(20, 40, 70, 0.12);
  --border-gold: rgba(28, 92, 194, 0.32);
  --shadow-md: 0 10px 30px rgba(20, 50, 100, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 50, 100, 0.14);
  --shadow-gold: 0 12px 32px rgba(28, 92, 194, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 400ms var(--ease);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--navy-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--navy-950); }

/* ========== UTILS ========== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 15px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(28, 92, 194, 0.40);
}
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}
.btn--gold:hover::after { transform: translateX(100%); }

/* Boutons WhatsApp — vert officiel de la marque */
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.30);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(37, 211, 102, 0.42);
}
.btn--whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}
.btn--whatsapp:hover::after { transform: translateX(100%); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: all var(--transition);
}
.header.is-scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
/* En haut (header transparent sur la photo) : textes clairs.
   Une fois scrollé (fond clair) : textes foncés. */
.header.is-scrolled .logo { color: var(--ink); }
.header.is-scrolled .nav a { color: var(--text-light); }
.header.is-scrolled .brand__contact,
.header.is-scrolled .brand__contact-item { color: var(--text-muted); }
.header.is-scrolled .brand__contact-item svg { color: var(--gold); }
.header.is-scrolled .brand__sep { color: var(--text-dim); }
.header.is-scrolled .nav__toggle span { background: var(--ink); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.logo__mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 4px 12px rgba(28, 92, 194, 0.30));
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 48px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}
.brand__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
}
.brand__contact-item:hover { color: var(--gold-light); }
.brand__contact-item svg { width: 12px; height: 12px; color: var(--gold-light); flex-shrink: 0; }
.brand__sep { color: rgba(255, 255, 255, 0.5); }

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 200;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav__toggle.is-open span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO : image-as-canvas, bottom-left composition ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,24,46,0.18) 0%, rgba(11,24,46,0.28) 55%, rgba(8,18,38,0.62) 100%),
    linear-gradient(90deg, rgba(11,24,46,0.35) 0%, rgba(11,24,46,0.00) 60%);
}

.hero__inner {
  width: 100%;
  position: relative;
}
.hero__content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__content .eyebrow { margin-bottom: 8px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 104px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ice-100);
  max-width: 560px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ice-100);
  letter-spacing: 0.01em;
}
.hero__badges svg {
  width: 17px;
  height: 17px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero__local {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(246, 239, 228, 0.82);
}
.hero__local svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

/* ========== TRUST BAR : strip horizontal ========== */
.trustbar {
  background: var(--navy-900);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trustbar__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 140px;
  text-align: center;
}
.trustbar__item strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.trustbar__item span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.trustbar__sep {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
  flex-shrink: 0;
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section--prestations { background: var(--navy-950); }
.section--process { background: var(--navy-900); position: relative; }
.section--ba {
  background: var(--navy-950);
  position: relative;
}
.section--ba::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(28, 92, 194, 0.07), transparent 60%);
  pointer-events: none;
}
.section--gallery { background: var(--navy-900); }
.section--engagements { background: var(--navy-950); position: relative; }
.section--engagements::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(28, 92, 194, 0.06), transparent 55%);
  pointer-events: none;
}
.section--faq { background: var(--navy-950); }
.section--tarifs {
  background: var(--navy-900);
  position: relative;
}
.section--tarifs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(28, 92, 194, 0.06), transparent 50%);
  pointer-events: none;
}
.section--contact {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__head .eyebrow { justify-content: center; margin-bottom: 18px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__lead {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-muted);
}

/* ========== CARDS : photo-backed, image-led ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition);
  isolation: isolate;
}
.card:hover { transform: translateY(-6px); }
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1200ms var(--ease);
}
.card:hover .card__img { transform: scale(1.06); }
.card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,22,42,0.08) 0%, rgba(10,22,42,0.42) 50%, rgba(8,18,36,0.93) 100%);
  transition: opacity var(--transition);
}
.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}
.card__price {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Carte « avant / après » (matelas : moitié sale / moitié propre) ---- */
.card--split .card__img {
  z-index: 0; /* moitié droite = propre */
}
.card--split .card__dirty {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  clip-path: inset(0 50% 0 0); /* moitié gauche uniquement */
  filter: saturate(0.4) brightness(0.66) contrast(0.96) sepia(0.32);
  transition: transform 1200ms var(--ease);
}
.card--split:hover .card__dirty,
.card--split:hover .card__stains { transform: scale(1.06); }
.card--split .card__stains {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  mix-blend-mode: multiply;
  transition: transform 1200ms var(--ease);
  background:
    radial-gradient(ellipse 40% 26% at 24% 30%, rgba(78, 58, 36, 0.6), transparent 62%),
    radial-gradient(ellipse 32% 24% at 40% 64%, rgba(58, 42, 26, 0.55), transparent 64%),
    radial-gradient(ellipse 24% 20% at 14% 78%, rgba(92, 72, 44, 0.5), transparent 60%),
    radial-gradient(ellipse 18% 16% at 33% 14%, rgba(70, 54, 34, 0.45), transparent 62%);
}
.card--split .card__split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-1px);
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0.9) 82%, transparent);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
}
.card--split .card__overlay { z-index: 4; }
.card--split .card__split-tag {
  position: absolute;
  top: 14px;
  z-index: 5;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.card--split .card__split-tag--before {
  left: 14px;
  background: rgba(10, 22, 42, 0.66);
  color: var(--white);
}
.card--split .card__split-tag--after {
  right: 14px;
  background: rgba(28, 92, 194, 0.92);
  color: var(--white);
}
.card--split .card__content { z-index: 6; }

/* ========== BEFORE / AFTER ========== */
.ba { max-width: 1000px; margin: 0 auto; }
.ba__compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba__before, .ba__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba__before img, .ba__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__before { clip-path: inset(0 50% 0 0); transition: clip-path 80ms linear; }

/* Effet "avant nettoyage" sur la MÊME photo */
.ba__before img {
  filter: saturate(0.5) brightness(0.78) contrast(0.92) sepia(0.22);
}
.ba__before::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(80, 65, 45, 0.18), rgba(60, 45, 30, 0.25));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ba__stains {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 14% 9% at 28% 62%, rgba(70, 45, 25, 0.55), rgba(70, 45, 25, 0.15) 60%, transparent 80%),
    radial-gradient(ellipse 10% 7% at 62% 55%, rgba(80, 55, 30, 0.45), rgba(80, 55, 30, 0.12) 60%, transparent 80%),
    radial-gradient(ellipse 8% 5% at 78% 68%, rgba(60, 40, 22, 0.4), transparent 75%),
    radial-gradient(ellipse 7% 5% at 45% 72%, rgba(90, 65, 35, 0.35), transparent 75%),
    radial-gradient(ellipse 5% 4% at 18% 50%, rgba(60, 40, 25, 0.32), transparent 75%);
  mix-blend-mode: multiply;
  filter: blur(2px);
}

.ba__label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(5, 11, 24, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.ba__label--before { left: 20px; }
.ba__label--after { right: 20px; color: var(--gold-light); border-color: var(--border-gold); }

.ba__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: ew-resize;
  z-index: 2;
}
.ba__handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 16px rgba(255,255,255,0.5);
}
.ba__handle-knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.ba__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 760px;
  margin: 22px auto 0;
  text-align: left;
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-dim);
}
.ba__disclaimer svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ========== GALLERY : masonry asymétrique ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-800);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease), filter var(--transition);
  filter: saturate(0.95);
}
.gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ========== PRICING : lignes éditoriales ========== */
.pricing {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.pricing__row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition);
}
.pricing__row:hover { background: rgba(28, 92, 194, 0.06); }
.pricing__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pricing__dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--border-soft);
  align-self: center;
  margin-bottom: 8px;
}
.pricing__value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ========== PAIEMENT ========== */
.section--paiement { background: var(--navy-900); }

.payment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
/* Variante "1 seule option de paiement" : carte centrée, format premium */
.payment--single {
  max-width: 520px;
}
.payment--single .payment__card {
  padding: 28px 30px;
}
.payment__card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text-light);
  transition: all var(--transition);
}
.payment__card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}
.payment__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: var(--wood-100);
  color: var(--gold);
}
.payment__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.payment__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.payment__content strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.payment__hint {
  font-size: 12px;
  color: var(--text-muted);
}
.payment__arrow {
  font-size: 22px;
  color: var(--gold);
  transition: transform var(--transition);
}
.payment__card:hover .payment__arrow { transform: translateX(4px); }

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text-light);
  transition: all var(--transition);
}
.contact__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}
.contact__icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: var(--wood-100);
  color: var(--gold);
}
.contact__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.contact__card strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
}
.contact__card--gold {
  background: linear-gradient(135deg, rgba(28,92,194,0.13), rgba(28,92,194,0.03));
  border-color: var(--border-gold);
}
.contact__card--gold .contact__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-soft);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.logo--footer { color: var(--ink); }
.logo--footer .logo__name { font-size: 17px; }
.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__contact a:hover { color: var(--gold); }
.footer__contact span[aria-hidden] { color: var(--text-dim); }
.footer__copy { font-size: 12px; color: var(--text-dim); }

/* ========== FAB WhatsApp ========== */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition);
  animation: pulseFab 2.5s infinite;
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.fab svg { width: 30px; height: 30px; }
@keyframes pulseFab {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ========== PROCESS : 3 étapes ========== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.process__step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.process__body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process__body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.process__cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ========== ENGAGEMENTS ========== */
.engagements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.engagement {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.engagement:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.engagement__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--wood-100);
  color: var(--gold);
}
.engagement__icon svg { width: 26px; height: 26px; }
.engagement h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.engagement p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== BANDEAU CTA ========== */
.ctaband {
  position: relative;
  background: linear-gradient(135deg, var(--gold-dark), #06234f);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}
.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(79, 155, 232, 0.20), transparent 55%);
  pointer-events: none;
}
.ctaband__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: clamp(48px, 7vh, 72px);
}
.ctaband__text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.ctaband__text p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ice-100);
}
.ctaband__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.faq__item {
  border-bottom: 1px solid var(--border-soft);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__item summary::after {
  content: "";
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 16px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 2px 16px no-repeat;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__answer {
  padding: 0 4px 26px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}
.faq__item[open] .faq__answer { animation: faqReveal 400ms var(--ease); }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .brand__contact { display: none; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 60px 40px;
    background: var(--navy-950);
    border-left: 1px solid var(--border-soft);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 150;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 22px; font-family: var(--font-display); color: var(--text-light); }
  .nav__toggle { display: flex; }
  .header__cta { display: none; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }

  .process { grid-template-columns: 1fr; gap: 16px; }
  .process__step { flex-direction: row; align-items: flex-start; padding: 26px 24px; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  .logo__name { font-size: 16px; }
  .hero { min-height: auto; padding: 130px 0 60px; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .section__title { font-size: clamp(28px, 8vw, 40px); }
  .trustbar__sep { display: none; }
  .trustbar__inner { gap: 14px; }
  .trustbar__item { min-width: 40%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .pricing__row { padding: 20px 4px; }
  .pricing__dots { display: none; }

  .payment__card { padding: 20px 18px; gap: 14px; }
  .payment__icon { width: 38px; height: 38px; padding: 8px; }
  .ctaband__actions { width: 100%; }
  .ctaband__actions .btn { flex: 1 1 auto; }
  .footer__inner { justify-content: center; text-align: center; }
  .ba__compare { aspect-ratio: 4 / 3; }
  .ba__disclaimer { text-align: left; }
  .fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
