/* ============================================================
   LANDING · maximeberthet.fr
   Conversion machine. Mobile-first.
   ============================================================ */

/* ── Body override ── */
body.landing-body {
  padding-bottom: 0;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
}

/* ── Layout ── */
.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Color emphasis utilities ── */
.l-em-warm   { color: #f0a648; font-weight: 600; }
.l-em-loss   { color: #ff6b85; font-weight: 600; }
.l-em-pos    { color: #4dd47a; font-weight: 600; }
.l-em-accent { color: var(--text); font-weight: 700; }
[data-theme="light"] .l-em-warm  { color: #c47a1f; }
[data-theme="light"] .l-em-loss  { color: #c12d49; }
[data-theme="light"] .l-em-pos   { color: #2a9a4a; }

/* ── Nav ── */
.l-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--card-border);
}
/* header centré sur le logo (identité) */
.l-nav-centered { justify-content: center; padding: 18px 32px; }
.l-nav-logo {
  display: inline-flex;
  align-items: center;
  transition: transform .25s ease, opacity .25s ease;
}
.l-nav-logo:hover { transform: scale(1.05); }
.l-nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.l-nav-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
}
.l-nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--card-border);
  border-radius: 99px;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.l-nav-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
  background: var(--accent-soft);
}

/* ── Hero ── */
.l-hero {
  position: relative;
  z-index: 5;
  padding: clamp(60px, 10vw, 120px) 0 clamp(56px, 9vw, 100px);
  text-align: center;
}

/* Barre d'accent multicolore au-dessus du titre */
.l-hero-accent-bar {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.l-hero-accent-bar span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  opacity: 0.85;
  transition: transform .3s ease;
}
.l-hero-accent-bar span:nth-child(1) { animation: accentSlide .9s ease both .1s; }
.l-hero-accent-bar span:nth-child(2) { animation: accentSlide .9s ease both .18s; }
.l-hero-accent-bar span:nth-child(3) { animation: accentSlide .9s ease both .26s; }
.l-hero-accent-bar span:nth-child(4) { animation: accentSlide .9s ease both .34s; }
@keyframes accentSlide {
  from { opacity: 0; transform: translateY(-6px) scaleX(0.4); }
  to   { opacity: 0.85; transform: translateY(0) scaleX(1); }
}

.l-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp .8s ease both .1s;
}

.l-hero-title {
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 26px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp .9s ease both .2s;
}
.l-hero-em-pos {
  color: #4dd47a;
  font-weight: 700;
}
.l-hero-pillar {
  font-weight: 700;
  white-space: nowrap;
}
.l-hero-pillar-a { color: #e89c2f; }
.l-hero-pillar-b { color: #d63cb0; }
.l-hero-pillar-c { color: #1bbcd8; }
.l-hero-sub {
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp 1s ease both .3s;
}
.l-hero-em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}
.l-hero-trust {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  animation: fadeUp 1.1s ease both .4s;
}

/* Scroll indicator (ligne fine animée) */
.l-hero-scroll {
  display: block;
  width: 1px;
  height: 56px;
  margin: 56px auto 0;
  position: relative;
  overflow: hidden;
  background: var(--card-border);
  animation: fadeUp 1.3s ease both .6s;
}
.l-hero-scroll-line {
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--text) 80%);
  animation: scrollDrip 2.2s cubic-bezier(.65,.05,.35,1) infinite;
}
@keyframes scrollDrip {
  0%   { top: -56px; opacity: 0.6; }
  40%  { opacity: 1; }
  100% { top: 56px;  opacity: 0; }
}

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

/* Hero mark highlight (sweep animation) */
mark.l-hero-mark {
  background: none;
  color: inherit;
  position: relative;
  display: inline;
  z-index: 0;
}
mark.l-hero-mark::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 18px;
  background: linear-gradient(90deg, rgba(232,156,47,0.4), rgba(255,180,80,0.32));
  transform-origin: left center;
  transform: scaleX(0);
  animation: markIn 1.1s cubic-bezier(.22,.61,.36,1) forwards 1s;
  border-radius: 4px;
  z-index: -1;
}
@keyframes markIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Buttons ── */
.l-btn-primary,
.l-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, color .25s ease, border-color .25s ease, background .25s ease;
}
.l-btn-primary {
  background: var(--text);
  color: var(--bg);
  border: 1px solid transparent;
}
.l-btn-primary:hover {
  opacity: .92;
  transform: translateY(-1px);
}
.l-btn-ghost {
  background: transparent;
  color: var(--text-dim);
  font-weight: 500;
  border: 1px solid var(--card-border);
}
.l-btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
  background: var(--accent-soft);
}

