/* ==========================================================================
   ProRenov — Landing page
   Feuille de style principale
   Polices : Archivo (titres) + Geist (texte) via Google Fonts (voir <head>)
   ========================================================================== */

:root {
  --ink:        #15171B;  /* anthracite — fonds sombres, texte fort */
  --ink-soft:   #2B2F36;
  --accent:     #E2562A;  /* terracotta — CTA, accents */
  --accent-dark:#C9461E;
  --paper:      #F4F0E9;  /* fond crème des sections claires */
  --card:       #F8F5F0;
  --line:       #E6DFD4;  /* bordures */
  --line-soft:  #ECE6DB;
  --muted:      #6B6358;  /* texte secondaire */
  --muted-2:    #8A8275;
  --green:      #1F9D6B;  /* validation */
  --star:       #F5A623;
  --maxw:       1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Geist", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 { font-family: "Archivo", sans-serif; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Boutons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  border-radius: 11px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background .18s, transform .12s;
}
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -10px rgba(226,86,42,.7); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--lg { font-size: 16px; padding: 16px 26px; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Bandeau d'urgence ---------------------------------------------------- */
.topbar { background: var(--accent); color: #fff; font-family: "Archivo", sans-serif; }
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; padding: 9px 24px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .03em; text-align: center;
}
.topbar__item { display: flex; align-items: center; gap: 7px; }
.topbar__sep { opacity: .5; }

/* ---- En-tête -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header__logo img { height: 38px; width: auto; }
.header__actions { display: flex; align-items: center; gap: 18px; }

.phone { display: flex; align-items: center; gap: 9px; text-decoration: none; color: #fff; }
.phone__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.phone__text { display: flex; flex-direction: column; line-height: 1.15; }
.phone__label { font-size: 11px; color: #9A958C; }
.phone__num { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 16px; }

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .22;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(226,86,42,.18), transparent 55%),
    linear-gradient(90deg, var(--ink) 32%, rgba(21,23,27,.78) 70%, rgba(21,23,27,.55));
}
.hero__inner { position: relative; padding: clamp(40px, 6vw, 80px) 24px; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-weight: 800; font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02; letter-spacing: -.02em; margin: 0 0 20px;
}
.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55;
  color: #CFC9C0; max-width: 520px; margin: 0 0 28px;
}
.hero__lead strong { color: #fff; }
.accent { color: var(--accent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #F2E7DF; font-family: "Archivo", sans-serif; font-weight: 700;
  font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 24px;
}

.checklist { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: #EDE9E2; }
.check-ic {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(226,86,42,.18);
  display: flex; align-items: center; justify-content: center;
}
.rating { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stars { display: flex; gap: 3px; }
.rating__text { font-size: 14px; color: #CFC9C0; }
.rating__text strong { color: #fff; font-family: "Archivo", sans-serif; }

/* ---- Bandeau de confiance ------------------------------------------------- */
.trust { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); }
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 28px; padding: 20px 24px;
}
.trust__item {
  display: flex; align-items: center; gap: 9px;
  color: #EDE9E2; font-family: "Archivo", sans-serif; font-weight: 600; font-size: 14px;
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.2); }

