/* ============================================================================
   KN CLEANING — Styles
   Direction : clair & épuré, premium automobile (blanc / gris / bleu profond)
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--blue-200); color: var(--ink-900); }

/* ------------------------------------------------------------- TYPOGRAPHIE */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.eyebrow.on-dark { color: var(--sky); }
.display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
}
h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; color: var(--fg); }
h2.section-title {
  font-size: clamp(1.9rem, 3.4vw, var(--text-2xl));
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-snug);
}
.lead {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--fg-muted);
  margin: 0;
}
p { margin: 0; }

/* ------------------------------------------------------------------- LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--space-20); }
.section--mist { background: var(--mist); }
.section--dark {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(46,134,224,0.18), transparent 60%),
    radial-gradient(90% 90% at 0% 100%, rgba(20,71,154,0.30), transparent 55%),
    var(--ink-900);
  color: var(--fg-on-dark);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: var(--space-4); }
.section-head h2 { margin-top: var(--space-3); }

/* --------------------------------------------------------------- BOUTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.985); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--blue-50); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.32); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn-wa { background: var(--whatsapp); color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,0.30); }
.btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: var(--text-sm); }
.btn-block { width: 100%; }

/* ----------------------------------------------------------------- HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: color-mix(in srgb, var(--white) 82%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: var(--space-6);
  height: 78px;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-lockup img { height: 50px; width: auto; }
.brand-lockup .bl-text { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup .bl-name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink-900); }
.brand-lockup .bl-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); font-weight: var(--weight-semibold); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: var(--space-5); }
.nav a {
  font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--ink-700);
  position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brand); transition: width var(--dur-base) var(--ease-out); border-radius: 2px;
}
.nav a:hover { color: var(--brand); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius-pill); border: 1.5px solid var(--border);
  background: var(--white); color: var(--ink-700); transition: all var(--dur-base) var(--ease-out);
}
.icon-btn:hover { border-color: var(--whatsapp); color: var(--whatsapp); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; background: none; border: none; width: 44px; height: 44px; place-items: center; color: var(--ink-900); }
.burger svg { width: 26px; height: 26px; }

/* mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(10,15,26,0.45); backdrop-filter: blur(4px);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity var(--dur-base);
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--white); z-index: 201; box-shadow: var(--shadow-xl);
  transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out);
  display: flex; flex-direction: column; padding: var(--space-6);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-8); }
.drawer-top img { height: 44px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a { padding: 14px 12px; border-radius: var(--radius-md); font-size: var(--text-md); font-weight: var(--weight-medium); color: var(--ink-800); }
.drawer nav a:hover { background: var(--blue-50); color: var(--brand); }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: var(--space-3); padding-top: var(--space-6); }

/* -------------------------------------------------------------------- HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, 76vh, 720px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(80% 120% at 78% 0%, rgba(46,134,224,0.20), transparent 55%),
    radial-gradient(70% 90% at 8% 100%, rgba(20,71,154,0.22), transparent 60%),
    linear-gradient(180deg, var(--ink-900), #070b14 80%);
  color: var(--fg-on-dark);
}
/* Photo : fond cinématographique pleine largeur, texte protégé à gauche */
.hero-photo { position: absolute; inset: 0; width: 100%; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink-900) 0%, rgba(7,11,20,0.86) 26%, rgba(7,11,20,0.45) 50%, rgba(7,11,20,0.12) 72%, transparent 100%),
    linear-gradient(180deg, rgba(7,11,20,0.30) 0%, transparent 30%, transparent 72%, rgba(7,11,20,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 560px; }

.hero-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--blue-400);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: var(--weight-bold);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  margin-top: var(--space-4);
  text-wrap: balance;
}
.hero-title .hl { color: var(--blue-400); }
.hero-sub {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: rgba(234,241,251,0.74);
  max-width: 480px;
  margin-top: var(--space-5);
}
.hero-services-line {
  display: flex; align-items: center; gap: 9px;
  margin-top: var(--space-4);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  color: rgba(234,241,251,0.92); max-width: 500px;
}
.hero-services-line svg { width: 17px; height: 17px; color: var(--blue-400); flex-shrink: 0; }
.hero-proofs { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.proof-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  font-size: var(--text-sm); font-weight: var(--weight-medium); color: #EAF1FB;
}
.proof-chip svg { width: 16px; height: 16px; color: var(--blue-400); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }

