/* ==========================================================================
   KING365TV — feuille de style v3 « Mire »
   Identité : papier crème, encre bleu-pétrole, cyan et orange du logo,
   bande de couleurs façon mire TV comme signature, titres en serif.
   Aucune police externe, aucun fond noir.
   ========================================================================== */

:root {
  --paper: #fbf7f0;
  --paper-2: #f3ecdf;
  --white: #ffffff;
  --ink: #14323f;
  --ink-soft: #35515d;
  --muted: #64777f;
  --line: #d9d2c4;
  --line-strong: #14323f;

  --cyan: #29abe2;
  --cyan-deep: #0e6f97;
  --cyan-tint: #e3f3fb;
  --orange: #f7941d;
  --orange-deep: #b45f07;
  --orange-tint: #fff0dd;
  --mint: #2bb673;
  --plum: #7b3fa0;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c4a;

  --bars: linear-gradient(90deg, var(--cyan) 0 20%, var(--orange) 20% 40%, var(--ink) 40% 60%, var(--mint) 60% 80%, var(--plum) 80% 100%);

  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Charter, Georgia, "Times New Roman", serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-orange: 8px 8px 0 var(--orange);
  --shadow-soft: 0 10px 30px rgba(20, 50, 63, 0.10);

  --container: 1180px;
  --header-height: 78px;
  --space-section: clamp(56px, 8vw, 104px);
}

/* ------------------------------------------------------------ Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@supports not (overflow-x: clip) { body { overflow-x: hidden; } }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image: radial-gradient(rgba(20, 50, 63, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
img, svg { max-width: 100%; height: auto; display: inline-block; }
a { color: var(--cyan-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink); margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: 0.35em; }
strong { color: var(--ink); }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 8px; z-index: 200; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.u-mt-16 { margin-top: 16px; } .u-mt-24 { margin-top: 24px; } .u-mt-28 { margin-top: 28px; } .u-mt-32 { margin-top: 32px; } .u-mt-40 { margin-top: 40px; } .u-mt-48 { margin-top: 48px; }

/* ------------------------------------------------------------ Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 1rem; line-height: 1.1;
  text-decoration: none; border: 2px solid var(--ink); cursor: pointer; font-family: var(--font-sans);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn--gold { background: var(--orange); color: var(--ink); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { color: var(--paper); }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn--whatsapp { background: var(--whatsapp); color: var(--ink); }
.btn--whatsapp svg { flex: none; }
.btn--sm { padding: 10px 16px; font-size: 0.92rem; box-shadow: 2px 2px 0 var(--ink); }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-group--center { justify-content: center; }

/* ------------------------------------------------------------ En-tête */
.site-header { position: sticky; top: 0; z-index: 90; background: var(--paper); border-bottom: 2px solid var(--ink); }
.site-header::before { content: ""; display: block; height: 6px; background: var(--bars); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-height); }
.brand img { display: block; height: 40px; width: auto; }
.main-nav__list { list-style: none; margin: 0; padding: 6px; display: flex; gap: 2px; background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 999px; }
.main-nav__list a { display: block; padding: 8px 14px; border-radius: 999px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.main-nav__list a:hover { background: var(--white); }
.main-nav__list a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav > .btn { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 12px; background: var(--white); position: relative; cursor: pointer; box-shadow: 2px 2px 0 var(--ink); }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { position: absolute; left: 11px; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; content: ""; transition: transform 0.2s, top 0.2s; }
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; left: 0; } .nav-toggle__bar::after { top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { top: 0; transform: rotate(-45deg); }
.nav-overlay { position: fixed; inset: 0; background: rgba(20, 50, 63, 0.35); opacity: 0; pointer-events: none; transition: opacity 0.2s; z-index: 80; }
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ------------------------------------------------------------ Sections */
.section { padding-block: var(--space-section); }
.section--surface { background: var(--cyan-tint); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.section--surface + .section--surface { border-top: 0; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { position: relative; padding-bottom: 14px; }
.section-head h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 72px; height: 6px; background: var(--bars); border-radius: 3px; }
.section-head--center h2::after { left: 50%; transform: translateX(-50%); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-deep); margin: 0 0 12px; }
.eyebrow::before { content: ""; width: 22px; height: 6px; background: var(--bars); border-radius: 3px; }
.eyebrow--gold { color: var(--orange-deep); }

/* ------------------------------------------------------------ Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px); background: radial-gradient(60% 80% at 100% 0%, rgba(41, 171, 226, 0.22), transparent 60%), radial-gradient(45% 60% at 0% 100%, rgba(247, 148, 29, 0.22), transparent 60%); }
.hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 0.4em; }
.hero h1::after { content: ""; display: block; width: 180px; height: 14px; margin-top: 10px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 14'%3E%3Cpath d='M2 9 C 40 2, 90 12, 178 4' fill='none' stroke='%23f7941d' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left center / contain; }
.hero__lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; }
.hero__points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; }
.hero__points li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.97rem; }
.hero__points svg { flex: none; color: var(--paper); background: var(--mint); border-radius: 50%; padding: 3px; width: 22px; height: 22px; border: 2px solid var(--ink); }
.hero__visual { position: relative; padding: 12px; background: var(--white); border: 3px solid var(--ink); border-radius: 26px; box-shadow: var(--shadow-hard-orange); transform: rotate(1.5deg); }
.hero__visual img { display: block; border-radius: 14px; }
.hero__visual::after { content: ""; position: absolute; left: 50%; bottom: -26px; width: 42%; height: 14px; transform: translateX(-50%); background: var(--ink); border-radius: 0 0 10px 10px; }
.hero__logo { display: none; }

/* ------------------------------------------------------------ Cartes & grilles */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 24px; position: relative; transition: transform 0.15s, box-shadow 0.15s; }
.card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.card h3 { margin-top: 0; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--cyan-deep); }
.card p:last-child { margin-bottom: 0; }
.card--device { border-top-width: 10px; border-top-color: var(--cyan); }
.card--device:nth-child(2n) { border-top-color: var(--orange); }
.card--device:nth-child(3n) { border-top-color: var(--mint); }
.card--device:nth-child(4n) { border-top-color: var(--plum); }
.card__link { font-weight: 700; text-decoration: none; }
.card__link::after { content: " →"; }
.trust-grid .card { background: var(--paper-2); }

