/* =================================================================
   RedPurple.fr — Feuille de style principale
   Marque RedPurple / MW 21 — EURL Mussot Web 21
   Palette : violet #542A71 · framboise #C43763 · vert #198754
   ================================================================= */

/* ---------- Variables ---------- */
:root {
  --violet: #542A71;
  --violet-dark: #24162D;
  --violet-soft: #6f4191;
  --framboise: #C43763;
  --framboise-dark: #a82c52;
  --vert: #198754;
  --vert-soft: #e7f4ed;
  --bg-clair: #FAF7FB;
  --blanc: #FFFFFF;
  --bordure: #E5DCE9;
  --texte: #24162D;
  --texte-doux: #5a4d63;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(36, 22, 45, .06), 0 1px 2px rgba(36, 22, 45, .04);
  --shadow: 0 10px 30px -12px rgba(84, 42, 113, .25);
  --shadow-lg: 0 30px 60px -20px rgba(84, 42, 113, .35);
  --maxw: 1180px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: .2s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--violet); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--framboise); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--violet-dark); font-weight: 700; letter-spacing: -.02em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--framboise); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--bg-clair); }
.section--violet { background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dark) 100%); color: #fff; }
.section--violet h1, .section--violet h2, .section--violet h3 { color: #fff; }
.lead { font-size: 1.18rem; color: var(--texte-doux); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--framboise); margin-bottom: 14px;
}
.section--violet .eyebrow { color: #f2c6d5; }

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }
.section > .container > h2, .section-head { margin-bottom: 14px; }
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); text-align: center;
  line-height: 1.2;
}
.btn--primary { background: var(--framboise); color: #fff; box-shadow: 0 8px 20px -8px rgba(196, 55, 99, .6); }
.btn--primary:hover { background: var(--framboise-dark); color: #fff; transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--violet); border-color: var(--bordure); }
.btn--secondary:hover { border-color: var(--violet); color: var(--violet); background: var(--bg-clair); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn--white { background: #fff; color: var(--violet); }
.btn--white:hover { background: var(--bg-clair); color: var(--violet); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

.btn-linkedin {
  display: inline-flex; align-items: center; gap: .55em; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; background: #0a66c2; color: #fff;
  border: 2px solid transparent; transition: var(--transition);
}
.btn-linkedin:hover { background: #084e96; color: #fff; transform: translateY(-2px); }
.btn-linkedin svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--bordure);
}
.site-header .container { max-width: 1600px; }
.site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 128px; }
.brand { display: inline-flex; align-items: center; font-weight: 800; font-size: 2.6rem; letter-spacing: -.03em; }
.site-header .brand img { height: 77px; width: auto; display: block; }
.brand .red { color: var(--framboise); }
.brand .purple { color: var(--violet); }
.brand small { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .04em; color: var(--texte-doux); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: inline-block; padding: 13px 15px; border-radius: 12px; font-weight: 600; font-size: 1.5rem; color: var(--violet-dark); white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--bg-clair); color: var(--violet); }
.nav-links .btn { display: none; } /* doublon caché sur desktop (bouton conservé dans .nav-cta) */
.nav-links .btn:hover { background: var(--framboise-dark); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.site-header .nav-cta .btn, .nav-links .btn { font-size: 1.5rem; padding: 18px 36px; }
.nav-toggle {
  display: none; width: 64px; height: 64px; border: 1px solid var(--bordure);
  background: #fff; border-radius: 14px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-toggle span { display: block; width: 30px; height: 3px; background: var(--violet-dark); border-radius: 2px; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 1400px) {
  .nav-links {
    position: fixed; inset: 128px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 2px; background: #fff; padding: 18px 22px 28px; border-bottom: 1px solid var(--bordure);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: var(--transition); max-height: calc(100vh - 128px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 16px 14px; font-size: 1.5rem; }
  .nav-links .btn { display: inline-flex; margin-top: 10px; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Bandeau promo (sous le menu) ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--framboise) 0%, var(--violet) 100%);
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.18);
}
.promo-inner { max-width: 1600px; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 14px 22px; flex-wrap: wrap; text-align: center; }
.promo-bar p { margin: 0; font-size: 1.9rem; font-weight: 600; line-height: 1.3; max-width: none; flex: 1 1 auto; }
.promo-bar strong { color: #ffe08a; }
.promo-phone {
  display: inline-flex; align-items: center; gap: .45em; background: #fff; color: var(--framboise);
  font-weight: 800; font-size: 2rem; padding: 12px 32px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 20px -4px rgba(0,0,0,.32); animation: promoPulse 1.8s ease-in-out infinite; transition: var(--transition);
}
.promo-phone:hover { color: var(--framboise-dark); transform: translateY(-1px); }
.promo-phone svg { width: 34px; height: 34px; fill: currentColor; }
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
@media (max-width: 700px) { .promo-bar p { font-size: 1.35rem; } .promo-phone { font-size: 1.5rem; padding: 10px 24px; } .promo-phone svg { width: 26px; height: 26px; } .promo-inner { gap: 12px; padding: 12px 16px; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-clair); padding: 70px 0 64px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(105deg, rgba(250,247,251,.97) 0%, rgba(250,247,251,.88) 42%, rgba(250,247,251,.55) 100%),
    url("/assets/img/photos/hero.webp") center/cover no-repeat;
}
@media (max-width: 900px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(250,247,251,.96) 0%, rgba(250,247,251,.9) 55%, rgba(250,247,251,.8) 100%),
      url("/assets/img/photos/hero.webp") center/cover no-repeat;
  }
}

/* Photo d'illustration de section */
.photo-feature {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); aspect-ratio: 3 / 2;
}

