/* ==========================================================================
   sitewebpro.fr : feuille de style unique
   Charte reprise de Webdevo : bleu #2563EB, Poppins (titres) + Inter (texte).
   Pas de framework : la page doit rester légère, c'est une landing d'acquisition.
   ========================================================================== */

:root {
  --blue-50:  #F0F5FF;
  --blue-100: #E0EAFF;
  --blue-200: #C7DBFE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-900: #1E3A8A;

  --ink:      #0F172A;
  --slate-700:#334155;
  --slate-600:#475569;
  --slate-500:#64748B;
  --slate-400:#94A3B8;
  --line:     #E2E8F0;
  --surface:  #F8FAFC;
  --bg:       #FAFAFA;
  --night:    #0B1220;

  --green:    #16A34A;
  --green-bg: #DCFCE7;
  --amber:    #FBBF24;
  --red:      #DC2626;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-full: 999px;

  --shadow-sm:   0 1px 2px rgba(15, 23, 42, .06);
  --shadow:      0 10px 30px rgba(2, 6, 23, .07);
  --shadow-lg:   0 24px 60px rgba(2, 6, 23, .10);
  --shadow-glow: 0 12px 28px -6px rgba(37, 99, 235, .45);

  --maxw: 1180px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Poppins', var(--font-body);
}

/* --- Base ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Le header collant ne doit pas recouvrir la cible d'une ancre. */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--slate-600);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(1.72rem, 5.2vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem);  font-weight: 800; }
h3 { font-size: clamp(1.12rem, 2vw, 1.3rem); font-weight: 700; }

p { margin: 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--blue-100); color: var(--blue-900); }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --- Utilitaires --------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.wrap-narrow { max-width: 820px; }

.section { padding: 54px 0; position: relative; }
.section-tight { padding: 38px 0; }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.section--night { background: var(--night); }

.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section--night .eyebrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #BFDBFE;
}

.lead {
  font-size: 1rem;
  color: var(--slate-500);
  max-width: 620px;
  margin-inline: auto;
  margin-top: 14px;
}
.section--night .lead { color: #9FB0CA; }

.grad {
  background: linear-gradient(100deg, var(--blue-600), #4F46E5);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* --- Boutons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border: 0; border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(100deg, var(--blue-600), #4F46E5);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -8px rgba(37,99,235,.55); }

.btn-ghost {
  background: #fff; color: var(--blue-700);
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--blue-50); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 19px 36px; font-size: 1.06rem; }

/* --- Header -------------------------------------------------------------- */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand svg { width: 38px; height: 38px; }
.brand-word {
  font-family: var(--font-head);
  font-size: 1.32rem; font-weight: 800; letter-spacing: -.035em;
  color: var(--ink); line-height: 1; white-space: nowrap;
}
.brand-word .pro { color: var(--blue-600); }
.brand-word .tld { font-size: .5em; font-weight: 600; color: var(--slate-400); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.header-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .95rem; color: var(--ink); text-decoration: none;
}
.header-tel svg { width: 17px; height: 17px; color: var(--blue-600); }
.header-tel:hover { color: var(--blue-600); }

.header .btn { padding: 12px 22px; font-size: .93rem; }

/* --- Hero ---------------------------------------------------------------- */

.hero { position: relative; padding: 28px 0 42px; overflow: hidden; }

.hero-glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(70px); z-index: 0;
}
.hero-glow--a {
  width: 640px; height: 640px; top: -220px; left: -160px;
  background: radial-gradient(circle, rgba(224,231,255,.95) 0%, rgba(255,255,255,0) 70%);
}
.hero-glow--b {
  width: 560px; height: 560px; top: 40px; right: -180px;
  background: radial-gradient(circle, rgba(219,234,254,.85) 0%, rgba(255,255,255,0) 70%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}

.hero-kicker {
  font-size: .97rem; font-weight: 700; color: var(--ink); margin-top: 16px;
}
.hero-kicker span { color: var(--blue-600); }

.hero h1 { margin-top: 12px; }
.hero-sub { margin-top: 12px; font-size: .98rem; color: var(--slate-500); max-width: 560px; }
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-points { margin-top: 18px; display: grid; gap: 9px; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--slate-600); }
.hero-points .tick {
  flex: none; width: 21px; height: 21px; margin-top: 2px;
  border-radius: 50%; background: var(--green-bg); color: var(--green);
  display: grid; place-items: center;
}
.hero-points .tick svg { width: 12px; height: 12px; }

/* Badge avis Google (cliquable → vraie fiche Google Webdevo) */
.avis-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 18px 9px 14px;
  border-radius: var(--r-full);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none; font-size: .9rem; color: var(--slate-500);
  transition: border-color .2s ease, transform .2s ease;
}
.avis-badge:hover { border-color: var(--blue-200); transform: translateY(-1px); }
.avis-badge .g { width: 19px; height: 19px; flex: none; }
.avis-badge .stars { color: var(--amber); letter-spacing: .5px; font-size: .88rem; }
.avis-badge strong { color: var(--ink); font-weight: 700; }
.avis-badge u { text-decoration-color: var(--slate-400); text-underline-offset: 3px; }