/* ------------------------------------------------------------ TRUST STRIP */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); padding-block: var(--space-8); }
.trust-item { display: flex; align-items: center; gap: var(--space-3); }
.trust-item .ti-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--brand); flex-shrink: 0; }
.trust-item .ti-ico svg { width: 22px; height: 22px; }
.trust-item .ti-t { font-weight: var(--weight-semibold); font-size: var(--text-sm); color: var(--ink-900); }
.trust-item .ti-s { font-size: var(--text-xs); color: var(--fg-muted); }

/* ------------------------------------------------------ INTERVENTION MOBILE */
.ms-card {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--space-12);
  align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-md);
  padding: var(--space-12);
  overflow: hidden;
}
.ms-copy { min-width: 0; }
.ms-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--brand); background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: var(--space-5);
}
.ms-badge svg { width: 15px; height: 15px; }
.ms-copy .section-title { max-width: 18ch; }
.ms-copy .lead { margin-top: var(--space-4); }
.ms-list { list-style: none; padding: 0; margin: var(--space-8) 0; display: grid; gap: var(--space-4); }
.ms-list li { display: flex; align-items: center; gap: 14px; font-size: var(--text-md); font-weight: var(--weight-medium); color: var(--ink-800); }
.ms-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-md); background: linear-gradient(150deg, var(--blue-500), var(--blue-700)); color: #fff; box-shadow: var(--shadow-brand); flex-shrink: 0; }
.ms-ico svg { width: 22px; height: 22px; }
.ms-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 3 / 2; background: var(--ink-900); }
.ms-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- SERVICES */
/* Anti-débordement : les cartes en grille ne doivent jamais dépasser leur colonne
   (sinon un bouton "white-space:nowrap" élargit la carte au-delà de l'écran sur mobile). */
.service-card, .option-card, .pack-card, .why-card,
.review-card, .real-card, .video-card { min-width: 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: var(--space-8);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.service-card.featured { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.service-card.featured::before {
  content: "Le plus demandé"; position: absolute; top: -12px; left: var(--space-8);
  background: var(--brand); color: #fff; font-size: var(--text-xs); font-weight: var(--weight-bold);
  letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-brand);
}
.svc-ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(150deg, var(--blue-500), var(--blue-700)); color: #fff; box-shadow: var(--shadow-brand); margin-bottom: var(--space-5); }
.svc-ico svg { width: 28px; height: 28px; }
.service-card h3 { font-size: var(--text-xl); }
.service-card .svc-text { margin-top: var(--space-3); color: var(--fg-muted); font-size: var(--text-base); }
.svc-list { list-style: none; padding: 0; margin: var(--space-5) 0 var(--space-6); display: grid; gap: 10px; }
.svc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); color: var(--ink-700); }
.svc-list li svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ----------------------------------------------------------------- OPTIONS */
.options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.option-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-5); display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.option-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.option-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.opt-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-50); color: var(--brand); flex-shrink: 0; }
.opt-ico svg { width: 21px; height: 21px; }
.opt-price { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700; color: var(--brand); background: var(--blue-50); padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; text-align: center; line-height: 1.1; flex-shrink: 0; max-width: 60%; overflow-wrap: anywhere; }
.option-card .opt-label { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-base); color: var(--ink-900); }
.option-card .opt-desc { font-size: var(--text-sm); color: var(--fg-muted); flex: 1; }
.opt-add {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  background: transparent; border: none; color: var(--brand); font-weight: var(--weight-semibold);
  font-size: var(--text-sm); padding: 8px 0; transition: gap var(--dur-base) var(--ease-out);
}
.opt-add svg { width: 16px; height: 16px; transition: transform var(--dur-base); }
.opt-add:hover { gap: 11px; }
.opt-add.added { color: var(--success); }
.option-card.added { border-color: var(--success); background: var(--success-bg); }

