/* ==========================================================================
   VTJ — Feuille de style principale
   --------------------------------------------------------------------------
   Sommaire :
   01. Variables (couleurs, typo, espacements)  <-- MODIFIER L'IDENTITÉ ICI
   02. Reset & bases
   03. Utilitaires de mise en page
   04. Boutons
   05. Header / Navigation
   06. Hero
   07. Cartes & sections communes
   08. Placeholders (réalisations, avis clients)
   09. Tarifs (tableau + cartes + FAQ)
   10. Formulaire de contact
   11. Bandeau CTA
   12. Footer
   13. Animations au scroll
   14. Responsive (mobile-first : les media queries agrandissent)
   15. Pages de texte (mentions légales, confidentialité)
   16. Impression
   17. Mode sombre
   ========================================================================== */


/* ==========================================================================
   01. VARIABLES — Tout changement d'identité visuelle se fait ici
   ========================================================================== */
:root {
  /* --- Couleurs de marque --- */
  --color-primary: #0d1b2a;          /* Bleu nuit : FONDS sombres (hero, footer) */
  --color-primary-light: #16304a;    /* Bleu nuit clair : dégradés */
  --color-heading: #0d1b2a;          /* Couleur des TITRES et libellés forts */
  /* Assombri de #2f6bff à #2a62f0 : sur l'ancien bleu, le blanc des boutons
     plafonnait à 4,4988:1, juste sous le seuil AA de 4,5:1. Le texte des boutons
     fait 15 px, donc le seuil des grands textes (3:1) ne s'applique pas.
     Ce bleu-ci monte à 5,12:1. L'écart est invisible à l'œil. */
  --color-accent: #2a62f0;           /* Accent vif : boutons, aplats, focus */
  --color-accent-text: #1c4fd6;      /* Accent pour le TEXTE (contraste AA garanti) */
  --color-accent-dark: #1637a8;      /* Accent au survol */
  --color-accent-soft: #e8efff;      /* Accent très clair : fonds de badges */

  /* --- Neutres --- */
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fb;           /* Fond des sections alternées */
  --color-surface: #ffffff;          /* Fond des cartes, panneaux, formulaires */
  --color-header-bg: rgba(255, 255, 255, 0.9);
  --color-header-bg-solid: rgba(255, 255, 255, 0.94);
  --color-border: #e3e8ef;
  --color-text: #1b2430;
  --color-text-muted: #5b6b7f;
  --color-text-invert: #ffffff;
  --color-text-invert-muted: #b9c6d6;

  /* --- Couleurs d'état --- */
  --color-success: #0c7a5b;
  --color-error: #c62828;

  /* --- Typographie --- */
  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fs-xs: 0.8125rem;   /* 13px */
  --fs-sm: 0.9375rem;   /* 15px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.375rem;    /* 22px */
  --fs-2xl: 1.75rem;    /* 28px */
  --fs-3xl: 2.25rem;    /* 36px */
  --fs-4xl: 3rem;       /* 48px */

  /* --- Espacements --- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* --- Formes & ombres --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 27, 42, 0.14);

  /* --- Structure --- */
  --container-width: 1180px;
  --header-height: 76px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==========================================================================
   02. RESET & BASES
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px); /* ancres non masquées par le header */
  -webkit-text-size-adjust: 100%;
  /* Empêche tout défilement latéral parasite : quelques éléments décoratifs
     (aurores du hero, bandeau défilant, panneau du menu hors écran) dépassent
     volontairement du cadre. « clip » plutôt que « hidden » : il coupe sans
     créer de conteneur de défilement, ce qui préserve scroll-behavior et
     position:sticky. Les très vieux navigateurs l ignorent — d où le garde-fou
     sur body juste en dessous. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; } /* bloque le scroll quand le menu mobile est ouvert */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
  font-weight: 800;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--space-sm); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-accent-text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }

img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* Accessibilité : focus toujours visible au clavier */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Lien d'évitement (accessibilité lecteurs d'écran) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--color-accent); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* ==========================================================================
   03. UTILITAIRES DE MISE EN PAGE
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--color-primary);
  color: var(--color-text-invert);
}
.section--dark h2, .section--dark h3 { color: var(--color-text-invert); }
.section--dark p { color: var(--color-text-invert-muted); }

/* En-tête de section (badge + titre + accroche) */
.section-head { max-width: 680px; margin: 0 0 var(--space-lg); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--color-text-muted); font-size: var(--fs-lg); }
.section--dark .section-head p { color: var(--color-text-invert-muted); }

