/* =====================================================================
   depannage-informatique-distance.fr

   Meme charte que zone-help : mêmes couleurs, mêmes polices, mêmes
   formes. Mais reecrite pour huit pages au lieu de 400 - le style.css
   de zone-help fait 224 Ko, celui-ci en fait moins de dix.

   Les couleurs sont reprises telles quelles pour que le visiteur qui
   passe d'un site a l'autre reconnaisse la maison.
   ===================================================================== */

:root{
  --navy: #155263;
  --navy-dark: #262b2d;
  --blue-light: #eaf2f2;
  --accent: #ff6f3c;
  --accent-dark: #e85a2a;
  --ink: #0c0c0c;
  --ink-soft: #5b6469;
  --line: #e6e6e6;
  --bg: #e2eff3;
  --bg-alt: #f7f7f7;
  --white: #fff;
  --radius: 5px;
  --maxw: 1080px;
  font-size: 16px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

h1, h2, h3, h4{ font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.25; margin: 0 0 14px; }
h1{ font-size: 2.1rem; font-weight: 800; }
h2{ font-size: 1.5rem; font-weight: 700; color: var(--navy); }
h3{ font-size: 1.12rem; font-weight: 600; }
p{ margin: 0 0 16px; }
a{ color: var(--navy); }
a:hover{ color: var(--accent); }
strong{ font-weight: 600; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Entete ---------- */
.tete{ background: var(--navy-dark); color: #fff; }
.tete-in{ display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.marque{ color: #fff; text-decoration: none; display: flex; align-items: center; gap: 12px; }
/* Deux fichiers pour le symbole, et c'est volontaire : la version
   sombre pour les fonds clairs, la claire pour l'entete. Un filtre CSS
   aurait ecrase le bleu ET l'orange en une seule teinte, faisant perdre
   au logo son identite a deux couleurs. */
.marque-logo{ width: 52px; height: 52px; flex: none; }
.marque-txt{ display: block; }
.marque-nom{ display: block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: .01em; }
.marque-sous{ display: block; font-size: .82rem; color: #b9c7cb; }
.tete-droite{ text-align: right; }
.tel{ display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem;
  padding: 7px 16px; border-radius: 22px; }
.tel:hover{ background: var(--accent-dark); color: #fff; }
.tel-note{ display: block; font-size: .72rem; color: #b9c7cb; margin-top: 3px; }
.burger{ display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span{ display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

/* ---------- Menu ---------- */
.nav{ background: var(--navy); }
.nav-in{ display: flex; flex-wrap: wrap; gap: 4px; }
.nav a{ color: #dbe8ea; text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: 13px 14px; display: block; border-bottom: 3px solid transparent; }
.nav a:hover{ color: #fff; background: rgba(255,255,255,.07); }
.nav a.on{ color: #fff; border-bottom-color: var(--accent); }

/* ---------- Fil d'Ariane ---------- */
.bc-bar{ background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb{ font-size: .84rem; color: var(--ink-soft); padding: 9px 0; }
.breadcrumb a{ color: var(--navy); text-decoration: none; font-weight: 500; }

/* ---------- Banniere de page ----------
   Bandeau haut, avec une place prevue pour une photo de fond. Tant
   qu'aucune image n'est fournie, l'aplat de couleur sert de repli :
   la banniere reste lisible dans les deux cas. */
/* Fond CLAIR et non plus bleu plein. En grands aplats, le bleu-petrole
   de la charte tire sur le vert et sature la page. Sur zone-help il est
   cantonne a l'entete et au pied : on fait pareil ici. */
.hero{ position: relative; background: var(--bg-alt); color: var(--ink);
  padding: 46px 0 40px; overflow: hidden;
  border-bottom: 1px solid var(--line); }
/* Photo de banniere. Elle est PLEINEMENT visible - pas attenuee - car
   son fond est blanc : elle se fond dans la banniere claire. Calee a
   droite, le sujet y est deja ; la moitie gauche reste libre pour le
   titre. */
.hero-img{ position: absolute; inset: 0; background-repeat: no-repeat;
  background-size: contain; background-position: right center; }
/* Sous 900px, la photo passerait derriere le texte : on la place en
   dessous plutot que de la superposer. */
@media (max-width: 900px){
  .hero-img{ position: static; height: 210px; background-position: center;
    margin: 0 0 4px; }
  .hero.hero-accueil{ padding-top: 0; }
  .hero-accueil .wrap{ padding-top: 24px; }
}
/* Fond en dessin plutot qu'en photo : on l'affiche ENTIER (contain) et
   cale a droite, pour qu'il n'entre pas en concurrence avec le titre.
   Une opacite plus forte qu'une photo, le trait etant fin. */
.hero-fond{ position: absolute; inset: 0; background-repeat: no-repeat;
  background-size: contain; background-position: right center; opacity: .22;
  pointer-events: none; }
@media (max-width: 900px){
  /* Sous cette largeur, le dessin passerait derriere le texte : on le
     recule fortement plutot que de le retirer. */
  .hero-fond{ opacity: .16; background-position: center; }
}
.hero .wrap{ position: relative; z-index: 1; }
.hero h1{ margin: 0 0 12px; color: var(--navy); }
.hero-p{ margin: 0; max-width: 660px; color: var(--ink-soft); font-size: 1.06rem; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* Accueil : un peu plus haut, c'est la premiere impression. */
.hero-accueil{ padding: 62px 0 56px; background: #fff; }
.hero-accueil h1{ font-size: 2.4rem; max-width: 800px; }

/* ---------- Sections ---------- */
.section{ padding: 46px 0; }
.section + .section{ padding-top: 0; }
.section-alt{ background: #fafbfb; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); }
.section-alt + .section{ padding-top: 46px; }
.art{ max-width: 780px; }
.tete-sect{ margin-bottom: 26px; }
.tete-sect p{ color: var(--ink-soft); margin: 0; }

/* ---------- Grilles et cartes ---------- */
.grille{ display: grid; gap: 18px; }
.g2{ grid-template-columns: repeat(2, 1fr); }
.g3{ grid-template-columns: repeat(3, 1fr); }
/* Encadre leger, sans ombre ni deplacement : un simple trait suffit a
   delimiter, et la page reste calme. */
.carte{ background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 22px; transition: border-color .18s; }
.carte:hover{ border-color: #c9d6da; }
/* Pastille d'icone en tete de carte. Le SVG herite de la couleur. */
/* Icone sans pastille coloree : un simple trait, dans la couleur du
   titre. La pastille bleue ajoutait un aplat de plus par carte. */
.ic{ width: 34px; height: 34px; color: var(--accent);
  display: grid; place-items: center; margin-bottom: 12px; }
.ic svg{ width: 30px; height: 30px; }
.carte-vedette{ border: 2px solid var(--accent); position: relative; }
.carte-vedette::before{ content: attr(data-etiquette); position: absolute;
  top: -12px; left: 24px; background: var(--accent); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .72rem;
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 12px;
  border-radius: 12px; }
.carte h3{ color: var(--navy); }
.carte p:last-child{ margin-bottom: 0; }
.carte-num{ display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--accent); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 12px; }
.encadre{ background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 22px 24px; }
.encadre h3{ color: var(--navy); margin-top: 0; }
.encadre p:last-child{ margin-bottom: 0; }

/* ---------- Listes ---------- */
.liste{ list-style: none; padding: 0; margin: 0 0 16px; }
.liste li{ position: relative; padding-left: 24px; margin-bottom: 9px; }
.liste li::before{ content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.liste-non li::before{ background: #c9ced0; }

/* ---------- Boutons ---------- */
.btn{ display: inline-block; text-decoration: none; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: .95rem; padding: 12px 22px; border-radius: 26px;
  border: 1.5px solid transparent; cursor: pointer; }
.btn-accent{ background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover{ background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-navy{ background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover{ background: #0f3f4d; color: #fff; }
/* Contour, pour fond CLAIR. Sur fond sombre, utiliser .btn-clair. */
.btn-contour{ background: transparent; color: var(--navy); border-color: var(--line); }
.btn-contour:hover{ border-color: var(--navy); color: var(--navy); }
.btn-clair{ background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-clair:hover{ background: rgba(255,255,255,.14); color: #fff; }
.actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- Chiffres de confiance ---------- */
.preuves{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 30px 0 0; }
.preuve{ text-align: center; }
.preuve .n{ display: block; font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 1.9rem; color: var(--navy); line-height: 1.1; }
.preuve .l{ display: block; font-size: .84rem; color: var(--ink-soft); }

/* ---------- Prix ---------- */
.prix-bloc{ display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--blue-light); border-radius: 14px; padding: 26px 28px; }
.prix{ font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 3rem;
  color: var(--accent); line-height: 1; }
.prix-sous{ display: block; font-size: .82rem; color: var(--ink-soft);
  font-family: 'Inter', sans-serif; font-weight: 400; margin-top: 4px; }

/* ---------- Avis ---------- */
.avis-grille{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.avis-carte{ background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.avis-tete{ display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.avis-rond{ width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  color: #fff; display: grid; place-items: center; font-weight: 600; flex: none; }
.avis-nom{ font-weight: 600; font-size: .95rem; }
.avis-date{ font-size: .8rem; color: var(--ink-soft); }
.avis-etoiles{ color: #f5a623; letter-spacing: 2px; margin-bottom: 8px; }
.avis-texte{ font-size: .92rem; margin: 0; }

/* ---------- Questions frequentes ----------
   En <details>/<summary> natifs : ils fonctionnent SANS JavaScript, et
   restent lisibles si un script echoue. Le contenu est present dans le
   HTML, donc indexe par Google - ce qu'un accordeon fabrique en
   JavaScript ne garantit pas. */
.faq{ max-width: 780px; }
.faq details{ border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 10px; background: #fff; }
.faq summary{ cursor: pointer; padding: 16px 20px; font-weight: 600;
  font-size: 1rem; list-style: none; position: relative; padding-right: 48px; }
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{ content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 400;
  color: var(--accent); line-height: 1; }
.faq details[open] summary::after{ content: "\2212"; }
.faq details[open] summary{ color: var(--navy); }
.faq .rep{ padding: 0 20px 18px; font-size: .95rem; color: var(--ink-soft); }
.faq .rep p:last-child{ margin-bottom: 0; }

/* ---------- Bouton d'appel qui suit le defilement, sur mobile ----------
   Sur telephone, l'entete disparait des qu'on fait defiler : le numero
   devient introuvable au moment ou le visiteur est convaincu. */
.flottant{ display: none; }
@media (max-width: 760px){
  .flottant{ display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px;
    z-index: 900; gap: 8px; }
  .flottant a{ flex: 1; text-align: center; padding: 13px 10px; font-size: .95rem;
    border-radius: 26px; text-decoration: none; font-family: 'Poppins', sans-serif;
    font-weight: 600; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
  .flottant .f-tel{ background: var(--accent); color: #fff; }
  .flottant .f-dev{ background: #fff; color: var(--navy); border: 1px solid var(--line); }
  body{ padding-bottom: 74px; }
}

/* ---------- Bandeau d'appel ---------- */
.bande{ background: var(--navy); color: #fff; padding: 38px 0; }
.bande-in{ display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.bande h2{ color: #fff; margin: 0 0 6px; }
.bande p{ margin: 0; color: #d7e5e8; max-width: 520px; }
.bande-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Pied de page ---------- */
.pied{ background: var(--navy-dark); color: #c8d4d7; padding: 42px 0 0; font-size: .9rem; }
.pied-grille{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.pied h3{ color: #fff; font-size: .95rem; margin: 0 0 12px; }
.pied ul{ list-style: none; padding: 0; margin: 0; }
.pied li{ margin-bottom: 7px; }
.pied a{ color: #c8d4d7; text-decoration: none; }
.pied a:hover{ color: var(--accent); }
.pied p{ margin: 0 0 10px; }
.pied-note{ font-size: .8rem; color: #8fa0a4; }
.pied-tel{ font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff !important; }
.pied-bas{ border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 16px; padding-bottom: 18px; }
.pied-bas p{ margin: 0; font-size: .82rem; color: #8fa0a4; }
/* Numero de version : discret, mais lisible. Il permet de verifier d'un
   coup d'oeil quelle livraison est reellement en ligne - utile quand un
   depot FTP s'est mal passe. */
.version{ display: inline-block; margin-left: 8px; padding: 1px 8px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 12px;
  font-size: .74rem; color: #8fa0a4; }

/* ---------- Formulaire ---------- */
.champ{ margin-bottom: 16px; }
.champ label{ display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.champ input, .champ select, .champ textarea{
  width: 100%; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; }
.champ textarea{ min-height: 130px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus{
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,111,60,.15); }
.aide{ font-size: .84rem; color: var(--ink-soft); margin: 5px 0 0; }
.alerte{ background: #fdecea; border: 1px solid #f5c6c2; color: #a3282d;
  border-radius: 8px; padding: 12px 15px; margin-bottom: 18px; font-weight: 600; }
.succes{ background: #e8f5ec; border: 1px solid #bfe0c9; color: #1c6b3f;
  border-radius: 8px; padding: 12px 15px; margin-bottom: 18px; font-weight: 600; }
.piege{ position: absolute; left: -9999px; }

/* ---------- Adaptation aux petits ecrans ---------- */
@media (max-width: 900px){
  .g3, .avis-grille{ grid-template-columns: repeat(2, 1fr); }
  .pied-grille{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px){
  h1{ font-size: 1.65rem; }
  .hero{ padding: 30px 0; }
  .burger{ display: block; }
  .tete-droite{ display: none; }
  .nav-in{ display: none; flex-direction: column; gap: 0; }
  .nav.ouvert .nav-in{ display: flex; }
  .nav a{ border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav a.on{ border-bottom-color: var(--accent); }
  .g2, .g3, .avis-grille{ grid-template-columns: 1fr; }
  .preuves{ grid-template-columns: repeat(2, 1fr); }
  .pied-grille{ grid-template-columns: 1fr; }
  /* Sous 16px, iOS zoome a la saisie et ne revient jamais en arriere. */
  .champ input, .champ select, .champ textarea{ font-size: 16px; }
}