/* ------------------------------------------------------------------- PACKS */
/* Conteneur légèrement élargi pour 5 packs + grille flex centrée */
.container--packs { max-width: 1320px; }
.packs-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: var(--space-4);
}
.packs-grid .pack-card { flex: 1 1 230px; max-width: 270px; }
.pack-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: var(--space-6); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.pack-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pack-card.featured {
  background: var(--ink-900); color: var(--fg-on-dark); border-color: var(--ink-900);
  box-shadow: var(--shadow-xl); transform: scale(1.015);
}
.pack-card.featured:hover { transform: scale(1.015) translateY(-4px); }
.pack-card.featured h3 { color: #fff; }
/* Pack Golden — variante or premium sur fond sombre */
.pack-card.gold {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(224,169,59,0.18), transparent 60%),
    linear-gradient(160deg, #14110a, #0a0f1a 70%);
  border-color: var(--gold-500); color: var(--fg-on-dark);
  box-shadow: 0 24px 60px rgba(201,162,75,0.22), var(--shadow-xl);
}
.pack-card.gold h3 { color: #fff; }
.pack-card.gold .pack-tag { color: var(--gold-500); }
.pack-card.gold .pack-desc { color: rgba(234,241,251,0.72); }
.pack-card.gold .pack-price { color: var(--gold-500); }
.pack-card.gold .pack-list { border-top-color: rgba(224,169,59,0.28); }
.pack-card.gold .pack-list li { color: rgba(234,241,251,0.9); }
.pack-card.gold .pack-list li svg { color: var(--gold-500); }
.pack-flag-gold { background: linear-gradient(120deg, #E8C879, var(--gold-500)); color: #2a2008; box-shadow: 0 12px 28px rgba(201,162,75,0.4); }
.btn-gold { background: linear-gradient(120deg, #E8C879, var(--gold-500)); color: #2a2008; box-shadow: 0 12px 28px rgba(201,162,75,0.32); }
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.pack-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--blue-400), var(--blue-600)); color: #fff;
  font-size: var(--text-xs); font-weight: var(--weight-bold); letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-brand); white-space: nowrap;
}
.pack-tag { font-size: var(--text-xs); font-weight: var(--weight-bold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); }
.pack-card.featured .pack-tag { color: var(--sky); }
.pack-card h3 { font-size: var(--text-xl); margin-top: var(--space-2); }
.pack-desc { font-size: var(--text-sm); color: var(--fg-muted); margin-top: 8px; min-height: 40px; }
.pack-card.featured .pack-desc { color: rgba(234,241,251,0.72); }
.pack-price { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.35rem; color: var(--ink-900); margin: var(--space-5) 0; line-height: 1.2; }
.pack-card.featured .pack-price { color: #fff; }
.pack-price small { display: block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: var(--weight-medium); color: var(--fg-subtle); letter-spacing: 0.02em; }
.pack-list { list-style: none; padding: 0; margin: 0 0 var(--space-6); display: grid; gap: 9px; border-top: 1px solid var(--line); padding-top: var(--space-5); }
.pack-card.featured .pack-list { border-top-color: rgba(255,255,255,0.14); }
.pack-list li { display: flex; align-items: flex-start; gap: 9px; font-size: var(--text-sm); color: var(--ink-700); }
.pack-card.featured .pack-list li { color: rgba(234,241,251,0.9); }
.pack-list li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.pack-card.featured .pack-list li svg { color: var(--sky); }
.pack-card .btn { margin-top: auto; }

/* ------------------------------------------------------------- ENTREPRISES */
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.biz-items { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin: var(--space-8) 0; }
.biz-item { display: flex; align-items: center; gap: 10px; font-size: var(--text-sm); color: var(--fg-on-dark); }
.biz-item svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }
.biz-visual { position: relative; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 5/6; }
.biz-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.biz-stat { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; gap: var(--space-4); }
.biz-stat .bs { flex: 1; background: rgba(10,15,26,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 12px 14px; }
.biz-stat .bs-n { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; }
.biz-stat .bs-l { font-size: var(--text-xs); color: rgba(234,241,251,0.7); }

/* --------------------------------------------------------------- POURQUOI */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-6); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-ico { display: grid; place-items: center; width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--blue-50); color: var(--brand); margin-bottom: var(--space-4); }
.why-ico svg { width: 25px; height: 25px; }
.why-card h4 { font-size: var(--text-lg); }
.why-card p { margin-top: 8px; font-size: var(--text-sm); color: var(--fg-muted); }

/* ------------------------------------------------------- NOS RÉALISATIONS */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.real-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--ink-900);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.real-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.real-card:hover img { transform: scale(1.06); }
.real-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-6);
  background: linear-gradient(180deg, transparent 38%, rgba(7,11,20,0.45) 64%, rgba(7,11,20,0.9) 100%);
}
.real-title {
  color: #fff; font-size: var(--text-lg); font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-snug); line-height: 1.15;
}
.real-desc {
  color: rgba(255,255,255,0.82); font-size: var(--text-sm); line-height: var(--leading-snug);
  margin-top: 8px; text-wrap: pretty;
}
.real-cta { display: flex; justify-content: center; margin-top: var(--space-12); }