/* Cartes d'article */
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card > a { display: block; border-bottom: 2px solid var(--ink); background: var(--cyan-tint); }
.post-card img { display: block; width: 100%; }
.post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.post-card__meta { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-deep); margin: 0; }
.post-card h3 { font-size: 1.15rem; margin: 0; }
.post-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ------------------------------------------------------------ Tarifs « tickets » */
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 2px solid var(--ink); border-radius: 22px; padding: 26px 22px 22px; box-shadow: var(--shadow-hard); }
.price-card::before { content: ""; position: absolute; left: 18px; right: 18px; top: 0; height: 8px; background: var(--bars); border-radius: 0 0 6px 6px; }
.price-card--featured { background: var(--orange-tint); transform: rotate(-1.5deg) scale(1.03); z-index: 1; box-shadow: 8px 8px 0 var(--cyan); }
.price-card__badge { position: absolute; top: -16px; right: 14px; background: var(--orange); color: var(--ink); border: 2px solid var(--ink); border-radius: 999px; padding: 6px 12px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; transform: rotate(3deg); }
.price-card__duration { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; color: var(--cyan-deep); margin: 8px 0 6px; }
.price-card__price { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; margin: 0 0 6px; }
.price-card__monthly { margin: 0 0 10px; font-size: 0.9rem; color: var(--muted); }
.price-card__note { color: var(--ink-soft); font-size: 0.95rem; min-height: 3em; margin-bottom: 14px; }
.price-card__features { list-style: none; padding: 16px 0 0; margin: 0 0 18px; border-top: 2px dashed var(--line); flex: 1; }
.price-card__features li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.93rem; margin-bottom: 9px; }
.price-card__features svg { flex: none; margin-top: 4px; color: var(--mint); }
.price-card .btn--whatsapp { margin-top: auto; }
.price-card__alt { display: block; margin-top: 10px; text-align: center; font-size: 0.86rem; color: var(--ink-soft); }
.pricing-note { max-width: 780px; margin: 28px auto 0; text-align: center; color: var(--ink-soft); font-size: 0.95rem; }