/* ===== Vitrine : carrousel d'exemples de sites ===== */
.showcase { background: var(--bg-clair); }
.show-viewport { overflow: hidden; }
.show-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.show-slide { flex: 0 0 100%; padding: 6px clamp(16px, 4vw, 64px) 0; }
.browser {
  max-width: 1700px; margin-inline: auto; background: #fff; border: 1px solid var(--bordure);
  border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 11px 16px; background: #f3eef6; border-bottom: 1px solid var(--bordure); }
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.browser-bar .dot.r { background: #ef5f5f; }
.browser-bar .dot.y { background: #e3b341; }
.browser-bar .dot.g { background: #3fb950; }
.browser-bar .url {
  margin-left: 10px; flex: 1; max-width: 340px; background: #fff; border: 1px solid var(--bordure);
  border-radius: 8px; padding: 5px 12px; font-size: .82rem; color: var(--texte-doux);
}
.site {
  position: relative; aspect-ratio: 16 / 9; background-size: cover; background-position: center;
  color: #fff; display: flex; flex-direction: column; justify-content: space-between;
}
.site::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,26,.5) 0%, rgba(20,12,26,.04) 32%, rgba(20,12,26,.72) 100%);
}
.site > * { position: relative; z-index: 1; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 22px; }
.site-logo { font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.site-menu { font-size: .82rem; opacity: .94; text-shadow: 0 1px 8px rgba(0,0,0,.6); white-space: nowrap; }
.site-hero { padding: 22px 26px 26px; max-width: 88%; }
.site-kicker {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px;
}
.site-hero h3 { color: #fff; font-size: clamp(1.15rem, 2.6vw, 1.9rem); margin-bottom: 14px; text-shadow: 0 2px 14px rgba(0,0,0,.55); max-width: 18ch; }
.site-cta {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: 999px; box-shadow: 0 10px 20px -8px rgba(0,0,0,.55);
}
.show-label { text-align: center; margin-top: 16px; font-weight: 700; color: var(--violet); }
.show-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 14px; }
.show-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bordure); background: #fff;
  color: var(--violet); cursor: pointer; display: grid; place-items: center; transition: var(--transition); flex-shrink: 0;
}
.show-arrow:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.show-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.show-dots { display: flex; gap: 8px; }
.show-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--bordure); cursor: pointer; padding: 0; transition: var(--transition); }
.show-dot.active { background: var(--framboise); width: 26px; border-radius: 5px; }
@media (max-width: 600px) {
  .site-menu { display: none; }
  .site-hero { max-width: 100%; }
}

