/* ============================================================
   ARMOR — Aménagement urbain & signalisation
   Démo — palette à recaler à la pipette sur les maquettes
   ============================================================ */

:root {
  --navy: #152743;          /* bleu marine principal (cartes, titres) */
  --navy-deep: #051426;     /* fonds sombres (footer, overlays) — pipette maquette */
  --navy-card: #1c2d44;     /* cartes sur fond photo — pipette maquette */
  --orange: #ea6910;        /* accent principal — pipette maquette */
  --orange-dark: #cf5a0c;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --grey-line: #e3e7ee;
  --text: #2a3648;
  --text-light: #93a0b4;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15, 26, 44, .18);
  --font-title: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

a { text-decoration: none; color: inherit; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .btn { font-family: var(--font-title); }

.accent { color: var(--orange); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy .arrow { color: var(--orange); }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }

.btn-white { background: var(--white); color: var(--navy); }
.btn-white .arrow { color: var(--orange); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--orange);
  position: relative;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  flex-wrap: nowrap;
}

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo img { height: 46px; width: auto; }

/* Logo temporaire (remplacé par le fichier de Cameron) */
.logo-temp { display: flex; flex-direction: column; line-height: 1.05; }
.logo-temp .logo-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: .06em;
  color: var(--navy);
}
.logo-temp .logo-sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy);
  text-transform: uppercase;
}

