/* ============================================================
   LOCATION MINIPELLE TROYES — style.css
   Mobile-first · Breakpoint principal : 768px
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --orange:        #E8610A;
  --orange-dark:   #c7520a;
  --orange-light:  #FFF7ED;
  --orange-border: #FED7AA;
  --anthracite:    #1F2937;
  --fond:          #F9FAFB;
  --blanc:         #FFFFFF;
  --texte:         #111827;
  --texte-sec:     #6B7280;
  --border:        #E5E7EB;
  --placeholder:   #E5E7EB;
  --radius:        6px;
  --radius-lg:     10px;
  --shadow-sm:     0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 12px rgba(0,0,0,.1);
  --transition:    .18s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--texte);
  background: var(--fond);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--anthracite);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .45rem;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.4;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--blanc);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,97,10,.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg  { padding: .9rem 1.9rem; font-size: 1rem; }
.btn-full { width: 100%; }
.text-center { text-align: center; margin-top: 2.5rem; }


/* ===================================================================
   HEADER
   =================================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--blanc);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
#site-header.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  padding-bottom: .9rem;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--anthracite);
  flex-shrink: 0;
}
.logo strong { color: var(--orange); }
.logo-icon { flex-shrink: 0; }

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-family: 'Sora', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--texte-sec);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--orange); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  border-top: 1px solid var(--border);
  padding: .75rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav-link {
  display: block;
  padding: .6rem .5rem;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--texte);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: var(--fond); color: var(--orange); }
.mobile-nav-cta {
  margin-top: .5rem;
  background: var(--orange);
  color: var(--blanc);
  text-align: center;
  border-radius: var(--radius);
}
.mobile-nav-cta:hover { background: var(--orange-dark); color: var(--blanc); }


/* ===================================================================
   SECTIONS — base
   =================================================================== */
.section        { padding: 4rem 0; }
.section-white  { background: var(--blanc); }
.section-fond   { background: var(--fond); }
.section-dark   {
  background: var(--anthracite);
  color: var(--blanc);
}
.section-dark h2        { color: var(--blanc); }
.section-dark .section-intro { color: #D1D5DB; }

.section-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: .25rem .7rem;
  border-radius: 20px;
  margin-bottom: .9rem;
}
.section-label-light {
  color: var(--orange);
  background: rgba(232,97,10,.15);
}
.section-intro {
  font-size: 1.05rem;
  color: var(--texte-sec);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.section-note {
  font-size: .875rem;
  color: var(--texte-sec);
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
}

.link-anchor {
  color: var(--orange);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  transition: opacity var(--transition);
}
.link-anchor:hover { opacity: .8; text-decoration: underline; }


/* ===================================================================
   ILLUSTRATION HERO
   =================================================================== */
.hero-illustration {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #F3F4F6 0%, #E9EAEC 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem 1rem .5rem;
}
.hero-illustration svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}


/* ===================================================================
   ILLUSTRATION MACHINES
   =================================================================== */
.machine-illus {
  background: var(--anthracite);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.machine-illus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(232,97,10,.12) 0%, transparent 65%);
}
.machine-illus-featured {
  background: #1a2332;
}
.machine-illus-ton {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
.machine-illus-ton span {
  font-size: 1.4rem;
  opacity: .8;
}
.machine-illus-svg {
  width: 70%;
  max-width: 200px;
  opacity: .55;
  position: relative;
  z-index: 1;
}
.machine-illus-label {
  font-family: 'Sora', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
  position: relative;
  z-index: 1;
}


/* ===================================================================
   IMAGE PLACEHOLDER
   =================================================================== */
.img-placeholder {
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texte-sec);
  font-size: .8rem;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  border: none;
  margin-top: 2rem;
  display: block;
  box-shadow: var(--shadow-md);
}


/* ===================================================================
   HERO
   =================================================================== */
.section-hero {
  background: var(--fond);
  padding: 3.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--anthracite);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.accent { color: var(--orange); }

.h1-tagline {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .01em;
  margin-top: .45rem;
  line-height: 1.3;
}