/* ── Sections ── */
.l-section {
  position: relative;
  z-index: 5;
  padding: clamp(64px, 10vw, 120px) 0;
}
.l-section + .l-section {
  border-top: 1px solid var(--card-border);
}
.l-section-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.l-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--card-border), transparent);
}
.l-section-label-warning {
  color: #f0a648;
  margin-bottom: 12px;
}
.l-section-label-warning::after {
  background: linear-gradient(to right, rgba(240,166,72,0.45), transparent);
}
.l-offers-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin: -16px 0 32px;
  line-height: 1.5;
}

/* ── Problem ── */
.l-problem-head { margin-bottom: 48px; }
.l-problem-headline {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--text);
}

@keyframes problemSpotlight {
  0%   { box-shadow: none; border-color: var(--card-border); }
  8%   {
    box-shadow:
      0 0 0 1px rgba(240,166,72,0.20),
      0 14px 50px rgba(240,166,72,0.06),
      inset 0 0 28px rgba(240,166,72,0.03);
    border-color: rgba(240,166,72,0.28);
  }
  28%  {
    box-shadow:
      0 0 0 1px rgba(240,166,72,0.20),
      0 14px 50px rgba(240,166,72,0.06),
      inset 0 0 28px rgba(240,166,72,0.03);
    border-color: rgba(240,166,72,0.28);
  }
  38%  { box-shadow: none; border-color: var(--card-border); }
  100% { box-shadow: none; border-color: var(--card-border); }
}
@keyframes problemNumSpot {
  0%, 38%, 100% { color: var(--text-muted); }
  8%, 28%       { color: #f0a648; }
}
.l-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .l-problem-grid { grid-template-columns: repeat(3, 1fr); }
}
.l-problem-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  animation: problemSpotlight 12s ease-in-out infinite;
  will-change: box-shadow, border-color;
}
.l-problem-item:nth-child(1) { animation-delay: 0s; }
.l-problem-item:nth-child(2) { animation-delay: 4s; }
.l-problem-item:nth-child(3) { animation-delay: 8s; }
.l-problem-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--text-muted);
  animation: problemNumSpot 12s ease-in-out infinite;
}
.l-problem-item:nth-child(1) .l-problem-num { animation-delay: 0s; }
.l-problem-item:nth-child(2) .l-problem-num { animation-delay: 4s; }
.l-problem-item:nth-child(3) .l-problem-num { animation-delay: 8s; }
.l-problem-item p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}
.l-problem-urgency {
  margin-top: 36px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  line-height: 1.65;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.l-problem-urgency strong { color: var(--text); }

/* ── Pillar colors (reusable inline spans) ── */
.l-em-pillar-a { color: #e89c2f; font-weight: 600; }
.l-em-pillar-b { color: #d63cb0; font-weight: 600; }
.l-em-pillar-c { color: #1bbcd8; font-weight: 600; }
[data-theme="light"] .l-em-pillar-a { color: #b57a1a; }
[data-theme="light"] .l-em-pillar-b { color: #a82d8a; }
[data-theme="light"] .l-em-pillar-c { color: #0f8fa8; }

.l-problem-result {
  margin: 56px 0 0;
  padding: 0;
  text-align: center;
  max-width: 100%;
}
.l-problem-result p {
  margin: 0;
  padding: 0;
}
.l-problem-result p:first-child {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.55;
  color: var(--text-dim);
  font-weight: 500;
}
.l-problem-result p:last-child {
  margin-top: 12px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--text);
}

.l-offer-onsite {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.l-offer-onsite strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   LAMPE INTERACTIVE · Métaphore de la vitrine
   ============================================================ */
.l-lamp-stage {
  margin-top: 64px;
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent 60%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: background .8s ease, border-color .8s ease;
}
.l-lamp-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 80%;
  background: radial-gradient(ellipse 60% 50% at 50% 25%, rgba(240,166,72,0) 0%, transparent 60%);
  pointer-events: none;
  transition: background 1.2s ease;
  z-index: 0;
}
.l-lamp-stage.is-on::before {
  background: radial-gradient(ellipse 70% 55% at 50% 25%, rgba(240,166,72,0.18) 0%, rgba(240,166,72,0.05) 30%, transparent 65%);
}
.l-lamp-stage.is-on {
  border-color: rgba(240,166,72,0.3);
}

.l-lamp-state {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 8px;
  min-height: 1.4em;
}
.l-lamp-state-text {
  display: inline-block;
  transition: opacity .5s ease, transform .5s ease, color .5s ease;
}
.l-lamp-state-off { color: var(--text-muted); }
.l-lamp-state-on  {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  opacity: 0;
  color: #f0a648;
}
.l-lamp-stage.is-on .l-lamp-state-off {
  opacity: 0;
  transform: translateY(4px);
}
.l-lamp-stage.is-on .l-lamp-state-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Bouton lampe */
.l-lamp-toggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 8px;
  position: relative;
  z-index: 2;
  transition: transform .3s ease;
  border-radius: 12px;
}
.l-lamp-toggle:hover {
  transform: translateY(-3px);
}
.l-lamp-toggle:focus-visible {
  outline: 2px solid rgba(240,166,72,0.5);
  outline-offset: 8px;
}

/* Aura CSS qui s'étend au-delà du SVG */
.l-lamp-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -45%);
  background: radial-gradient(circle at center, rgba(255,210,130,0.45) 0%, rgba(255,180,90,0.18) 22%, rgba(255,160,70,0.06) 45%, transparent 70%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  z-index: -1;
}
.l-lamp-stage.is-on .l-lamp-aura {
  opacity: 1;
}

.l-lamp-svg {
  width: clamp(130px, 17vw, 185px);
  height: auto;
  color: rgba(190,190,190,0.5);
  transition: color .8s ease, filter .8s ease;
  display: block;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.l-lamp-stage.is-on .l-lamp-svg {
  filter: drop-shadow(0 0 18px rgba(255,200,100,0.4));
}
.lamp-filament-post {
  transition: opacity .8s ease, stroke .8s ease;
}
.l-lamp-stage.is-on .lamp-filament-post {
  stroke: #ffd97a;
  opacity: 0.85;
}

/* SVG layers */
.lamp-glow,
.lamp-filament {
  opacity: 0;
  transition: opacity .8s ease;
}
.lamp-bulb {
  fill: rgba(255,255,255,0.015);
  transition: fill .8s ease, stroke .8s ease;
}
.lamp-filament {
  stroke: rgba(180,180,180,0.4);
  transition: opacity .8s ease, stroke .8s ease, filter .8s ease;
}
.lamp-reflect {
  opacity: 0.1;
  transition: opacity .8s ease;
}

/* État allumé */
.l-lamp-stage.is-on .l-lamp-svg {
  color: rgba(255,220,140,0.85);
}
.l-lamp-stage.is-on .lamp-glow {
  opacity: 1;
}
.l-lamp-stage.is-on .lamp-filament {
  opacity: 1;
  stroke: #ffd97a;
  filter: drop-shadow(0 0 6px rgba(255,200,100,0.85));
}
.l-lamp-stage.is-on .lamp-bulb {
  fill: rgba(255,220,140,0.12);
  stroke: rgba(255,220,140,0.65);
}
.l-lamp-stage.is-on .lamp-reflect {
  opacity: 0.35;
}

/* Indication "cliquez pour allumer" */
.l-lamp-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 8px 0 24px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: opacity .5s ease, max-height .5s ease, margin .5s ease;
  max-height: 60px;
}
.l-lamp-hint-arrow {
  font-size: 18px;
  color: #f0a648;
  animation: hintBounce 1.8s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(-4px); opacity: 1; }
}
.l-lamp-stage.is-on .l-lamp-hint {
  opacity: 0;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}

/* Contenu texte qui change */
.l-lamp-content {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 580px;
}
.l-lamp-display {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity .6s ease, transform .6s ease;
}
.l-lamp-display-off {
  opacity: 1;
}
.l-lamp-display-on {
  opacity: 0;
  transform: translateY(8px);
}
.l-lamp-stage.is-on .l-lamp-display-off {
  opacity: 0;
  transform: translateY(-8px);
}
.l-lamp-stage.is-on .l-lamp-display-on {
  opacity: 1;
  transform: translateY(0);
}
.l-lamp-statement {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: rgba(180,180,180,0.55);
  transition: color .6s ease;
}
.l-lamp-statement-on {
  color: var(--text);
}
.l-lamp-detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 480px;
}
.l-lamp-display-off .l-lamp-detail {
  color: rgba(180,180,180,0.5);
}

/* Métaphore citation */
.l-ba-metaphor {
  margin-top: 40px;
  padding: 24px 32px;
  border-left: 3px solid rgba(240,166,72,0.55);
  background: linear-gradient(90deg, rgba(240,166,72,0.06), transparent 60%);
  border-radius: 0 16px 16px 0;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  font-weight: 500;
  text-align: left;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .l-lamp-stage { padding: 40px 20px 36px; }
  .l-lamp-content { min-height: 140px; }
  .l-ba-metaphor { padding: 20px 24px; }
}

/* ── Offers ── */
.l-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 860px) {
  .l-offers-grid { grid-template-columns: repeat(3, 1fr); }
}
.l-offers-grid-2 {
  max-width: 920px;
  margin: 0 auto;
  gap: 24px;
}
@media (min-width: 860px) {
  .l-offers-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ── Offre simplifiée (v2) ── */
.l-offer-card-v2 {
  padding: 36px 32px;
  gap: 14px;
}
.l-offer-title-v2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1.05;
  margin-top: 4px;
}
@media (min-width: 860px) {
  .l-offer-title-v2 { font-size: 40px; }
}
.l-offer-pitch {
  font-size: 17px;
  font-weight: 500;
  color: color-mix(in srgb, var(--offer-c, var(--accent)) 78%, var(--text));
  line-height: 1.45;
  margin-top: 2px;
}
.l-offer-detail {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 2px;
}
.l-offer-card-bottom {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--card-border);
}
.l-offer-card-bottom .l-offer-price {
  font-size: 14px;
  margin: 0;
}
.l-offer-cta {
  align-self: flex-start;
}