/* ------------------------------------------------------------ Étapes */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: step; }
.step { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 28px 22px 22px; position: relative; }
.step__number { position: absolute; top: -20px; left: 20px; width: 42px; height: 42px; display: grid; place-items: center; background: var(--orange); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; box-shadow: 2px 2px 0 var(--ink); }
.step h3 { margin-top: 6px; }
.step p:last-child { margin: 0; color: var(--ink-soft); }

/* ------------------------------------------------------------ Réponse directe, encarts */
.answer { background: var(--paper-2); border: 2px solid var(--ink); border-radius: var(--radius); padding: 20px 22px 20px 26px; margin: 0 0 1.6em; box-shadow: 6px 6px 0 var(--cyan); position: relative; }
.answer::before { content: ""; position: absolute; left: 12px; top: 18px; bottom: 18px; width: 6px; border-radius: 3px; background: var(--bars); background-size: 100% 500%; background-image: linear-gradient(180deg, var(--cyan) 0 20%, var(--orange) 20% 40%, var(--ink) 40% 60%, var(--mint) 60% 80%, var(--plum) 80%); }
.answer p { margin: 0; padding-left: 10px; font-size: 1.04rem; }
.answer p + p { margin-top: 0.7em; }
.notice { background: var(--cyan-tint); border: 2px solid var(--cyan-deep); border-radius: var(--radius-sm); padding: 14px 18px; margin: 1.2em 0; }
.notice p { margin: 0; }
.device-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.device-list li { display: flex; gap: 10px; align-items: flex-start; }
.device-list svg { flex: none; margin-top: 4px; color: var(--mint); }
.kv { display: grid; grid-template-columns: minmax(140px, 200px) 1fr; gap: 8px 16px; margin: 0 0 1.4em; }
.kv dt { font-weight: 700; } .kv dd { margin: 0; color: var(--ink-soft); }

/* ------------------------------------------------------------ CTA */
.cta-panel { position: relative; text-align: center; padding: clamp(36px, 6vw, 64px) 28px; background: var(--white); border: 3px solid var(--ink); border-radius: 28px; box-shadow: 10px 10px 0 var(--orange); overflow: hidden; }
.cta-panel::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 10px; background: var(--bars); }
.cta-panel h2 { margin-top: 6px; }
.cta-panel p { max-width: 640px; margin: 0 auto 22px; color: var(--ink-soft); font-size: 1.08rem; }
.cta-panel .btn-group { justify-content: center; }