/* Petit badge au-dessus des titres */
.badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  background: var(--color-accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.section--dark .badge, .hero .badge { background: rgba(42, 98, 240, 0.18); color: #8fb0ff; }

/* Grilles réutilisables (1 colonne en mobile, élargies plus bas) */
.grid { display: grid; gap: var(--space-md); }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

/* Bloc en deux colonnes (texte + visuel), empilé sous 1000 px.
   IMPORTANT : la grille est déclarée ICI, et pas seulement dans la requête
   desktop plus bas. Sinon, une fois empilés, les deux blocs redeviennent de
   simples éléments l un sous l autre, sans le moindre espacement — le second
   vient coller au premier sur mobile et sur tablette. */
.split { display: grid; gap: var(--space-lg); }

.text-center { text-align: center; }
.mt-xs { margin-top: var(--space-xs); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.text-sm { font-size: var(--fs-sm); }

/* Texte secondaire (paragraphes d'accompagnement) */
.text-muted { color: var(--color-text-muted); }
/* Bloc centré et resserré (FAQ, encart exemple) */
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.narrow--sm { max-width: 720px; }
/* Ligne de prix mise en avant dans un texte */
.price-line { font-weight: 700; color: var(--color-heading); }


/* ==========================================================================
   04. BOUTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition),
              background-color var(--transition), color var(--transition),
              border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(42, 98, 240, 0.28);
}
.btn--primary:hover { background: var(--color-accent-dark); color: #fff; box-shadow: 0 12px 26px rgba(42, 98, 240, 0.36); }

.btn--dark { background: var(--color-primary); color: #fff; }
.btn--dark:hover { background: var(--color-primary-light); color: #fff; }

.btn--outline { background: transparent; color: var(--color-heading); border-color: var(--color-border); }
.btn--outline:hover { border-color: var(--color-accent); color: var(--color-accent-text); background: var(--color-accent-soft); }

.btn--light { background: #fff; color: var(--color-primary); }
.btn--light:hover { color: var(--color-accent-text); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.08); }

.btn--lg { font-size: var(--fs-base); padding: 17px 34px; }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.btn-group--center { justify-content: center; }


/* ==========================================================================
   05. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
/* Le fond et le flou sont portés par un CALQUE dédié, surtout pas par le
   header lui-même : un ancêtre avec backdrop-filter devient le bloc conteneur
   des éléments position:fixed qu il contient. Le panneau du menu mobile se
   retrouverait alors calé sur la hauteur du header (80 px) au lieu de couvrir
   tout l écran. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--transition);
}

/* Classe ajoutée par le JS dès que la page défile */
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

/* --- LOGO ----------------------------------------------------------------
   Le monogramme VTJ est un SVG intégré au HTML (et non une <img>) : ses
   lettres utilisent fill="currentColor", donc elles prennent la couleur du
   texte environnant — bleu nuit en mode clair, blanc en mode sombre — sans
   qu'il faille deux fichiers. Seul l'accent reste bleu en permanence.
   La version couleur autonome, pour vos documents et réseaux sociaux, est
   dans assets/img/logo.svg.
   ------------------------------------------------------------------------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--color-heading);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo:hover { color: var(--color-heading); }
.logo__svg {
  height: 26px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.logo:hover .logo__svg { transform: scale(1.04); }
@media (min-width: 720px) { .logo__svg { height: 30px; } }
.logo--light, .logo--light:hover { color: #fff; }

/* --- Menu (plein écran en mobile, barre horizontale en desktop) --- */
.nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--color-surface);
  padding: var(--space-lg) var(--space-md);
  transform: translateX(100%);
  /* visibility masque les liens au clavier tant que le menu est fermé :
     sans cela, la tabulation partirait dans un panneau invisible hors écran */
  visibility: hidden;
  transition: transform var(--transition), visibility var(--transition);
  overflow-y: auto;
}
.nav.is-open { transform: translateX(0); visibility: visible; }

.nav__list { display: flex; flex-direction: column; gap: var(--space-xs); }
.nav__link {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--color-heading);
  border-bottom: 1px solid var(--color-border);
}
.nav__link:hover { color: var(--color-accent-text); }
/* Page courante : ajouter class="nav__link is-active" dans le HTML de la page */
.nav__link.is-active { color: var(--color-accent-text); }

.nav__cta { margin-top: var(--space-md); }
.nav__cta .btn { width: 100%; }

/* --- Bouton burger --- */
.nav-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 20px; height: 2px; background: var(--color-heading); border-radius: 2px; transition: background var(--transition); }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--color-heading); border-radius: 2px;
  transition: transform var(--transition), top var(--transition);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.header-cta { display: none; } /* CTA du header : visible en desktop uniquement */

/* Compense la hauteur du header fixe */
main { padding-top: var(--header-height); }
/* Cible du lien d'évitement : reçoit le focus sans afficher de contour disgracieux */
main:focus { outline: none; }


/* ==========================================================================
   06. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--color-primary);
  color: var(--color-text-invert);
  padding: var(--space-xl) 0;
  overflow: hidden;
}
/* Halo décoratif */
.hero::after {
  content: '';
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(42, 98, 240,0.45) 0%, rgba(42, 98, 240,0) 68%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero h1 { color: #fff; margin-bottom: var(--space-md); }
.hero h1 .accent {
  background: linear-gradient(100deg, #6f9bff, #2a62f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: var(--fs-lg);
  color: var(--color-text-invert-muted);
  max-width: 56ch;
  margin-bottom: var(--space-lg);
}

/* Points de réassurance sous le CTA */
.hero__points {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-text-invert-muted);
}
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points svg { flex-shrink: 0; color: #6f9bff; }

/* Carte visuelle à droite du hero (aperçu "navigateur") */
.hero__visual { margin-top: var(--space-lg); }
.browser-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.browser-mock__bar { display: flex; gap: 6px; margin-bottom: var(--space-sm); }
.browser-mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.28); }
.browser-mock__screen {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--color-text);
}
.browser-mock__screen .skeleton { background: var(--color-bg-alt); border-radius: 6px; height: 12px; margin-bottom: 10px; }
.browser-mock__screen .skeleton--title { height: 20px; width: 65%; background: var(--color-accent-soft); }
.browser-mock__screen .skeleton--w80 { width: 80%; }
.browser-mock__screen .skeleton--w50 { width: 50%; }
.browser-mock__screen .skeleton--btn { height: 34px; width: 130px; background: var(--color-accent); margin-top: var(--space-sm); border-radius: var(--radius-pill); }

/* Hero centré verticalement (page 404) */
.hero--center { min-height: 70vh; display: flex; align-items: center; }
.hero__lead--center { margin-left: auto; margin-right: auto; }

/* Version compacte pour les pages intérieures */
.page-hero { padding: var(--space-xl) 0; }
.page-hero h1 { max-width: 20ch; }

/* Fil d'Ariane */
.breadcrumb { font-size: var(--fs-sm); color: var(--color-text-invert-muted); margin-bottom: var(--space-sm); }
.breadcrumb a { color: var(--color-text-invert-muted); }
.breadcrumb a:hover { color: #fff; }


/* ==========================================================================
   07. CARTES & SECTIONS COMMUNES
   ========================================================================== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { margin-bottom: var(--space-xs); }
.card p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* Icône en haut des cartes */
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  color: var(--color-accent-text);
  margin-bottom: var(--space-sm);
}
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--space-sm);
  font-weight: 700; font-size: var(--fs-sm);
  color: var(--color-accent-text);
  transition: gap var(--transition);
}
.card__link:hover { gap: 12px; }