/* ── Mention IA discrète ── */
.l-extra-discreet {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.l-extra-discreet strong {
  color: var(--text);
  font-weight: 600;
}
.l-extra-discreet-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 30%, transparent);
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}
.l-extra-discreet-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.l-offer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.l-offer-card:hover {
  border-color: color-mix(in srgb, var(--offer-c, var(--accent)) 45%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px color-mix(in srgb, var(--offer-c, var(--accent)) 30%, transparent);
}
.l-offer-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--offer-c, var(--accent));
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid color-mix(in srgb, var(--offer-c, var(--accent)) 38%, transparent);
  background: color-mix(in srgb, var(--offer-c, var(--accent)) 10%, transparent);
}
.l-offer-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.2;
}
.l-offer-promise {
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--offer-c, var(--accent)) 80%, var(--text));
  line-height: 1.5;
}
.l-offer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.l-offer-details li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.l-offer-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--offer-c, var(--accent)) 60%, transparent);
}
.l-offer-for {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}
.l-offer-price {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.5;
}
.l-offer-price strong {
  color: var(--text);
  font-weight: 700;
}
.l-offer-variants {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}
.l-offer-variant {
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 500;
}
.l-offer-variant-remote {
  color: #4dd47a;
}

/* ── Collapsible (accordéon) ── */
.l-collapsible {
  margin-top: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.l-collapsible[open] {
  border-color: rgba(255,255,255,0.18);
  background: var(--card-bg);
}
.l-collapsible summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background .25s ease;
  outline: none;
}
.l-collapsible summary::-webkit-details-marker { display: none; }
.l-collapsible summary:hover { background: var(--card-hover); }
.l-collapsible summary:focus-visible {
  background: var(--card-hover);
}
.l-collapsible-summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-dim);
  font-weight: 500;
}
.l-collapsible-summary-text strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
}
.l-collapsible-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.l-collapsible-icon::before,
.l-collapsible-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform .3s ease, background .3s ease;
}
.l-collapsible-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 1px;
}
.l-collapsible-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
  border-radius: 1px;
}
.l-collapsible[open] .l-collapsible-icon::after {
  transform: scaleY(0);
}
.l-collapsible-body {
  padding: 4px 28px 32px;
  animation: collapseFade .4s ease both;
}
@keyframes collapseFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.l-collapsible-intro {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 640px;
}
.l-collapsible-artist[open] {
  border-color: color-mix(in srgb, #a049e0 35%, var(--card-border));
}

@media (max-width: 600px) {
  .l-collapsible summary { padding: 20px 22px; }
  .l-collapsible-body { padding: 4px 22px 24px; }
  .l-collapsible-summary-text strong { font-size: 15px; }
}

/* ── Subscriptions ── */
.l-subscription-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .l-subscription-grid { grid-template-columns: repeat(3, 1fr); }
}
.l-sub-card {
  position: relative;
  padding: 26px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s ease, transform .25s ease;
}
.l-sub-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.l-sub-card-featured {
  border-color: rgba(240,166,72,0.35);
  background: linear-gradient(180deg, rgba(240,166,72,0.04), var(--card-bg) 30%);
}
.l-sub-card-featured:hover {
  border-color: rgba(240,166,72,0.55);
}
.l-sub-badge {
  position: absolute;
  top: -1px;
  right: 18px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: #f0a648;
  color: #1a1208;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.l-sub-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
}
.l-sub-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  flex: 1;
}
.l-sub-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-top: 4px;
}
.l-sub-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0;
}
.l-sub-note {
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--text-muted);
}

