/* ==========================================================================
   Unnero — feuille de style principale
   Palette dérivée de la charte graphique (cyan #00C8C8 / noir #0D0D0D)
   Fond volontairement "encre" plutôt que noir pur : plus doux à lire.
   ========================================================================== */

:root {
  /* Fonds */
  --ink:        #12161a;
  --ink-2:      #171d22;
  --surface:    #1d242b;
  --surface-2:  #242e36;
  --line:       #2e3841;
  --line-soft:  #232c34;

  /* Marque */
  --cyan:       #00c8c8;
  --cyan-soft:  #6fe3e3;
  --cyan-deep:  #00a0a0;
  --cyan-glow:  rgba(0, 200, 200, .16);

  /* Accent chaud : réservé au crédit d'impôt et aux touches "humaines" */
  --sand:       #e9c79b;
  --sand-soft:  #f5e2c8;
  --sand-glow:  rgba(233, 199, 155, .12);

  /* Texte */
  --text:       #eef3f5;
  --text-2:     #c2ced6;
  --muted:      #93a1ab;

  /* États */
  --ok:         #4ec98a;
  --warn:       #ffb547;
  --danger:     #ff6b62;

  /* Mesures */
  --radius:     14px;
  --radius-lg:  22px;
  --maxw:       1140px;
  --gut:        clamp(20px, 5vw, 40px);
  --shadow:     0 18px 50px rgba(0, 0, 0, .38);
  --ease:       cubic-bezier(.22, .68, .34, 1);
}

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-2);
  font-family: Poppins, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-soft); }

:focus-visible {
  outline: 3px solid var(--cyan-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------- Typographie --- */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 3.25rem);
  font-weight: 300;           /* signature typo : titres en Light, mots-clés en Bold */
  letter-spacing: -.035em;
}
h1 strong { font-weight: 700; color: var(--text); }
h1 .accent { color: var(--cyan); font-weight: 700; }

h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.14rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--text-2); }
.small { font-size: .88rem; line-height: 1.65; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

/* -------------------------------------------------------------- Layout --- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding: clamp(64px, 9vw, 108px) 0; }
.section--tight { padding: clamp(46px, 6vw, 70px) 0; }
.section--alt { background: var(--ink-2); }
.section--line { border-top: 1px solid var(--line-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head p { color: var(--muted); }

.grid { display: grid; gap: 18px; }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ------------------------------------------------------------- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary {
  background: var(--cyan);
  color: #0b1013;
  box-shadow: 0 10px 30px var(--cyan-glow);
}
.btn--primary:hover { background: var(--cyan-soft); color: #0b1013; }

.btn--ghost {
  background: rgba(255, 255, 255, .02);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--text); background: rgba(0, 200, 200, .07); }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------------- En-tête --- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(18, 22, 26, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 34px; width: auto; }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-2);
  font-size: .93rem;
  font-weight: 500;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav a[aria-current="page"] { color: var(--cyan); }

.header .btn { padding: 11px 20px; min-height: 46px; font-size: .92rem; }
.header__cta { display: none; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding: 12px 0 20px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 16px; }

@media (min-width: 940px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .burger, .mobile-nav { display: none !important; }
}

/* ---------------------------------------------------------------- Hero --- */
.hero {
  position: relative;
  padding: clamp(52px, 8vw, 96px) 0 clamp(56px, 8vw, 88px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 620px;
  background:
    radial-gradient(48% 62% at 22% 12%, rgba(0, 200, 200, .16), transparent 68%),
    radial-gradient(38% 52% at 82% 4%, rgba(233, 199, 155, .07), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: clamp(34px, 5vw, 56px); }
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
}
.hero p.lead { max-width: 46ch; }
.hero .btn-row { margin-top: 30px; }

/* Bandeau de réassurance sous le hero */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; padding: 0; list-style: none; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  font-size: .85rem;
  color: var(--text-2);
}
.chips svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }

/* ------------------------------------- Signature : carte de disponibilité --- */
.avail {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  box-shadow: var(--shadow);
}
.avail__top { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.avail__dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 5px rgba(78, 201, 138, .16);
}
.avail__dot[data-state="closed"] { background: var(--muted); box-shadow: 0 0 0 5px rgba(147, 161, 171, .14); }
.avail__state { font-weight: 600; color: var(--text); letter-spacing: -.01em; }
.avail__note { font-size: .92rem; color: var(--muted); margin: 0; }

.avail__arc { margin: 20px 0 6px; }
.avail__arc svg { width: 100%; height: auto; overflow: visible; }
.avail__track { stroke: var(--line); stroke-width: 6; stroke-linecap: round; fill: none; }
.avail__open  { stroke: var(--cyan); stroke-width: 6; stroke-linecap: round; fill: none; opacity: .9; transition: opacity .3s var(--ease); }
.avail[data-open="0"] .avail__open { opacity: .32; }
.avail__now   { fill: var(--sand); }
.avail__scale { display: flex; justify-content: space-between; font-size: .74rem; color: var(--muted); letter-spacing: .04em; }

.avail__list { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 11px; }
.avail__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; }
.avail__list svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 4px; }
.avail__phone {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding: 15px 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(0, 200, 200, .06);
  color: var(--text); font-size: 1.22rem; font-weight: 700; letter-spacing: .02em;
}
.avail__phone svg { width: 20px; height: 20px; color: var(--cyan); }
.avail__phone:hover { border-color: var(--cyan); color: var(--text); }

/* --------------------------------------------------------------- Cartes --- */
.card {
  position: relative;
  padding: 26px 24px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .2s var(--ease), transform .2s var(--ease), background-color .2s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-3px); background: var(--surface-2); }
.card h3 { margin-bottom: .5em; }
.card p { font-size: .95rem; color: var(--muted); }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 200, 200, .28);
  border-radius: 13px;
  background: rgba(0, 200, 200, .08);
  color: var(--cyan);
}
.card__icon svg { width: 22px; height: 22px; }

.card__list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.card__list li { position: relative; padding-left: 20px; font-size: .91rem; color: var(--text-2); }
.card__list li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); opacity: .75;
}

.card--flat { background: transparent; }
.card--flat:hover { background: rgba(255, 255, 255, .02); }