/* Prix affiché dans une carte (page services) */
.card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent-text);
  margin-top: var(--space-xs);
  font-size: var(--fs-lg);
}

/* Liste à puces cochées */
.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); color: var(--color-text-muted); }
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 3px;
  border-radius: 50%;
  background: var(--color-accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232a62f0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section--dark .check-list li { color: var(--color-text-invert-muted); }

/* Étapes numérotées (méthode de travail) */
.steps { counter-reset: step; display: grid; gap: var(--space-md); }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
}
.step h3 { font-size: var(--fs-lg); margin-bottom: 4px; }
.step p { color: var(--color-text-muted); font-size: var(--fs-sm); }
.section--dark .step p { color: var(--color-text-invert-muted); }

/* Blocs statistiques */
.stats { display: grid; gap: var(--space-md); text-align: center; }
.stat__value { font-family: var(--font-heading); font-size: var(--fs-3xl); font-weight: 800; color: var(--color-accent); line-height: 1; }
.stat__label { font-size: var(--fs-sm); color: var(--color-text-muted); margin-top: 6px; }
.section--dark .stat__label { color: var(--color-text-invert-muted); }


/* ==========================================================================
   08. PLACEHOLDERS (réalisations, avis clients, logos)
   --------------------------------------------------------------------------
   Zones volontairement grisées en attendant les vrais contenus.
   Supprimer la classe .placeholder une fois le contenu réel ajouté.
   ========================================================================== */
.placeholder {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(45deg, #fafbfd 0 12px, #f2f5f9 12px 24px);
  color: var(--color-text-muted);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-md);
  min-height: 210px;
  font-size: var(--fs-sm);
}
.placeholder--sm { min-height: 90px; }
.placeholder__tag {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-text);
  margin-bottom: 6px;
}

/* Carte d'avis client (structure prête, contenu à remplacer) */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  height: 100%;
}
.testimonial__stars { color: #f5a623; letter-spacing: 2px; margin-bottom: var(--space-xs); }
.testimonial__quote { font-size: var(--fs-sm); color: var(--color-text); }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: var(--space-md); }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-accent-soft); color: var(--color-accent-text);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial__name { font-weight: 700; font-size: var(--fs-sm); }
.testimonial__role { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* Mention neutre là où un lien réel n'existe pas encore (évite un faux lien) */
.link-soon {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}


/* ==========================================================================
   09. TARIFS
   ========================================================================== */
/* --- Tableau des prix (devient une liste de blocs en mobile) --- */
.price-table-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { text-align: left; padding: 16px var(--space-md); border-bottom: 1px solid var(--color-border); }
.price-table thead th {
  background: var(--color-bg-alt);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background var(--transition); }
.price-table tbody tr:hover { background: var(--color-accent-soft); }
.price-table .price-name { font-weight: 700; color: var(--color-heading); }
.price-table .price-desc { display: block; font-weight: 400; font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 2px; }
.price-table .price-value { font-family: var(--font-heading); font-weight: 800; color: var(--color-accent-text); white-space: nowrap; }

/* Affichage mobile du tableau : chaque ligne devient un bloc lisible */
@media (max-width: 719px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table th, .price-table td { display: block; width: 100%; }
  .price-table tr { border-bottom: 1px solid var(--color-border); padding: var(--space-sm) 0; }
  .price-table tr:last-child { border-bottom: 0; }
  .price-table th, .price-table td { border: 0; padding: 4px var(--space-md); }
  .price-table .price-value { font-size: var(--fs-lg); }
}

/* --- Cartes des services complémentaires --- */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-xs); }
.service-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent-text);
  background: var(--color-accent-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.service-card p { color: var(--color-text-muted); font-size: var(--fs-sm); }
.service-card .check-list { margin-top: var(--space-sm); }

/* --- Encart "Exemple concret" --- */
.example-card {
  background: linear-gradient(135deg, var(--color-accent-soft), #fdfdff);
  border: 1px solid #cfdcff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.example-lines { display: grid; margin: var(--space-md) 0; }
.example-lines li {
  display: flex; justify-content: space-between; gap: var(--space-sm);
  padding: 12px 0;
  border-bottom: 1px dashed #c9d8ff;
  font-size: var(--fs-sm);
}
.example-lines li span:last-child { font-weight: 700; color: var(--color-heading); white-space: nowrap; }
.example-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-xs);
  flex-wrap: wrap;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.example-total span { color: var(--color-text-invert-muted); font-size: var(--fs-sm); }
.example-total strong { font-family: var(--font-heading); font-size: var(--fs-xl); color: #fff; }
.example-note { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: var(--space-sm); }

/* --- Aperçu tarifs sur la page d'accueil --- */
.price-preview .card { display: flex; flex-direction: column; }
.price-preview .price-value {
  font-family: var(--font-heading); font-weight: 800;
  font-size: var(--fs-xl); color: var(--color-accent-text);
  margin: var(--space-xs) 0 var(--space-sm);
}
.card--featured { position: relative; border-color: var(--color-accent); box-shadow: 0 16px 40px rgba(42, 98, 240, 0.16); }
.card__tag {
  position: absolute; top: -12px; right: var(--space-md);
  background: var(--color-accent); color: #fff;
  font-size: var(--fs-xs); font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
}

/* --- FAQ (accordéon natif <details>, aucun JS requis) --- */
.faq { display: grid; gap: var(--space-xs); }
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 var(--space-md);
}
.faq__item[open] { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-sm) 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: var(--fs-xl);
  color: var(--color-accent-text);
  line-height: 1;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-bottom: var(--space-sm); color: var(--color-text-muted); font-size: var(--fs-sm); }


/* ==========================================================================
   10. FORMULAIRE DE CONTACT
   ========================================================================== */
.contact-layout { display: grid; gap: var(--space-lg); }

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: var(--space-sm); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: var(--fs-sm); font-weight: 700; color: var(--color-heading); }
.field .req { color: var(--color-error); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--color-surface);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(42, 98, 240, 0.12);
}
.field__hint { font-size: var(--fs-xs); color: var(--color-text-muted); }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 3px; }
.field--check label { font-weight: 400; font-size: var(--fs-xs); color: var(--color-text-muted); }

