/* ============================================================
   TP BAT — Desktop redesign (≥769px)
   Palette : bleu ciel primaire · ivoire secondaire
   Philosophie : épuré, aéré, professionnel BTP
   ============================================================ */

@media (min-width: 769px) {

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --sky:        #3B82C4;   /* bleu ciel primaire             */
  --sky-dark:   #2563A8;   /* bleu foncé (hover / accents)   */
  --sky-light:  #EBF4FF;   /* bleu très pâle (fond sections) */
  --sky-mid:    #BFDBF7;   /* bleu ciel moyen (borders)      */
  --ivory:      #F8F6F1;   /* ivoire secondaire (fond)       */
  --ivory-dark: #EDE9E1;   /* ivoire plus foncé              */
  --charcoal:   #1E2A38;   /* texte principal                */
  --grey:       #6B7A8D;   /* texte secondaire               */
  --grey-lt:    #A8B4C0;   /* texte tertiaire                */
  --white:      #FFFFFF;
  --divider:    #D9E5F0;   /* séparateurs bleutés discrets   */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(59,130,196,0.10);
  --shadow-md:  0 8px 32px rgba(59,130,196,0.14);
  --shadow-lg:  0 20px 60px rgba(30,42,56,0.12);
  --ease:       0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
}

section { padding: 6rem 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
}

.gold-line {
  width: 44px;
  height: 3px;
  background: var(--sky);
  border-radius: 2px;
  margin: 0.9rem 0 1.2rem;
}
.section-header.centered .gold-line { margin: 0.9rem auto 1.2rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOUTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  transition: var(--ease);
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,130,196,0.30);
}
.btn-primary:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,196,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--divider);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: var(--sky-light);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: none;
}
.btn-dark:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#navbar { transition: all var(--ease); }

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--divider);
}
#navbar.scrolled .nav-logo .logo-text { color: var(--charcoal); }
#navbar.scrolled .nav-logo .logo-text em { color: var(--sky); }
#navbar.scrolled .nav-logo .logo-icon {
  background: var(--sky);
  color: var(--white);
}
#navbar.scrolled .nav-links a { color: var(--grey); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--charcoal); }
#navbar.scrolled .nav-links a::after { background: var(--sky); }
#navbar.scrolled .nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(59,130,196,0.3);
}
#navbar.scrolled .nav-cta:hover {
  background: var(--sky-dark) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — image plein écran, texte centré, overlay bleu
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  background: url('images/Banniere-accueil.jpg') center 40% / cover no-repeat;
  opacity: 1;
  filter: brightness(0.38) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(37,99,168,0.82) 0%,
    rgba(30,42,56,0.65) 50%,
    rgba(20,30,48,0.75) 100%
  );
}

.hero-pattern { display: none; }

.hero-gold-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-mid), var(--sky));
  top: auto;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  width: 100%;
  padding: 4rem 2rem;
  margin: 0 auto;
  min-height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,196,0.18);
  border: 1px solid rgba(191,219,247,0.45);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-mid);
  margin-bottom: 2rem;
}
.hero-badge .dot {
  background: var(--sky-mid);
  width: 6px; height: 6px;
}

.hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  text-align: center;
}
.hero h1 br { display: none; }
.hero h1 em {
  font-style: normal;
  color: var(--sky-mid);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.8rem;
}
.hero-subtitle em { color: rgba(255,255,255,0.9); font-style: normal; }
.hero-subtitle strong { color: rgba(255,255,255,0.95); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,196,0.45);
  padding: 1rem 2.4rem;
}
.hero-actions .btn-primary:hover {
  background: var(--white);
  color: var(--sky-dark);
  box-shadow: 0 8px 28px rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.88);
  padding: 1rem 2.4rem;
}
.hero-actions .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  transform: translateY(-2px);
}