.hero-subtitle {
  color: var(--texte-sec);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--texte);
  padding: .45rem .85rem;
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: fit-content;
}
.badge-check {
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero image area */
.hero-image {
  position: relative;
}
.hero-image .img-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.hero-image-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  padding: .6rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(232,97,10,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  white-space: nowrap;
}
.hero-image-badge strong { font-size: 1rem; font-weight: 800; }
.hero-image-badge span   { font-size: .7rem; opacity: .85; }


/* ===================================================================
   POSITIONNEMENT — tableau comparatif
   =================================================================== */
.comparatif-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.comp-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-col-good {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.comp-header {
  padding: 1rem 1.25rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.3;
}
.comp-col-bad .comp-header {
  background: #F3F4F6;
  color: var(--texte-sec);
}
.comp-col-good .comp-header {
  background: var(--orange);
  color: var(--blanc);
}

.comp-good-label {
  background: #c7520a;
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: .25rem;
}

.comp-list { padding: 1rem 1.25rem; }
.comp-list li {
  padding: .5rem 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
  color: var(--texte-sec);
  line-height: 1.5;
  display: flex;
  gap: .5rem;
}
.comp-list li:last-child { border-bottom: none; }
.comp-list-good li { color: var(--texte); font-weight: 500; }
.comp-check {
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

.section-conclusion {
  background: var(--fond);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Bloc artisan avec photo + citation */
.artisan-quote {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .artisan-quote {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
  }
}

/* Bulle photo */
.artisan-avatar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .artisan-avatar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .6rem;
    width: 90px;
  }
}

.artisan-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  background: var(--anthracite);
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--orange-light);
}

@media (min-width: 640px) {
  .artisan-avatar-img {
    width: 80px;
    height: 80px;
    font-size: 1.7rem;
  }
}

.artisan-avatar-label {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.artisan-avatar-label strong {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--anthracite);
}
.artisan-avatar-label span {
  font-size: .75rem;
  color: var(--texte-sec);
  line-height: 1.4;
}

/* Corps de la citation */
.artisan-quote-body {
  position: relative;
  flex: 1;
}

.artisan-quote-mark {
  display: block;
  font-family: 'Sora', serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: .7;
  margin-bottom: .25rem;
  opacity: .35;
  user-select: none;
}

.artisan-quote-body p {
  color: var(--texte);
  line-height: 1.8;
  font-size: .95rem;
  font-style: italic;
}


/* ===================================================================
   PACK SERVICE+
   =================================================================== */
.pack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pack-item {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pack-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pack-icon {
  font-size: 1.5rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}
.pack-item h3 { font-size: .975rem; margin-bottom: .45rem; }
.pack-item p  { color: var(--texte-sec); font-size: .875rem; line-height: 1.65; }


/* ===================================================================
   MACHINES
   =================================================================== */
.machines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.machine-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--fond);
  transition: box-shadow var(--transition);
}
.machine-card:hover { box-shadow: var(--shadow-md); }
.machine-card-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
  position: relative;
}

.machine-featured-badge {
  background: var(--orange);
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  padding: .3rem;
}

.machine-card .img-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.machine-info { padding: 1.5rem; }
.machine-tag {
  display: inline-block;
  background: var(--anthracite);
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  padding: .2rem .65rem;
  border-radius: 4px;
  margin-bottom: .75rem;
  letter-spacing: .04em;
}
.machine-tag-featured { background: var(--orange); }

.machine-info h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.machine-info p  { color: var(--texte-sec); font-size: .875rem; margin-bottom: 1rem; line-height: 1.65; }

.machine-list li {
  position: relative;
  padding: .3rem 0 .3rem 1.25rem;
  font-size: .875rem;
  color: var(--texte);
}
.machine-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}


/* ===================================================================
   TRAVAUX
   =================================================================== */
.travaux-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

.travaux-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  transition: box-shadow var(--transition);
}
.travaux-list-item:hover { box-shadow: var(--shadow-md); }

.travaux-list-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.travaux-list-item h3 { font-size: .95rem; margin-bottom: .3rem; }
.travaux-list-item p  { color: var(--texte-sec); font-size: .85rem; line-height: 1.6; }

@media (min-width: 600px) {
  .travaux-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .travaux-list { grid-template-columns: 1fr 1fr 1fr; }
}