/* Message de confirmation affiché par le JS après envoi */
.form-feedback {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: #e9f8f2;
  border: 1px solid #b8e6d5;
  color: #0c7a5b;
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}
.form-feedback.is-visible { display: flex; }
.form-feedback svg { flex-shrink: 0; margin-top: 2px; }

/* Bloc coordonnées */
.contact-info { display: grid; gap: var(--space-sm); }
.contact-item {
  display: flex; gap: var(--space-sm); align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-item:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.contact-item__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft); color: var(--color-accent);
}
.contact-item__label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); font-weight: 700; }
.contact-item__value { font-family: var(--font-heading); font-weight: 700; color: var(--color-heading); font-size: var(--fs-base); word-break: break-word; }
a.contact-item__value:hover { color: var(--color-accent-text); }


/* ==========================================================================
   11. BANDEAU CTA
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Halo bleu derrière les boutons.
   ATTENTION AU CADRAGE : le bandeau est en overflow:hidden pour que le halo
   respecte les coins arrondis. Le dégradé doit donc s'éteindre AVANT le bord,
   sinon la coupe laisse une ligne bleue franche. C'est une règle à garder en
   tête si vous changez ces valeurs : la distance entre le centre du halo et
   chaque bord doit rester supérieure au rayon d'extinction, soit ici 55 % du
   rayon du dégradé. */
.cta-band::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 460px; height: 300px;
  background: radial-gradient(circle, rgba(42, 98, 240,0.5) 0%, rgba(42, 98, 240,0) 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--color-text-invert-muted); max-width: 56ch; margin: 0 auto var(--space-md); }


/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-primary);
  color: var(--color-text-invert-muted);
  padding: var(--space-xl) 0 var(--space-md);
  font-size: var(--fs-sm);
}
.footer-grid { display: grid; gap: var(--space-lg); }
/* Les titres de colonnes sont des <h2> (hiérarchie correcte), stylés en petit */
.site-footer h2 {
  color: #fff;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.site-footer a { color: var(--color-text-invert-muted); }
.site-footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 10px; }
.footer-about p { max-width: 40ch; margin-top: var(--space-sm); }
/* Bas de page seul, sans grille au-dessus (page 404) */
.footer-bottom--bare { margin-top: 0; padding-top: 0; border-top: 0; }
.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-direction: column; gap: 8px;
  justify-content: space-between; align-items: center;
  text-align: center;
  font-size: var(--fs-xs);
}


/* ==========================================================================
   13. ANIMATIONS AU SCROLL
   Les éléments portant [data-reveal] apparaissent en entrant à l'écran :
   la classe .is-visible est ajoutée par assets/js/main.js.
   ========================================================================== */
/* SÉCURITÉ : l'état masqué est conditionné à la classe .js-reveal, posée par
   main.js dès son exécution. Si le JavaScript ne se charge pas (erreur réseau,
   navigateur ancien, script bloqué), la classe est absente et TOUT le contenu
   reste visible — le site ne peut jamais apparaître vide. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* Décalage en cascade : data-reveal-delay="1|2|3|4" */
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }
[data-reveal-delay="4"] { transition-delay: 360ms; }

/* Respect du réglage système "réduire les animations" */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}


/* ==========================================================================
   14. RESPONSIVE — mobile-first : on agrandit à partir d'ici
   ========================================================================== */

/* --- Tablette : à partir de 720px --- */
@media (min-width: 720px) {
  :root { --fs-3xl: 2.75rem; }

  .section { padding: var(--space-2xl) 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }

  .hero { padding: var(--space-2xl) 0; }
  .cta-band { padding: var(--space-xl); }
  .form-card, .example-card { padding: var(--space-lg); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; text-align: left; }
}

/* --- Desktop : à partir de 1000px --- */
@media (min-width: 1000px) {
  :root { --fs-3xl: 3.25rem; --fs-2xl: 2.125rem; }

  /* Le menu redevient une barre horizontale */
  .nav-toggle { display: none; }
  .nav {
    position: static;
    inset: auto;
    transform: none;
    visibility: visible;
    padding: 0;
    background: transparent;
    overflow: visible;
  }
  .nav__list { flex-direction: row; align-items: center; gap: var(--space-md); }
  .nav__link {
    padding: 6px 0;
    font-size: var(--fs-sm);
    border-bottom: 2px solid transparent;
    color: var(--color-text);
  }
  .nav__link:hover { color: var(--color-accent-text); }
  .nav__link.is-active { color: var(--color-accent-text); border-bottom-color: var(--color-accent); }
  .nav__cta { display: none; } /* le CTA du menu mobile est masqué en desktop */
  .header-cta { display: inline-flex; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  .hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); align-items: center; }
  .hero h1 { font-size: var(--fs-4xl); max-width: 16ch; }
  .hero__visual { margin-top: 0; }

  .split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
  .contact-layout { grid-template-columns: 1.35fr 1fr; align-items: start; }
  .form-grid--2col { grid-template-columns: 1fr 1fr; }
  .form-grid--2col .field--full { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
}


/* ==========================================================================
   15. PAGES DE TEXTE (mentions légales, confidentialité)
   ========================================================================== */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--space-lg); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-lg); margin-top: var(--space-md); }
