/* ── Custom page – Sur mesure ───────────────────────────────────── */

/* Section header centered */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }

/* ── Hero ─────────────────────────────────────────────────────── */
.custom-hero {
  background: var(--sand);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #e8e0d5;
}
.custom-hero__inner {
  max-width: 760px;
}
.custom-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
}
.custom-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
}
.custom-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.custom-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid #e0d4c4;
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 999px;
}
.btn--lg {
  padding: .9rem 2.2rem;
  font-size: 1rem;
}

/* ── Who cards ────────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.who-card {
  background: var(--sand);
  border: 1px solid #e8e0d5;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.who-card:hover {
  box-shadow: 0 8px 28px rgba(107,79,48,.12);
  transform: translateY(-3px);
}
.who-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.who-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.who-card p  { color: var(--muted); font-size: .93rem; }

/* ── Steps ────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1 1 180px;
  max-width: 220px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step__num {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: #2D2D2D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step__body h3 { font-size: 1rem; margin-bottom: .4rem; }
.step__body p  { color: var(--muted); font-size: .88rem; }
.step__arrow {
  font-size: 1.5rem;
  color: var(--muted);
  align-self: center;
  padding-top: .2rem;
}
@media (max-width: 640px) {
  .step__arrow { display: none; }
  .step { max-width: 100%; flex: 1 1 100%; }
}

/* ── Examples ─────────────────────────────────────────────────── */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.example-card {
  text-align: center;
  background: var(--sand);
  border: 1px solid #e8e0d5;
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.example-card:hover {
  box-shadow: 0 8px 28px rgba(107,79,48,.12);
  transform: translateY(-3px);
}
.example-card__visual {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.example-card h4 { margin-bottom: .5rem; }
.example-card p  { color: var(--muted); font-size: .9rem; }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pricing-card--featured {
  border-color: #2D2D2D;
  box-shadow: 0 8px 32px rgba(45,45,45,.12);
  transform: scale(1.03);
}
@media (max-width: 640px) { .pricing-card--featured { transform: none; } }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2D2D2D;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__range {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-card__unit {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: .5rem;
}
.pricing-card h3 { font-size: 1.2rem; }
.pricing-card p  { color: var(--muted); font-size: .9rem; }
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.pricing-card__list li { font-size: .9rem; color: var(--text); }
.pricing-card .btn { width: 100%; text-align: center; }
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 2rem;
}

/* ── Devis form section ───────────────────────────────────────── */
.devis-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .devis-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}
.devis-info h2 { margin-bottom: 1rem; }
.devis-info > p { color: var(--muted); margin-bottom: 2rem; }
.devis-contact { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.devis-promise {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.devis-promise__icon { font-size: 1.8rem; flex-shrink: 0; }
.devis-promise strong { display: block; margin-bottom: .25rem; }
.devis-promise p { color: var(--muted); font-size: .9rem; }

/* Radio group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .35rem;
}
.radio-label {
  cursor: pointer;
}
.radio-label input[type=radio] { display: none; }
.radio-label span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 999px;
  font-size: .88rem;
  color: var(--text);
  transition: border-color var(--trans), background var(--trans);
  background: #fff;
}
.radio-label input[type=radio]:checked + span {
  border-color: #2D2D2D;
  background: #2D2D2D;
  color: #fff;
}
.radio-label:hover span { border-color: #2D2D2D; }

/* File drop zone */
.file-drop {
  border: 2px dashed #d4c4b0;
  border-radius: var(--radius);
  background: var(--sand);
  transition: border-color var(--trans), background var(--trans);
  cursor: pointer;
}
.file-drop.drag-over {
  border-color: #2D2D2D;
  background: #f0ebe4;
}
.file-drop__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 2rem;
}
.file-drop__icon { font-size: 2rem; }
.file-drop__text { font-weight: 500; color: var(--text); font-size: .93rem; }
.file-drop__hint { color: var(--muted); font-size: .8rem; }
.file-drop__preview {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.file-drop__preview span { font-size: .9rem; color: var(--text); }
.file-drop__preview button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  padding: .25rem;
}
.form-mention {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

/* Devis success state */
.devis-success {
  text-align: center;
  padding: 3rem 2rem;
}
.devis-success__icon { font-size: 4rem; margin-bottom: 1rem; }
.devis-success h3    { font-size: 1.8rem; margin-bottom: 1rem; }
.devis-success p     { color: var(--muted); }

/* ── Testimonials ─────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.trust-card {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.trust-card__stars { font-size: 1rem; margin-bottom: 1rem; }
.trust-card p {
  color: var(--muted);
  font-style: italic;
  font-size: .93rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.trust-card strong { font-size: .88rem; color: var(--text); }

/* ── Final CTA ────────────────────────────────────────────────── */
.custom-cta-section {
  background: #2D2D2D;
  color: #fff;
}
.custom-cta-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.custom-cta-wrap h2 { color: #fff; margin-bottom: 1rem; }
.custom-cta-wrap p  { color: rgba(255,255,255,.75); }
.custom-cta-section .btn--outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.custom-cta-section .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