/* Conditions / suppléments sous les packs */
.packs-note {
  max-width: 720px; margin: var(--space-10) auto 0;
  padding: var(--space-6) var(--space-8);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.packs-note .pn-intro {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-md);
  color: var(--ink-900);
}
.packs-note .pn-intro svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }
.pn-list { list-style: none; padding: 0; margin: var(--space-5) 0; display: grid; gap: 10px; }
.pn-list li {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 12px 16px; background: var(--mist); border-radius: var(--radius-md);
}
.pn-label { display: flex; align-items: center; gap: 10px; font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--ink-800); }
.pn-label svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.pn-price { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-md); color: var(--brand); white-space: nowrap; flex-shrink: 0; }
.pn-outro { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: var(--fg-muted); }

/* Suppléments par catégorie de véhicule */
.veh-supp { max-width: 720px; margin: var(--space-5) auto 0; }
.vs-intro { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-md); color: var(--ink-900); margin-bottom: var(--space-4); }
.vs-intro svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }
.vs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.vs-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-4); box-shadow: var(--shadow-xs); }
.vs-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--brand); }
.vs-ico svg { width: 22px; height: 22px; }
.vs-label { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-base); color: var(--ink-900); }
.vs-price { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-md); color: var(--brand); }

/* ------------------------------------------------------ KN CLEANING EN ACTION */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.video-card { position: relative; }
.video-shell {
  position: relative;
  aspect-ratio: 5 / 8;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #05080f;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.video-card:hover .video-shell { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(127,192,242,0.4); }
.kn-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #05080f; }
.video-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-4);
  background: linear-gradient(180deg, rgba(7,11,20,0.20) 0%, rgba(7,11,20,0.10) 45%, rgba(7,11,20,0.7) 100%);
  transition: background var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.video-card:hover .video-overlay { background: linear-gradient(180deg, rgba(7,11,20,0.28) 0%, rgba(11,31,69,0.22) 45%, rgba(7,11,20,0.78) 100%); }
.video-play {
  display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
}
.video-play svg { width: 26px; height: 26px; margin-left: 3px; fill: currentColor; }
.video-card:hover .video-play { transform: scale(1.08); background: var(--brand); border-color: var(--brand); }
.video-label {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-base);
  color: #fff; text-align: center; letter-spacing: var(--tracking-snug);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ----------------------------------------------------------- POLISSAGE */