/* --- Encart Fillout ------------------------------------------------------ */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  /* Marges resserrées : l'iframe Fillout a déjà son propre rembourrage
     intérieur, en rajouter ici allongeait l'encart pour rien sur mobile. */
  padding: 18px 14px 14px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(37,99,235,.18), rgba(37,99,235,0) 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}

.form-card .eyebrow { margin-bottom: 10px; font-size: .7rem; padding: 5px 13px; }
.form-card h2 { font-size: 1.2rem; font-weight: 700; }
.form-card .form-sub { font-size: .88rem; color: var(--slate-500); margin-top: 5px; }

/* Conteneur de l'iframe Fillout. La hauteur minimale évite le saut de mise en
   page avant que le script ait fait son premier redimensionnement. */
.fillout-embed {
  width: 100%;
  min-height: 420px;
  margin-top: 8px;
}

/* Rappel de conversion en bas de page : renvoie vers l'unique formulaire. */
.final-cta-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  backdrop-filter: blur(6px);
}
.final-cta-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff;
}
.final-cta-sub { margin-top: 10px; font-size: .96rem; color: #A9B9D2; }
.final-cta-card .btn { margin-top: 20px; }
.final-cta-note { margin-top: 12px; font-size: .78rem; color: #7A8AA5; text-align: center; }

/* --- Bandeau de preuve --------------------------------------------------- */

.proof-strip {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 26px 0;
}
.proof-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.proof-num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--ink);
  line-height: 1.1;
}
.proof-num .u { color: var(--blue-600); }
.proof-lbl { font-size: .84rem; color: var(--slate-500); margin-top: 3px; }

/* --- Bloc problème (sombre) ---------------------------------------------- */

.problem-card {
  background: var(--night);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  max-width: 720px; margin-inline: auto;
}
.problem-card h2 { color: #fff; font-size: clamp(1.35rem, 3.4vw, 1.75rem); }
.problem-list { margin-top: 22px; display: grid; gap: 16px; }
.problem-list li { display: flex; gap: 14px; align-items: flex-start; }
.problem-list .ico {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.09); color: #93C5FD;
  display: grid; place-items: center;
}
.problem-list .ico svg { width: 18px; height: 18px; }
.problem-list p { color: #CBD5E1; font-size: .98rem; }
.problem-punch {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff; font-weight: 600; font-size: 1rem;
}

/* --- Cartes résultats ---------------------------------------------------- */

.cards { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 32px; }
.cards-3 { grid-template-columns: 1fr; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); }

.card-head { display: flex; align-items: center; gap: 13px; }
.avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.card-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; line-height: 1.25; }
.card-meta { font-size: .82rem; color: var(--slate-400); }