/* ===== Bandeau séparateur plein écran (parallax) ===== */
.band {
  position: relative; padding: 96px 0; color: #fff; text-align: center;
  background-image: linear-gradient(rgba(36,22,45,.74), rgba(84,42,113,.78)), url("/assets/img/photos/bandeau-ville.webp");
  background-size: cover; background-position: center; background-attachment: fixed;
}
.band .eyebrow { color: #f2c6d5; }
.band h2 { color: #fff; max-width: 24ch; margin: 0 auto 14px; }
.band p { color: rgba(255,255,255,.92); max-width: 60ch; margin: 0 auto 26px; font-size: 1.12rem; }
@media (max-width: 768px) { .band { background-attachment: scroll; padding: 72px 0; } }
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero .lead { font-size: 1.22rem; margin-bottom: 26px; }
.price-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px; background: #fff;
  border: 1px solid var(--bordure); border-radius: var(--radius-lg); padding: 30px 40px;
  box-shadow: var(--shadow); margin-bottom: 26px;
}
.price-main { display: flex; align-items: baseline; justify-content: center; gap: 9px; }
.price-amount { font-size: clamp(3.1rem, 8.5vw, 4.4rem); font-weight: 800; color: var(--violet); letter-spacing: -.03em; line-height: 1; }
.price-period { font-size: 1.55rem; font-weight: 700; color: var(--violet-soft); }
.price-sub { font-size: 1.45rem; font-weight: 700; color: var(--violet-dark); margin-top: 8px; }
.price-note { font-size: 1.12rem; color: var(--texte-doux); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--bordure); max-width: 24ch; line-height: 1.35; }
.price-note strong { color: var(--framboise); }
@media (max-width: 560px) {
  .price-card { padding: 24px 26px; }
  .price-amount { font-size: clamp(2.8rem, 15vw, 3.6rem); }
  .price-period { font-size: 1.3rem; }
  .price-sub { font-size: 1.25rem; }
  .price-note { font-size: 1rem; }
}
.hero-visual {
  background: linear-gradient(150deg, var(--violet), var(--violet-dark));
  border-radius: var(--radius-lg); padding: 34px; color: #fff; box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-visual h3 { color: #fff; margin-bottom: 8px; }
.hero-visual p { color: rgba(255,255,255,.85); margin-bottom: 18px; font-size: .98rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero : texte centré dans tous les blocs */
.hero .hero-grid > div { text-align: center; }
.hero .hero-grid .lead { margin-inline: auto; }
.hero .price-card { align-items: center; }
.hero .btn-row { justify-content: center; }
.hero .badges { justify-content: center; }
.hero .signature-humaine { border-left: 0; border-radius: var(--radius); border-top: 3px solid var(--framboise); }
.hero-visual { text-align: center; }
.hero-visual .check-list li { justify-content: center; text-align: left; }

/* ---------- Badges de confiance ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.badge {
  display: inline-flex; align-items: center; gap: .45em; font-size: .9rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; background: var(--vert-soft); color: var(--vert);
}
.badge svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.signature-humaine {
  margin-top: 22px; padding: 14px 18px; border-left: 3px solid var(--framboise);
  background: #fff; border-radius: 0 var(--radius) var(--radius) 0; font-size: .98rem; color: var(--texte-doux);
}
.signature-humaine strong { color: var(--violet-dark); }

/* ---------- Bandeau cookies (consentement) ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  max-width: 940px; margin: 0 auto;
  background: #fff; border: 1px solid var(--bordure);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.cookie-banner__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; padding: 16px 20px; }
.cookie-banner__text { margin: 0; flex: 1 1 320px; font-size: .92rem; color: var(--texte-doux); }
.cookie-banner__text a { color: var(--framboise); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { font-size: .92rem; padding: 11px 24px; }
@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 auto; }
}

/* ---------- Cartes / grilles ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--bordure); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--texte-doux); font-size: .98rem; }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-clair); color: var(--violet); margin-bottom: 14px;
}
.card .ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Étapes numérotées */
.steps { counter-reset: step; }
.step .num {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--violet); color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--texte-doux); font-size: .97rem; }

/* Cartes métiers (pills) */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--bordure);
  font-weight: 600; font-size: .95rem; color: var(--violet-dark);
}

/* ---------- Bloc interlocuteur unique ---------- */
.interlocuteur { background: var(--bg-clair); }
.interlocuteur-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.interlocuteur-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--violet), var(--framboise)); aspect-ratio: 4/5;
  display: grid; place-items: center; color: #fff; text-align: center; padding: 24px;
}
.interlocuteur-photo img { border-radius: var(--radius-lg); object-fit: cover; width: 100%; height: 100%; }
.interlocuteur-photo .placeholder { font-size: .9rem; opacity: .9; }
.interlocuteur-photo .placeholder .pname { font-size: 1.4rem; font-weight: 800; display: block; margin-bottom: 6px; }
.check-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: .7em; align-items: flex-start; font-weight: 500; }
.check-list li::before {
  content: ""; flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%;
  background: var(--vert-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23198754' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
}
@media (max-width: 860px) {
  .interlocuteur-grid { grid-template-columns: 1fr; gap: 28px; }
  .interlocuteur-photo { max-width: 360px; margin-inline: auto; aspect-ratio: 4/4; }
}

/* Carte Valéry compacte */
.carte-valery {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--bordure); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow);
}
.carte-valery .avatar {
  width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--violet), var(--framboise)); display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.6rem;
}
.carte-valery h3 { margin-bottom: 4px; }
.carte-valery p { color: var(--texte-doux); font-size: .96rem; margin-bottom: 14px; }
@media (max-width: 560px) { .carte-valery { grid-template-columns: 1fr; text-align: center; } .carte-valery .avatar { margin-inline: auto; } }

/* ---------- Tableaux de prix ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--bordure); box-shadow: var(--shadow-sm); }
table.price { width: 100%; border-collapse: collapse; background: #fff; min-width: 480px; }
table.price th, table.price td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--bordure); }
table.price thead th { background: var(--violet); color: #fff; font-weight: 600; }
table.price td:last-child, table.price th:last-child { text-align: right; white-space: nowrap; }
table.price tbody tr:last-child td { border-bottom: none; }
table.price tr.total td { background: var(--bg-clair); font-weight: 700; color: var(--violet); font-size: 1.05rem; }
table.price .amount { font-weight: 700; color: var(--violet); }

/* Carte offre mise en avant */
.offer-card {
  background: #fff; border: 2px solid var(--violet); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-lg); max-width: 560px;
}
.offer-card .offer-name { color: var(--framboise); font-size: 1.5rem; font-weight: 800; margin-bottom: 18px; }
.offer-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 11px; }
.offer-card li { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 11px; border-bottom: 1px dashed var(--bordure); }
.offer-card li:last-child { border-bottom: none; }
.offer-card li strong { color: var(--violet); }