/* ---- Sections génériques -------------------------------------------------- */
.section { padding: clamp(56px, 7vw, 90px) 0; background: #fff; }
.section--sand { background: var(--paper); }
.section--dark { background: var(--ink); color: #fff; }

.section__head { max-width: 680px; margin: 0 0 44px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker {
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section__title {
  font-weight: 800; font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05; letter-spacing: -.01em; margin: 0 0 10px;
}
.section--dark .section__title { color: #fff; }
.section__sub { margin: 0; color: var(--muted); font-size: 16px; }
.section--dark .section__sub { color: #A9A39A; }

/* ---- Bénéfices ------------------------------------------------------------ */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { background: var(--card); border: 1px solid var(--line-soft); border-radius: 16px; padding: 26px 22px; }
.benefit__ic {
  width: 48px; height: 48px; border-radius: 13px; background: #FCEAE2;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.benefit h3 { font-weight: 700; font-size: 18px; margin: 0 0 8px; }
.benefit p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---- Services ------------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 2px 8px rgba(40,28,14,.05);
}
.service__media { aspect-ratio: 16 / 11; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; }
.service__body { padding: 22px; }
.service__body h3 { font-weight: 700; font-size: 19px; margin: 0 0 7px; }
.service__body p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }

/* ---- Avant / après -------------------------------------------------------- */
.ba { max-width: 880px; margin: 0 auto; }
.ba__frame {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: 18px; overflow: hidden; cursor: ew-resize; user-select: none;
  box-shadow: 0 30px 60px -30px rgba(40,28,14,.5); border: 1px solid var(--line);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__img--after { clip-path: inset(0 50% 0 0); }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,.4); pointer-events: none;
}
.ba__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35); pointer-events: none;
}
.ba__tag {
  position: absolute; bottom: 16px;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .12em; padding: 6px 12px; border-radius: 999px; color: #fff;
}
.ba__tag--before { left: 16px; background: rgba(21,23,27,.82); }
.ba__tag--after  { right: 16px; background: var(--accent); }

/* ---- Étapes --------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step__num { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 46px; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.step h3 { font-weight: 700; font-size: 19px; margin: 0 0 8px; }
.step p { margin: 0; color: #A9A39A; font-size: 14.5px; line-height: 1.55; }

/* ---- Avis ----------------------------------------------------------------- */
.reviews__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
.google {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 13px; padding: 12px 18px;
}
.google strong { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--card); border: 1px solid var(--line-soft); border-radius: 16px; padding: 26px; }
.review__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review__text { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.review__name { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 14px; }
.review__role { color: var(--muted-2); font-size: 13px; }

/* ---- CTA final ------------------------------------------------------------ */
.final { display: grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items: center; }
.final__title { font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.04; letter-spacing: -.01em; margin: 0 0 18px; }
.final__lead { margin: 0 0 26px; color: #5C564D; font-size: 17px; line-height: 1.6; max-width: 480px; }
.callbox { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); margin-bottom: 28px; }
.callbox__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex: none; }
.callbox__label { display: block; font-size: 13px; color: var(--muted-2); }
.callbox__num { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 21px; }
.assure-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.assure { display: flex; align-items: center; gap: 8px; color: #5C564D; font-size: 14px; }

/* ---- Pied de page --------------------------------------------------------- */
.footer { background: var(--ink); color: #fff; padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 40px; width: auto; margin-bottom: 18px; }
.footer__about { margin: 0 0 18px; color: #A9A39A; font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px; padding: 7px 12px; font-size: 12.5px;
  font-family: "Archivo", sans-serif; font-weight: 600;
}
.foot__title {
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.foot-contact { display: flex; flex-direction: column; gap: 12px; color: #C6C1B8; font-size: 14.5px; }
.foot-contact a { color: #C6C1B8; text-decoration: none; }
.hours { display: flex; flex-direction: column; gap: 8px; color: #C6C1B8; font-size: 14px; }
.hours__row { display: flex; justify-content: space-between; gap: 16px; }
.hours__row span:last-child { color: #fff; }
.hours__row--off span:last-child { color: var(--muted-2); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  align-items: center; color: var(--muted-2); font-size: 13px;
}
.footer__bottom a { color: var(--muted-2); text-decoration: none; }
.footer__links { display: flex; gap: 18px; }

/* ==========================================================================
   Formulaire de devis / rappel
   ========================================================================== */
.lead {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px -28px rgba(40,28,14,.45), 0 2px 8px rgba(40,28,14,.06);
  padding: clamp(20px, 3vw, 30px);
}
.lead__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FCEAE2; color: var(--accent-dark);
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; margin-bottom: 14px;
}
.lead__badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.lead__title { font-weight: 800; font-size: clamp(20px, 2.4vw, 25px); line-height: 1.05; color: var(--ink); margin: 0 0 6px; letter-spacing: -.01em; }
.lead__sub { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.tabs { display: flex; gap: 6px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 13px; padding: 5px; margin-bottom: 18px; }
.tab {
  flex: 1; text-align: center; padding: 11px 8px; border: none; cursor: pointer;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .05em; text-transform: uppercase; border-radius: 9px;
  background: transparent; color: var(--muted-2); transition: all .18s;
}
.tab--active { background: var(--ink); color: #fff; box-shadow: 0 4px 12px -4px rgba(21,23,27,.5); }

.lead form { display: flex; flex-direction: column; gap: 12px; }
.field-group { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: #3B362E; letter-spacing: .01em; }
.input, .textarea, .select {
  width: 100%; padding: 13px 14px; border: 1px solid #E2DACE; border-radius: 11px;
  font-family: "Geist", sans-serif; font-size: 15px; color: var(--ink);
  background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
}
.textarea { resize: vertical; min-height: 84px; }
.select { cursor: pointer; }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(226,86,42,.16);
}
.lead__error { background: #FCEAE2; border: 1px solid #F3C9BC; color: #C0392E; font-size: 13px; padding: 10px 12px; border-radius: 10px; }
.lead__submit {
  margin-top: 2px; width: 100%; background: var(--accent); color: #fff; border: none;
  border-radius: 12px; padding: 16px 18px; font-family: "Archivo", sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: .01em; cursor: pointer;
  box-shadow: 0 12px 24px -10px rgba(226,86,42,.6); transition: background .18s, transform .12s;
}
.lead__submit:hover { background: var(--accent-dark); }
.lead__submit:active { transform: translateY(1px); }
.lead__assure { display: flex; align-items: center; gap: 8px; justify-content: center; color: var(--muted-2); font-size: 12px; margin-top: 4px; }

.lead-success { text-align: center; padding: 18px 6px; }
.lead-success__ic { width: 64px; height: 64px; border-radius: 50%; background: #E8F5EE; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.lead-success h3 { font-weight: 800; font-size: 24px; color: var(--ink); margin: 0 0 8px; }
.lead-success p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0 0 18px; max-width: 340px; margin-left: auto; margin-right: auto; }
.lead-success p strong { color: var(--ink); }
.lead-reset { background: none; border: none; color: var(--muted-2); font-family: "Geist", sans-serif; font-size: 13px; text-decoration: underline; cursor: pointer; margin-top: 16px; }

.is-hidden { display: none !important; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .final { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .benefits, .services, .steps { grid-template-columns: 1fr; }
  .hide-sm { display: none !important; }
}