/* --------------------------------------------------- Étapes numérotées --- */
.steps { counter-reset: step; display: grid; gap: 16px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 30px 24px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  margin-bottom: 14px;
  font-size: 2.1rem; font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  opacity: .85;
}
.step h3 { margin-bottom: .45em; }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------- Crédit d'impôt --- */
.taxbox {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(233, 199, 155, .28);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(233, 199, 155, .09), rgba(255, 255, 255, .015));
}
@media (min-width: 900px) { .taxbox { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.taxbox .eyebrow { color: var(--sand); }
.taxbox .eyebrow::before { background: var(--sand); }
.taxbox h2 { margin-bottom: .5em; }
.taxbox p { color: var(--text-2); }
.taxbox a { color: var(--sand-soft); }

.taxcalc {
  padding: 24px;
  border: 1px solid rgba(233, 199, 155, .22);
  border-radius: var(--radius);
  background: rgba(18, 22, 26, .55);
  text-align: center;
}
.taxcalc__row { display: flex; align-items: center; justify-content: center; gap: 16px; }
.taxcalc__val { font-size: clamp(1.7rem, 5vw, 2.3rem); font-weight: 700; color: var(--text); line-height: 1.1; }
.taxcalc__val--net { color: var(--sand); }
.taxcalc__lab { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.taxcalc__arrow { color: var(--muted); flex: none; }
.taxcalc__foot { margin: 18px 0 0; font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ---------------------------------------------------------------- Zone --- */
.zone { display: grid; gap: 32px; }
@media (min-width: 900px) { .zone { grid-template-columns: .95fr 1.05fr; align-items: center; } }
.zone__tags { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 0; padding: 0; }
.zone__tags li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  font-size: .87rem;
  color: var(--text-2);
}
.zone__tags li.is-base { border-color: var(--cyan); color: var(--text); background: rgba(0, 200, 200, .1); }

/* ----------------------------------------------------------------- FAQ --- */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq .faq__body { padding: 0 22px 22px; font-size: .95rem; color: var(--muted); }

/* ------------------------------------------------------------- Contact --- */
.contact-grid { display: grid; gap: clamp(28px, 4vw, 46px); }
@media (min-width: 950px) { .contact-grid { grid-template-columns: 1.05fr .95fr; align-items: start; } }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .89rem; font-weight: 500; color: var(--text); }
.field .hint { font-size: .78rem; color: var(--muted); }
.req { color: var(--cyan); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393a1ab' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.field input::placeholder, .field textarea::placeholder { color: #6d7c86; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 200, 200, .16);
}
.field--row { display: grid; gap: 18px; }
@media (min-width: 620px) { .field--row { grid-template-columns: 1fr 1fr; } }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.check input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--cyan); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: .93rem;
  line-height: 1.6;
}
.form-status.is-visible { display: block; }
.form-status.is-ok    { background: rgba(78, 201, 138, .1);  border: 1px solid rgba(78, 201, 138, .4);  color: #b6ecd0; }
.form-status.is-error { background: rgba(255, 107, 98, .09); border: 1px solid rgba(255, 107, 98, .38); color: #ffc4c0; }

.info-card {
  padding: 28px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list svg { width: 20px; height: 20px; color: var(--cyan); flex: none; margin-top: 4px; }
.info-list strong { display: block; color: var(--text); font-weight: 600; font-size: .95rem; }
.info-list div > span { display: block; }
.info-list span, .info-list a { font-size: .93rem; color: var(--muted); }
.info-list .small { margin-top: 6px; font-size: .82rem; color: #7f8d97; }
.info-list a { color: var(--text-2); }
.info-list a:hover { color: var(--cyan); }

/* ------------------------------------------------------------ CTA final --- */
.cta {
  position: relative;
  padding: clamp(40px, 6vw, 64px) clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 130% at 12% 0%, rgba(0, 200, 200, .14), transparent 60%),
    var(--surface);
  text-align: center;
}
.cta h2 { max-width: 22ch; margin-inline: auto; }
.cta p { max-width: 56ch; margin-inline: auto; color: var(--muted); }
.cta .btn-row { justify-content: center; margin-top: 28px; }

/* ------------------------------------------------------------- Contenu --- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.2em; padding-top: 1.4em; border-top: 1px solid var(--line-soft); font-size: 1.45rem; }
.prose h2:first-of-type { margin-top: 1.4em; }
.prose h3 { margin-top: 1.8em; font-size: 1.05rem; color: var(--cyan); }
.prose ul { padding-left: 20px; margin: 0 0 1.1em; }
.prose li { margin-bottom: .5em; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .92rem; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.prose th { background: var(--surface); color: var(--text); font-weight: 600; }
.prose .updated { font-size: .84rem; color: var(--muted); }

/* --------------------------------------------------------- Pied de page --- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding: clamp(46px, 6vw, 68px) 0 32px;
  font-size: .92rem;
}
.footer__grid { display: grid; gap: 32px; margin-bottom: 36px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr .85fr 1fr; } }
.footer img { height: 32px; width: auto; margin-bottom: 16px; }
.footer h4 {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--text-2); }
.footer a:hover { color: var(--cyan); }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  padding-top: 26px; border-top: 1px solid var(--line-soft);
  font-size: .82rem; color: var(--muted);
}
.footer__legal p { margin: 0; }

/* ------------------------------------------------- Barre mobile fixe --- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(18, 22, 26, .93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.callbar .btn { flex: 1; min-height: 50px; padding: 12px 14px; font-size: .93rem; }
@media (min-width: 940px) { .callbar { display: none; } }
@media (max-width: 939px) { body { padding-bottom: 82px; } }

/* -------------------------------------------------------- Utilitaires --- */
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.skip {
  position: absolute; left: -9999px; top: 0;
  padding: 12px 18px; background: var(--cyan); color: #0b1013; border-radius: 0 0 10px 0; z-index: 100;
}
.skip:focus { left: 0; }

/* Le bloc crédit d'impôt n'apparaît que si la déclaration SAP est active */
html[data-sap="off"] .sap-only { display: none !important; }

/* --------------------------------------------------------- Animations --- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ============================================================== TARIFS === */
.price-hero {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 200, 200, .3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 140% at 8% 0%, rgba(0, 200, 200, .13), transparent 62%),
    var(--surface);
}
@media (min-width: 860px) { .price-hero { grid-template-columns: .8fr 1.2fr; align-items: center; } }
.price-hero__amount { display: flex; align-items: baseline; gap: 8px; }
.price-hero__amount b {
  font-size: clamp(3rem, 8vw, 4.4rem);
  font-weight: 700; line-height: 1; letter-spacing: -.04em; color: var(--cyan);
}
.price-hero__amount span { font-size: 1.05rem; color: var(--muted); }
.price-hero__tag {
  display: inline-block; margin-top: 12px; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.price-hero ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.price-hero li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; }
.price-hero li svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 5px; }

.price-card {
  display: flex; flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.price-card:hover { border-color: var(--line); transform: translateY(-3px); }
.price-card h3 { font-size: 1.02rem; margin-bottom: .5em; }
.price-card p { font-size: .9rem; color: var(--muted); margin: 0 0 18px; }
.price-card__tag {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 7px;
}
.price-card__tag b { font-size: 1.55rem; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.price-card__tag span { font-size: .82rem; color: var(--muted); }
.price-card__net { display: block; margin-top: 8px; font-size: .84rem; color: var(--sand); }

.incl { display: grid; gap: 16px; }
@media (min-width: 780px) { .incl { grid-template-columns: 1fr 1fr; } }
.incl__col { padding: 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); }
.incl__col h3 { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.incl__col h3 svg { width: 19px; height: 19px; flex: none; }
.incl__col ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 9px; }
.incl__col li { position: relative; padding-left: 18px; font-size: .92rem; color: var(--text-2); }
.incl__col li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .5;
}
.incl--yes h3 { color: var(--ok); }
.incl--no  h3 { color: var(--muted); }
.incl--no li { color: var(--muted); }

/* ============================================================ À PROPOS === */
.about { display: grid; gap: clamp(28px, 5vw, 52px); }
@media (min-width: 900px) { .about { grid-template-columns: .78fr 1.22fr; align-items: start; } }

.portrait {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.portrait img { width: 100%; height: auto; display: block; }
.portrait::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(18, 22, 26, .55), transparent);
  pointer-events: none;
}
.portrait__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 20px;
  font-size: .88rem; color: var(--text);
}
.portrait__cap strong { display: block; font-size: 1.02rem; font-weight: 600; }
.portrait__cap span { color: var(--muted); font-size: .85rem; }

.about__side { display: grid; gap: 18px; }
.factbox { padding: 22px 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); }
.factbox h3 { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.factbox ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .93rem; }
.factbox li { display: flex; gap: 11px; align-items: flex-start; }
.factbox svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 4px; }

.about__body h2 { margin-top: 1.6em; }
.about__body h2:first-child { margin-top: 0; }
.about__body p { color: var(--text-2); }
.about__quote {
  margin: 30px 0 0; padding: 22px 26px;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 200, 200, .05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; font-weight: 300; line-height: 1.6; color: var(--text);
}

/* Aperçu « qui suis-je » en page d'accueil */
.intro { display: grid; gap: clamp(26px, 4vw, 48px); align-items: center; }
@media (min-width: 860px) { .intro { grid-template-columns: .62fr 1.38fr; } }
.intro .portrait { max-width: 340px; }
@media (max-width: 859px) { .intro .portrait { max-width: 260px; } }