.header-right { display: flex; align-items: center; gap: 20px; flex: none; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone svg { color: var(--orange); }

.site-header .btn { padding: 12px 20px; font-size: 13px; }

/* ---------- Hero gateway ---------- */
.gateway-hero {
  position: relative;
  min-height: calc(100vh - 210px);
  display: flex;
  align-items: center;
  padding: 70px 0 80px;
  background:
    linear-gradient(rgba(10, 17, 30, .62), rgba(10, 17, 30, .72)),
    radial-gradient(ellipse at 70% 30%, #2a3d5e 0%, #101b2e 60%, #0b1322 100%);
  background-size: cover;
  background-position: center;
}
.gateway-hero.has-photo {
  background-image:
    linear-gradient(rgba(10, 17, 30, .55), rgba(10, 17, 30, .7)),
    url("../images/hero-gateway.jpg");
}

.gateway-inner { position: relative; text-align: center; }

.hero-kicker-line {
  width: 46px; height: 3px;
  background: var(--orange);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.gateway-title {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: .015em;
  text-transform: uppercase;
  line-height: 1.08;
}

.gateway-sub {
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 18px auto 46px;
  font-size: 17px;
}

/* Cartes de choix */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.choice-card {
  border-radius: var(--radius);
  padding: 44px 36px 38px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choice-card .card-icon { margin-bottom: 22px; }

.choice-card h2 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}

.choice-card .card-line {
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 18px;
}

.choice-card p { font-size: 15.5px; margin-bottom: 28px; }

.choice-card .btn { margin-top: auto; }

.choice-pro {
  background: linear-gradient(rgba(20, 33, 56, .92), rgba(20, 33, 56, .92));
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}
.choice-pro p { color: rgba(255,255,255,.82); }

.choice-part {
  background: var(--white);
  color: var(--navy);
}
.choice-part p { color: var(--text); }

/* ---------- Bande piliers ---------- */
.pillars {
  background: var(--navy-deep);
  padding: 26px 0;
}
.pillars .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 4px;
}
.pillar + .pillar { border-left: 1px solid rgba(255,255,255,.1); padding-left: 22px; }

.pillar svg { flex: none; color: var(--orange); }

.pillar .pillar-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
}
.pillar .pillar-sub {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.35;
}

/* ---------- Pages légales ---------- */
.legal-page { padding: 60px 0 80px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-page .maj { font-size: 13px; color: var(--text-light); margin-bottom: 34px; }
.legal-page h2 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin: 30px 0 10px;
  padding-top: 8px;
  border-top: 2px solid var(--grey-line);
}
.legal-page p, .legal-page li { font-size: 14.5px; color: var(--text); margin-bottom: 10px; }
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page a { color: var(--orange); font-weight: 600; }
.a-completer {
  background: #fdf3d7;
  border-bottom: 1px dashed #d9a520;
  padding: 0 3px;
  font-weight: 600;
}
.footer-bar a { color: var(--text-light); }
.footer-bar a:hover { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillars .container { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .pillar + .pillar { border-left: none; padding-left: 4px; }
  .header-phone { font-size: 17px; }
}

@media (max-width: 720px) {
  .choice-grid { grid-template-columns: 1fr; max-width: 460px; }
  .site-header .container { flex-wrap: wrap; justify-content: center; }
  .gateway-hero { min-height: auto; }
}

@media (max-width: 480px) {
  .pillars .container { grid-template-columns: 1fr; }
  .btn { padding: 14px 20px; font-size: 13px; }
}

/* ============================================================
   PAGES INTERNES (Pro & Particuliers)
   ============================================================ */

/* ---------- Header avec navigation ---------- */
.site-header .main-nav { display: flex; align-items: center; gap: 20px; flex: none; }
.main-nav a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { border-bottom-color: var(--orange); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); }

/* ---------- Kickers & titres de section ---------- */
.section { padding: 78px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.kicker {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--navy);
}
.on-dark .section-title { color: var(--white); }

/* ---------- Hero interne (split texte / photo) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(100deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-hero .hero-kicker {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(27px, 3.1vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 20px;
}
.page-hero .hero-text {
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin-bottom: 26px;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 30px; }
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge svg { color: var(--orange); flex: none; }
.hero-badge span {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.page-hero .hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  align-self: center;
  width: 100%;
  background: radial-gradient(ellipse at 60% 40%, #33486e 0%, #1a2a44 70%);
}
.page-hero .hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Breadcrumb (page particuliers) */
.breadcrumb {
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; color: var(--orange); }

/* ---------- Cartes services / solutions ---------- */
/* Cartes de services — en flex et non en grid : quand le nombre de cartes ne
   tombe pas juste, la dernière ligne se centre au lieu de laisser un trou. */
.cards-grid { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: stretch; }
.cards-grid > * { flex: 0 1 auto; }
.cards-3 > * { width: calc((100% - 44px) / 3); }
.cards-4 > * { width: calc((100% - 66px) / 4); }
.cards-5 > * { width: calc((100% - 88px) / 5); }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-card .card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(120deg, #223350, #141f33);
}
.service-card .card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .card-badge {
  position: absolute;
  left: 18px;
  bottom: -24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.service-card .card-body { padding: 34px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 {
  font-size: 15.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card ul { list-style: none; margin-bottom: 18px; }
.service-card li {
  font-size: 13.5px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  margin-bottom: 5px;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.card-more {
  margin-top: auto;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-more:hover .arrow { transform: translateX(4px); }
.card-more .arrow { transition: transform .15s ease; }

.service-card .card-text { font-size: 13.5px; margin-bottom: 18px; }

/* ---------- Réalisations ---------- */
.realisations { background: var(--navy-deep); }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-btn {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  padding: 9px 16px;
  cursor: pointer;
  transition: all .15s ease;
}
.filter-btn:hover { color: var(--white); border-color: var(--white); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(120deg, #26385a, #16233c);
  position: relative;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.hidden { display: none; }

.realisations .section-foot { text-align: center; }

/* ---------- Engagements ---------- */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  text-align: center;
}
.engagement svg { color: var(--orange); margin: 0 auto 14px; display: block; }
.engagement h3 {
  font-size: 14.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.engagement p { font-size: 13.5px; color: var(--text); }

/* ---------- Avis clients (carrousel boucle façon widget Google) ---------- */
.reviews { background: var(--navy-deep); }

.gbadge-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.gbadge-line .g-logo {
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gbadge-line .g-note {
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 15px;
}
.gbadge-line .g-stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }
.gbadge-line .g-count { color: var(--text-light); font-size: 13px; }

.reviews-marquee {
  overflow: hidden;
  margin-top: 38px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-avis 38s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes scroll-avis { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; } }

.reviews-track .review-card { width: 360px; flex: none; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.review-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: var(--grey-line);
  position: absolute;
  top: 14px; left: 18px;
}
.review-card .stars { color: var(--orange); letter-spacing: 3px; font-size: 14px; margin-bottom: 12px; text-align: center; }
.review-card p { font-size: 13.5px; margin-bottom: 14px; }
.review-card .author {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  text-align: center;
}

/* ---------- Qui sommes-nous ---------- */
.apropos .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.apropos .apropos-text p { margin-bottom: 14px; font-size: 15.5px; }
.apropos .apropos-text .kicker { margin-bottom: 12px; }
.apropos .apropos-text h2 { margin-bottom: 18px; }
.associes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.associe-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.associe-card .avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid var(--orange);
}
.associe-card h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
}
.associe-card .role {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin: 6px 0 12px;
}
.associe-card a {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
}
.associe-card a:hover { color: var(--orange); }
@media (max-width: 900px) {
  .apropos .container { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .associes { grid-template-columns: 1fr; }
}

/* ---------- Chiffres clés animés ---------- */
.stats { background: var(--navy); padding: 44px 0; }
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--orange);
  line-height: 1.1;
}
.stat .stat-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-top: 6px;
}

/* ---------- Carte interactive ---------- */
#map-ouest {
  height: 340px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  background: var(--navy-card);
  z-index: 1;
}
.leaflet-container { font-family: var(--font-body) !important; }
.map-marker {
  width: 14px; height: 14px;
  background: var(--orange);
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(234,105,16,.35);
}
.leaflet-tooltip.city-tip {
  background: var(--navy-deep);
  color: #fff;
  border: 1px solid var(--orange);
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.leaflet-tooltip.city-tip::before { display: none; }
.map-marker-hq {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(234,105,16,.45);
}
.leaflet-tooltip.city-tip-hq { background: var(--orange); border-color: #fff; }

/* ---------- Simulateur de devis ---------- */
.simulateur { background: var(--off-white); }
.simu-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 36px 34px;
}
.simu-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.simu-progress span {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--grey-line);
  transition: background .25s ease;
}
.simu-progress span.done { background: var(--orange); }

.simu-step h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.simu-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.simu-opt {
  border: 2px solid var(--grey-line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--navy);
  transition: all .15s ease;
}
.simu-opt svg { display: block; margin: 0 auto 8px; color: var(--orange); }
.simu-opt:hover { border-color: var(--orange); transform: translateY(-2px); }
.simu-opt.sel { border-color: var(--orange); background: rgba(234,105,16,.07); }

.simu-input {
  width: 100%;
  border: 2px solid var(--grey-line);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  margin-top: 4px;
}
.simu-input:focus { outline: none; border-color: var(--orange); }
.simu-label {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 18px 0 6px;
}

.simu-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 14px;
}
.simu-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-light);
}
.simu-back:hover { color: var(--navy); }