.prose p, .prose li { color: var(--color-text-muted); }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 var(--space-sm); }
.prose li { margin-bottom: 6px; }
.prose dl { margin: 0 0 var(--space-sm); }
.prose dt { font-weight: 700; color: var(--color-heading); margin-top: var(--space-sm); }
.prose dd { margin: 0; color: var(--color-text-muted); }

/* Champ à compléter dans les pages légales : visible mais discret */
.to-fill {
  background: #fff6d9;
  border-bottom: 2px dotted #d9a400;
  color: #6b5200;
  padding: 0 4px;
  font-style: normal;
}


/* ==========================================================================
   16. IMPRESSION
   ========================================================================== */
@media print {
  .site-header, .nav, .skip-link, .cta-band, .btn { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .hero, .section--dark, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .section--dark h2, .site-footer h2 { color: #000 !important; }
  .hero p, .section--dark p, .site-footer, .site-footer a { color: #333 !important; }
  .section { padding: 1rem 0; break-inside: avoid; }
  .card, .service-card, .example-card, .price-table-wrap { box-shadow: none; break-inside: avoid; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; }
}


/* ==========================================================================
   17. MODE SOMBRE
   --------------------------------------------------------------------------
   Fonctionne en redéfinissant UNIQUEMENT les variables : aucune règle de mise
   en page n'est dupliquée. Trois états possibles, gérés par assets/js/theme.js :
     - pas d'attribut  -> le site suit le réglage du système d'exploitation
     - data-theme="dark"  / data-theme="light" -> choix explicite du visiteur

   Rappel des rôles (voir section 01) :
     --color-primary  = FOND sombre (hero, footer). Reste sombre dans les deux modes.
     --color-heading  = couleur des TITRES. C'est elle qui s'inverse.
     --color-surface  = fond des cartes et panneaux.
   ========================================================================== */

/* Le visiteur n'a rien choisi : on suit son système d'exploitation */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #0b1220;
    --color-bg-alt: #111c2e;
    --color-surface: #131f31;
    --color-border: #24344a;
    --color-text: #dce6f2;
    --color-text-muted: #97aabf;
    --color-heading: #f2f7fc;
    --color-primary: #060d18;
    --color-primary-light: #101d33;
    --color-accent: #2a62f0;   /* même bleu qu'en mode clair : le blanc dessus atteint 5,12:1 */
    --color-accent-text: #93b4ff;
    --color-accent-dark: #b3caff;
    --color-accent-soft: #17243d;
    --color-header-bg: rgba(11, 18, 32, 0.85);
    --color-header-bg-solid: rgba(11, 18, 32, 0.96);
    --color-success: #3ddc9a;
    --color-error: #ff7a7a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  }
}

/* Le visiteur a explicitement choisi le mode sombre */
:root[data-theme="dark"] {
  --color-bg: #0b1220;
  --color-bg-alt: #111c2e;
  --color-surface: #131f31;
  --color-border: #24344a;
  --color-text: #dce6f2;
  --color-text-muted: #97aabf;
  --color-heading: #f2f7fc;
  --color-primary: #060d18;
  --color-primary-light: #101d33;
  --color-accent: #2a62f0;   /* même bleu qu'en mode clair : le blanc dessus atteint 5,12:1 */
  --color-accent-text: #93b4ff;
  --color-accent-dark: #b3caff;
  --color-accent-soft: #17243d;
  --color-header-bg: rgba(11, 18, 32, 0.85);
  --color-header-bg-solid: rgba(11, 18, 32, 0.96);
  --color-success: #3ddc9a;
  --color-error: #ff7a7a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* --- Quelques blocs ont des couleurs écrites en dur : on les reprend ici --- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .example-card {
    background: linear-gradient(135deg, #16243d, #101a2b);
    border-color: #26385a;
  }
  :root:not([data-theme="light"]) .example-lines li { border-bottom-color: #26385a; }
  :root:not([data-theme="light"]) .form-feedback { background: #102b23; border-color: #1d5244; color: #6ee7b7; }
  :root:not([data-theme="light"]) .to-fill { background: #3a2f10; border-bottom-color: #b08900; color: #f5d98b; }
  :root:not([data-theme="light"]) .placeholder {
    background: repeating-linear-gradient(45deg, #101a29 0 12px, #16233a 12px 24px);
  }
  :root:not([data-theme="light"]) .placeholder::after,
  :root:not([data-theme="light"]) .browser-mock__screen::after {
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  }
}
:root[data-theme="dark"] .example-card {
  background: linear-gradient(135deg, #16243d, #101a2b);
  border-color: #26385a;
}
:root[data-theme="dark"] .example-lines li { border-bottom-color: #26385a; }
:root[data-theme="dark"] .form-feedback { background: #102b23; border-color: #1d5244; color: #6ee7b7; }
:root[data-theme="dark"] .to-fill { background: #3a2f10; border-bottom-color: #b08900; color: #f5d98b; }
:root[data-theme="dark"] .placeholder {
  background: repeating-linear-gradient(45deg, #101a29 0 12px, #16233a 12px 24px);
}
:root[data-theme="dark"] .placeholder::after,
:root[data-theme="dark"] .browser-mock__screen::after {
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* --- Bouton de bascule clair / sombre (dans le header) --- */
.theme-toggle {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.theme-toggle:hover { border-color: var(--color-accent); color: var(--color-accent-text); background: var(--color-accent-soft); }
/* Une seule des deux icônes est affichée à la fois */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Groupe d'actions à droite du header */
.header-actions { display: flex; align-items: center; gap: var(--space-xs); }


/* ==========================================================================
   18. SIMULATEUR DE DEVIS (page tarifs)
   --------------------------------------------------------------------------
   Les prix vivent dans assets/js/simulateur.js, pas ici : pour changer un
   tarif, un seul fichier à modifier.
   ========================================================================== */
.simulateur {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.simulateur__grille { display: grid; }

/* --- Colonne de gauche : les questions --- */
.simulateur__questions { padding: var(--space-md); display: grid; gap: var(--space-md); }

.sim-question > legend,
.sim-question__titre {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
  padding: 0;
}
.sim-question { border: 0; padding: 0; margin: 0; }

/* Choix sous forme de pastilles cliquables (vraies <input radio> masquées) */
.sim-choix { display: flex; flex-wrap: wrap; gap: 8px; }
.sim-choix input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.sim-choix label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.sim-choix label:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.sim-choix input:checked + label {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 700;
}
/* Focus clavier visible sur la pastille, pas sur l'input masqué */
.sim-choix input:focus-visible + label { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* Curseur du nombre de pages */
.sim-pages { display: flex; align-items: center; gap: var(--space-sm); }
.sim-pages input[type="range"] { flex: 1; accent-color: var(--color-accent); height: 6px; }
.sim-pages__valeur {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent-text);
  min-width: 5.5rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Options mensuelles : cases à cocher en ligne */
.sim-options { display: grid; gap: 8px; }
.sim-options label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.sim-options label:hover { background: var(--color-bg-alt); }
.sim-options input { accent-color: var(--color-accent); margin-top: 3px; flex-shrink: 0; }
.sim-options strong { color: var(--color-heading); font-weight: 700; }

/* --- Colonne de droite : le résultat --- */
.simulateur__resultat {
  background: var(--color-primary);
  color: var(--color-text-invert);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.sim-resultat__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-invert-muted);
  font-weight: 700;
}
.sim-resultat__prix {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: #fff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.sim-resultat__detail { display: grid; gap: 8px; margin-top: var(--space-xs); }
.sim-resultat__detail li {
  display: flex; justify-content: space-between; gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-invert-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sim-resultat__detail li:last-child { border-bottom: 0; }
.sim-resultat__detail span:last-child { color: #fff; font-weight: 700; white-space: nowrap; }

.sim-resultat__annuel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-invert-muted);
}
.sim-resultat__annuel strong { color: #fff; font-size: var(--fs-lg); font-family: var(--font-heading); }

.sim-resultat__note { font-size: var(--fs-xs); color: var(--color-text-invert-muted); }
.simulateur__resultat .btn { margin-top: auto; }

/* Petite pulsation quand le chiffre change */
.sim-resultat__prix.is-updated { animation: sim-pop 420ms var(--ease-spring, cubic-bezier(0.34,1.56,0.64,1)); }
@keyframes sim-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .sim-resultat__prix.is-updated { animation: none; }
}

@media (min-width: 900px) {
  .simulateur__grille { grid-template-columns: 1.25fr 0.75fr; }
  .simulateur__questions { padding: var(--space-lg); gap: var(--space-lg); }
  .simulateur__resultat { padding: var(--space-lg); }
}


/* ==========================================================================
   19. COMPARATEUR AVANT / APRÈS (page services, section refonte)
   --------------------------------------------------------------------------
   Deux maquettes superposées ; celle du dessus est rognée par clip-path selon
   la position du curseur (variable --pos, pilotée par assets/js/comparateur.js).
   Les maquettes sont faites en HTML/CSS, pas en images : rien à charger, et
   elles restent nettes sur tous les écrans.
   ========================================================================== */
.compare {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: none;         /* le glissement pilote le curseur, pas le scroll */
  background: #fff;
  --pos: 50%;
}
.compare__pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 18px;
}
/* Le volet « avant » est rogné à droite selon --pos */
.compare__pane--avant { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 2; }

/* Étiquettes de coin */
.compare__tag {
  position: absolute;
  top: 12px;
  z-index: 4;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.compare__tag--avant { left: 12px; background: #6b7280; color: #fff; }
.compare__tag--apres { right: 12px; background: var(--color-accent); color: #fff; }

/* Poignée centrale */
.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 44px;
  margin-left: -22px;
  z-index: 5;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: ew-resize;
  display: grid;
  place-items: center;
}
.compare__handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.compare__handle-dot {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  transition: transform var(--transition);
}
.compare__handle:hover .compare__handle-dot,
.compare__handle:focus-visible .compare__handle-dot { transform: scale(1.12); }

/* --- Maquette « avant » : le web d'il y a quinze ans --- */
.mock-old { font-family: 'Times New Roman', Times, serif; background: #e9e6dd; height: 100%; color: #111; }
.mock-old__banner {
  background: linear-gradient(#2b3a8f, #1b2560);
  color: #ff0;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 20px;
  border: 3px ridge #999;
}
.mock-old__nav {
  background: #c8c2b4;
  border: 2px inset #aaa;
  padding: 5px;
  font-size: 12px;
  margin-top: 6px;
}
/* Faux liens de la maquette : des <span>, pour ne pas polluer la tabulation */
.mock-old__nav span { color: #00e; text-decoration: underline; margin-right: 10px; }
.mock-old__body { font-size: 12px; margin-top: 8px; line-height: 1.35; }
.mock-old__titre { font-family: inherit; font-weight: 700; font-size: 14px; color: #900; margin: 0 0 4px; }
.mock-old__box { border: 2px groove #999; padding: 6px; margin-top: 8px; background: #f2efe6; }
.mock-old__counter { font-size: 10px; color: #444; margin-top: 8px; }
.mock-old__btn {
  display: inline-block; margin-top: 6px; padding: 3px 10px;
  background: #d4d0c8; border: 2px outset #fff; font-size: 11px;
}

/* --- Maquette « après » : le même site aujourd'hui --- */
.mock-new { background: #fff; height: 100%; font-family: var(--font-body); color: #1b2430; }
.mock-new__bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mock-new__logo { display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 800; font-size: 13px; color: #0d1b2a; }
.mock-new__logo i { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, #2a62f0, #0d1b2a); display: block; }
.mock-new__links { display: flex; gap: 10px; font-size: 10px; color: #5b6b7f; }
.mock-new__hero { margin-top: 14px; border-radius: 10px; background: linear-gradient(120deg, #0d1b2a, #1c3a63); padding: 16px; color: #fff; }
.mock-new__titre { font-family: var(--font-heading); font-weight: 800; font-size: 17px; color: #fff; margin: 0 0 6px; line-height: 1.2; }
.mock-new__hero p { font-size: 10px; color: #b9c6d6; margin: 0; }
.mock-new__cta { display: inline-block; margin-top: 10px; background: #2a62f0; color: #fff; font-size: 10px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.mock-new__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.mock-new__card { border: 1px solid #e3e8ef; border-radius: 8px; padding: 8px; }
.mock-new__card i { display: block; width: 16px; height: 16px; border-radius: 4px; background: #e8efff; margin-bottom: 5px; }
.mock-new__card b { display: block; font-size: 9px; color: #0d1b2a; }
.mock-new__card span { display: block; height: 4px; background: #eef1f6; border-radius: 2px; margin-top: 4px; }

@media (max-width: 719px) {
  .compare { aspect-ratio: 3 / 4; }
  .mock-new__cards { grid-template-columns: 1fr; }
  .mock-new__cards .mock-new__card:nth-child(3) { display: none; }
}


/* ==========================================================================
   20. BLOG (liste des articles + page d'article)
   ========================================================================== */
/* --- Carte d'article dans la liste --- */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* Vignette générée en CSS : aucune image à produire au départ */
.post-card__visuel {
  height: 140px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.post-card__visuel::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.post-card__corps { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-xs); }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--color-accent-text); }
.post-card p { color: var(--color-text-muted); font-size: var(--fs-sm); flex: 1; }

.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.post-meta__tag {
  background: var(--color-accent-soft);
  color: var(--color-accent-text);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Page d'article --- */
.article { max-width: 720px; margin: 0 auto; }
.article > h2 { margin-top: var(--space-xl); }
.article > h2:first-child { margin-top: 0; }
.article h3 { font-size: var(--fs-lg); margin-top: var(--space-lg); }
.article p, .article li { color: var(--color-text); font-size: var(--fs-lg); line-height: 1.75; }
.article ul, .article ol { margin: 0 0 var(--space-md); padding-left: 1.3rem; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 10px; }
.article strong { color: var(--color-heading); }

/* Encadré de mise en avant dans un article */
.article-note {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
  margin: var(--space-lg) 0;
}
.article-note p { font-size: var(--fs-base); margin: 0; }
.article-note strong { display: block; margin-bottom: 6px; }

/* Tableau simple dans un article */
.article-table { width: 100%; border-collapse: collapse; margin: var(--space-md) 0; font-size: var(--fs-sm); }
.article-table th, .article-table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--color-border); }
.article-table thead th { background: var(--color-bg-alt); color: var(--color-text-muted); font-family: var(--font-heading); text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.05em; }
.article-table td:last-child { font-weight: 700; color: var(--color-accent-text); white-space: nowrap; }

/* Bloc auteur en fin d'article */
.article-auteur {
  display: flex; gap: var(--space-sm); align-items: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-xl);
}
.article-auteur__avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-heading); font-weight: 800;
}
.article-auteur p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; }
.article-auteur strong { color: var(--color-heading); display: block; }

@media (max-width: 719px) {
  .article p, .article li { font-size: var(--fs-base); }
  /* Le tableau d'article défile plutôt que de déborder */
  .article-table { display: block; overflow-x: auto; white-space: nowrap; }
}


/* ==========================================================================
   21. TRÈS PETITS ÉCRANS (moins de 360 px)
   --------------------------------------------------------------------------
   iPhone SE et anciens Android : le logo, le bouton de thème et le burger
   ne tiennent plus côte à côte. On resserre au lieu de laisser déborder.
   ========================================================================== */
@media (max-width: 359px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .logo__svg { height: 22px; }
  .header-actions { gap: 4px; }
  .theme-toggle { width: 36px; height: 36px; }
  .nav-toggle { width: 40px; height: 40px; }
  .btn { padding: 12px 20px; }
}


/* ==========================================================================
   22. APERÇUS DE SITES
   --------------------------------------------------------------------------
   .preview  : miniature LIVE d'une démo, affichée dans une <iframe> mise à
               l'échelle. Avantage : c'est le vrai site, donc l'aperçu ne
               peut jamais être périmé. L'iframe est décorative (aria-hidden,
               tabindex="-1", pointer-events:none) — on clique la carte.
   .mock-*   : maquettes construites en HTML/CSS pour les prestations qui
               n'ont pas encore de démo (boutique, application).
   ========================================================================== */
.preview {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  aspect-ratio: 16 / 10;
}
.preview iframe {
  position: absolute;
  top: -38px;            /* masque le bandeau « Démonstration » de la démo */
  left: 0;
  width: 1280px;
  height: 1000px;
  border: 0;
  transform-origin: 0 0;
  pointer-events: none;  /* la carte entière reste cliquable */
}
/* Voile léger au repos, qui s'efface au survol : donne envie de cliquer */
.preview::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 27, 42, 0.16));
  transition: opacity var(--transition);
}
.post-card:hover .preview::after { opacity: 0; }

/* Variante grand format, pour la page services */
.preview--large { aspect-ratio: 4 / 3; border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.preview--large iframe { width: 1440px; height: 1200px; }

.preview__legende {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-sm); flex-wrap: wrap;
  margin-top: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   MAQUETTE BOUTIQUE EN LIGNE
   -------------------------------------------------------------------------- */
.mock-shop {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: var(--font-body);
  color: #1b2430;
  box-shadow: var(--shadow-md);
}
.mock-shop__bar { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid #e3e8ef; }
.mock-shop__logo { font-family: var(--font-heading); font-weight: 800; font-size: 13px; color: #0d1b2a; }
.mock-shop__search { flex: 1; height: 26px; border-radius: 999px; background: #f2f5f9; }
.mock-shop__cart {
  position: relative; width: 28px; height: 28px; border-radius: 8px;
  background: #e8efff; display: grid; place-items: center; color: #2a62f0;
}
.mock-shop__cart b {
  position: absolute; top: -5px; right: -5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #2a62f0; color: #fff;
  font-size: 9px; display: grid; place-items: center;
}
.mock-shop__filtres { display: flex; gap: 6px; margin: 12px 0; flex-wrap: wrap; }
.mock-shop__filtres span {
  font-size: 9px; padding: 4px 10px; border-radius: 999px;
  background: #f2f5f9; color: #5b6b7f;
}
.mock-shop__filtres span:first-child { background: #0d1b2a; color: #fff; }
.mock-shop__grille { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-shop__produit { border: 1px solid #eef1f6; border-radius: 8px; padding: 8px; }
.mock-shop__photo {
  aspect-ratio: 1; border-radius: 6px; margin-bottom: 7px;
  background: linear-gradient(135deg, #dfe8f7, #f4f7fc);
  position: relative;
}
.mock-shop__photo i {
  position: absolute; top: 5px; left: 5px;
  font-size: 8px; font-style: normal; font-weight: 700;
  background: #12a37a; color: #fff; padding: 2px 6px; border-radius: 999px;
}
.mock-shop__produit b { display: block; font-size: 9px; color: #0d1b2a; }
.mock-shop__produit u { display: block; height: 4px; width: 70%; background: #eef1f6; border-radius: 2px; margin-top: 3px; text-decoration: none; }
.mock-shop__prix { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.mock-shop__prix em { font-style: normal; font-family: var(--font-heading); font-weight: 800; font-size: 11px; color: #0d1b2a; }
.mock-shop__prix s { font-size: 8px; color: #96a3b3; }
.mock-shop__ajouter {
  margin-top: 7px; text-align: center;
  font-size: 9px; font-weight: 700; color: #fff;
  background: #2a62f0; border-radius: 999px; padding: 5px;
}

/* --------------------------------------------------------------------------
   MAQUETTE APPLICATION / TABLEAU DE BORD
   -------------------------------------------------------------------------- */
.mock-app {
  display: grid;
  grid-template-columns: 46px 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-body);
  color: #1b2430;
  box-shadow: var(--shadow-md);
  min-height: 300px;
}
.mock-app__rail { background: #0d1b2a; padding: 14px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mock-app__rail i { width: 18px; height: 18px; border-radius: 5px; background: rgba(255,255,255,0.16); display: block; }
.mock-app__rail i:first-child { background: #2a62f0; }
.mock-app__corps { padding: 14px; }
.mock-app__entete { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-app__entete b { font-family: var(--font-heading); font-size: 12px; color: #0d1b2a; }
.mock-app__entete span { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #2a62f0, #0d1b2a); }
.mock-app__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.mock-app__kpi { border: 1px solid #eef1f6; border-radius: 8px; padding: 8px; }
.mock-app__kpi b { display: block; font-family: var(--font-heading); font-size: 14px; color: #0d1b2a; }
.mock-app__kpi u { display: block; font-size: 8px; color: #5b6b7f; text-decoration: none; margin-top: 2px; }
.mock-app__kpi em { font-style: normal; font-size: 8px; color: #12a37a; font-weight: 700; }
/* Graphique : de simples barres, hauteurs pilotées par --h */
.mock-app__graph {
  display: flex; align-items: flex-end; gap: 5px;
  height: 76px; padding: 8px;
  border: 1px solid #eef1f6; border-radius: 8px; margin-bottom: 10px;
}
.mock-app__graph i {
  flex: 1; display: block; border-radius: 3px 3px 0 0;
  height: var(--h, 40%);
  background: linear-gradient(180deg, #2a62f0, #8fb0ff);
}
.mock-app__graph i:last-child { background: linear-gradient(180deg, #0d1b2a, #2a62f0); }
.mock-app__ligne { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid #f2f5f9; font-size: 9px; color: #5b6b7f; }
.mock-app__ligne span:first-child { width: 18px; height: 18px; border-radius: 50%; background: #e8efff; flex-shrink: 0; }
.mock-app__ligne span:nth-child(2) { flex: 1; height: 5px; background: #eef1f6; border-radius: 3px; }
.mock-app__ligne em { font-style: normal; font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 999px; background: #e6f6f1; color: #0c7a5b; }
.mock-app__ligne.est-attente em { background: #fff3e0; color: #a45c00; }

@media (max-width: 719px) {
  .mock-shop__grille { grid-template-columns: repeat(2, 1fr); }
  .mock-shop__produit:nth-child(3) { display: none; }
  .mock-app { grid-template-columns: 38px 1fr; }
  .mock-app__kpis { grid-template-columns: repeat(2, 1fr); }
  .mock-app__kpi:nth-child(3) { display: none; }
}


/* ==========================================================================
   23. BOUTONS EMPILÉS SUR PETIT ÉCRAN
   --------------------------------------------------------------------------
   Sous 560 px, deux boutons côte à côte ne tiennent plus : ils passent
   l'un sous l'autre. Empilés, des largeurs inégales font désordre et
   l'espacement horizontal (trop serré à la verticale) les colle.
   On les met donc sur toute la largeur, avec une vraie respiration.
   ========================================================================== */
@media (max-width: 559px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
  .btn-group .btn { width: 100%; }
}


/* ==========================================================================
   24. FORMULAIRE : MESSAGE D'ERREUR
   --------------------------------------------------------------------------
   Même gabarit que le message de confirmation (.form-feedback), en rouge.
   ========================================================================== */
.form-feedback--erreur {
  background: #fdecea;
  border-color: #f5c2bd;
  color: #a3251b;
}
.form-feedback--erreur a { color: inherit; text-decoration: underline; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .form-feedback--erreur {
    background: #35120f;
    border-color: #6b2a24;
    color: #ffb3ab;
  }
}
:root[data-theme="dark"] .form-feedback--erreur {
  background: #35120f;
  border-color: #6b2a24;
  color: #ffb3ab;
}