/* ── Pack ── */
.l-pack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.l-pack-list li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.l-pack-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.l-pack-options {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--card-border);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.l-pack-options strong {
  color: var(--text);
  font-weight: 700;
}
.l-pack-options-label {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.l-pack-card {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  position: relative;
  overflow: visible;
}
.l-pack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 20px;
}
@media (max-width: 720px) {
  .l-pack-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px 28px;
    gap: 24px;
  }
}
.l-pack-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  padding: 7px 16px;
  border-radius: 99px;
  box-shadow: 0 8px 24px rgba(255,255,255,0.08);
  z-index: 2;
}
@media (max-width: 720px) {
  .l-pack-badge { left: 20px; top: -14px; }
}
.l-pack-left { flex: 1; }
.l-pack-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.l-pack-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 18px;
}
.l-pack-includes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}
.l-pack-includes span:nth-child(even) {
  color: var(--text-muted);
}
.l-pack-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .l-pack-right { align-items: flex-start; }
}
.l-pack-old-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.l-pack-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
}
.l-pack-saving {
  font-size: 12px;
  color: #4dd47a;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

/* ── Artist section ── */
.l-artist-card {
  display: flex;
  gap: 48px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid color-mix(in srgb, #a049e0 25%, var(--card-border));
  border-radius: 20px;
  transition: border-color .3s ease;
}
.l-artist-card:hover {
  border-color: color-mix(in srgb, #a049e0 40%, var(--card-border));
}
@media (max-width: 720px) {
  .l-artist-card {
    flex-direction: column;
    gap: 28px;
    padding: 28px 24px;
  }
}
.l-artist-left { flex: 1; }
.l-artist-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-artist-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 16px 0 10px;
}
.l-artist-promise {
  font-size: 16px;
  color: color-mix(in srgb, #a049e0 70%, var(--text));
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.l-artist-who {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  font-style: italic;
  border-left: 2px solid color-mix(in srgb, #a049e0 40%, transparent);
  padding-left: 20px;
}
.l-artist-selection {
  font-size: 13px;
  color: color-mix(in srgb, #a049e0 80%, var(--text));
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-artist-selection-icon {
  color: #a049e0;
  font-size: 10px;
}

/* ── Proof / Projects ── */
.l-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .l-proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .l-proof-grid { grid-template-columns: repeat(4, 1fr); }
}
.l-proof-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.l-proof-card:hover {
  border-color: rgba(255,255,255,0.28);
  background: var(--card-hover);
  transform: translateY(-3px);
}
.l-proof-card-social {
  border-color: color-mix(in srgb, #4dd47a 25%, var(--card-border));
}
.l-proof-card-social:hover {
  border-color: color-mix(in srgb, #4dd47a 50%, var(--card-border));
}
.l-proof-card-social .l-proof-name {
  color: #4dd47a;
}
.l-proof-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.l-proof-name {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
}
.l-proof-result {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 380px;
}
.l-proof-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 20px;
  color: var(--text-muted);
  transition: color .25s ease, transform .25s ease;
}
.l-proof-card:hover .l-proof-arrow {
  color: var(--text);
  transform: translate(3px, -3px);
}

/* ── CTA Final ── */
.l-cta-section {
  text-align: center;
}
.l-cta-title {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.l-cta-title br { display: block; }
@media (max-width: 600px) {
  .l-cta-title br { display: none; }
}
.l-cta-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 40px;
}
.l-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Formulaire de contact (remplace la prise de RDV directe) ── */
.l-contact-inner { max-width: 600px; margin: 0 auto; }
.l-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  margin: 8px auto 0;
  text-align: left;
}
.l-cf-row { display: flex; gap: 12px; }
.l-cf-row > .l-cf-input { flex: 1; min-width: 0; }
.l-cf-input,
.l-cf-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.l-cf-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.l-cf-input::placeholder,
.l-cf-textarea::placeholder { color: var(--text-muted); }
.l-cf-input:focus,
.l-cf-textarea:focus { border-color: rgba(255,255,255,0.4); background: var(--bg); }
.l-cf-submit { margin-top: 4px; align-self: center; min-width: 240px; }
.l-cf-note {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.l-cf-status { margin: 8px 0 0; font-size: 14px; min-height: 18px; text-align: center; }
@media (max-width: 540px) {
  .l-cf-row { flex-direction: column; }
  .l-cf-submit { min-width: 0; width: 100%; }
}

/* ── Formulaire du HERO (haut de page) : même style, présenté dans une carte ── */
.l-hero-form-wrap {
  max-width: 540px;
  margin: 4px auto 0;
  padding: 22px 22px 18px;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.l-hero-form-title {
  margin: 0 0 4px;
  font-size: clamp(18px, 3.4vw, 22px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.01em;
}
.l-hero-form-q {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  text-align: center;
}
.l-contact-form--hero { margin-top: 0; }
.l-contact-form--hero .l-cf-submit { width: 100%; min-width: 0; }

/* ── Footer ── */
.l-footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--card-border);
  padding: 28px 0;
}
.l-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.l-footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.l-footer-links {
  display: flex;
  gap: 20px;
}
.l-footer-link {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.l-footer-link:hover {
  color: var(--text);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  mark.l-hero-mark::after,
  .l-hero-accent-bar span,
  .l-problem-item,
  .l-problem-num,
  .l-hero-eyebrow,
  .l-hero-title,
  .l-hero-sub,
  .l-hero-trust,
  .l-hero-scroll-line,
  .l-lamp-hint-arrow {
    animation: none !important;
  }
}

/* ── Deux chemins ── */
.l-paths-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 0;
}
.l-paths-divider-line {
  flex: 1;
  height: 1px;
  background: var(--card-border);
}
.l-paths-divider-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.l-recurring-block {
  margin-top: 40px;
}
.l-recurring-header {
  margin-bottom: 16px;
}
.l-recurring-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin: 10px 0 0;
  max-width: 520px;
  line-height: 1.55;
}

/* ============================================================
   RESTRUCTURE 2026 — Home lean + Services catalog
   ============================================================ */

/* Nav with multiple actions */
.l-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-nav-name {
  text-decoration: none;
  color: var(--text);
  transition: opacity .25s ease;
}
.l-nav-name:hover {
  opacity: 0.75;
}
.l-nav-link-primary {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.l-nav-link-primary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}

/* Hero CTA pair */
.l-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 28px;
  animation: fadeUp 1.1s ease both .45s;
}
@media (max-width: 520px) {
  .l-hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .l-hero-cta a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Mini hero for services page */
.l-hero-mini {
  padding: clamp(40px, 6vw, 80px) 0 clamp(36px, 5vw, 60px);
}
.l-hero-title-mini {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

/* Compact problem section (home) */
.l-problem-compact {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.l-problem-compact .l-problem-head {
  margin-bottom: 32px;
}
.l-problem-compact .l-problem-headline {
  font-size: clamp(26px, 4vw, 42px);
}

/* Offer card as link (home) */
.l-offer-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.l-offer-card-link:hover {
  transform: translateY(-4px);
  border-color: var(--offer-c);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.l-offer-card-link .l-offer-price {
  margin-top: auto;
}
.l-offer-link-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--offer-c);
  transition: gap .3s ease;
}
.l-offer-card-link:hover .l-offer-link-text {
  gap: 12px;
}

/* Offers extra : pack callout strip */
.l-offers-extra {
  margin-top: 36px;
}
.l-extra-link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(232,156,47,0.08), rgba(232,156,47,0.03) 60%, transparent);
  border: 1px solid rgba(232,156,47,0.25);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.l-extra-link:hover {
  border-color: rgba(232,156,47,0.5);
  background: linear-gradient(90deg, rgba(232,156,47,0.12), rgba(232,156,47,0.04) 60%, transparent);
  transform: translateX(4px);
}
.l-extra-link strong {
  color: var(--text);
  font-weight: 700;
}
.l-extra-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(232,156,47,0.15);
  color: #e89c2f;
  border: 1px solid rgba(232,156,47,0.35);
}
.l-extra-arrow {
  margin-left: auto;
  font-size: 18px;
  color: #e89c2f;
  font-weight: 600;
}

/* Compact proof (home) */
.l-proof-compact .l-proof-card {
  min-height: auto;
  padding: 22px 24px;
}
.l-proof-compact .l-proof-name {
  font-size: 24px;
  margin-bottom: 6px;
}
.l-proof-compact .l-proof-result {
  font-size: 13.5px;
  line-height: 1.5;
}

/* ============================================================
   MODALES (native <dialog>) — pattern progressive disclosure
   ============================================================ */

dialog.l-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100dvh;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
dialog.l-modal::backdrop {
  background: rgba(8, 8, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.l-modal:not([open]) {
  display: none;
}
.l-modal[open] {
  /* Centered card on desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  animation: modalFadeIn .35s ease both;
}
.l-modal[open]::backdrop {
  animation: backdropFadeIn .35s ease both;
}
@keyframes backdropFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes modalFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(16px); }
}
.l-modal-closing {
  animation: modalFadeOut .25s ease both !important;
  pointer-events: none !important;
}

.l-modal-inner {
  width: 100%;
  max-width: 720px;
  margin: clamp(40px, 8vh, 80px) auto 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px 20px 0 0;
  padding: 36px 36px 28px;
  color: var(--text);
  position: relative;
}
.l-modal-footer {
  width: 100%;
  max-width: 720px;
  margin: 0 auto clamp(40px, 8vh, 80px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 22px 36px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}

.l-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
  z-index: 2;
}
.l-modal-close:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.08);
  transform: rotate(90deg);
}

.l-modal-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--offer-c, var(--card-border));
  color: var(--offer-c, var(--text-dim));
  background: color-mix(in srgb, var(--offer-c, transparent) 8%, transparent);
  margin-bottom: 18px;
}
.l-modal-badge-strong {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid rgba(232,156,47,0.35);
  color: #e89c2f;
  background: rgba(232,156,47,0.12);
  margin-bottom: 18px;
}
.l-modal-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.l-modal-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 28px;
}
.l-modal-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}
.l-modal-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.l-modal-h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.l-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-modal-list li {
  font-size: 14.5px;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  color: var(--text-dim);
}
.l-modal-list li strong {
  color: var(--text);
}
.l-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}
.l-modal-list-ordered {
  counter-reset: step;
}
.l-modal-list-ordered li {
  counter-increment: step;
  padding-left: 32px;
}
.l-modal-list-ordered li::before {
  content: counter(step);
  background: transparent;
  border: 1px solid var(--card-border);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  top: 0;
}
.l-modal-list-pricing li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0 12px 0;
  border-bottom: 1px dashed var(--card-border);
}
.l-modal-list-pricing li::before { display: none; }
.l-modal-list-pricing li:last-child { border-bottom: none; }
.l-modal-list-pricing li span {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.l-modal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 14px 0 0;
  font-style: italic;
}

.l-modal-price {
  font-size: 15px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.l-modal-price strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  font-style: normal;
}
.l-modal-price-old {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--text-muted);
}
.l-modal-price-save {
  font-size: 11px;
  color: #4dd47a;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Sub cards inside abonnements modal */
.l-modal-subs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
@media (min-width: 720px) {
  .l-modal-subs-grid { grid-template-columns: repeat(2, 1fr); }
}
.l-modal-sub {
  padding: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-modal-sub-featured {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.045);
}
.l-modal-sub-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--text);
  color: var(--bg);
}
.l-modal-sub-name {
  font-size: 16px;
  font-weight: 700;
}
.l-modal-sub-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  flex: 1;
}
.l-modal-sub-price strong {
  font-size: 22px;
  font-weight: 700;
}
.l-modal-sub-price span {
  font-size: 13px;
  color: var(--text-muted);
}
.l-modal-sub-note {
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--text-muted);
}

/* Webview modal (full-screen iframe) */
.l-modal-webview .l-modal-webview-header,
.l-modal-webview .l-modal-webview-body {
  margin: 0;
  max-width: 100%;
}
.l-modal-webview {
  align-items: stretch;
  justify-content: stretch;
}
.l-modal-webview-header {
  width: 100%;
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 3;
}
.l-modal-webview-header > div:nth-of-type(1) {
  flex: 1;
  min-width: 200px;
}
.l-modal-webview-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.l-modal-webview-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.01em;
}
.l-modal-webview-cta {
  flex-shrink: 0;
}
.l-modal-close-inline {
  position: static;
  margin-right: 4px;
}
.l-modal-webview-body {
  flex: 1;
  background: var(--bg);
  display: flex;
  width: 100%;
}
.l-modal-webview-body iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Offer button-as-card */
.l-offer-card-btn {
  font-family: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  appearance: none;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.l-offer-card-btn:hover {
  transform: translateY(-4px);
  border-color: var(--offer-c);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.l-offer-card-btn:focus-visible {
  outline: 2px solid var(--offer-c);
  outline-offset: 4px;
}

/* Pack callout as button */
.l-extra-link-btn {
  font-family: inherit;
  width: 100%;
  appearance: none;
  cursor: pointer;
  text-align: left;
}

/* Proof card as button */
.l-proof-card-btn {
  font-family: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  background: var(--card-bg);
  color: inherit;
  width: 100%;
}
.l-proof-card-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.4);
  outline-offset: 4px;
}

/* Secondary text links (abonnements / artistes) */
.l-secondary-links {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.l-text-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-dim);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--card-border);
  text-underline-offset: 4px;
  transition: color .25s ease, text-decoration-color .25s ease;
}
.l-text-link:hover {
  color: var(--text);
  text-decoration-color: var(--text);
}
.l-text-sep {
  color: var(--text-muted);
}

/* Problem section refinements */
.l-problem-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-dim);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* Mobile : modals take full screen, footer stays at bottom */
@media (max-width: 720px) {
  .l-modal-inner,
  .l-modal-footer {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding-left: 22px;
    padding-right: 22px;
  }
  .l-modal-inner {
    flex: 1;
    overflow-y: auto;
    border-top: none;
  }
  .l-modal-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .l-modal-footer .l-btn-primary {
    justify-content: center;
  }
  .l-modal {
    display: flex;
    flex-direction: column;
  }
}