.simu-recap {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 8px;
}
.simu-recap div { font-size: 14.5px; margin-bottom: 6px; }
.simu-recap strong { color: var(--navy); }
.simu-note { font-size: 12.5px; color: var(--text-light); margin-top: 14px; }

@media (max-width: 720px) {
  .simu-options { grid-template-columns: 1fr 1fr; }
  .simu-card { padding: 26px 20px; }
}

/* ---------- Cartes prestations (pages services) ---------- */
.presta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.presta-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.presta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.presta-card .presta-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.presta-card h3 {
  font-size: 15.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 10px;
}
.presta-card p { font-size: 13.5px; color: var(--text); }
@media (max-width: 900px) { .presta-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .presta-grid { grid-template-columns: 1fr; } }

/* ---------- Transitions simulateur ---------- */
.simu-step:not([hidden]) { animation: simu-in .3s ease; }
@keyframes simu-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- FAQ accordéon ---------- */
.faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[open] summary .faq-plus { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; font-size: 14px; color: var(--text); }

/* ---------- Barre d'action mobile (sticky) ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 20px rgba(5,20,38,.3);
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}
.mobile-cta .m-call { background: var(--navy); }
.mobile-cta .m-devis { background: var(--orange); }
@media (max-width: 720px) {
  .mobile-cta { display: grid; }
  body { padding-bottom: 52px; }

  /* Stats : 2 x 2 au lieu de 4 colonnes qui débordent */
  .stats .container { grid-template-columns: 1fr 1fr; gap: 22px 14px; }

  /* Avis : pile verticale statique (le défilement automatique est illisible au doigt) */
  .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
  .reviews-track {
    animation: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }
  .reviews-track .review-card { width: 100%; }
  .reviews-track .review-card:nth-child(n+4) { display: none; }

  /* Carrousel : une grande image par vue, avec accroche */
  .carousel-wrap { padding: 0 46px; }
  .carousel .gallery-item { flex-basis: 88%; }
}

