/* ========================================
   SD PARE-BRISE — Stylesheet principal
   Couleurs : Bleu marine #0A2E5C / Rouge #D32F2F / Blanc
   ======================================== */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bleu: #0A2E5C;
  --bleu-fonce: #061E3E;
  --bleu-clair: #1A4A85;
  --rouge: #D32F2F;
  --rouge-fonce: #A82424;
  --blanc: #FFFFFF;
  --gris-fond: #F5F7FA;
  --gris-texte: #4A4A4A;
  --noir: #1A1A1A;
  --ombre: 0 4px 20px rgba(10, 46, 92, 0.08);
  --ombre-forte: 0 10px 40px rgba(10, 46, 92, 0.15);
  --rayon: 12px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--noir);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { font-size: 1rem; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Manrope', sans-serif;
}

.btn-rouge {
  background: var(--rouge);
  color: var(--blanc);
}
.btn-rouge:hover {
  background: var(--rouge-fonce);
  transform: translateY(-2px);
  box-shadow: var(--ombre-forte);
}

.btn-bleu {
  background: var(--bleu);
  color: var(--blanc);
}
.btn-bleu:hover {
  background: var(--bleu-fonce);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--blanc);
}

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

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanc);
  border-bottom: 1px solid rgba(10, 46, 92, 0.08);
  box-shadow: 0 2px 8px rgba(10, 46, 92, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  color: var(--bleu);
  letter-spacing: 1px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--bleu);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 6px 6px 18px 6px;
  border: 2px solid var(--blanc);
  border-bottom: 2px solid var(--rouge);
  border-radius: 4px 4px 16px 16px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--noir);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.nav a:hover, .nav a.active {
  color: var(--rouge);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rouge);
  border-radius: 3px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rouge);
  color: var(--blanc);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.header-cta:hover {
  background: var(--rouge-fonce);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 3px;
  background: var(--bleu);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 8px; }
.menu-toggle span:nth-child(2) { top: 14px; }
.menu-toggle span:nth-child(3) { top: 20px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-fonce) 100%);
  color: var(--blanc);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.2);
  border: 1px solid rgba(211, 47, 47, 0.4);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--rouge);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 16px;
}

.hero-offer {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-offer .highlight {
  background: var(--rouge);
  padding: 4px 16px;
  border-radius: 6px;
  display: inline-block;
  margin: 0 4px;
}
.hero-offer .sep {
  opacity: 0.5;
  margin: 0 8px;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.85;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust div::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--rouge);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
}
.section-gris {
  background: var(--gris-fond);
}
.section-bleu {
  background: var(--bleu);
  color: var(--blanc);
}
.section-rouge {
  background: var(--rouge);
  color: var(--blanc);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--rouge);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-bleu .section-eyebrow,
.section-rouge .section-eyebrow {
  color: var(--blanc);
  opacity: 0.85;
}

.section-titre {
  margin-bottom: 16px;
  color: var(--bleu);
}
.section-bleu .section-titre,
.section-rouge .section-titre {
  color: var(--blanc);
}

.section-intro {
  font-size: 1.15rem;
  color: var(--gris-texte);
  max-width: 700px;
  margin-bottom: 56px;
}
.section-bleu .section-intro,
.section-rouge .section-intro {
  color: rgba(255, 255, 255, 0.85);
}

.section-header-center {
  text-align: center;
}
.section-header-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ---- ATOUTS ---- */
.atouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.atout {
  background: var(--blanc);
  padding: 36px 28px;
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(10, 46, 92, 0.06);
}
.atout:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-forte);
}
.atout-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-fonce) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 1.8rem;
  font-weight: 900;
}
.atout h3 {
  color: var(--bleu);
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.atout p {
  color: var(--gris-texte);
  font-size: 0.95rem;
}

/* ---- OFFRE EXCLUSIVE ---- */
.offre-block {
  background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-fonce) 100%);
  color: var(--blanc);
  padding: 64px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(211, 47, 47, 0.3);
  position: relative;
  overflow: hidden;
}
.offre-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.offre-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.95;
  text-transform: uppercase;
}

.offre-titre {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.offre-cartes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offre-carte {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.offre-carte:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}
.offre-carte.featured {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}
.offre-prix {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 12px;
}
.offre-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
}

/* ---- COMMENT ÇA MARCHE ---- */
.etapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.etapes::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--rouge) 0, var(--rouge) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.etape {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--blanc);
  padding: 16px 12px 0;
}
.section-gris .etape {
  background: var(--gris-fond);
}

.etape-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--bleu);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  border: 4px solid var(--blanc);
  box-shadow: 0 4px 16px rgba(10, 46, 92, 0.2);
}
.section-gris .etape-num {
  border-color: var(--gris-fond);
}
.etape:last-child .etape-num {
  background: var(--rouge);
}

.etape h3 {
  color: var(--bleu);
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.etape p {
  color: var(--gris-texte);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- ASSURANCES ---- */
.assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.assurance {
  background: var(--blanc);
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--bleu);
  border: 1px solid rgba(10, 46, 92, 0.1);
  box-shadow: 0 2px 8px rgba(10, 46, 92, 0.04);
  font-size: 1rem;
}

/* ---- CTA FINAL ---- */
.cta-final {
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-fonce) 100%);
  color: var(--blanc);
  padding: 80px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(211, 47, 47, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-final p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-final .tel-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--blanc);
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 32px;
  background: var(--rouge);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.cta-final .tel-big:hover {
  background: var(--rouge-fonce);
  transform: scale(1.03);
}