.result-line {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px; font-size: .95rem; color: var(--slate-700);
}
.result-line .pin {
  flex: none; margin-top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-bg); color: var(--green); display: grid; place-items: center;
}
.result-line .pin svg { width: 11px; height: 11px; }
.result-line strong { color: var(--ink); font-weight: 700; }

.quote {
  margin-top: 15px; padding-left: 15px;
  border-left: 3px solid var(--blue-100);
  font-size: .93rem; color: var(--slate-600); font-style: italic;
}

.stars { color: var(--amber); font-size: .92rem; letter-spacing: 1px; }

/* --- Cas clients avant/après --------------------------------------------- */

.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 26px;
}
.case-media { position: relative; background: var(--surface); border-bottom: 1px solid var(--line); }
.case-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 15px; background: #fff; border-bottom: 1px solid var(--line);
}
.case-bar i { width: 9px; height: 9px; border-radius: 50%; background: #E2E8F0; display: block; }
.case-url {
  margin-left: 8px; flex: 1;
  background: var(--surface); border-radius: var(--r-full);
  padding: 4px 13px; font-size: .74rem; color: var(--slate-400);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.case-media img { width: 100%; }

.case-body { padding: 20px 18px; }
.case-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; }
.case-title h3 { font-size: 1.25rem; }
.case-city { font-size: .85rem; color: var(--slate-400); }

.case-cols { display: grid; gap: 20px; margin-top: 20px; grid-template-columns: 1fr; }
.case-col h4 {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-400); margin-bottom: 11px;
}
.case-col.is-result h4 { color: var(--green); }
.case-col li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .92rem; margin-bottom: 8px; color: var(--slate-600);
}
.case-col li::before {
  content: ''; flex: none; width: 7px; height: 7px; margin-top: 8px;
  border-radius: 50%; background: var(--slate-400);
}
.case-col.is-work li::before { background: var(--blue-500); }
.case-col.is-result li::before { background: var(--green); }
.case-col.is-result li { color: var(--ink); font-weight: 600; }

/* --- Offre --------------------------------------------------------------- */