.polish-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--space-16); align-items: center; }
.polish-points { list-style: none; padding: 0; margin: var(--space-8) 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-5); }
.polish-points li { display: flex; align-items: center; gap: 11px; font-size: var(--text-sm); font-weight: var(--weight-medium); color: #EAF1FB; }
.pp-ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: rgba(46,134,224,0.16); border: 1px solid rgba(127,192,242,0.28); color: var(--blue-400); flex-shrink: 0; }
.pp-ico svg { width: 18px; height: 18px; }
.polish-price { margin-top: var(--space-8); display: grid; gap: 10px; padding: var(--space-5) var(--space-6); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); }
.pprice-row { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-md); color: #fff; }
.pprice-row svg { width: 20px; height: 20px; color: var(--blue-400); flex-shrink: 0; }
.pprice-row.pprice-amount { font-size: var(--text-xl); }
.pprice-row.pprice-amount span { color: var(--sky); }
.polish-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }

/* Avant / Après — comparateur glissant */
.polish-ba {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 16 / 10; background: var(--ink-800);
  border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow-xl);
  cursor: ew-resize; user-select: none; touch-action: pan-y;
}
.polish-ba .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.polish-ba .ba-before-img { z-index: 1; }
.ba-tagline {
  position: absolute; top: 14px; z-index: 3; pointer-events: none;
  font-size: var(--text-xs); font-weight: var(--weight-bold); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(6px);
}
.ba-tagline.tag-before { left: 14px; background: rgba(10,15,26,0.66); color: #fff; }
.ba-tagline.tag-after { right: 14px; background: var(--brand); color: #fff; }
.polish-ba .ba-divider { position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; transform: translateX(-50%); z-index: 3; box-shadow: 0 0 0 1px rgba(10,15,26,0.18); pointer-events: none; }
.polish-ba .ba-handle {
  position: absolute; top: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--brand);
  display: grid; place-items: center; box-shadow: var(--shadow-lg); pointer-events: none;
}
.polish-ba .ba-handle svg { width: 22px; height: 22px; }
.polish-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: var(--space-4); font-size: var(--text-sm); color: rgba(234,241,251,0.62); }
.polish-hint svg { width: 16px; height: 16px; color: var(--blue-400); }
.ph-inner { text-align: center; padding: 16px; }
.ph svg { width: 34px; height: 34px; opacity: 0.7; }
.ph small { display: block; margin-top: 8px; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue-400); }