/* ---- SERVICES (page dédiée) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--blanc);
  padding: 36px 28px;
  border-radius: var(--rayon);
  border: 1px solid rgba(10, 46, 92, 0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-forte);
  border-color: var(--rouge);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--rouge);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-fonce) 100%);
  color: var(--blanc);
  border-color: var(--bleu);
}
.service-card.featured .service-icon {
  background: var(--rouge);
}
.service-card.featured h3,
.service-card.featured .service-bonus {
  color: var(--blanc);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bleu);
  color: var(--blanc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
}
.service-card h3 {
  color: var(--bleu);
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.service-card p {
  color: var(--gris-texte);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}
.service-bonus {
  display: inline-block;
  background: var(--rouge);
  color: var(--blanc);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---- ZONE — Carte des départements ---- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.dept-card {
  background: var(--blanc);
  padding: 24px 20px;
  border-radius: var(--rayon);
  border: 1px solid rgba(10, 46, 92, 0.1);
  transition: all 0.3s;
  text-align: center;
}
.dept-card:hover {
  border-color: var(--rouge);
  transform: translateY(-4px);
  box-shadow: var(--ombre);
}
.dept-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: 8px;
}
.dept-nom {
  font-weight: 700;
  color: var(--bleu);
  font-size: 1rem;
  margin-bottom: 8px;
}
.dept-card.principal {
  background: var(--bleu);
  color: var(--blanc);
  border-color: var(--bleu);
}
.dept-card.principal .dept-num {
  color: var(--blanc);
}
.dept-card.principal .dept-nom {
  color: var(--blanc);
}
.dept-card .badge-atelier {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.75rem;
  background: var(--rouge);
  color: var(--blanc);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-infos {
  background: var(--bleu);
  color: var(--blanc);
  padding: 48px 36px;
  border-radius: var(--rayon);
  position: relative;
  overflow: hidden;
}
.contact-infos::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-infos h2 {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--rouge);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-info-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-bottom: 4px;
}
.contact-info-item .value {
  font-weight: 700;
  font-size: 1.05rem;
}
.contact-info-item a:hover {
  color: var(--rouge);
}

.contact-form {
  background: var(--blanc);
  padding: 40px 36px;
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  border: 1px solid rgba(10, 46, 92, 0.08);
}
.contact-form h2 {
  color: var(--bleu);
  margin-bottom: 8px;
}
.contact-form-intro {
  color: var(--gris-texte);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bleu);
  margin-bottom: 6px;
}
.form-group label .req {
  color: var(--rouge);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid rgba(10, 46, 92, 0.12);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--blanc);
  color: var(--noir);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rouge);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 8px;
  justify-content: center;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bleu-fonce);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 1.1rem;
  color: var(--blanc);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--rouge);
}
.footer-col p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- BANDEAU MOBILE TÉL ---- */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rouge);
  color: var(--blanc);
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  z-index: 99;
  font-size: 1.05rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.mobile-call::before {
  content: '📞 ';
}

/* ---- RESPONSIVE ---- */
@media (max-width: 968px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanc);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--ombre);
    align-items: flex-start;
  }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .atouts { grid-template-columns: 1fr; }
  .etapes { grid-template-columns: 1fr 1fr; }
  .etapes::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-call { display: block; }
  body { padding-bottom: 60px; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 0 80px; }
  .section { padding: 60px 0; }
  .etapes { grid-template-columns: 1fr; }
  .offre-cartes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .offre-block { padding: 48px 24px; }
  .contact-infos, .contact-form { padding: 32px 24px; }
}

/* ========================================
   ADDITIONS — Logo image + Photos
   ======================================== */

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .logo-img { height: 42px; }
}

/* Hero avec image split */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
  border: 4px solid rgba(255, 255, 255, 0.1);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--rouge);
  color: var(--blanc);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}
@media (max-width: 968px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
}

/* Cartes services avec image */
.service-card-img {
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: all 0.3s;
  border: 1px solid rgba(10, 46, 92, 0.06);
  display: flex;
  flex-direction: column;
}
.service-card-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-forte);
}
.service-card-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gris-fond);
  position: relative;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.service-card-img:hover .service-card-photo img {
  transform: scale(1.05);
}
.service-card-photo .bonus-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--rouge);
  color: var(--blanc);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}
.service-card-content {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-content h3 {
  color: var(--bleu);
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.service-card-content p {
  color: var(--gris-texte);
  font-size: 0.95rem;
  flex: 1;
}

/* Bandeau photo large */
.photo-bandeau {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 21/9;
}
.photo-bandeau img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-bandeau-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 46, 92, 0.92) 0%, rgba(10, 46, 92, 0.6) 50%, rgba(10, 46, 92, 0.2) 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.photo-bandeau-content {
  color: var(--blanc);
  max-width: 500px;
}
.photo-bandeau-content h3 {
  color: var(--blanc);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.photo-bandeau-content p {
  opacity: 0.95;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .photo-bandeau { aspect-ratio: 4/3; }
  .photo-bandeau-overlay { padding: 0 32px; background: linear-gradient(180deg, rgba(10,46,92,0.4) 0%, rgba(10,46,92,0.92) 70%); align-items: flex-end; padding-bottom: 32px; }
  .photo-bandeau-content h3 { font-size: 1.4rem; }
}

/* Image avec texte côte à côte */
.image-text-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.image-text-split.reverse {
  grid-template-columns: 1fr 1fr;
}
.image-text-split.reverse .image-text-img {
  order: 2;
}
.image-text-img {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.image-text-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .image-text-split, .image-text-split.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .image-text-split.reverse .image-text-img { order: 0; }
}