/* Footer meta — bloc SEO/GEO discret */
.l-footer-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.l-footer-meta-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  max-width: 880px;
}
.l-footer-meta-text a {
  color: rgba(255,255,255,0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
}
[data-theme="light"] .l-footer-meta {
  border-top-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .l-footer-meta-text {
  color: rgba(0,0,0,0.5);
}
[data-theme="light"] .l-footer-meta-text a {
  color: rgba(0,0,0,0.68);
}

/* ============================================================
   OFFRE PRÉSENCE — Bloc réassurance "même si…"
   ============================================================ */
.l-offer-reassure {
  list-style: none;
  margin: 14px 0 6px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--offer-c, var(--accent)) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--offer-c, var(--accent)) 22%, transparent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-offer-reassure li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}
.l-offer-reassure li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: color-mix(in srgb, var(--offer-c, var(--accent)) 85%, var(--text));
  font-weight: 700;
  font-size: 13px;
}
.l-offer-reassure li strong {
  color: var(--text);
  font-weight: 700;
}
.l-offer-reassure-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin: 4px 0 0;
  font-style: italic;
}

/* ============================================================
   PREUVES
   ============================================================ */

/* ============================================================
   OBJECTIONS — "Et si…" (accordéon)
   Resets explicites : <details> et <summary> ont des styles
   navigateur forts (display: list-item, markers, focus rings).
   ============================================================ */