/* Stats hero — 4 blocs alignés */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
}
.hero-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 1rem;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.scroll-indicator { color: rgba(255,255,255,0.35); }
.scroll-mouse { border-color: rgba(255,255,255,0.25); }
.scroll-wheel { background: var(--sky-mid); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER — fond ivoire
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker-bar {
  background: var(--ivory-dark);
  border-top: none;
  border-bottom: 1px solid var(--divider);
}
.ticker-item { color: var(--grey); font-size: 0.72rem; }
.ticker-item i { color: var(--sky); }
.ticker-sep { color: var(--sky-mid); opacity: 0.5; font-size: 0.55rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRÉSENTATION — fond blanc, layout 2 colonnes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.presentation {
  background: var(--white);
  padding: 6rem 0;
}

.presentation-grid {
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.presentation-image .main-img {
  border-radius: var(--radius-md);
  height: 500px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.presentation-image .accent-img {
  width: 190px; height: 140px;
  border-radius: var(--radius-sm);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.presentation-image .years-badge {
  background: var(--sky);
  border: none;
  box-shadow: 0 8px 24px rgba(59,130,196,0.35);
  border-radius: var(--radius-md);
}
.presentation-image .years-badge .years-num { color: var(--white); font-weight: 800; }
.presentation-image .years-badge .years-label { color: rgba(255,255,255,0.80); }

.presentation-content .section-title {
  font-size: 2.4rem;
  color: var(--charcoal);
}
.presentation-content .section-subtitle { color: var(--grey); }
.presentation-content p[style] { color: var(--grey) !important; font-size: 0.95rem !important; line-height: 1.8; }

.values-list { margin-top: 2rem !important; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
  background: var(--sky-light);
  margin-bottom: 0.8rem;
  transition: var(--ease);
}
.value-item:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  background: var(--white);
}
.value-item .value-icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  min-width: 42px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.value-item .value-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.value-item .value-text p {
  font-size: 0.86rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES — fond bleu très pâle, cards blanches
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services {
  background: var(--sky-light);
  padding: 6rem 0;
}
.services::before { display: none; }

.services .section-title { color: var(--charcoal); }
.services .section-subtitle { color: var(--grey); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
}

.service-card {
  width: auto;
  flex-shrink: unset;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.service-card::before {
  bottom: auto;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  transform: scaleX(0);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-mid);
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--sky-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--sky-mid);
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.service-card:hover .service-icon {
  background: var(--sky);
  border-color: var(--sky);
}

.service-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.service-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RÉALISATIONS PREVIEW — fond ivoire, grille photos
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.realisations-preview {
  background: var(--ivory);
  padding: 6rem 0;
}
.realisations-preview .section-label { color: var(--sky) !important; }
.realisations-preview .section-title {
  color: var(--charcoal) !important;
}
.realisations-preview .section-subtitle { color: var(--grey) !important; }

.preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.preview-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.preview-item:first-child { grid-row: 1 / 3; border-radius: var(--radius-sm); }

.preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.88);
}
.preview-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.70);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,56,0.80) 0%, rgba(30,42,56,0.10) 50%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  opacity: 1;
  transition: background 0.35s ease;
}
.preview-item:hover .preview-overlay {
  background: linear-gradient(to top, rgba(37,99,168,0.88) 0%, rgba(37,99,168,0.30) 55%, transparent 80%);
}

.preview-overlay h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}
.preview-item:hover .preview-overlay h4 { transform: translateY(0); }

.preview-overlay span {
  font-size: 0.75rem;
  color: var(--sky-mid);
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
}
.preview-item:hover .preview-overlay span { opacity: 1; transform: translateY(0); }

.realisations-preview > .container > div[style] {
  text-align: center !important;
  margin-top: 2.8rem;
}
.realisations-preview .btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,130,196,0.28);
}
.realisations-preview .btn-primary:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,196,0.38);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   POURQUOI NOUS — fond blanc, layout 2 colonnes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pourquoi {
  background: var(--white);
  padding: 6rem 0;
}
.pourquoi .section-label { color: var(--sky); }
.pourquoi .section-title { font-size: 2.3rem; color: var(--charcoal); }
.pourquoi .section-subtitle { color: var(--grey); }