/* ===================================================================
   TARIFS
   =================================================================== */
.tarifs-wrapper { margin-bottom: 2.5rem; }

.tarifs-machine-label {
  display: inline-block;
  background: var(--anthracite);
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Tarifs — cards */
.tarifs-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.tarif-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow var(--transition);
}
.tarif-card:hover { box-shadow: var(--shadow-md); }

.tarif-card-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.tarif-card-featured:hover {
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
}

.tarif-card-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--blanc);
  font-family: 'Sora', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 3px;
  width: fit-content;
}

.tarif-card-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--anthracite);
  margin-bottom: .25rem;
}

.tarif-card-horaires {
  font-size: .85rem;
  color: var(--texte-sec);
}

.tarif-card-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  flex-wrap: wrap;
}
.tarif-card-from { font-size: .82rem; color: var(--texte-sec); }
.tarif-card-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}
.tarif-card-ht { font-size: .82rem; color: var(--texte-sec); }

.tarif-card-includes {
  font-size: .875rem;
  color: var(--texte-sec);
  line-height: 1.6;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  flex: 1;
}

@media (min-width: 600px) {
  .tarifs-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .tarifs-cards { grid-template-columns: 1fr 1fr 1fr; }
}

.tarifs-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--texte-sec);
  font-style: italic;
}

.tarifs-transparence {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--texte);
  line-height: 1.65;
}
.tarifs-transparence svg { flex-shrink: 0; margin-top: .1rem; }


/* ===================================================================
   PROCESSUS
   =================================================================== */
.processus-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Vertical connector line */
.processus-list::before {
  content: '';
  position: absolute;
  left: 1.75rem;
  top: 3.5rem;
  bottom: 3.5rem;
  width: 2px;
  background: var(--border);
  z-index: 0;
}

.processus-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  position: relative;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--orange);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--fond);
  transition: box-shadow var(--transition);
}
.processus-step:hover .step-number {
  box-shadow: 0 0 0 4px var(--fond), 0 0 0 6px rgba(232,97,10,.2);
}
.step-number-last { background: var(--anthracite); }

.step-content { padding-top: .55rem; }
.step-content h3 { font-size: .975rem; margin-bottom: .4rem; }
.step-content p  { color: var(--texte-sec); font-size: .875rem; line-height: 1.65; }

/* Section white background — override the connector line bg */
.section-fond .step-number { box-shadow: 0 0 0 4px var(--fond); }
.section-fond .processus-step:hover .step-number {
  box-shadow: 0 0 0 4px var(--fond), 0 0 0 6px rgba(232,97,10,.2);
}


/* ===================================================================
   AVIS (caché par défaut — voir commentaire HTML)
   =================================================================== */
.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.avis-card {
  background: var(--fond);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.avis-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.avis-texte { color: var(--texte); font-size: .9rem; line-height: 1.7; margin-bottom: .75rem; font-style: italic; }
.avis-auteur { color: var(--texte-sec); font-size: .8rem; font-family: 'Sora', sans-serif; font-weight: 600; }


/* ===================================================================
   ZONE D'INTERVENTION
   =================================================================== */
/* Géré par les styles génériques (.section, .section-intro, .map-placeholder) */


/* ===================================================================
   FAQ ACCORDÉON
   =================================================================== */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: var(--blanc);
  text-align: left;
  padding: 1.1rem 1.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--anthracite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition), color var(--transition);
  line-height: 1.45;
}
.faq-question:hover { background: var(--fond); }
.faq-question[aria-expanded="true"] {
  background: var(--orange-light);
  color: var(--orange);
}

.faq-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform .22s ease;
  font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: .1rem 1.5rem 1.25rem;
  background: var(--orange-light);
  border-top: 1px solid var(--orange-border);
}
.faq-answer p {
  color: var(--texte-sec);
  font-size: .875rem;
  line-height: 1.75;
}


/* ===================================================================
   FORMULAIRE
   =================================================================== */
.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

label {
  font-family: 'Sora', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: .02em;
}

.required { color: var(--orange); }
.optional  { color: #6B7280; font-weight: 400; font-size: .78rem; }

input,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #4B5563;
  border-radius: var(--radius);
  background: #374151;
  color: var(--blanc);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder { color: #6B7280; }
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,97,10,.2);
}
textarea { resize: vertical; min-height: 130px; }

