/* =============================================================
   izecca.ch · feuille de style partagee
   Reprise a l'identique du design v2 (bleu ardoise #2f4858, Inter,
   titres serif) etendue aux pages du parcours de comprehension.
   Structure : variables -> reset -> composants -> sections -> responsive
   ============================================================= */

:root {
  --ink: #14181b;
  --text: #3a4147;
  --muted: #68717a;
  --muted-2: #8a9299;

  --brand: #2f4858;
  --brand-dark: #22343f;
  --brand-soft: #edf3f6;
  --brand-line: rgba(47, 72, 88, 0.16);

  --white: #ffffff;
  --page: #f7f9fa;
  --surface: #ffffff;
  --surface-soft: #f1f5f7;
  --line: #e4e9ec;
  --line-soft: #edf1f3;

  --dark: #263d4b;
  --dark-2: #20333f;
  --dark-text: rgba(255, 255, 255, 0.84);
  --dark-muted: rgba(255, 255, 255, 0.64);
  --dark-line: rgba(255, 255, 255, 0.18);

  --shadow-sm: 0 10px 30px rgba(20, 24, 27, 0.06);
  --shadow-md: 0 22px 55px rgba(20, 24, 27, 0.10);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --wrap: 1120px;
  --gutter: clamp(20px, 4vw, 36px);
  --section: clamp(72px, 9vw, 118px);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(47, 72, 88, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}

::selection { color: var(--white); background: var(--brand); }

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

.wrap--narrow { max-width: 860px; }

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ------- typographie commune ------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0; font-family: var(--serif); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.08rem; font-weight: 700; }
h4 { font-size: 0.98rem; font-weight: 700; }
p { margin: 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 14px;
}

.lead { font-size: 1.12rem; color: var(--ink); font-weight: 500; }

.stack > * + * { margin-top: 14px; }
.stack-lg > * + * { margin-top: 22px; }

.prose { max-width: 40em; }
.prose > * + * { margin-top: 16px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 30px; }
.prose ul, .prose ol { margin: 0; padding-left: 22px; color: var(--muted); font-size: 0.97rem; }
.prose li + li { margin-top: 6px; }

/* ------- boutons / liens ------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 72, 88, 0.28);
}
.button--primary:hover { background: var(--brand-dark); transform: translateY(-2px); }

.button--light {
  background: var(--white);
  color: var(--brand);
  border: 1px solid var(--brand-line);
}
.button--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.button--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--dark-line);
}
.button--ghost:hover { border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }

.text-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--brand-line);
  transition: border-color 140ms ease;
}
.text-link:hover { border-color: var(--brand); }

.contact-line { font-size: 0.92rem; color: var(--muted); }
.mt-md { margin-top: 34px; }
.mt-sm { margin-top: 18px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

/* ------- preuve : chaque promesse mene a une verification ------- */
.proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-line);
  padding-bottom: 2px;
}
.proof::before { content: "\2192"; }
.proof:hover { border-color: var(--brand); }
.section--dark .proof { color: var(--white); border-color: var(--dark-line); }

.proof-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.proof-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.proof-list .claim { display: block; font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.section--dark .proof-list li { background: rgba(255, 255, 255, 0.05); border-color: var(--dark-line); border-left-color: rgba(255, 255, 255, 0.6); }
.section--dark .proof-list .claim { color: var(--white); }

/* ------- header ------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 249, 250, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand__mark { display: block; width: 34px; height: 34px; }

.nav { display: flex; align-items: center; gap: 22px; }

.nav__anchors { display: flex; align-items: center; gap: 16px; }

.nav__anchor {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 140ms ease;
  white-space: nowrap;
}
.nav__anchor:hover { color: var(--brand); }
.nav__anchor[aria-current="page"] { color: var(--brand); border-bottom: 2px solid var(--brand); padding-bottom: 2px; }

.nav .button { padding: 10px 20px; font-size: 0.88rem; }

/* menu mobile, sans javascript */
.nav-toggle { display: none; }
.nav-toggle > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 8px 16px;
}
.nav-toggle > summary::-webkit-details-marker { display: none; }
.nav-toggle__panel {
  position: absolute;
  right: var(--gutter);
  left: var(--gutter);
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: grid;
  gap: 14px;
}
.nav-toggle__panel a { font-size: 0.95rem; font-weight: 600; color: var(--ink); text-decoration: none; }