.pourquoi-grid {
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.avantages-list { gap: 1rem; }
.avantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
  background: var(--ivory);
  transition: var(--ease);
}
.avantage-item:hover {
  border-color: var(--sky);
  background: var(--sky-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.avantage-num {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  min-width: 2.5rem;
}

.avantage-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.avantage-text p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; }

.pourquoi-image img {
  border-radius: var(--radius-md);
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.pourquoi-badge {
  background: var(--white);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  left: -2rem;
  bottom: 2rem;
}
.pourquoi-badge .badge-text .num {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  color: var(--sky);
  font-size: 1.5rem;
}
.pourquoi-badge .badge-text .label { color: var(--grey); font-size: 0.78rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TÉMOIGNAGES — fond bleu très pâle
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.temoignages {
  background: var(--sky-light);
  padding: 6rem 0;
}
.temoignages .section-label { color: var(--sky); }
.temoignages .section-title { color: var(--charcoal); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.temoignage-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.temoignage-card::before { display: none; }
.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-mid);
}

.stars { color: var(--sky); font-size: 1rem; margin-bottom: 1rem; }
.comment {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.client-info { display: flex; gap: 0.9rem; align-items: center; }
.client-avatar {
  width: 42px; height: 42px;
  background: var(--sky);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
}
.client-name { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.client-type { font-size: 0.8rem; color: var(--grey-lt); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESSUS — fond ivoire, steps numérotés
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.processus {
  background: var(--ivory);
  padding: 6rem 0;
}
.processus .section-label { color: var(--sky) !important; }
.processus .section-title { color: var(--charcoal) !important; font-size: 2.2rem !important; }
.processus .section-subtitle { color: var(--grey) !important; }
.processus .gold-line { background: var(--sky); }

.processus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.processus-grid::before { display: none !important; }

.process-step {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-mid);
  background: var(--white);
}
.process-step:hover::before { transform: scaleX(1); }

.step-num {
  width: 56px; height: 56px;
  background: var(--sky-light);
  border: 2px solid var(--sky-mid);
  border-radius: 50%;
  color: var(--sky-dark);
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  transition: var(--ease);
}
.process-step:hover .step-num {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}
.process-step h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.process-step p { font-size: 0.86rem; color: var(--grey); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BANNER — fond bleu ciel, fort impact
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 60%, #5BA3E0 100%);
  padding: 5.5rem 0;
}
.cta-banner::before { display: none; }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.cta-text h2, .cta-text p { margin: 0; }
.cta-text h2 { margin-bottom: 0.6rem; }

.cta-banner h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
  align-items: stretch;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--sky-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-align: center;
  justify-content: center;
  font-weight: 700;
}
.cta-actions .btn-primary:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}
.cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.90);
  text-align: center;
  justify-content: center;
}
.cta-actions .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-1px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — fond foncé sobre
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--charcoal);
  border-top: none;
}
.footer-top {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-socials a {
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
}
.footer-socials a:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}
.footer-section h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.30);
  margin-bottom: 1.3rem;
}
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--ease);
}
.footer-section ul li a:hover { color: var(--sky-mid); }
.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
}
.footer-bottom a {
  color: rgba(255,255,255,0.38);
  transition: color var(--ease);
}
.footer-bottom a:hover { color: var(--sky-mid); }

} /* fin @media (min-width: 769px) */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CORRECTIONS VARIABLES HÉRITÉES & ÉLÉMENTS SPÉCIAUX
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) {

  /* Redéfinir les variables legacy du style.css de base */
  :root {
    --or:         #3B82C4;
    --or-clair:   #BFDBF7;
    --bleu-nuit:  #1E2A38;
    --blanc:      #FFFFFF;
    --gris-moyen: #6B7A8D;
  }

  /* Footer logo icon */
  .footer-logo-icon {
    width: 38px; height: 38px;
    font-size: 0.95rem;
    background: var(--sky);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  /* Footer logo text */
  footer .logo-text {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-left: 0.65rem;
  }
  footer .logo-text em {
    font-style: normal;
    color: var(--sky-mid);
  }

  /* Navbar logo icon */
  .nav-logo .logo-icon {
    background: var(--sky);
    color: var(--white);
    border-radius: 6px;
    transition: var(--ease);
  }

  /* Section réalisations preview — h2 toujours sombre */
  .realisations-preview .section-title {
    color: var(--charcoal) !important;
  }

  /* Section header centrée — tous titres sombres */
  .section-header.centered .section-title {
    color: var(--charcoal);
  }

  /* Services header */
  .services .section-header .section-title {
    color: var(--charcoal) !important;
  }

  /* Conteneur flex boutons présentation */
  .presentation-content > div[style*="display:flex"] {
    margin-top: 2rem;
  }

  /* Container width maximal */
  .container {
    max-width: 1180px;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Animations reveal : on garde la logique existante */
  .reveal, .reveal-left, .reveal-right { transition-duration: 0.6s; }

  /* ── Séparateur de section visuel ── */
  .presentation + .services::before { display: none; }

  /* Alternance fond sections bien visible */
  .services       { background: var(--sky-light); }
  .realisations-preview { background: var(--ivory); }
  .pourquoi       { background: var(--white); }
  .temoignages    { background: var(--sky-light); }
  .processus      { background: var(--ivory); }
  .cta-banner     {
    background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 60%, #5BA3E0 100%);
  }

  /* ── Scroll indicator positionné ── */
  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  /* ── Section presentation : s'assurer que la grille passe ── */
  .presentation-grid {
    display: grid !important;
  }

  /* ── Pourquoi grille ── */
  .pourquoi-grid {
    display: grid !important;
  }

  /* ── Temoignages grille override du flex mobile ── */
  .temoignages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
  }

  /* ── Services grid override du flex/scroll mobile ── */
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible !important;
    padding: 0 !important;
  }

  /* ── Processus grid ── */
  .processus-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 0 !important;
  }

  /* ── CTA inner ── */
  .cta-inner {
    display: grid !important;
    grid-template-columns: 1fr auto;
  }

  /* ── Allouagne section-subtitle mb ── */
  .pourquoi .section-subtitle {
    margin-bottom: 2rem !important;
  }

  /* ── Cookie banner ── */
  .cookie-banner {
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
  }
  .cookie-btn.cookie-accept {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
  }

}
