/* ============================================
   OPTIMISTIC CONCIERGERIE — Feuille de style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700&family=Brusher&family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ── Variables ── */
:root {
  --bleu-nuit:    #1A3762;
  --bleu-profond: #002149;
  --jaune:        #FDC132;
  --jaune-fonce : #F9BD2E;
  --jaune-clair : #FFDEA1;
  --or:           #c9a800;
  --or-clair:     #e0bc00;
  --ivoire:       #f8f9fa;
  --texte:        #001b3e;
  --gris-doux:    #f3f4f5;
  --blanc:        #FFFFFF;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--ivoire);
  color: var(--texte);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typographie ── */
h1, h2, h3, h4 {
  font-family: 'Noto Serif', serif;
  color: var(--bleu-nuit);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p  { font-size: 1rem; color: #3a4a60; }

/* ── Header / Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 72px;
  box-shadow: 0px 4px 24px rgba(0, 33, 73, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon { height: 70px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-optimistic { font-family: 'Brusher', sans-serif; font-size: 1.8rem; color: var(--jaune-fonce); letter-spacing: 0.01em; }
.logo-conciergerie { font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; color: var(--bleu-nuit); text-transform: uppercase; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--jaune-fonce); }
nav .btn-nav {
  background: var(--jaune-fonce);
  color: var(--bleu-nuit);
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.2s;
}
nav .btn-nav:hover { background: var(--jaune-clair); color: var(--bleu-nuit); }
nav .btn-nav.active { color: var(--bleu-nuit); }

/* ── Boutons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0.75rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--jaune-fonce);
  color: var(--bleu-nuit);
}
.btn-primary:hover { background: var(--jaune-clair); }
.btn-secondary {
  background: transparent;
  color: var(--blanc);
  border: 2px solid var(--jaune-fonce);
}
.btn-secondary:hover { background: var(--jaune-fonce); color: var(--bleu-nuit); }

/* ── Section utilitaires ── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--gris-doux); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title p { margin-top: 0.75rem; font-size: 1.05rem; }
.gold-line {
  width: 60px; height: 3px;
  background: var(--jaune-fonce);
  margin: 1rem auto 0;
}

/* ── Grille de cartes ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.card {
  background: var(--blanc);
  border-radius: 0.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06);
  transition: background 0.2s;
}
.card:hover { background: var(--gris-doux); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }

/* ── Hero ── */
.hero-dark h1, .hero-dark h2, .hero-dark h3 { color: var(--blanc); }
.hero {
  background: linear-gradient(135deg, var(--bleu-profond) 0%, var(--bleu-nuit) 100%);
  color: var(--blanc);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero h1 { color: var(--blanc); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--jaune-fonce); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-phone {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--jaune-fonce);
}
.hero-phone a { color: var(--jaune-fonce); }

/* ── Témoignages ── */
.temoignage {
  background: var(--blanc);
  border-top: 4px solid var(--jaune-fonce);
  padding: 1.75rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06);
  font-style: italic;
}
.temoignage-auteur {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bleu-nuit);
}
.stars { color: var(--jaune-fonce); font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ── Tarifs ── */
.tarif-card {
  background: var(--blanc);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06);
  text-align: center;
  position: relative;
}
.tarif-card.featured {
  background: var(--bleu-nuit);
  color: var(--blanc);
  transform: scale(1.04);
}
.tarif-card.featured h3 { color: var(--jaune-fonce); }
.tarif-card.featured p { color: rgba(255,255,255,0.8); }
.tarif-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--jaune-fonce);
  color: var(--bleu-nuit);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tarif-prix {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  color: var(--jaune-fonce);
  font-weight: 700;
  line-height: 1;
  margin: 1.25rem 0 0.25rem;
}
.tarif-prix span { font-size: 1rem; font-family: 'Manrope', sans-serif; font-weight: 400; }
.tarif-liste { list-style: none; text-align: left; margin: 1.5rem 0 2rem; }
.tarif-liste li { padding: 0.4rem 0; font-size: 0.95rem; }
.tarif-liste li::before { content: '✦ '; color: var(--jaune-fonce); font-size: 0.7rem; }