.l-objections-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}
.l-objection-item {
  border-bottom: 1px solid var(--card-border);
  margin: 0;
  padding: 0;
}
.l-objection-item:last-child {
  border-bottom: none;
}
.l-objection-q {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
  line-height: 1.4;
  transition: background .25s ease;
  user-select: none;
  outline: none;
}
.l-objection-q::-webkit-details-marker,
.l-objection-q::marker {
  display: none;
  content: '';
}
.l-objection-q:hover {
  background: rgba(255,255,255,0.025);
}
.l-objection-q:focus-visible {
  background: rgba(255,255,255,0.04);
}
.l-objection-chevron {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), color .3s ease;
}
.l-objection-item[open] .l-objection-chevron {
  transform: rotate(180deg);
  color: #1bbcd8;
}
.l-objection-a {
  padding: 0 24px 18px 54px;
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  animation: collapseFade .3s ease both;
}
.l-objection-a p {
  margin: 0;
  padding: 0;
}
.l-objection-a p + p {
  margin-top: 10px;
}
.l-objection-guarantee {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(77, 212, 122, 0.07);
  border: 1px solid rgba(77, 212, 122, 0.22);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #4dd47a;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .l-objection-q { padding: 16px 20px; font-size: 14px; gap: 12px; }
  .l-objection-a { padding: 0 20px 16px 48px; font-size: 13.5px; }
}

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.l-sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--text);
  color: var(--bg);
  border-radius: 99px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform .25s ease, opacity .25s ease;
}
.l-sticky-cta:hover {
  transform: translateY(-2px);
}
.l-sticky-cta:active {
  transform: translateY(0);
  opacity: 0.92;
}
.l-sticky-cta-arrow {
  font-size: 18px;
  font-weight: 500;
  transition: transform .25s ease;
}
.l-sticky-cta:hover .l-sticky-cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .l-sticky-cta {
    display: flex;
  }
  .l-footer {
    padding-bottom: 80px;
  }
}