/* Header compact sur petits écrans */
@media (max-width: 520px) {
  .logo img { height: 36px; }
  .site-header .btn { padding: 10px 12px; font-size: 11.5px; }
  .site-header .container { gap: 10px; padding: 10px 0; }
  .nav-toggle svg { width: 24px; height: 24px; }

  /* Cartes gateway : le bouton long ne doit plus déborder ni décentrer */
  .choice-grid { max-width: 100%; }
  .choice-card { padding: 32px 18px 28px; }
  .choice-card .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 13px 16px;
    font-size: 12.5px;
    max-width: 100%;
  }
}

/* ---------- Reveal au scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Zone d'intervention + contact ---------- */
.zone-contact { background: var(--navy-deep); color: var(--white); padding: 56px 0 0; }
.zone-contact .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}

.zone-cities h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 22px;
}
.cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.city { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: rgba(255,255,255,.9); }
.city svg { color: var(--orange); flex: none; }

.zone-map { display: flex; align-items: center; justify-content: center; }
.zone-map svg, .zone-map img { max-width: 100%; height: auto; }

.contact-panel {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 30px 28px;
  color: var(--white);
}
.contact-panel .panel-kicker {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.contact-panel h2 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-panel .contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14.5px;
  font-weight: 600;
}
.contact-panel .contact-line svg { flex: none; }
.contact-line .who { opacity: .7; flex: none; }
.contact-panel .btn { margin-top: 16px; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
}

/* Variante zone 2 colonnes (page particuliers) */
.zone-contact.zone-2col { padding-bottom: 0; }
.zone-contact.zone-2col .container {
  grid-template-columns: 1fr 1.15fr;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .zone-contact.zone-2col .container { grid-template-columns: 1fr; }
}