/* ------- hero ------- */
.hero { padding: clamp(44px, 5vw, 72px) 0 clamp(52px, 6vw, 80px); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

/* un seul titre visuel : la question */
.hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 15em;
}

.hero__scope {
  margin-top: 22px;
  font-size: 1.02rem;
  color: var(--text);
  max-width: 36em;
}

.hero__actions { margin-top: 30px; }

/* la reponse, en vis-a-vis du titre */
.hero-answer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}

.hero-answer__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

.hero-answer__claim {
  margin-top: 10px;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--brand);
}

.hero-answer__text {
  margin-top: 20px;
  font-size: 0.97rem;
  color: var(--muted);
}

.hero-answer__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-answer__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 22px auto 0;
}

.hero__image { width: 100%; max-width: 500px; height: auto; margin: 30px 0; }

/* hero des pages interieures */
.page-hero { padding: clamp(44px, 6vw, 78px) 0 clamp(30px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.page-hero__text { margin-top: 20px; font-size: 1.08rem; max-width: 38em; color: var(--text); }

.page-hero .hero__question {
  font-size: clamp(1.45rem, 2.9vw, 2rem);
  max-width: 28em;
  margin-bottom: 22px;
}

.breadcrumb {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.hero-card__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-card__date { font-family: var(--mono); font-size: 0.82rem; color: var(--muted-2); }

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.metric__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 5px;
}

.metric__value { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.metric__value--large { font-size: 1.35rem; }

.hero-card__note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--muted);
}

/* ------- sections ------- */
.section { padding: var(--section) 0; }
.section--tight { padding: clamp(48px, 6vw, 78px) 0; }

.section--dark {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--dark-text);
}

.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark .lead { color: var(--white); }
.section--dark p { color: var(--dark-text); }
.section--dark .eyebrow { color: rgba(255, 255, 255, 0.72); }
.section--dark .section__intro { color: var(--dark-muted); }
.section--dark .text-link { color: var(--white); border-color: var(--dark-line); }
.section--dark .contact-line { color: var(--dark-muted); }
.section--dark li { color: var(--dark-muted); }

.section--soft { background: var(--surface-soft); }

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section--dark .section__head { border-top-color: var(--dark-line); }

/* la colonne de droite s'aligne optiquement sur le titre, pas sur le surtitre */
.section__head > :last-child:not(:first-child) { padding-top: 4px; }

.section__head--single {
  display: block;
  max-width: 46em;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section--dark .section__head--single { border-top-color: var(--dark-line); }

.section__intro { color: var(--muted); font-size: 1.02rem; max-width: 34em; }
.section__body { margin-top: 20px; }

/* ------- notice ------- */
.notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--dark-line);
}

.notice--light {
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
}
.notice--light p { color: var(--text); }
.notice--light strong { color: var(--ink); }

.notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.notice p { font-size: 0.95rem; }

/* ------- grilles de cartes ------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card--flat { box-shadow: none; }
.card__icon { width: 46px; height: 46px; }

.section--dark .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--dark-line);
  box-shadow: none;
}

.card__kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.section--dark .card__kicker { color: rgba(255, 255, 255, 0.7); }

.card p { font-size: 0.95rem; color: var(--muted); }
.section--dark .card p { color: var(--dark-muted); }

/* ------- services ------- */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.service {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-line);
}

.service::before {
  content: attr(data-index);
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-bottom: 14px;
}

.service h3 { margin-bottom: 10px; }
.service p { font-size: 0.93rem; color: var(--dark-muted); }

/* ------- timeline / etapes ------- */
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.step__num {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--muted); }

/* deroule vertical, utilise dans les Coulisses */
.flow { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--brand-line); }
.flow > li { position: relative; padding: 0 0 32px 30px; }
.flow > li:last-child { padding-bottom: 0; }
.flow > li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
}
.flow__stage {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.flow h3 { margin-bottom: 8px; }
.flow p { font-size: 0.95rem; color: var(--muted); }
.flow__who {
  display: inline-flex;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
}
.flow__who--machine { color: var(--muted); background: var(--surface-soft); border: 1px solid var(--line); }
.flow__who--humain { color: var(--brand); background: var(--brand-soft); border: 1px solid var(--brand-line); }

/* ------- honoraires ------- */
.pricing-note { max-width: 46em; margin-bottom: 36px; }

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 0.94rem;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.pricing-table thead th {
  background: var(--brand);
  color: var(--white);
  font-size: 0.78rem;
  font-family: var(--mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: none;
  white-space: nowrap;
}

.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--surface-soft); }

.pricing-table .plan-name { font-weight: 700; color: var(--ink); white-space: nowrap; }
.pricing-table .price { font-family: var(--mono); font-weight: 600; color: var(--brand); white-space: nowrap; }
.pricing-table .plan-fit { color: var(--muted); font-size: 0.9rem; }

.table-caption { margin-top: 14px; font-size: 0.88rem; color: var(--muted); }

.pricing-extras { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 28px; }

.offer-price {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
}
.offer-price small { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

.included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.included li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text);
}

.included li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.included--single { grid-template-columns: 1fr; }
.section--dark .included li { color: var(--dark-text); }
.section--dark .included li::before { color: var(--white); }

.excluded li::before { content: "\2192"; color: var(--muted-2); }
.excluded li { color: var(--muted); }

/* ------- confiance / trust ------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.trust-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-line);
}

.trust-item span {
  display: block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.trust-item p { font-size: 0.93rem; color: var(--dark-muted); }

/* ------- citations et mises en exergue ------- */
.pull {
  margin: 30px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.section--dark .pull {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--white);
  color: var(--white);
}

.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote__mark { font-family: var(--mono); font-size: 1.6rem; line-height: 1; color: var(--brand); }
.quote p { font-size: 0.95rem; color: var(--text); }
.quote footer { font-size: 0.82rem; color: var(--muted-2); font-family: var(--mono); }

/* situations concretes de dirigeant */
.situations { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.situations li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
}
.section--dark .situations li { background: rgba(255, 255, 255, 0.05); border-color: var(--dark-line); color: var(--white); }

/* ------- comparateur ------- */
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.94rem; }
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--brand);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: none;
}
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td.izecca { background: var(--brand-soft); color: var(--ink); font-weight: 600; }
.compare-table td.autre { color: var(--muted); }

.checklist { list-style: none; margin: 0; padding: 0; counter-reset: q; display: grid; gap: 10px; }
.checklist li {
  position: relative;
  counter-increment: q;
  padding: 14px 20px 14px 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  color: var(--ink);
}
.checklist li::before {
  content: counter(q, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 14px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
}
.checklist .answer { display: block; margin-top: 6px; font-size: 0.9rem; font-weight: 400; color: var(--muted); }

/* ------- limites ------- */
.limits { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
.limits li { position: relative; padding-left: 28px; font-size: 0.95rem; color: var(--muted); }
.limits li::before { content: "\00D7"; position: absolute; left: 0; top: 0; color: var(--muted-2); font-weight: 700; }

/* ------- FAQ ------- */
.faq { max-width: 52em; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.15rem;
  color: var(--brand);
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq .faq__body { padding: 0 22px 20px; font-size: 0.95rem; color: var(--muted); }
.faq .faq__body > * + * { margin-top: 10px; }

/* ------- page engagements ------- */
.engagement h2 { margin-bottom: 16px; }
.engagement .section__body { color: var(--text); font-size: 1.02rem; }

.rule {
  height: 1px;
  border: 0;
  background: var(--line);
  margin: clamp(40px, 6vw, 64px) 0;
}

.capacity {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 20px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}
.capacity__num {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

/* ------- logos partenaires ------- */
/* ------- listes de mots-clés en pastilles (fond clair) ------- */
.card__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-top: 4px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.taglist li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ------- bandeau de reperes chiffres ------- */
.statline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat__num {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--brand);
}

.stat__label { font-size: 0.88rem; color: var(--muted); line-height: 1.45; }

@media (max-width: 780px) {
  .statline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
}

@media (max-width: 420px) {
  .statline { grid-template-columns: 1fr; }
}

/* ------- liste de domaines (terme + description) ------- */
.topics {
  display: grid;
  gap: 14px;
  margin: 0;
}

.topics > div {
  padding-left: 14px;
  border-left: 2px solid var(--brand-line);
}

.topics dt {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.94rem;
  margin-bottom: 3px;
}

.topics--cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 28px; }

@media (max-width: 900px) { .topics--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .topics--cols { grid-template-columns: 1fr; } }

.topics dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* hauteur fixe : les deux marques s'affichent à la même taille malgré des
   proportions de lockup différentes, et les cartes restent alignées */
.card__logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: 100%;
  margin-bottom: 10px;
  overflow: visible;
}

/* bouton collé en bas de carte, pour aligner les cartes entre elles */
.card__cta {
  margin-top: auto;
  padding-top: 18px;
}

@media (max-width: 420px) {
  .card__logo { height: 48px; }
}

/* emplacement provisoire, en attendant le fichier de logo */
.brandmark {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

/* ------- portrait ------- */
.portrait {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------- citation sous le portrait ------- */
.portrait-quote { margin: 18px 0 0; }

.portrait-quote blockquote { margin: 0; }

.portrait-quote blockquote p {
  padding-left: 18px;
  border-left: 3px solid var(--brand);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
}

.portrait-quote figcaption {
  margin-top: 10px;
  padding-left: 21px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ------- CTA final ------- */
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow-md);
}

.final-cta h2 { margin: 12px 0 16px; }
.final-cta p { color: var(--muted); }
.final-cta__coverage {
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 8px;
  color: var(--text) !important;
  font-size: 0.95rem;
}
.final-cta__coverage strong { color: var(--brand); }

.final-cta__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

.cta-banner {
  margin-top: 34px;
  background: var(--brand);
  border-radius: 16px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.cta-banner__text { flex: 1 1 320px; }
.cta-banner__text h3 { margin: 0 0 6px; color: var(--white); font-size: 1.28rem; letter-spacing: -0.01em; }
.cta-banner__text p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; }
.cta-banner .button--light { background: rgba(255, 255, 255, 0.1); color: var(--white); border-color: rgba(255, 255, 255, 0.25); }
.cta-banner .button--light:hover { background: rgba(255, 255, 255, 0.18); }

/* ------- navigation de parcours en bas de page ------- */
.next-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.next-step {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.next-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.next-step span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 8px;
}
.next-step h3 { margin-bottom: 6px; }
.next-step p { font-size: 0.92rem; color: var(--muted); }

/* ------- footer -------
   Un seul fond continu. La structure vient de l'espace, de la typographie
   et du contraste, pas d'une succession d'aplats.
   Trois niveaux de contraste : 1 blanc, 2 blanc attenue, 3 metadonnees.
   ------------------------------------------------------------------ */
.footer {
  background: var(--dark-2);
  color: var(--dark-text);
  padding: clamp(52px, 7vw, 84px) 0 30px;
}

/* separateur unique, tres fin, reserve aux deux vraies coupures */
.footer__rule {
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.10);
  margin: 0 0 clamp(40px, 5vw, 56px);
}

/* --- niveau 1 : presentation, contact, premier echange --- */
.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(48px, 6vw, 64px);
}

.footer__card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px;
  box-shadow: none;
}

.footer__logo {
  display: inline-block;
  font-weight: 700;
  font-size: 1.14rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer__card p { font-size: 0.9rem; color: var(--dark-muted); }

/* marqueurs de reassurance, pas des boutons */
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

.badges span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  padding: 3px 9px;
}

.footer__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 14px; }

.footer__link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer__link span {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 3px;
}

.footer__link:hover { text-decoration: underline; }

.footer__action { margin-top: 18px; }

/* le rendez-vous reste identifiable sans dominer le pied de page */
.footer .button--light {
  padding: 10px 20px;
  font-size: 0.88rem;
  box-shadow: none;
}
.footer .button--light:hover { transform: none; box-shadow: none; background: var(--brand-soft); }

/* --- niveau 2 : navigation, la partie la plus legere --- */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
  margin-bottom: clamp(48px, 6vw, 64px);
}
.footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__nav a:hover { color: var(--white); text-decoration: underline; }

/* --- niveau 3 : bureaux et lieux de rendez-vous --- */
.offices { margin-bottom: clamp(44px, 5vw, 60px); }

.offices__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: 4px;
}

.office {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 7px;
  padding: 18px 18px 18px 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 18px;
  border-radius: 0;
  background: transparent;
}

.office--primary { background: transparent; border-left-color: rgba(255, 255, 255, 0.34); }

.office__tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
}

.office__city {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.office__addr {
  font-size: 0.87rem;
  color: var(--dark-muted);
  line-height: 1.55;
}

/* micro-labels : ni capsules pleines, ni boutons */
.office__days {
  display: block;
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}
.office__days span { white-space: nowrap; }
.office__days span + span::before {
  content: " · ";
  color: rgba(255, 255, 255, 0.32);
  white-space: normal;
}

/* les villes de coworking : une ligne de texte plutot que six capsules */
.office__chips {
  display: block;
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.87rem;
  color: var(--dark-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.office__chips span { white-space: nowrap; }
.office__chips span + span::before {
  content: " · ";
  color: rgba(255, 255, 255, 0.32);
  white-space: normal;
}

.office__note {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* --- niveau 4 : zone d'intervention, texte simple --- */
.footer__zone { margin-bottom: clamp(44px, 5vw, 60px); }
.footer__zone p { font-size: 0.88rem; color: var(--dark-muted); line-height: 1.75; }
.footer__zone strong { color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.footer__zone .text-link { color: rgba(255, 255, 255, 0.82); border-color: rgba(255, 255, 255, 0.22); }
.footer__zone .text-link:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.6); }

/* --- niveau 5 : signature institutionnelle --- */
.footer__statement {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
}

.footer__statement p:first-child {
  font-size: 0.96rem;
  color: var(--white);
  font-weight: 600;
  max-width: 62em;
}
.footer__statement p:first-child strong { font-weight: 600; color: var(--white); }
.footer__statement p + p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ------- listes de prose ------- */
.list,
.problem-list {
  margin: 18px 0 0;
  padding: 0 0 0 4px;
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--text);
}

.list li,
.problem-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.62;
}

.list li::before,
.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 1px;
  background: var(--brand);
}

.section--dark .list li::before,
.section--dark .problem-list li::before { background: rgba(255, 255, 255, 0.55); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.74rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
}

.footer__legal a:hover,
.footer__legal a:focus-visible { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.6); }

/* ------- reveal ------- */
.reveal { animation: rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.delay-1 { animation-delay: 90ms; }
.delay-2 { animation-delay: 180ms; }
.delay-3 { animation-delay: 270ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
}

/* ------- responsive ------- */
@media (max-width: 1140px) {
  .nav__anchors { display: none; }
  .nav-toggle { display: block; position: relative; }
}

@media (max-width: 1180px) {
  .footer__nav { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__title { max-width: none; }
  .hero-answer__img { max-width: 240px; }
  .hero__question { max-width: none; }
  .section__head { grid-template-columns: 1fr; align-items: start; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .services, .quotes, .trust-grid, .pricing-extras, .next-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2, .services, .timeline, .quotes, .trust-grid, .pricing-extras, .next-steps { grid-template-columns: 1fr; }
  .included, .limits, .situations { grid-template-columns: 1fr; }
  .footer__grid, .footer__nav { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .cta-banner { padding: 24px; }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .button { width: 100%; text-align: center; }
  .cta-row { align-items: stretch; }
  .cta-row .button { width: 100%; }
  .footer__link { display: block; }
  .footer__link span { display: block; margin-bottom: 4px; }
}

/* ------- hub des localites : recherche et accordeons ------- */
.localites { display: grid; gap: 12px; }

.localites__search { display: grid; gap: 8px; max-width: 420px; margin-bottom: 10px; }

.localites__search input {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
}
.localites__search input:focus-visible { border-color: var(--brand); }

.localites__status {
  min-height: 1.4em;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
}

.localites__canton {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.localites__canton > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
}
.localites__canton > summary::-webkit-details-marker { display: none; }
.localites__canton > summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.15rem;
  color: var(--brand);
  flex: 0 0 auto;
  transition: transform 160ms ease;
}
.localites__canton[open] > summary::after { transform: rotate(45deg); }

.localites__count {
  margin-left: auto;
  margin-right: 6px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.localites__body { padding: 4px 22px 22px; display: grid; gap: 18px; }
.localites__region .card__label { margin-bottom: 8px; }


/* ------- bande horizontale des domaines couverts -------
   Les termes sont presents en clair dans le DOM. Le defilement est purement
   graphique et se desactive si l'utilisateur limite les animations. */
.ticker {
  margin-top: clamp(24px, 3vw, 36px);
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 68s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0 7px;
}

.ticker__list li {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 10px 22px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .ticker__track { animation: none; width: auto; }
  .ticker__list[aria-hidden="true"] { display: none; }
}

/* --- renvoi vers les pages de prestations --- */
.notice-lien {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 26px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

/* =========================================================
   Calculateur de prix
   ========================================================= */
.calc {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(22px, 2.6vw, 38px);
  align-items: start;
  margin-bottom: clamp(26px, 3vw, 38px);
}

.calc__form { display: grid; gap: 18px; }

.calc__field {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px 16px;
  margin: 0;
  background: var(--white);
}
.calc__field legend {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 0 8px;
  margin-left: -8px;
}

.calc__hint {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 8px 0 0;
}
.calc__field legend + .calc__hint { margin: 4px 0 12px; }

.calc__options { display: grid; gap: 8px; }
.calc__options label,
.calc__extra label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.93rem;
  line-height: 1.45;
  transition: border-color 140ms ease, background 140ms ease;
}
.calc__options label:hover,
.calc__extra label:hover { border-color: var(--brand); }
.calc__options label span { display: block; }
.calc__options label em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}
.calc__options input,
.calc__extra input { margin-top: 3px; accent-color: var(--brand); flex: 0 0 auto; }
.calc__options input:focus-visible,
.calc__extra input:focus-visible,
.calc__number input:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.calc__options label:has(input:checked) {
  border-color: var(--brand);
  background: rgba(47, 72, 88, 0.05);
}

.calc__number { display: grid; gap: 6px; }
.calc__numlabel { font-size: 0.93rem; font-weight: 600; }
.calc__number input {
  font: inherit;
  font-size: 1.05rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  max-width: 140px;
  background: var(--white);
  color: inherit;
}

.calc__extra { margin-top: 12px; }
.calc__extra[hidden] { display: none; }

.calc__result {
  position: sticky;
  top: 96px;
  background: var(--brand);
  color: var(--white);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px);
}
.calc__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 16px;
}
.calc__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.93rem;
}
.calc__line strong { font-weight: 600; white-space: nowrap; }
.calc__line em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.calc__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.34);
}
.calc__total span { font-size: 0.93rem; font-weight: 600; }
.calc__total strong {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 600;
  white-space: nowrap;
}
.calc__mois { margin: 8px 0 0; font-size: 0.93rem; color: rgba(255, 255, 255, 0.82); }
.calc__devis { margin: 0 0 10px; font-size: 1.02rem; }
.calc__result p { color: rgba(255, 255, 255, 0.82); }
.calc__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.calc__lines { font-size: 0.88rem; line-height: 1.75; color: var(--muted); }

.card--accent { border-color: var(--brand); }

@media (max-width: 900px) {
  .calc { grid-template-columns: 1fr; }
  .calc__result { position: static; }
}

/* --- tableaux tarifaires a libelles longs --- */
.pricing-table--wide { min-width: 560px; }
.pricing-table--wide .plan-name { white-space: normal; }
.pricing-table--wide .price { white-space: nowrap; }
.pricing-table--wide td:first-child { width: 34%; }

.table-title {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.06rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.pricing-table-wrap + .table-caption { margin-bottom: 26px; }

.subhead {
  font-size: clamp(1.12rem, 1.9vw, 1.32rem);
  margin: clamp(30px, 3.4vw, 42px) 0 14px;
  padding-top: clamp(24px, 2.8vw, 32px);
  border-top: 1px solid var(--line);
}
.small-note { font-size: 0.86rem; color: var(--muted); }
.notice--light .small-note { color: rgba(0, 0, 0, 0.55); }

/* --- cartes courtes de la page Vos besoins --- */
.card--compact { padding: 20px 22px; }
.card--compact h3 { font-size: 1rem; line-height: 1.35; margin-bottom: 9px; }
.card--compact p { margin: 0; font-size: 0.92rem; }
.section--dark .card--compact { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); }
.section--dark .card--compact h3 { color: var(--white); }
.pull--xl {
  font-size: clamp(1.3rem, 3.1vw, 1.85rem);
  line-height: 1.32;
  margin-top: clamp(30px, 3.4vw, 44px);
}

.footer__statement p.footer__modele {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 78em;
  margin-top: 6px;
}