/* ---------- FAQ accordéon ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--bordure); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; font: inherit; font-weight: 600; font-size: 1.05rem; color: var(--violet-dark);
  background: none; border: 0; padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--violet); }
.faq-q .chev { flex-shrink: 0; width: 22px; height: 22px; transition: transform var(--transition); color: var(--framboise); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--texte-doux); }

/* ---------- Formulaires ---------- */
.form-wrap { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .form-wrap { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--bordure); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--violet-dark); }
.field label .req { color: var(--framboise); }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--bordure); border-radius: 10px;
  background: var(--bg-clair); color: var(--texte); transition: var(--transition); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 3px rgba(84,42,113,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.choice-group { display: grid; gap: 10px; }
.choice {
  display: flex; gap: 11px; align-items: flex-start; padding: 13px 15px; border: 1px solid var(--bordure);
  border-radius: 10px; cursor: pointer; background: var(--bg-clair); transition: var(--transition);
}
.choice:hover { border-color: var(--violet); }
.choice input { width: auto; margin-top: 3px; accent-color: var(--violet); }
.choice span { font-size: .96rem; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--texte-doux); }
.consent input { width: auto; margin-top: 4px; accent-color: var(--violet); }
.form-note { font-size: .85rem; color: var(--texte-doux); margin-top: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-aside .aside-card { background: var(--bg-clair); border: 1px solid var(--bordure); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; }
.form-aside h3 { margin-bottom: 10px; }
.form-aside ul { padding-left: 1.1em; color: var(--texte-doux); display: grid; gap: 7px; }

.form-success {
  display: none; background: var(--vert-soft); border: 1px solid #b6e0c8; border-radius: var(--radius);
  padding: 22px; color: #14633f; margin-bottom: 22px;
}
.form-success.show { display: block; }
.form-success strong { display: block; font-size: 1.15rem; margin-bottom: 6px; color: var(--vert); }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 22ch; margin-inline: auto; margin-bottom: 14px; }
.cta-final p { max-width: 56ch; margin: 0 auto 24px; color: rgba(255,255,255,.88); font-size: 1.1rem; }
.section--violet .cta-final p { color: rgba(255,255,255,.88); }

/* ---------- Bandeau réassurance ---------- */
.reassure-strip { background: #fff; border: 1px solid var(--bordure); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-sm); }
.reassure-strip p { margin: 0; color: var(--texte-doux); font-size: .95rem; }
.reassure-strip strong { color: var(--violet-dark); }

/* ---------- Fil d'ariane ---------- */
.breadcrumb { font-size: .88rem; color: var(--texte-doux); padding: 16px 0 0; }
.breadcrumb a { color: var(--texte-doux); font-weight: 600; }
.breadcrumb a:hover { color: var(--framboise); }
.breadcrumb span { margin: 0 6px; opacity: .5; }

/* ---------- Page header (intérieures) ---------- */
.page-hero { background: var(--bg-clair); padding: 48px 0 56px; border-bottom: 1px solid var(--bordure); }
.page-hero h1 { margin-bottom: 14px; max-width: 22ch; }
.page-hero .lead { font-size: 1.18rem; }

/* ---------- Contenu légal / texte long ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin: 38px 0 12px; font-size: 1.5rem; }
.prose h3 { margin: 26px 0 8px; }
.prose p, .prose li { color: var(--texte-doux); }
.prose ul, .prose ol { margin: 12px 0; padding-left: 1.4em; display: grid; gap: 6px; }
.prose strong { color: var(--violet-dark); }
.prose .updated { font-size: .9rem; color: var(--texte-doux); font-style: italic; }
.placeholder-tag { background: #fff3d6; border-radius: 4px; padding: 1px 6px; font-size: .9em; color: #8a6d00; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--violet-dark); color: #cdbfd8; padding: 60px 0 28px; }
.site-footer a { color: #cdbfd8; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 38px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .95rem; }
.footer-brand .brand { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.footer-brand .brand img { height: 70px; width: auto; display: block; }
.footer-brand .brand .purple { color: #b98fd6; }
.footer-brand p { color: #a892ba; font-size: .95rem; max-width: 30ch; margin-left: auto; margin-right: auto; text-align: center; }
.footer-person strong { color: #fff; display: block; }
.footer-person p { color: #a892ba; font-size: .92rem; margin: 8px 0 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; font-size: .85rem; color: #a892ba; display: grid; gap: 10px; }
.footer-bottom .legal-info { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-linkedin { display: inline-flex; align-items: center; gap: .5em; color: #cdbfd8; font-weight: 600; }
.footer-linkedin svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Utilitaires ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 36px; }
.mb-2 { margin-bottom: 24px; }
.text-muted { color: var(--texte-doux); }
.small { font-size: .9rem; }
.transparency-note { background: var(--bg-clair); border-left: 3px solid var(--vert); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: .96rem; color: var(--texte-doux); }
.transparency-note strong { color: var(--violet-dark); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