/* ------------------------------------------------------------ FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--white); border: 2px solid var(--ink); border-radius: 14px; overflow: hidden; }
.faq__item h3 { margin: 0; font-size: 1.05rem; font-family: var(--font-sans); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; background: none; border: 0; text-align: left; font: inherit; font-weight: 700; color: var(--ink); cursor: pointer; }
.faq__question:hover { background: var(--paper-2); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); border: 2px solid var(--ink); position: relative; transition: transform 0.2s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2.5px; background: var(--ink); transform: translate(-50%, -50%); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--cyan); }
.faq__panel { overflow: hidden; transition: height 0.25s ease; }
.faq__panel-inner { padding: 0 18px 18px; color: var(--ink-soft); }
.faq__panel-inner p:last-child { margin: 0; }
html:not(.js) .faq__panel { height: auto !important; }

/* ------------------------------------------------------------ En-tête de page & fil d'Ariane */
.page-header { padding: clamp(28px, 4vw, 48px) 0 clamp(20px, 3vw, 36px); border-bottom: 2px solid var(--ink); background: linear-gradient(180deg, rgba(41, 171, 226, 0.12), transparent); }
.page-header h1 { max-width: 900px; }
.page-header .hero__lead { max-width: 760px; margin-bottom: 0; }
.breadcrumb { margin-bottom: 18px; font-size: 0.86rem; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--orange-deep); font-weight: 700; }
.breadcrumb a { color: var(--cyan-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.article-meta { font-size: 0.86rem; color: var(--muted); margin: 10px 0 0; }

/* ------------------------------------------------------------ Article & barre latérale */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; padding-top: 0.2em; }
.prose h2:first-of-type { margin-top: 0.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ol li, .prose ul li { margin-bottom: 0.5em; }
.prose img { border: 2px solid var(--ink); border-radius: var(--radius); margin: 1em 0; }
.prose blockquote { margin: 1.4em 0; padding: 12px 20px; border-left: 6px solid var(--orange); background: var(--paper-2); border-radius: 0 12px 12px 0; }
.sidebar { position: sticky; top: calc(var(--header-height) + 20px); background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-hard); }
.sidebar h2 { font-size: 1rem; font-family: var(--font-sans); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan-deep); margin-top: 0; }
.sidebar h2 + * { margin-top: 10px; }
.sidebar h2:not(:first-child) { margin-top: 26px; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { margin: 0; border-top: 1px solid var(--line); }
.sidebar li a { display: block; padding: 8px 0; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.sidebar li a:hover { color: var(--cyan-deep); padding-left: 4px; }
.sidebar .btn { margin-top: 10px; }
.sidebar p { color: var(--ink-soft); font-size: 0.95rem; }

/* ------------------------------------------------------------ Tableaux */
.table-wrap { overflow-x: auto; margin: 1.4em 0; border: 2px solid var(--ink); border-radius: var(--radius-sm); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { background: var(--ink); color: var(--paper); font-weight: 700; }
tbody th { font-weight: 700; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tr.is-featured th, tr.is-featured td { background: var(--orange-tint); }

/* ------------------------------------------------------------ Assistant de choix */
.finder { max-width: 900px; margin-inline: auto; }
.finder__step { border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); padding: 20px 22px; margin: 0 0 16px; }
.finder__step legend { font-weight: 700; padding: 0 8px; display: flex; align-items: center; gap: 10px; }
.finder__num { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); border: 2px solid var(--ink); font-size: 0.85rem; }
.finder__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper-2); cursor: pointer; font-weight: 600; font-size: 0.93rem; }
.chip:has(input:checked) { background: var(--cyan); color: var(--ink); }
.chip input { accent-color: var(--ink); margin: 0; }
.finder__result { margin-top: 20px; padding: 26px; background: var(--orange-tint); border: 2px solid var(--ink); border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-hard); }
.finder__label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 800; color: var(--orange-deep); margin: 0 0 6px; }
.finder__plan { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin: 0; }
.finder__price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; margin: 0 0 8px; }
.finder__guide, .finder__help-note { color: var(--ink-soft); font-size: 0.95rem; }
.finder__result .btn-group { margin-top: 14px; }
.finder__fallback-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 14px; }
html.js .finder__fallback { display: none; }