.offer {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 760px; margin: 38px auto 0;
}
.offer-top {
  padding: 30px 30px 26px;
  background: linear-gradient(160deg, var(--blue-50), #fff);
  border-bottom: 1px dashed var(--blue-100);
  text-align: center;
}
.offer-price {
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  font-size: clamp(2.1rem, 6vw, 2.9rem); line-height: 1;
}
.offer-price small { font-size: .38em; font-weight: 600; color: var(--slate-500); display: block; margin-bottom: 6px; letter-spacing: 0; }
.offer-price .cur { color: var(--blue-600); }
.offer-price-note { font-size: .87rem; color: var(--slate-500); margin-top: 10px; }

.offer-list { padding: 26px 30px; display: grid; gap: 12px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; color: var(--slate-700); }
.offer-list .tick {
  flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center;
}
.offer-list .tick svg { width: 12px; height: 12px; }
.offer-list strong { color: var(--ink); font-weight: 600; }

.offer-foot {
  padding: 0 30px 30px; display: grid; gap: 14px; justify-items: center; text-align: center;
}
.offer-guarantee {
  background: var(--green-bg); color: #14532D;
  border-radius: var(--r); padding: 14px 18px; font-size: .88rem; line-height: 1.55;
}
.offer-guarantee strong { font-weight: 700; }

/* --- Comparatif propriété / location ------------------------------------- */

.compare {
  margin-top: 34px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 14px 16px; text-align: left; font-size: .92rem;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.compare thead th {
  font-family: var(--font-head); font-size: .84rem; font-weight: 700;
  color: var(--slate-500); background: var(--surface);
}
.compare thead th:nth-child(2) { color: var(--blue-700); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody th { font-weight: 600; color: var(--slate-500); width: 34%; }
.compare .win { color: var(--ink); font-weight: 600; background: rgba(37,99,235,.035); }
.compare .lose { color: var(--slate-500); }
.compare .win-col { position: relative; }
.compare-wrap { overflow-x: auto; }

.compare-note {
  margin-top: 18px; text-align: center; font-size: .95rem; color: var(--slate-600);
}
.compare-note strong { color: var(--ink); }

/* --- Process ------------------------------------------------------------- */

.steps { display: grid; gap: 16px; margin-top: 32px; grid-template-columns: 1fr; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; position: relative; box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: .82rem;
  color: var(--blue-600); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 15px;
}
.step h3 { font-size: 1.1rem; }
.step p { margin-top: 8px; font-size: .94rem; color: var(--slate-500); }
.step-time {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 15px;
  font-size: .8rem; font-weight: 600; color: var(--slate-500);
  background: var(--surface); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: var(--r-full);
}
.step-time svg { width: 13px; height: 13px; color: var(--blue-600); }

/* --- Avis Google --------------------------------------------------------- */

.reviews { display: grid; gap: 14px; margin-top: 30px; grid-template-columns: 1fr; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.review .avatar { width: 40px; height: 40px; font-size: .95rem; }
.review-name { font-weight: 700; color: var(--ink); font-size: .93rem; line-height: 1.2; }
.review-src { display: flex; align-items: center; gap: 5px; font-size: .74rem; color: var(--slate-400); }
.review-src svg { width: 12px; height: 12px; }
.review p { font-size: .93rem; color: var(--slate-600); }

.reviews-cta { margin-top: 30px; text-align: center; }

/* --- FAQ ----------------------------------------------------------------- */

.faq { max-width: 780px; margin: 30px auto 0; display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--blue-100); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 19px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none; width: 20px; height: 20px; color: var(--blue-600);
  transition: transform .22s ease;
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 20px; font-size: .95rem; color: var(--slate-600); }

/* --- CTA final ----------------------------------------------------------- */

.final { background: var(--night); position: relative; overflow: hidden; }
.final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 460px at 50% 0%, rgba(37,99,235,.34), rgba(37,99,235,0) 70%),
    radial-gradient(500px 380px at 88% 100%, rgba(59,130,246,.18), transparent 70%);
}
.final .wrap { position: relative; z-index: 1; }
.final h2 { color: #fff; }
.final .lead { color: #A9B9D2; }
/* Le formulaire posé sur le bloc sombre reste une carte blanche : son titre
   doit repasser en encre foncée, sinon il disparaît. */
.final .form-card h2 { color: var(--ink); }

.final-grid { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; margin-top: 28px; }

.final-list { display: grid; gap: 13px; }
.final-list li { display: flex; gap: 12px; align-items: flex-start; color: #DBE4F1; font-size: 1rem; }
.final-list .tick {
  flex: none; width: 23px; height: 23px; margin-top: 2px; border-radius: 50%;
  background: rgba(34,197,94,.18); color: #4ADE80; display: grid; place-items: center;
}
.final-list .tick svg { width: 12px; height: 12px; }

.final-contact {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px;
}
.final-contact a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: var(--r-full);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #fff; text-decoration: none; font-size: .9rem; font-weight: 600;
  transition: background-color .2s ease;
}
.final-contact a:hover { background: rgba(255,255,255,.13); }
.final-contact svg { width: 16px; height: 16px; color: #93C5FD; }

/* --- Footer -------------------------------------------------------------- */

.footer { background: #060B15; color: #94A3B8; padding: 52px 0 0; font-size: .92rem; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer .brand-word { color: #fff; }
.footer .brand-word .tld { color: rgba(255,255,255,.45); }
.footer .brand-word .pro { color: #7DB3FF; }
.footer-about { margin-top: 15px; max-width: 380px; line-height: 1.65; }
.footer-parent {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-full);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: #CBD5E1; text-decoration: none;
}
.footer-parent:hover { background: rgba(255,255,255,.11); }
.footer-parent strong { color: #fff; font-weight: 600; }

.footer h4 {
  color: #fff; font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 15px;
}
.footer li { margin-bottom: 9px; }
.footer a { text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; margin-top: 4px; flex: none; color: #60A5FA; }

.footer-bottom {
  margin-top: 44px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: #64748B;
}

/* --- CTA collant mobile -------------------------------------------------- */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: flex; gap: 10px; align-items: center;
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 14px 18px; font-size: .95rem; }
.sticky-cta .tel {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; color: var(--blue-600);
}
.sticky-cta .tel svg { width: 20px; height: 20px; }

/* --- Apparition au scroll ------------------------------------------------ */

/* L'état masqué n'est appliqué que si le script a bien démarré (classe .js posée
   par un inline en <head>). Sans JavaScript, ou si app.js échoue à se charger,
   tout le contenu reste visible : une landing publicitaire ne peut pas se
   permettre d'afficher une page blanche. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --- Responsive ---------------------------------------------------------- */

@media (min-width: 640px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .reviews  { grid-template-columns: repeat(2, 1fr); }
  .steps    { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .case-cols { grid-template-columns: repeat(2, 1fr); }
  .case-cols.has-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  body { font-size: 17px; }
  .wrap { padding: 0 22px; }
  .section { padding: 92px 0; }
  .section-tight { padding: 62px 0; }
  .hero { padding: 62px 0 78px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 48px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .final-grid { grid-template-columns: 1fr 1fr; gap: 54px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.4fr; gap: 46px; }
  .form-card { padding: 22px 18px 16px; }
  .card { padding: 24px; }
  .case-body { padding: 26px; }
  .final-cta-card { padding: 28px; }
  .cards { gap: 20px; }
  .steps { gap: 20px; }
  .reviews { gap: 18px; }
  .sticky-cta { display: none; }
}

@media (max-width: 899px) {
  .header-tel span { display: none; }
  .header .btn { padding: 11px 18px; font-size: .88rem; }
  body { padding-bottom: 74px; }
}

@media (max-width: 420px) {
  .header .btn { display: none; }
}

/* --- Pages secondaires (merci, légal) ------------------------------------ */

.page-simple { padding: 64px 0 84px; }
.page-simple h1 { margin-bottom: 10px; }
.page-simple .updated { font-size: .85rem; color: var(--slate-400); margin-bottom: 34px; }
.page-simple h2 {
  font-size: 1.2rem; font-weight: 700;
  margin: 34px 0 12px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.page-simple h2:first-of-type { border-top: 0; padding-top: 0; }
.page-simple p, .page-simple li { font-size: .97rem; margin-bottom: 12px; }
.page-simple ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.page-simple a { color: var(--blue-600); }
.page-simple dl { display: grid; gap: 8px; margin-bottom: 16px; }
.page-simple dt { font-weight: 600; color: var(--ink); font-size: .9rem; }
.page-simple dd { margin: 0 0 6px; font-size: .95rem; }

.merci {
  min-height: 68vh;
  display: grid; place-items: center; text-align: center;
  padding: 70px 0;
}
.merci-inner { max-width: 620px; }
.merci-badge {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.merci-badge svg { width: 38px; height: 38px; }
.merci-steps {
  margin-top: 34px; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  display: grid; gap: 16px;
}
.merci-steps li { display: flex; gap: 13px; align-items: flex-start; font-size: .96rem; }
.merci-steps .n {
  flex: none; width: 27px; height: 27px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-700);
  border: 1px solid var(--blue-100);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
}
.merci-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (max-width: 480px) {
  /* Le badge avis doit tenir sur une seule ligne : sur deux, il ressemble à un
     bloc de texte et perd sa fonction de pastille de réassurance. */
  .avis-badge { gap: 8px; padding: 8px 14px; font-size: .8rem; }
  .avis-badge .stars { font-size: .78rem; letter-spacing: 0; }
  .avis-badge .g { width: 16px; height: 16px; }
}