/* ── Formulaire ── */
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--bleu-nuit); letter-spacing: 0.04em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  padding: 0.85rem 0.25rem;
  border: none;
  border-bottom: 1.5px solid #c4c6d0;
  border-radius: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  background: transparent;
  color: var(--texte);
  transition: border-color 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--bleu-nuit);
  background: var(--gris-doux);
}
textarea { resize: vertical; min-height: 130px; }

/* ── Footer ── */
footer {
  background: var(--bleu-profond);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem 1.5rem;
}
footer .logo { color: var(--blanc); }
footer .logo-conciergerie { color: var(--blanc); opacity: 0.8; }
footer .logo-icon { height: 36px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
footer h4 { font-family: 'Noto Serif', serif; color: var(--jaune-fonce); margin-bottom: 1rem; font-size: 1.05rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
footer ul a:hover { color: var(--jaune-fonce); }
.footer-logo { font-family: 'Noto Serif', serif; font-size: 1.2rem; color: var(--blanc); margin-bottom: 0.75rem; }
.footer-logo span { font-size: 1.5rem; margin-right: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Page hero (pages internes) ── */
.page-hero {
  background: var(--blanc);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--gris-doux);
}
.page-hero h1 { color: var(--bleu-nuit); letter-spacing: -0.02em; }
.page-hero p { color: #44474f; margin-top: 0.75rem; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.page-hero .gold-line { margin-top: 1.25rem; }

/* ── Stats section (index) ── */
.section-stats { background: var(--bleu-nuit); padding: 3rem 2rem; }
.stats-grid { text-align: center; color: var(--blanc); }
.stat-number { font-family: 'Noto Serif', serif; font-size: 2.8rem; color: var(--jaune-fonce); font-weight: 700; }
.stat-label { font-size: 0.9rem; margin-top: 0.4rem; opacity: 0.8; }

/* ── CTA section ── */
.section-cta { background: var(--ivoire); padding: 4rem 2rem 5rem; text-align: center; }
.section-cta .container {
  background: var(--bleu-nuit);
  border-radius: 0.5rem;
  padding: 4rem 3rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.12);
}
.cta-title { color: var(--blanc); margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; }
.btns-center { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.text-center-mt { text-align: center; margin-top: 2.5rem; }

/* ── Services layout ── */
.grid-service { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }
.grid-service-reverse { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: center; }
.service-icon { text-align: center; font-size: 5rem; }
.service-photo { overflow: hidden; border-radius: 0.75rem; box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.1); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

/* ── Gold line variante gauche ── */
.gold-line-left { margin: 1rem 0 1.5rem; }

/* ── Pourquoi nous (index) ── */
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; }
.why-icon { font-size: 2rem; flex-shrink: 0; }

/* ── Feature list (a-propos, nos-secteurs) ── */
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon { font-size: 1.75rem; flex-shrink: 0; }
.circle-badge { background: var(--jaune-fonce); color: var(--bleu-nuit); font-weight: 700; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Brand card (a-propos) ── */
.grid-about { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.brand-card { background: var(--gris-doux); border-radius: 0.5rem; padding: 3rem; text-align: center; }
.brand-name { font-family: 'Noto Serif', serif; font-size: 1.4rem; color: var(--bleu-nuit); }
.brand-tagline { color: var(--jaune-fonce); margin-top: 0.5rem; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Card variante centrée ── */
.card-center { text-align: center; }

/* ── Intro section ── */
.content-intro { max-width: 720px; margin: 0 auto; text-align: center; }

/* ── Tarifs ── */
.grid-tarifs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 950px; margin: 0 auto 3rem; }
.tarif-card-title { color: var(--bleu-nuit); font-family: 'Noto Serif', serif; font-size: 1.05rem; margin-bottom: 0.75rem; }
.btn-tarif { width: 100%; text-align: center; margin-top: 1.5rem; }
.tarifs-box { max-width: 950px; margin: 0 auto; background: var(--blanc); border-radius: 0.5rem; padding: 2rem 2.5rem; box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06); }
.tarifs-box-title { color: var(--bleu-nuit); font-family: 'Noto Serif', serif; text-align: center; margin-bottom: 1.25rem; }
.tarifs-box-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 3rem; max-width: 640px; margin: 0 auto; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--gris-doux); padding-bottom: 1.25rem; }
.faq-question { color: var(--bleu-nuit); margin-bottom: 0.5rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.circle-icon { background: var(--jaune-fonce); color: var(--bleu-nuit); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--jaune-fonce); font-weight: 600; margin-bottom: 0.2rem; }
.contact-response-box { margin-top: 2.5rem; background: var(--gris-doux); border-radius: 0.5rem; padding: 1.5rem; }
.contact-response-title { font-family: 'Noto Serif', serif; color: var(--bleu-nuit); font-size: 1rem; margin-bottom: 0.5rem; }
.contact-form-card { background: var(--blanc); padding: 2.5rem; border-radius: 0.5rem; box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ── Carte placeholder (nos-secteurs) ── */
.map-placeholder { background: var(--blanc); border-radius: 0.5rem; border: 2px dashed var(--jaune-fonce); padding: 4rem 2rem; text-align: center; margin-bottom: 3rem; }

/* ── Footer ── */
.footer-desc { font-size: 0.9rem; max-width: 280px; color: rgba(255,255,255,0.9); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social-link { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-social-link:hover { color: var(--jaune-fonce); }

/* ── Tableaux RGPD ── */
.rgpd-table-wrap { margin-bottom: 1.5rem; border: 1px solid var(--gris-doux); border-radius: 0.5rem; overflow: hidden; }
.rgpd-table-title { background: var(--gris-doux); padding: 0.75rem 1rem; font-weight: 700; font-size: 0.9rem; color: var(--bleu-nuit); }
.rgpd-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.rgpd-table th { background: var(--ivoire); color: var(--bleu-nuit); padding: 0.6rem 1rem; text-align: left; font-weight: 600; border-bottom: 1px solid var(--gris-doux); }
.rgpd-table td { padding: 0.75rem 1rem; vertical-align: top; border-bottom: 1px solid var(--gris-doux); color: #3a4a60; }
.rgpd-table tr:last-child td { border-bottom: none; }
@media (max-width: 800px) { .rgpd-table { display: block; overflow-x: auto; } }

/* ── Hamburger ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--bleu-nuit);
  border-radius: 2px;
  transition: all 0.3s;
}
header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 1150px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }

  .grid-service, .grid-service-reverse, .grid-about, .contact-grid { grid-template-columns: 1fr; }
  .grid-tarifs { grid-template-columns: 1fr 1fr; }
  .service-icon { font-size: 3rem; }
  .service-photo { display: none; }

  header {
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    padding: 1rem 1.5rem;
    gap: 0;
  }
  .menu-toggle { display: flex; }
  nav {
    display: none;
    width: 100%;
    border-top: 1px solid var(--gris-doux);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  header.nav-open nav { display: block; }
  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  nav ul li { width: 100%; }
  nav a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gris-doux);
  }
  nav .btn-nav {
    display: inline-block;
    margin-top: 0.75rem;
    width: auto;
    border-bottom: none;
  }
}
@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { padding: 4rem 1.5rem; }
  .tarif-card.featured { transform: none; }
  .grid-tarifs { grid-template-columns: 1fr; }
  .tarifs-box-list { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ── Plateformes partenaires ── */
.section-platforms {
  background: var(--blanc);
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--gris-doux);
  border-bottom: 1px solid var(--gris-doux);
}
.platforms-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8a9ab5;
  margin-bottom: 1.25rem;
}
.platforms-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.platform-logo { height: 50px; width: auto; object-fit: contain; }

/* ══════════════════════════════════════════
   INDEX — Styles spécifiques page d'accueil
   ══════════════════════════════════════════ */

/* ── Hero ── */
.ix-hero {
  background: var(--blanc);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.ix-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}
.ix-hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.ix-hero-span { 
  color: var(--jaune-fonce);
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
 }
.ix-hero-desc {
  font-size: 1.15rem;
  color: #44474f;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.ix-hero-btns { display: flex; flex-direction: row; gap: 1rem; flex-wrap: wrap; align-items: center; }
.ix-hero-btns .btn { font-size: 0.75rem; padding: 0.75rem 1.5rem; }

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0.75rem;
  border: 2px solid var(--bleu-nuit);
  color: var(--bleu-nuit);
  background: transparent;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--bleu-nuit); color: var(--blanc); }

.ix-hero-img-wrap { position: relative; }
.ix-hero-img-box {
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.1);
}
.ix-hero-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ix-hero-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--blanc);
  padding: 1.5rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.1);
  max-width: 260px;
  border-left: 4px solid var(--jaune-fonce);
}
.ix-hero-badge-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.ix-star { color: var(--jaune-fonce); font-size: 1.2rem; }
.ix-hero-badge-note { font-weight: 700; color: var(--bleu-nuit); font-size: 1.1rem; }
.ix-hero-badge-text { font-size: 0.85rem; color: #44474f; font-style: italic; line-height: 1.5; }

/* ── Section services header ── */
.ix-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.ix-gold-bar { width: 8rem; height: 4px; background: var(--jaune-fonce); flex-shrink: 0; }

/* ── Cartes services ── */
.ix-card {
  display: block;
  background: var(--blanc);
  padding: 2.5rem 2rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06);
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.ix-card:hover { background: var(--gris-doux); }
.ix-card-icon {
  font-size: 2.5rem;
  color: var(--jaune-fonce);
  display: block;
  margin-bottom: 1.25rem;
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.ix-card h3 { color: var(--bleu-nuit); margin-bottom: 0.75rem; }
.ix-card p { color: #44474f; font-size: 0.95rem; }

/* ── Pourquoi nous ── */
.ix-why-card {
  background: var(--blanc);
  padding: 2.5rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06);
}
.ix-why-card--dark { background: var(--bleu-nuit); }
.ix-why-card--dark h3 { color: var(--blanc); }
.ix-why-card--dark p { color: rgba(255,255,255,0.8); }
.ix-why-icon {
  font-size: 2.5rem;
  color: var(--jaune-fonce);
  display: block;
  margin-bottom: 1.25rem;
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.ix-why-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.ix-why-card p { font-size: 1rem; line-height: 1.7; }

/* ── Témoignages ── */
.ix-temoignage {
  background: var(--blanc);
  padding: 2.5rem;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.06);
  border-top: 4px solid var(--jaune-fonce);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ix-stars { color: var(--jaune-fonce); font-size: 1.2rem; }
.ix-temoignage blockquote {
  font-family: 'Noto Serif', serif;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  font-style: italic;
  line-height: 1.6;
}
.ix-temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gris-doux);
}
.ix-temoignage-initiales {
  width: 44px; height: 44px;
  background: rgba(27,55,98,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bleu-nuit);
  flex-shrink: 0;
}
.ix-temoignage-nom { font-weight: 700; color: var(--bleu-nuit); font-size: 0.95rem; }
.ix-temoignage-lieu { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #44474f; }

/* ── Responsive index ── */
@media (max-width: 1000px) {
  .ix-hero-grid { grid-template-columns: 1fr; }
  .ix-hero-img-wrap { display: none; }
  .ix-services-header { flex-direction: column; align-items: flex-start; }
  .ix-gold-bar { display: none; }
}
@media (max-width: 800px) {
  .ix-hero { padding: 3rem 1.5rem; }
}

/* ══════════════════════════════════════════
   HERO AVEC IMAGE — Réutilisable (services, etc.)
   ══════════════════════════════════════════ */
.sv-hero {
  background: var(--blanc);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.sv-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.sv-hero-text h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bleu-nuit);
  margin-bottom: 1.75rem;
}
.sv-hero-span { color: var(--jaune-fonce); }
.sv-hero-desc {
  font-size: 1.05rem;
  color: #44474f;
  line-height: 1.75;
  max-width: 520px;
}
.sv-hero-img-wrap { position: relative; }
.sv-hero-img-box {
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0px 24px 48px rgba(0, 33, 73, 0.12);
  border-radius: 0.5rem;
}
.sv-hero-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1000px) {
  .sv-hero-grid { grid-template-columns: 1fr; }
  .sv-hero-img-wrap { display: none; }
}
@media (max-width: 800px) {
  .sv-hero { padding: 3rem 1.5rem; }
}