/* ------------------------------------------------------------ Commande */
.checkout__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.checkout__panel { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 28px; }
.checkout__panel h2 { font-size: 1.35rem; }
.checkout__summary { position: sticky; top: calc(var(--header-height) + 20px); background: var(--paper-2); border: 2px solid var(--ink); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-hard); }
.checkout__summary h2 { font-size: 1.15rem; }
.summary-line, .summary-total { display: flex; justify-content: space-between; gap: 12px; margin: 0; padding: 8px 0; border-bottom: 1px solid var(--line); }
.summary-line dt { color: var(--muted); } .summary-line dd, .summary-total dd { margin: 0; text-align: right; font-weight: 600; }
.summary-total { border-bottom: 0; border-top: 2px solid var(--ink); margin-top: 6px; font-family: var(--font-display); font-size: 1.25rem; }
.summary-included { list-style: none; padding: 14px 0 0; margin: 0; }
.summary-included li { display: flex; gap: 8px; font-size: 0.9rem; margin-bottom: 6px; }
.summary-included svg { flex: none; margin-top: 4px; color: var(--mint); }
.summary-note { font-size: 0.88rem; color: var(--muted); margin: 12px 0 0; }
.plan-option { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 2px solid var(--line); border-radius: 14px; margin-bottom: 10px; cursor: pointer; background: var(--white); position: relative; }
.plan-option:hover { border-color: var(--ink); }
.plan-option:has(input:checked) { border-color: var(--ink); background: var(--orange-tint); box-shadow: 3px 3px 0 var(--ink); }
.plan-option input { accent-color: var(--ink); width: 18px; height: 18px; margin: 0; flex: none; }
.plan-option__body { flex: 1; display: flex; flex-direction: column; }
.plan-option__name { font-weight: 700; } .plan-option__note { font-size: 0.88rem; color: var(--muted); }
.plan-option__price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.plan-option__tag { position: absolute; top: -11px; right: 12px; background: var(--orange); border: 2px solid var(--ink); border-radius: 999px; padding: 2px 10px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.field { margin-bottom: 16px; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field__label { display: block; font-weight: 700; margin-bottom: 6px; }
.field__hint { font-size: 0.85rem; color: var(--muted); margin: -2px 0 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"] { width: 100%; padding: 12px 14px; border: 2px solid var(--ink); border-radius: 12px; font: inherit; background: var(--white); color: var(--ink); }
.field input:focus { outline: 3px solid var(--cyan); outline-offset: 1px; }
.field input[aria-invalid="true"] { border-color: #c0392b; }
.field__error { display: none; color: #b03a2e; font-size: 0.88rem; margin: 6px 0 0; font-weight: 600; }
.field__error.is-visible { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; }
.consent input { margin-top: 5px; accent-color: var(--ink); }
.order-done { text-align: center; }
.order-done__mark { display: inline-block; width: 64px; height: 64px; border-radius: 50%; background: var(--mint); border: 3px solid var(--ink); margin-bottom: 16px; position: relative; }
.order-done__mark::after { content: ""; position: absolute; left: 22px; top: 14px; width: 14px; height: 26px; border: solid var(--ink); border-width: 0 4px 4px 0; transform: rotate(45deg); }
.order-recap { max-width: 420px; margin: 18px auto; text-align: left; background: var(--paper-2); border: 2px solid var(--ink); border-radius: 14px; padding: 12px 18px; }
.order-done .btn-group { justify-content: center; }

/* ------------------------------------------------------------ Pied de page */
.site-footer { margin-top: 0; background: var(--paper-2); border-top: 2px solid var(--ink); padding: 56px 0 96px; }
.site-footer::before { content: ""; display: block; height: 8px; background: var(--bars); margin: -58px 0 48px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
.site-footer h2 { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-deep); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--cyan-deep); text-decoration: underline; }
.site-footer__brand p { color: var(--ink-soft); font-size: 0.95rem; max-width: 320px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; background: var(--whatsapp); }
.site-footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.site-footer__bottom p { margin: 0 0 6px; }

/* ------------------------------------------------------------ WhatsApp flottant & barre mobile */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 60px; height: 60px; display: grid; place-items: center; background: var(--whatsapp); color: var(--ink); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 4px 4px 0 var(--ink); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float__tooltip { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); white-space: nowrap; background: var(--ink); color: var(--paper); padding: 8px 12px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity 0.15s; }
.wa-float:hover .wa-float__tooltip, .wa-float:focus .wa-float__tooltip { opacity: 1; }
.mobile-cta { display: none; }

/* ------------------------------------------------------------ Bandeau cookies */
.cookie-banner { position: fixed; left: 16px; bottom: 16px; z-index: 95; max-width: 440px; width: calc(100% - 32px); background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-hard); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-prefs { display: none; margin-bottom: 12px; }
.cookie-prefs.is-visible { display: block; }
.cookie-prefs__row { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-top: 1px solid var(--line); }
.cookie-prefs__row label { font-weight: 700; } .cookie-prefs__row p { margin: 0; font-size: 0.85rem; }

/* ------------------------------------------------------------ Divers */
.help-card, .info-list { margin: 0; }
.text-accent { color: var(--orange-deep); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }
