/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand: #f5f0e8;
  --sand-dark: #ede6d6;
  --stone: #8b7355;
  --stone-light: #c4a882;
  --dark: #1a1a18;
  --dark-2: #2d2d2a;
  --mid: #5a5a52;
  --light: #ffffff;
  --accent: #2a6041;
  --accent-dark: #1d4a30;
  --accent-light: #e8f3ec;
  --cta: #E07B1C;
  --cta-dark: #C56A14;
  --cta-light: #fdf1e4;
  --warning: #d4a017;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================
   FLOATING CTA
   ================================================ */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  gap: .75rem;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.btn-float {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-float:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.btn-call {
  background: #ffffff;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.08);
}
.btn-devis {
  background: var(--cta);
  color: var(--light);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cta);
  color: var(--light);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--cta-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--light);
  padding: 1rem 1.75rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  transition: background var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ================================================
   SECTION LABELS & HEADERS
   ================================================ */
.section-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--mid); }

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('img/image.png') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 14, 0.85) 0%,
    rgba(10, 20, 14, 0.6) 50%,
    rgba(10, 20, 14, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 1.5rem 4rem;
  margin-left: max(1.5rem, calc((100vw - 1160px) / 2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #6fcf97;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.3); }
}

.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: #a8d5b8; }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-sub-services {
  display: inline-block;
  margin-top: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: .01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
}
.trust-item span {
  font-size: .78rem;
  color: rgba(255,255,255,0.65);
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounceDown 2.5s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   INTRO
   ================================================ */
.intro {
  padding: 6rem 0;
  background: var(--light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { color: var(--mid); margin-bottom: 1rem; }

.checklist {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

.intro-visual {
  position: relative;
}

.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: url('img/after 2.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.intro-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.intro-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.intro-card strong { display: block; font-size: .95rem; }
.intro-card span { font-size: .78rem; color: var(--mid); }

/* ================================================
   REALISATIONS - AVANT / APRÈS
   ================================================ */
.realisations {
  padding: 6rem 0;
  background: var(--sand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.gallery-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.gallery-before-after {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  user-select: none;
}

.ba-side {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Placeholder color gradients for bathrooms */
.sdb-1-after {
  background: url('img/after 1.jpg') center center / cover no-repeat;
}
.sdb-1-before {
  background: url('img/before 1.jpg') center center / cover no-repeat;
}

.sdb-2-after {
  background: url('img/after 2.jpg') center center / cover no-repeat;
}
.sdb-2-before {
  background: url('img/before 2.jpg') center center / cover no-repeat;
}

.sdb-3-after {
  background: linear-gradient(160deg, #dce8e0 0%, #a8c4b4 30%, #78a090 60%, #487870 100%);
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 29px, rgba(255,255,255,0.07) 29px, rgba(255,255,255,0.07) 30px),
    repeating-linear-gradient(0deg, transparent 0, transparent 29px, rgba(255,255,255,0.07) 29px, rgba(255,255,255,0.07) 30px),
    linear-gradient(160deg, #dce8e0 0%, #a8c4b4 30%, #78a090 60%, #487870 100%);
}
.sdb-3-before { background: linear-gradient(160deg, #c0c8c4 0%, #a0a8a4 30%, #808880 60%, #607060 100%); filter: saturate(0.35) brightness(0.75); }

.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-label {
  position: absolute;
  top: .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 100px;
  color: white;
}
.ba-after .ba-label {
  right: .75rem;
  background: var(--accent);
}
.ba-before .ba-label {
  left: .75rem;
  background: rgba(0,0,0,0.5);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: white;
  z-index: 10;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  gap: 2px;
}
.ba-handle svg { color: var(--dark); }

.gallery-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.gallery-info h3 { font-size: 1rem; margin-bottom: .4rem; }
.gallery-info p { font-size: .85rem; color: var(--mid); }
.gallery-tag {
  display: inline-block;
  margin-top: .75rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 100px;
}

/* ================================================
   PROCESSUS
   ================================================ */
.processus {
  padding: 6rem 0;
  background: var(--light);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1rem;
}
.step-number {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--stone-light);
  margin-bottom: .75rem;
}
.step h3 { font-size: 1rem; margin-bottom: .6rem; }
.step p { font-size: .85rem; color: var(--mid); line-height: 1.6; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--stone-light);
  align-self: center;
  padding-top: .5rem;
}

/* ================================================
   AVIS CLIENTS
   ================================================ */
.avis {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--light);
}

.avis .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.avis h2 { color: var(--light); }
.avis-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,0.7);
}
.stars-global { color: #f6c344; font-size: 1.1rem; letter-spacing: .1em; }
.avis-global strong { color: white; }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.avis-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition);
}
.avis-card:hover { border-color: rgba(255,255,255,0.2); }

.avis-card-featured {
  background: rgba(42, 96, 65, 0.25);
  border-color: rgba(107, 175, 140, 0.4);
}

.avis-stars { color: #f6c344; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .08em; }
.avis-card p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }

.avis-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--stone) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.avis-author strong { display: block; font-size: .9rem; }
.avis-author span { font-size: .78rem; color: rgba(255,255,255,0.55); }

.avis-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .75rem;
  border-radius: 0 0 8px 8px;
}

/* ================================================
   GARANTIES
   ================================================ */
.garanties {
  padding: 5rem 0;
  background: var(--sand);
}

.garanties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.garantie-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.garantie-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.garantie-item h3 { font-size: 1rem; margin-bottom: .6rem; }
.garantie-item p { font-size: .85rem; color: var(--mid); line-height: 1.6; }

/* ================================================
   DEVIS FORM
   ================================================ */
.devis-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--light);
}

.devis-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.devis-left .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.devis-left h2 { color: var(--light); margin-bottom: 1rem; }
.devis-left > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.devis-promise {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(42, 96, 65, 0.25);
  border: 1px solid rgba(107, 175, 140, 0.35);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.promise-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.devis-promise strong { display: block; margin-bottom: .25rem; font-size: .95rem; }
.devis-promise p { font-size: .85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.devis-reassurance {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.reass-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,0.7);
}
.reass-item svg { color: var(--accent); flex-shrink: 0; }

/* Form Container */
.form-container {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.progress-bar {
  flex: 1;
  height: 6px;
  background: #e8e8e8;
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 20%;
}
.progress-label {
  font-size: .78rem;
  color: var(--mid);
  white-space: nowrap;
  font-weight: 500;
}

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; }

.form-step h3 { margin-bottom: .4rem; }
.step-sub { font-size: .88rem; color: var(--mid); margin-bottom: 1.5rem; }

/* QCM Grid (checkbox) */
.qcm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.qcm-option { display: block; }
.qcm-option input { position: absolute; opacity: 0; pointer-events: none; }

.qcm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .875rem .75rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-align: center;
}
.qcm-card:hover { border-color: var(--accent); background: var(--accent-light); }
.qcm-option input:checked + .qcm-card {
  border-color: var(--accent);
  background: var(--accent-light);
}
.qcm-text { font-size: .82rem; font-weight: 500; line-height: 1.3; }

/* QCM List (radio) */
.qcm-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.qcm-radio { display: block; }
.qcm-radio input { position: absolute; opacity: 0; pointer-events: none; }

.qcm-radio-card {
  display: flex;
  align-items: center;
  padding: .875rem 1.125rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.qcm-radio-card strong { font-size: .9rem; }
.qcm-radio-card:hover { border-color: var(--accent); background: var(--accent-light); }
.qcm-radio input:checked + .qcm-radio-card {
  border-color: var(--accent);
  background: var(--accent-light);
}
.qcm-radio-dot { display: none; }

/* Coordonnées */
.coords-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.field-group { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }

.field-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-2);
}
.field-group input,
.field-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--light);
}
.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 96, 65, 0.1);
}
.field-group textarea { resize: vertical; min-height: 80px; }