/* ── Qualification radio (formulaire contact) ── */
.l-form-radio-group { margin: 4px 0 10px; }
.l-form-radio-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.l-form-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  margin-bottom: 6px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.l-form-radio-item:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text);
}
.l-form-radio-item input[type="radio"] {
  accent-color: var(--text);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.l-form-radio-item:has(input:checked) {
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

/* lien Articles dans la nav centrée (posé à droite, discret) */
.l-nav-centered { position: relative; }
.l-nav-articles {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
}
@media (max-width: 600px) { .l-nav-articles { right: 18px; } }

/* ── Section Articles (landing) — alimentée par articles.json ── */
.l-articles-list {
  display: flex; flex-direction: column; gap: 12px;
}
.l-article-item {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 22px;
  text-decoration: none; color: inherit;
  transition: background .2s, border-color .2s, transform .2s;
}
.l-article-item:hover {
  background: var(--card-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.l-article-date {
  display: block;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.l-article-title {
  display: block;
  font-size: 16px; font-weight: 600; line-height: 1.35;
  color: var(--text); margin-bottom: 4px;
}
.l-article-excerpt {
  display: block;
  font-size: 13px; color: var(--text-dim); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.l-articles-more { margin-top: 18px; text-align: center; }
.l-articles-all {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--text-dim); text-decoration: none;
  transition: color .2s;
}
.l-articles-all:hover { color: var(--accent); }