/* ---------------------------------------------------------------- BOOKING */
.book-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-16); align-items: start; }
.book-aside { position: sticky; top: 110px; }
.book-aside .lead { margin-top: var(--space-4); }
.book-points { list-style: none; padding: 0; margin: var(--space-8) 0 0; display: grid; gap: var(--space-4); }
.book-points li { display: flex; gap: var(--space-3); align-items: flex-start; }
.book-points .bp-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); color: var(--brand); flex-shrink: 0; }
.book-points .bp-ico svg { width: 20px; height: 20px; }
.book-points .bp-t { font-weight: var(--weight-semibold); font-size: var(--text-base); color: var(--ink-900); }
.book-points .bp-s { font-size: var(--text-sm); color: var(--fg-muted); }
.book-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: var(--space-8); box-shadow: var(--shadow-md); }
/* Onglets Réserver un créneau / Demander un devis */
.book-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 5px; margin-bottom: var(--space-6); }
.bt-tab { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 12px; border: none; background: transparent; border-radius: var(--radius-pill); font-family: var(--font-body); font-weight: var(--weight-semibold); font-size: var(--text-sm); color: var(--ink-500); cursor: pointer; transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.bt-tab svg { width: 17px; height: 17px; }
.bt-tab.active { background: var(--white); color: var(--brand); box-shadow: var(--shadow-sm); }
/* Calendrier Calendly */
.cal-embed { min-width: 0; width: 100%; height: 680px; border-radius: var(--radius-lg); overflow: hidden; }
.cal-embed iframe { border-radius: var(--radius-lg); }
/* État avant configuration du lien Calendly */
.cal-setup { text-align: center; padding: var(--space-10) var(--space-6); }
.cal-setup-ico { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--blue-50); color: var(--brand); margin-bottom: var(--space-5); }
.cal-setup-ico svg { width: 32px; height: 32px; }
.cal-setup h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--ink-900); }
.cal-setup p { font-size: var(--text-base); color: var(--fg-muted); max-width: 420px; margin: var(--space-3) auto 0; line-height: var(--leading-relaxed); }
.cal-setup-actions { display: flex; justify-content: center; margin-top: var(--space-6); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--ink-800); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: var(--text-base); color: var(--ink-900);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-md);
  background: var(--paper); transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px var(--focus-ring);
}
.field input.invalid, .field select.invalid { border-color: var(--danger); background: var(--danger-bg); }
.field .err { font-size: var(--text-xs); color: var(--danger); font-weight: 600; }
.field-supp { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: var(--weight-semibold); color: var(--brand); background: var(--blue-50); border: 1px solid var(--blue-100); padding: 5px 10px; border-radius: var(--radius-pill); align-self: flex-start; }
.field-supp svg { width: 14px; height: 14px; flex-shrink: 0; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-check { position: relative; }
.chip-check input { position: absolute; opacity: 0; pointer-events: none; }
.chip-check label {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: var(--paper); font-size: var(--text-sm); font-weight: var(--weight-medium);
  color: var(--ink-600); cursor: pointer; transition: all var(--dur-base) var(--ease-out);
}
.chip-check label svg { width: 15px; height: 15px; opacity: 0; transition: opacity var(--dur-fast); }
.chip-check input:checked + label { background: var(--blue-50); border-color: var(--brand); color: var(--brand); }
.chip-check input:checked + label svg { opacity: 1; }
.chip-check input:focus-visible + label { box-shadow: 0 0 0 4px var(--focus-ring); }
.form-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.form-actions .btn { flex: 1; min-width: 200px; }
.form-hint { font-size: var(--text-xs); color: var(--fg-subtle); margin-top: var(--space-4); text-align: center; }
.form-summary { background: var(--blue-50); border: 1px solid var(--blue-200); border-radius: var(--radius-md); padding: 12px 16px; font-size: var(--text-sm); color: var(--blue-800); margin-bottom: var(--space-5); display: flex; gap: 10px; align-items: center; }
.form-summary svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

/* ------------------------------------------------------------------ ABOUT */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-16); align-items: center; }
.about-visual { position: relative; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--line); aspect-ratio: 4/5; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.about-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: var(--space-5); }
.about-logo img { height: 60px; }
.about-statement {
  font-family: var(--font-display); font-weight: var(--weight-bold); font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25; letter-spacing: -0.01em; color: var(--ink-900); margin-top: var(--space-8);
  padding-left: var(--space-5); border-left: 4px solid var(--brand);
}

/* ----------------------------------------------------------------- REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: var(--space-8); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-stars { display: flex; gap: 3px; margin-bottom: var(--space-4); }
.review-stars svg { width: 19px; height: 19px; color: var(--gold-500); fill: var(--gold-500); }
.review-text { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--ink-800); flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--line); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--blue-400), var(--blue-700)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review-meta .rm-n { font-weight: var(--weight-semibold); font-size: var(--text-sm); color: var(--ink-900); }
.review-meta .rm-c { font-size: var(--text-xs); color: var(--fg-muted); }

/* --------------------------------------------------------------------- FAQ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: var(--space-3); }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.faq-item.open { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-5) var(--space-6); background: none; border: none; text-align: left; font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-md); color: var(--ink-900); }
.faq-q .faq-ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-50); color: var(--brand); flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base); }
.faq-q .faq-ico svg { width: 18px; height: 18px; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a-inner { padding: 0 var(--space-6) var(--space-5); color: var(--fg-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); }

/* ------------------------------------------------------------------ FOOTER */
.footer { background: var(--ink-900); color: var(--fg-on-dark); padding-top: var(--space-24); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-10); padding-bottom: var(--space-16); }
.footer-brand img { height: 70px; margin-bottom: var(--space-4); }
.footer-brand p { color: rgba(234,241,251,0.6); font-size: var(--text-sm); max-width: 300px; line-height: var(--leading-relaxed); }
.footer-social { display: flex; gap: 10px; margin-top: var(--space-5); }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; transition: all var(--dur-base) var(--ease-out); }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-col h5 { font-family: var(--font-display); font-size: var(--text-base); color: #fff; margin-bottom: var(--space-4); font-weight: var(--weight-semibold); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: rgba(234,241,251,0.6); font-size: var(--text-sm); transition: color var(--dur-base); }
.footer-col a:hover { color: var(--sky); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--sky); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--space-6); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4); }
.footer-bottom p { color: rgba(234,241,251,0.5); font-size: var(--text-xs); }
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { color: rgba(234,241,251,0.5); font-size: var(--text-xs); }
.footer-legal a:hover { color: var(--sky); }

