/* THOR TECHNOLOGIE — feuille de style unique du site.
   Charte : bleu #0B3D91, ambre #F0A808. Mobile d'abord (60 % du trafic). */

:root {
  --bleu: #0B3D91;
  --bleu-fonce: #071E3D;
  --bleu-nuit: #051426;
  --ambre: #F0A808;
  --ambre-clair: #FFC84A;
  --encre: #101725;
  --gris: #59637A;
  --gris-clair: #8A93A6;
  --bord: #E2E6EF;
  --fond: #FFFFFF;
  --fond-doux: #F5F7FB;
  --rayon: 14px;
  --large: 1180px;
  --ombre: 0 1px 2px rgba(7, 30, 61, .06), 0 8px 24px rgba(7, 30, 61, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--encre);
  background: var(--fond);
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", Archivo, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.2vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--bleu); }
img { max-width: 100%; height: auto; display: block; }

.contenu { width: 100%; max-width: var(--large); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--doux { background: var(--fond-doux); }
.section--nuit { background: var(--bleu-nuit); color: #DCE3F0; }
.section--nuit h2, .section--nuit h3 { color: #fff; }
.section--nuit a { color: var(--ambre-clair); }

.surtitre {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bleu);
  margin: 0 0 12px;
}
.section--nuit .surtitre { color: var(--ambre); }
.chapo { font-size: 1.1rem; color: var(--gris); max-width: 62ch; }
.section--nuit .chapo { color: #AEBBD2; }
.entete-section { max-width: 68ch; margin-bottom: 36px; }

/* ---------- boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .97rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--ambre { background: var(--ambre); color: #26200A; }
.btn--ambre:hover { background: var(--ambre-clair); }
.btn--bleu { background: var(--bleu); color: #fff; }
.btn--ligne { border-color: rgba(11, 61, 145, .3); color: var(--bleu); }
.section--nuit .btn--ligne, .hero .btn--ligne, .appel .btn--ligne { border-color: rgba(255, 255, 255, .35); color: #fff; }
.hero .btn--ligne:hover, .appel .btn--ligne:hover { background: rgba(255, 255, 255, .1); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- en-tete ---------- */
.entete {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--bord);
}
.entete__barre { display: flex; align-items: center; gap: 14px; height: 66px; }
.marque { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.marque__texte { font-family: "Bricolage Grotesque", Archivo, sans-serif; font-weight: 800; letter-spacing: -.02em; font-size: 1.15rem; color: var(--bleu-fonce); line-height: 1; }
.marque__texte span { display: block; font-size: .62rem; letter-spacing: .22em; color: var(--ambre); font-weight: 700; }
.menu { display: none; gap: 17px; align-items: center; }
.menu a { color: var(--encre); text-decoration: none; font-size: .92rem; font-weight: 500; white-space: nowrap; }
.menu a:hover { color: var(--bleu); }
.menu__ouvrir { display: inline-flex; flex-direction: column; gap: 4px; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu__ouvrir span { width: 22px; height: 2px; background: var(--bleu-fonce); border-radius: 2px; }
.menu-mobile { display: none; border-top: 1px solid var(--bord); padding: 8px 0 18px; }
.menu-mobile.ouvert { display: block; }
.menu-mobile a { display: block; padding: 11px 0; text-decoration: none; color: var(--encre); border-bottom: 1px solid var(--bord); font-weight: 500; }
@media (min-width: 1080px) {
  .menu { display: flex; }
  .menu__ouvrir { display: none; }
  .menu-mobile { display: none !important; }
}

/* ---------- heros ---------- */
.hero { position: relative; background: var(--bleu-nuit); color: #fff; overflow: hidden; }
.hero__fond { position: absolute; inset: 0; }
.hero__fond img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__voile { position: absolute; inset: 0; background: linear-gradient(105deg, var(--bleu-nuit) 18%, rgba(5, 20, 38, .82) 55%, rgba(11, 61, 145, .55)); }
.hero__corps { position: relative; padding: 64px 20px 56px; }
.hero__texte { max-width: 46rem; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--ambre); }
.hero__accroche { font-size: 1.12rem; color: #C6D2E6; max-width: 54ch; }
.fil { font-size: .84rem; color: #92A3C0; margin-bottom: 18px; }
.fil a { color: #92A3C0; text-decoration: none; }
.fil a:hover { color: #fff; }

.reperes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.repere { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; padding: 8px 16px; font-size: .88rem; }
.repere b { color: var(--ambre); font-weight: 700; }

/* ---------- bandeau de chiffres ---------- */
.bandeau { background: var(--bleu); color: #fff; }
.bandeau__grille { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 34px 0; }
.bandeau__chiffre { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--ambre); line-height: 1; }
.bandeau__label { font-size: .88rem; color: #C9D6EE; margin-top: 6px; }
@media (min-width: 760px) { .bandeau__grille { grid-template-columns: repeat(4, 1fr); } }

/* ---------- grilles de cartes ---------- */
.grille { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grille--2, .grille--3, .grille--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .grille--3 { grid-template-columns: repeat(3, 1fr); }
  .grille--4 { grid-template-columns: repeat(4, 1fr); }
}
.carte {
  background: #fff; border: 1px solid var(--bord); border-radius: var(--rayon);
  padding: 24px; box-shadow: var(--ombre);
}
.section--nuit .carte { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.carte__icone { font-size: 1.6rem; line-height: 1; margin-bottom: 12px; }
.carte h3 { margin-bottom: .35em; }
.carte p { color: var(--gris); font-size: .96rem; margin-bottom: .6em; }
.section--nuit .carte p { color: #AEBBD2; }
.carte__note { font-size: .86rem; color: var(--gris-clair); border-top: 1px solid var(--bord); padding-top: 10px; margin: 0; }
.section--nuit .carte__note { border-color: rgba(255, 255, 255, .12); }
.carte__note b { color: var(--bleu); font-weight: 600; }
.section--nuit .carte__note b { color: var(--ambre); }
a.carte { text-decoration: none; color: inherit; display: block; }
a.carte:hover { border-color: var(--bleu); }
.carte__lien { color: var(--bleu); font-weight: 600; font-size: .92rem; }

/* ---------- comparatif ---------- */
.comparatif { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .comparatif { grid-template-columns: 1fr 1fr; } }
.colonne { border-radius: var(--rayon); padding: 26px; border: 1px solid var(--bord); background: #fff; }
.colonne--bien { border: 2px solid var(--bleu); }
.colonne--mal { background: var(--fond-doux); }
.colonne__titre { font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.1rem; }
.colonne__prix { font-size: 1.5rem; font-weight: 800; color: var(--bleu); margin: 10px 0 2px; font-family: "Bricolage Grotesque", sans-serif; }
.colonne--mal .colonne__prix { color: var(--gris); }
.colonne__delai { font-size: .92rem; color: var(--gris); margin-bottom: 16px; }
.liste { list-style: none; margin: 0; padding: 0; }
.liste li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .95rem; }
.liste li::before { content: "✓"; position: absolute; left: 0; color: var(--bleu); font-weight: 700; }
.liste--contre li::before { content: "✕"; color: #B4406A; }

/* ---------- etapes ---------- */
.etapes { counter-reset: etape; display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .etapes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .etapes { grid-template-columns: repeat(4, 1fr); } }
.etape { border-top: 3px solid var(--ambre); padding-top: 16px; }
.etape__num { counter-increment: etape; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; color: var(--ambre); font-size: 1.1rem; }
.etape__num::before { content: counter(etape, decimal-leading-zero); }
.etape h3 { font-size: 1.05rem; margin: 6px 0 .35em; }
.etape p { font-size: .94rem; color: var(--gris); }
.section--nuit .etape p { color: #AEBBD2; }

/* ---------- metiers ---------- */
.metiers { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .metiers { grid-template-columns: repeat(4, 1fr); } }
.metier {
  display: flex; flex-direction: column; gap: 4px; text-decoration: none;
  border: 1px solid var(--bord); border-radius: var(--rayon); padding: 16px;
  background: #fff; color: var(--encre);
}
.metier:hover { border-color: var(--bleu); background: #fff; }
.metier__nom { font-weight: 700; font-size: .98rem; }
.metier__quoi { font-size: .84rem; color: var(--gris); }

/* ---------- tarifs ---------- */
.offres { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .offres { grid-template-columns: repeat(3, 1fr); } }
.offre { border: 1px solid var(--bord); border-radius: var(--rayon); padding: 26px; background: #fff; position: relative; }
.offre--phare { border: 2px solid var(--bleu); }
.offre__marque { position: absolute; top: -12px; left: 24px; background: var(--ambre); color: #26200A; font-size: .72rem; font-weight: 700; letter-spacing: .1em; padding: 4px 12px; border-radius: 999px; }
.offre__prix { font-family: "Bricolage Grotesque", sans-serif; font-size: 2rem; font-weight: 800; color: var(--bleu-fonce); margin: 12px 0 0; }
.offre__prix span { font-size: .9rem; color: var(--gris); font-weight: 500; font-family: Archivo, sans-serif; }
.offre__sous { font-size: .86rem; color: var(--gris); margin-bottom: 16px; }

/* ---------- tableau ---------- */
.tableau-enveloppe { overflow-x: auto; border: 1px solid var(--bord); border-radius: var(--rayon); background: #fff; }
table { border-collapse: collapse; width: 100%; font-size: .94rem; min-width: 520px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--bord); }
th { background: var(--fond-doux); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gris); }
tbody tr:last-child td { border-bottom: 0; }
td b { color: var(--bleu-fonce); }

/* ---------- galerie ---------- */
.galerie { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 820px) { .galerie { grid-template-columns: repeat(3, 1fr); } }
.vignette { border-radius: var(--rayon); overflow: hidden; border: 1px solid var(--bord); background: #fff; }
.vignette img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.vignette figcaption { padding: 12px 14px; font-size: .88rem; color: var(--gris); }

/* ---------- questions ---------- */
.question { border-bottom: 1px solid var(--bord); padding: 18px 0; }
.question summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.question summary::-webkit-details-marker { display: none; }
.question summary::after { content: "+"; color: var(--ambre); font-weight: 700; font-size: 1.3rem; line-height: 1; }
.question[open] summary::after { content: "−"; }
.question p { margin: 12px 0 0; color: var(--gris); font-size: .96rem; }

/* ---------- appel final ---------- */
.appel { background: linear-gradient(120deg, var(--bleu-nuit), var(--bleu)); color: #fff; border-radius: 20px; padding: 40px 28px; text-align: center; }
.appel h2 { color: #fff; }
.appel p { color: #C6D2E6; max-width: 56ch; margin-left: auto; margin-right: auto; }
.appel .actions { justify-content: center; }

/* ---------- pied ---------- */
.pied { background: var(--bleu-nuit); color: #93A2BC; padding: 54px 0 28px; font-size: .92rem; }
.pied__grille { display: grid; gap: 28px; grid-template-columns: 1fr; margin-bottom: 32px; }
@media (min-width: 760px) { .pied__grille { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.pied h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.pied a { color: #93A2BC; text-decoration: none; display: block; padding: 4px 0; }
.pied a:hover { color: #fff; }
.pied__legal { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 20px; font-size: .84rem; color: #6F7F9B; }

/* ---------- bouton WhatsApp flottant ---------- */
.flottant {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  background: #25D366; color: #06331A; border-radius: 999px;
  padding: 13px 20px; font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22); font-size: .95rem;
}
@media (min-width: 1080px) { .flottant { right: 24px; bottom: 24px; } }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