/* Buttons */
.btn-prev {
  width: 100%;
  background: transparent;
  color: var(--mid);
  border: 1.5px solid #e0e0e0;
  padding: .75rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  margin: .6rem 0; /* ajoute un espacement au-dessus et en dessous */
  transition: border-color var(--transition), color var(--transition);
}
.btn-prev:hover { border-color: var(--dark); color: var(--dark); }

.btn-next {
  width: 100%;
  background: var(--cta);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-next:hover { background: var(--cta-dark); transform: translateY(-1px); }

.btn-submit {
  width: 100%;
  background: var(--cta);
  color: white;
  border: none;
  padding: 1.1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--cta-dark); transform: translateY(-1px); }

.form-legal {
  font-size: .72rem;
  color: var(--mid);
  margin-top: .875rem;
  line-height: 1.5;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.form-success h3 { margin-bottom: .5rem; color: var(--accent); }
.form-success > p { color: var(--mid); margin-bottom: 2rem; }

.success-next {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.success-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.success-step-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.success-step strong { display: block; margin-bottom: .25rem; }
.success-step p { font-size: .85rem; color: var(--mid); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #0f0f0d;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  color: white;
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-phone {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.footer-links a, .footer-contact a {
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact p { font-size: .88rem; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: .78rem;
  display: flex;
  justify-content: center;
}
.footer-bottom a { margin-left: .5rem; }
.footer-bottom a:hover { color: white; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .garanties-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-wrap: wrap; justify-content: center; }
  .step-arrow { display: none; }
  .step { max-width: 180px; }
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-visual { order: -1; }
  .intro-card { left: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: 1fr 1fr; }
  .devis-wrapper { display: flex; flex-direction: column; gap: 0; }
  .devis-left { display: contents; }
  .devis-left .section-label { order: 1; margin-bottom: .75rem; }
  .devis-left h2 { order: 2; margin-bottom: .75rem; }
  .devis-left > p { order: 3; margin-bottom: 1.5rem; }
  .devis-right { order: 4; margin-bottom: 2rem; }
  .devis-promise { order: 5; }
  .devis-reassurance { order: 6; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 5rem 1.5rem 3rem; }
  .coords-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .qcm-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
}

@media (max-width: 480px) {
  .garanties-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .qcm-grid { grid-template-columns: 1fr; }
  .floating-cta { flex-direction: column; gap: .5rem; width: calc(100% - 2rem); }
  .btn-float { justify-content: center; }
}