/* ----------------------------------------------------- FLOATING WHATSAPP */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: #fff; font-weight: var(--weight-semibold); font-size: var(--text-sm);
  padding: 13px 18px 13px 14px; border-radius: var(--radius-pill);
  box-shadow: 0 14px 34px rgba(37,211,102,0.42); border: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { transform: translateY(-2px) scale(1.02); background: var(--whatsapp-dark); }
.wa-float .wa-label { white-space: nowrap; }

/* ----------------------------------------------------- TOAST (option ajoutée) */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120%);
  background: var(--ink-900); color: #fff; padding: 13px 20px; border-radius: var(--radius-pill);
  font-size: var(--text-sm); font-weight: 600; box-shadow: var(--shadow-xl); z-index: 250;
  display: inline-flex; align-items: center; gap: 10px; transition: transform var(--dur-slow) var(--ease-out);
}
.toast svg { width: 18px; height: 18px; color: var(--whatsapp); }
.toast.show { transform: translate(-50%, 0); }

/* ---------------------------------------------------- REVEAL ON SCROLL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------- RESPONSIVE */
@media (max-width: 1080px) {
  .options-grid { grid-template-columns: repeat(3, 1fr); }
  .packs-grid .pack-card { flex: 1 1 260px; max-width: 320px; }
  .pack-card.featured { transform: none; }
  .pack-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header-actions .btn-primary { display: none; }
}
@media (max-width: 920px) {
  :root { --section-y: 80px; }
  .packs-grid .pack-card { flex: 1 1 280px; max-width: 380px; }
  .hero { min-height: 0; display: block; padding-bottom: var(--space-12); }
  /* Mobile : afficher la photo ENTIÈRE (aucun recadrage) */
  .hero-photo { position: relative; width: 100%; height: auto; }
  .hero-photo img { width: 100%; height: auto; object-fit: contain; display: block; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(7,11,20,0.10) 0%, transparent 40%, transparent 80%, var(--ink-900) 100%); }
  .hero-inner { padding-top: var(--space-10); }
  .hero-copy { max-width: 100%; }
  .biz-grid, .about-grid, .book-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .polish-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .ms-card { grid-template-columns: 1fr; gap: var(--space-8); padding: var(--space-8); }
  .ms-visual { order: -1; }
  .book-aside { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .options-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .ms-card { padding: var(--space-6); }
  .ms-list li { font-size: var(--text-base); }
  .vs-grid { grid-template-columns: 1fr; }
  .option-card { padding: var(--space-4); gap: 9px; }
  .opt-ico { width: 38px; height: 38px; }
  .opt-ico svg { width: 19px; height: 19px; }
  .opt-price { font-size: var(--text-xs); padding: 4px 9px; max-width: none; }
  .option-card .opt-label { font-size: var(--text-sm); line-height: 1.2; }
  .option-card .opt-desc { font-size: var(--text-xs); }
  .opt-add { font-size: var(--text-xs); }
  .packs-grid .pack-card { flex: 1 1 100%; max-width: 420px; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .biz-items { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .video-label { font-size: var(--text-sm); }
  .polish-points { grid-template-columns: 1fr; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; }
  .form-actions { flex-direction: column; gap: var(--space-4); }
  .form-actions .btn { min-width: 0; width: 100%; flex: 1 1 100%; }
  .hero-cta .btn { flex: 1 1 100%; }
}