/* ---------- Process (particuliers) ---------- */
.process { background: var(--off-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: start;
  justify-content: center;
  gap: 18px;
}
.process-step { text-align: center; max-width: 180px; }
.process-step .step-icon { color: var(--orange); margin-bottom: 10px; }
.process-step .step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.process-step h3 {
  font-size: 13.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 6px;
}
.process-step p { font-size: 12.5px; color: var(--text); }
.process-arrow { color: var(--navy); opacity: .45; padding-top: 34px; font-size: 20px; }

/* ---------- Carrousel réalisations particuliers ---------- */
.carousel-wrap { position: relative; padding: 0 54px; }
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.carousel .gallery-item { scroll-snap-align: start; }
.carousel::-webkit-scrollbar { display: none; }
.carousel .gallery-item {
  flex: 0 0 calc((100% - 56px) / 5);
  background: linear-gradient(120deg, #dfe5ee, #c6cedd);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-line);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s ease;
  z-index: 2;
}
.carousel-arrow:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

@media (max-width: 900px) {
  .carousel .gallery-item { flex-basis: calc((100% - 28px) / 3); }
}
@media (max-width: 600px) {
  .carousel .gallery-item { flex-basis: calc((100% - 14px) / 2); }
}

/* ---------- Bandeau CTA final (particuliers) ---------- */
.cta-banner { background: var(--navy-deep); color: var(--white); overflow: hidden; }
.cta-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 300px;
}
.cta-banner .cta-icon { color: var(--orange); margin-bottom: 14px; }
.cta-banner h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.82); margin-bottom: 22px; max-width: 420px; }
.cta-banner .cta-photo {
  position: relative;
  min-height: 300px;
  background: linear-gradient(120deg, #26385a, #16233c);
}
.cta-banner .cta-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer riche ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.8); padding: 56px 0 0; }
.site-footer .container.cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.3fr;
  gap: 32px;
  padding-bottom: 44px;
}
.site-footer .f-about { font-size: 13.5px; margin-top: 14px; max-width: 260px; }
.site-footer .logo-temp .logo-name, .site-footer .logo-temp .logo-sub { color: var(--white); }
.site-footer h4 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: 13.5px; }
.site-footer a:hover { color: var(--orange); }
.site-footer .contact-line { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-size: 13.5px; }
.site-footer .contact-line svg { color: var(--orange); flex: none; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.socials a:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Responsive pages internes ---------- */
@media (max-width: 1290px) {
  .site-header .header-phone { display: none; }
}

@media (max-width: 1024px) {
  .cards-3 > * { width: calc((100% - 22px) / 2); }
  .cards-4 > * { width: calc((100% - 22px) / 2); }
  .cards-5 > * { width: calc((100% - 44px) / 3); }
  .gallery, .carousel { grid-template-columns: repeat(3, 1fr); }
  .engagements-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .zone-contact .container { grid-template-columns: 1fr 1fr; }
  .site-footer .container.cols { grid-template-columns: 1fr 1fr; }
  .site-header .main-nav { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px 6%;
    gap: 14px;
    border-bottom: 3px solid var(--orange);
    box-shadow: var(--shadow);
  }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-arrow { display: none; }
  .process-step { max-width: none; }
}

@media (max-width: 720px) {
  .page-hero .container { grid-template-columns: 1fr; min-height: auto; }
  .cards-3 > *, .cards-4 > *, .cards-5 > * { width: 100%; }
  .gallery, .carousel { grid-template-columns: repeat(2, 1fr); }
  .engagements-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .zone-contact .container { grid-template-columns: 1fr; }
  .cta-banner .container { grid-template-columns: 1fr; }
  .cta-banner .cta-photo { display: none; }
  .site-footer .container.cols { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Diaporama de réalisations (défilement automatique) ----------
   Une grande image à la fois, fondu doux, pause au survol. Le fond flouté
   reprend la photo courante : les clichés verticaux gardent leur cadrage
   entier au lieu d'être rognés dans un format paysage. */
.showcase { position: relative; border-radius: var(--radius); overflow: hidden;
  background: #0d1524; box-shadow: 0 22px 50px -34px rgba(10,20,40,.55); }
.showcase-stage { position: relative; aspect-ratio: 16 / 9; }
.showcase .slide { position: absolute; inset: 0; margin: 0; opacity: 0;
  transition: opacity .85s ease; pointer-events: none; }
.showcase .slide.is-active { opacity: 1; pointer-events: auto; }
.showcase .slide-bg { position: absolute; inset: -6%; background-size: cover;
  background-position: center; filter: blur(26px) brightness(.5); transform: scale(1.1); }
.showcase .slide img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; }
.showcase-stage::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 74px; z-index: 3; pointer-events: none;
  background: linear-gradient(to top, rgba(6,12,24,.55), rgba(6,12,24,0)); }

.showcase-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--navy, #16233d); font-size: 19px; line-height: 1;
  display: grid; place-items: center; transition: background .2s, color .2s, transform .2s; }
.showcase-arrow:hover { background: var(--orange, #e8703a); color: #fff; }
.showcase-arrow.prev { left: 14px; }
.showcase-arrow.next { right: 14px; }

/* Mention « exemple » sur les visuels qui ne sont pas des photos de chantier */
.slide-tag, .card-tag { position: absolute; z-index: 6; pointer-events: none;
  background: rgba(6,12,24,.72); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
  backdrop-filter: blur(2px); }
.slide-tag { right: 12px; top: 12px; }
.card-tag { right: 10px; top: 10px; font-size: 10px; padding: 3px 8px; }

.showcase-dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 5;
  display: flex; gap: 8px; justify-content: center; }
.showcase-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer; transition: background .25s, width .25s; }
.showcase-dots button.is-active { background: #fff; width: 26px; border-radius: 999px; }

@media (max-width: 720px) {
  .showcase-stage { aspect-ratio: 4 / 3; }
  .showcase-arrow { width: 38px; height: 38px; font-size: 16px; }
  .showcase-arrow.prev { left: 8px; }
  .showcase-arrow.next { right: 8px; }
}
/* respect du réglage système « animations réduites » */
@media (prefers-reduced-motion: reduce) {
  .showcase .slide { transition: none; }
}