.form-success {
  background: #065F46;
  color: #D1FAE5;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* Aside */
.form-aside { display: flex; flex-direction: column; align-items: center; }
.form-aside-inner {
  background: #374151;
  border: 1px solid #4B5563;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  width: 100%;
}
.form-aside-label {
  font-size: .875rem;
  color: #9CA3AF;
  margin-bottom: .6rem;
}
.tel-link {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.form-reassurance {
  font-size: .8rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.form-aside-guarantees {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: left;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: #9CA3AF;
}
.guarantee-item span {
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}


/* ===================================================================
   FOOTER
   =================================================================== */
#footer {
  background: #111827;
  color: #6B7280;
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}
.footer-copy { font-size: .82rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: .82rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blanc); }


/* ===================================================================
   RESPONSIVE — tablette
   =================================================================== */
@media (min-width: 600px) {
  .hero-badges     { flex-direction: row; flex-wrap: wrap; }
  .form-row        { grid-template-columns: 1fr 1fr; }
  .travaux-grid    { grid-template-columns: 1fr 1fr; }
  .avis-grid       { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .section { padding: 5.5rem 0; }

  /* Header */
  .header-nav  { display: flex; }
  .nav-toggle  { display: none; }
  .mobile-nav  { display: none !important; }

  /* Hero */
  .hero-inner  { grid-template-columns: 1fr 1fr; gap: 4rem; }

  /* Comparatif */
  .comparatif-table { grid-template-columns: 1fr 1fr 1fr; }

  /* Pack */
  .pack-grid { grid-template-columns: 1fr 1fr; }

  /* Machines */
  .machines-grid { grid-template-columns: 1fr 1fr; }

  /* Avis */
  .avis-grid { grid-template-columns: 1fr 1fr 1fr; }

  /* Footer */
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===================================================================
   RESPONSIVE — desktop
   =================================================================== */
@media (min-width: 1024px) {
  .pack-grid { grid-template-columns: 1fr 1fr 1fr; }

  .travaux-grid { grid-template-columns: 1fr 1fr 1fr; }

  .form-layout { grid-template-columns: 1fr 340px; align-items: start; }
  .form-aside  { align-items: stretch; }
}


/* ===================================================================
   BARRE RÉASSURANCE
   =================================================================== */
.reassurance-bar {
  background: var(--anthracite);
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid #374151;
  padding: .9rem 0;
}

.reassurance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: .55rem .75rem;
  font-family: 'Sora', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: #E5E7EB;
  line-height: 1.3;
}

.ri-check {
  color: var(--orange);
  font-size: .95rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 420px) {
  .reassurance-item { font-size: .7rem; }
}

@media (min-width: 768px) {
  .reassurance-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
  }
  .reassurance-item {
    justify-content: center;
    white-space: nowrap;
  }
}


/* ===================================================================
   CLIENTS GRID (À qui je loue)
   =================================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .clients-grid { grid-template-columns: 1fr 1fr; }
}

.client-card {
  background: var(--fond);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}
.client-card:hover { box-shadow: var(--shadow-md); }

.client-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.client-card h3 {
  font-size: 1.05rem;
  color: var(--anthracite);
  margin-bottom: 0;
}

.client-card p {
  color: var(--texte-sec);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

.client-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.client-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .875rem;
  color: var(--texte);
  line-height: 1.5;
}
.client-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.client-card-note {
  font-size: .825rem !important;
  font-style: italic;
  color: var(--texte-sec) !important;
}


/* ===================================================================
   BOUTON D'APPEL FLOTTANT MOBILE
   =================================================================== */
.cta-float-mobile {
  display: none;
}

@media (max-width: 767px) {
  .cta-float-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 300;
    background: var(--orange);
    color: var(--blanc);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    padding: .8rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(232,97,10,.45);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .cta-float-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(232,97,10,.55);
  }
  /* Ajouter de l'espace en bas de page pour ne pas masquer le footer */
  #footer { padding-bottom: 5rem; }
}


/* ===================================================================
   UTILITAIRES
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
