/* ============================================
   CREATIVE CAPSULE — V3
   Design Parla Studio (light minimaliste premium)
   Contenu V2 (brief Google Doc)
   ============================================ */

:root {
  /* Palette */
  --bg: #FFFFFF;
  --bg-alt: #F5F4F1;
  --bg-dark: #0F0F0F;
  --ink: #0F0F0F;
  --ink-2: #2A2A2A;
  --muted: #6B6B6B;
  --line: #E8E7E3;
  --rec: #E53E3E;
  --green: #4ADE80;
  --green-dark: #22C55E;

  /* Typo */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 10vw, 140px);
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

/* Offset les ancres pour qu'elles ne soient pas cachées sous la nav sticky */
section[id] { scroll-margin-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* .text-accent : italique serif éditorial (style Parla) + accent vert */
.text-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--green-dark);
}
/* Sur fond sombre, basculer en vert vif (meilleur contraste) */
.cta-final .text-accent { color: var(--green); }
.step--you .text-accent,
.plan--featured .text-accent { color: #0F0F0F; }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
  line-height: 1.55;
}

.section-head { margin-bottom: 60px; max-width: 760px; }

.section--alt { background: var(--bg-alt); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--green);
  color: #0F0F0F;
}
.btn--primary:hover { background: var(--green-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-alt); }

.btn--large { padding: 18px 32px; font-size: 16px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
  color: var(--ink);
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 24px;
}

.nav__logo { color: var(--ink); }
.nav__logo img { height: 26px; }

.nav__links {
  display: flex;
  gap: 30px;
  font-size: 15px;
  color: var(--ink-2);
}
.nav__links a { transition: color 0.15s ease; }
.nav__links a:hover { color: var(--muted); }

@media (max-width: 880px) { .nav__links { display: none; } }

/* ============================================
   HERO + MARQUEE VIDÉOS
   ============================================ */
.hero {
  position: relative;
  padding-block: clamp(60px, 8vw, 90px) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__glow { display: none; }

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  flex-shrink: 0;
}

/* Marquee : bande de vignettes vidéo qui défilent en boucle infinie */
.hero__marquee {
  position: relative;
  margin-top: clamp(36px, 5vw, 60px);
  width: 100%;
  height: 220px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  pointer-events: none;
}

.hero__marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: heroMarquee 50s linear infinite;
  padding-inline: 20px;
}

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

.marquee-item {
  flex: 0 0 auto;
  width: 130px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.marquee-item:nth-child(even) { transform: rotate(5deg); }
.marquee-item:nth-child(3n) { transform: rotate(-3deg); }
.marquee-item:nth-child(4n) { transform: rotate(4deg); }

.marquee-item img,
.marquee-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  pointer-events: none;
}

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

/* ============================================
   PROOF SECTION (bandeau autonome après hero)
   ============================================ */
.proof-section {
  padding-block: 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.5);
  animation: recPulse 1.6s ease-out infinite;
}

@keyframes recPulse {
  0%   { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.5); opacity: 1; }
  70%  { box-shadow: 0 0 0 14px rgba(229, 62, 62, 0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); opacity: 1; }
}

.rec-label { letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; font-weight: 500; }

.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }

.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Proof bar : 4 métriques */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 880px;
  margin-inline: auto;
}
.proof-bar li {
  background: var(--bg);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-bar strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.proof-bar span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 720px) { .proof-bar { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   PROBLEM
   ============================================ */
.problem { padding-block: var(--section-y); }
.problem .section-head { margin-bottom: 50px; }

.blockers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin-bottom: 56px;
}
.blockers li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.blockers li strong { color: var(--ink); font-weight: 500; }

.cross {
  color: var(--rec);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 3px;
}

.pivot {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  max-width: 780px;
  padding-left: 22px;
  border-left: 2px solid var(--ink);
  letter-spacing: -0.02em;
}

/* ============================================
   SOLUTION
   ============================================ */
.solution { padding-block: var(--section-y); }

.def-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.def-block__lead {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.def-block__lead em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

.def-block__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.def-block__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.def-block__pills li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 14px;
  background: var(--bg-alt);
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* Solution intro : layout 2 cols (texte + mockup smartphone) */
.solution__intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .solution__intro { grid-template-columns: 1fr; gap: 32px; }
  .solution__phone { order: -1; }
}

.solution__phone { display: flex; justify-content: center; }

/* Mockup smartphone (frame iPhone-like) */
.phone-mockup {
  position: relative;
  width: 230px;
  aspect-ratio: 9 / 19;
  background: #0F0F0F;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1A1A1A,
    0 30px 60px -25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0F0F0F;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-mockup iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 28px;
  display: block;
  pointer-events: none;
}

/* ============================================
   INTERVIEWER — section "À propos"
   ============================================ */
.interviewer { padding-block: var(--section-y); background: var(--bg-alt); }

.interviewer__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .interviewer__grid { grid-template-columns: 1fr; gap: 36px; }
}

.interviewer__photo {
  position: relative;
}
.interviewer__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.25);
  display: block;
}

.interviewer__content .eyebrow { color: var(--muted); }
.interviewer__content .section-title { margin-bottom: 24px; }

.interviewer__bio {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 56ch;
}
.interviewer__bio:last-of-type { margin-bottom: 32px; }

.interviewer__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 540px) {
  .interviewer__pillars { grid-template-columns: 1fr; }
}
.interviewer__pillars li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.interviewer__pillars strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.interviewer__pillars span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.solution__detail {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}
.solution__detail p { margin: 0; line-height: 1.65; }
.solution__detail strong { color: var(--ink); font-weight: 500; }

/* Comparaison "Ce que ce n'est pas / Ce que c'est" */
.solution__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 880px) { .solution__compare { grid-template-columns: 1fr; } }

.sol-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sol-card:hover { transform: translateY(-2px); }

.sol-card--not { background: var(--bg-alt); }
.sol-card--is {
  background: var(--bg);
  border-left: 3px solid var(--green-dark);
}

.sol-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sol-card h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.sol-card--not h3 em { color: var(--muted); }
.sol-card--is h3 em { color: var(--green-dark); }

.sol-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sol-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.5;
}
.sol-card--not li { color: var(--muted); }
.sol-card--not .cross { margin-top: 3px; flex-shrink: 0; }
.sol-card--is .check { margin-top: 1px; flex-shrink: 0; font-size: 1.05rem; }

/* ============================================
   PROCESS 6 ÉTAPES — TIMELINE VERTICALE
   ============================================ */
.process { padding-block: var(--section-y); }

.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
}

/* Ligne verticale qui connecte les markers */
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 39px;
  width: 2px;
  background: var(--line);
  z-index: 0;
}
@media (max-width: 540px) {
  .timeline::before { left: 27px; }
}

.timeline__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
  align-items: flex-start;
}
.timeline__step:last-child { padding-bottom: 0; }

@media (max-width: 540px) {
  .timeline__step { grid-template-columns: 56px 1fr; gap: 18px; }
}

/* Marker rond avec numéro */
.timeline__marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
@media (max-width: 540px) {
  .timeline__marker { width: 56px; height: 56px; }
}

.timeline__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
@media (max-width: 540px) {
  .timeline__num { font-size: 1.3rem; }
}

/* Étape VOUS (la 03) : marker vert mis en évidence */
.timeline__step--vous .timeline__marker {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.05);
  box-shadow: 0 12px 30px -10px rgba(74, 222, 128, 0.5);
}
.timeline__step--vous .timeline__num { color: #0F0F0F; }

.timeline__body {
  padding-top: 18px;
}
@media (max-width: 540px) {
  .timeline__body { padding-top: 6px; }
}

.timeline__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.timeline__head h3 {
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.timeline__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 56ch;
}
.timeline__body strong {
  color: var(--ink);
  font-weight: 500;
}

/* Animation reveal stagger par étape (le delay est appliqué sur chaque .timeline__step.reveal) */
.timeline__step.reveal { transition-delay: 0ms; }
.timeline__step:nth-child(2).reveal { transition-delay: 80ms; }
.timeline__step:nth-child(3).reveal { transition-delay: 160ms; }
.timeline__step:nth-child(4).reveal { transition-delay: 240ms; }
.timeline__step:nth-child(5).reveal { transition-delay: 320ms; }
.timeline__step:nth-child(6).reveal { transition-delay: 400ms; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge--nous {
  background: var(--bg-alt);
  color: var(--muted);
}
.step--you .badge--nous {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.badge--vous {
  background: #0F0F0F;
  color: var(--green);
}
.step--you .badge--nous {
  background: rgba(15, 15, 15, 0.12);
  color: rgba(15, 15, 15, 0.65);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ============================================
   INCLUDED — features grid
   ============================================ */
.included { padding-block: var(--section-y); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 32px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover { border-color: var(--ink); transform: translateY(-2px); }

.feature__icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  line-height: 1;
}

.feature h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============================================
   EXAMPLES — carrousel horizontal
   ============================================ */
.examples { padding-block: var(--section-y); }
.examples .section-head { margin-bottom: 40px; }

.vcarousel {
  margin-block: 0 60px;
  position: relative;
}

.vcarousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding-inline: var(--gutter);
  padding-block: 8px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--ink) transparent;
}
.vcarousel__track::-webkit-scrollbar { height: 6px; }
.vcarousel__track::-webkit-scrollbar-track { background: transparent; }
.vcarousel__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.vcarousel__track::-webkit-scrollbar-thumb:hover { background: var(--muted); }

.vcarousel__hint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* Phone frame (vertical 9:16) */
.phone-frame {
  flex: 0 0 240px;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}
.phone-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.phone-frame--small { flex: 0 0 auto; width: 100%; }
.phone-frame__caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 10px;
  border-radius: 4px;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Vidéo 16:9 */
.video-16x9 {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.2);
}
.video-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.long-example { margin-top: 20px; }
.long-example__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}

/* ============================================
   COMPARE TABLE
   ============================================ */
.compare { padding-block: var(--section-y); }

.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare__table th,
.compare__table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.compare__table th {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg-alt);
  text-transform: uppercase;
}
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__table td:first-child { color: var(--ink); font-weight: 500; }

.compare__featured {
  background: rgba(15, 15, 15, 0.04);
  color: var(--ink) !important;
  position: relative;
}
th.compare__featured {
  background: var(--green) !important;
  color: #0F0F0F !important;
  letter-spacing: 0.08em;
  font-weight: 700;
}
td.compare__featured {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.compare__featured strong { color: var(--ink); font-weight: 600; }

.check { color: var(--green-dark); font-weight: 700; margin-right: 4px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding-block: var(--section-y); }

.testimonial-main {
  margin-bottom: 32px;
  max-width: 900px;
  margin-inline: auto;
}

/* Grille unique des 5 témoignages verticaux, sur une seule ligne en desktop */
.testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.testimonials__grid .phone-frame {
  flex: 0 0 calc((100% - 64px) / 5);
  max-width: 210px;
}
@media (max-width: 980px) {
  .testimonials__grid .phone-frame { flex: 0 0 calc((100% - 28px) / 3); max-width: none; }
}
@media (max-width: 540px) {
  .testimonials__grid .phone-frame { flex: 0 0 calc((100% - 14px) / 2); }
}

/* ============================================
   PRICING
   ============================================ */
.pricing { padding-block: var(--section-y); }

.info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.info-bar li {
  background: var(--bg);
  padding: 18px 20px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-bar strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) { .info-bar { grid-template-columns: 1fr; } }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.12); }

/* Pack Lancement featured : fond vert (signature Parla Premium) */
.plan--featured {
  background: var(--green);
  color: #0F0F0F;
  border-color: var(--green);
}
.plan--featured .plan__name,
.plan--featured .plan__price strong { color: #0F0F0F; }
.plan--featured .plan__tag,
.plan--featured .plan__price span { color: rgba(15, 15, 15, 0.7); }
.plan--featured .plan__features li { color: rgba(15, 15, 15, 0.85); }
.plan--featured .plan__features li.muted { color: rgba(15, 15, 15, 0.45); }
.plan--featured .plan__features li { border-color: rgba(15, 15, 15, 0.12); }
.plan--featured .plan__price { border-bottom-color: rgba(15, 15, 15, 0.18); }
.plan--featured .check { color: #0F0F0F; }
.plan--featured .dot { color: rgba(15, 15, 15, 0.45); }
.plan--featured .btn--primary { background: #0F0F0F; color: var(--green); }
.plan--featured .btn--primary:hover { background: #000; color: var(--green); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0F0F0F;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.plan__badge--alt {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--line);
}

.plan__name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.plan__tag {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 20px;
}

.plan__price {
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan__price strong {
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.plan__price span {
  font-size: 0.85rem;
  color: var(--muted);
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan__features li {
  font-size: 0.95rem;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}
.plan__features li.muted { color: var(--muted); opacity: 0.7; }
.dot { color: var(--muted); font-weight: 700; }

.plan__calc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan__calc strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.plan__calc-tag {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.plan__calc-vs {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.plan__calc-vs s {
  color: var(--ink-2);
  text-decoration-thickness: 1px;
}

/* Note discrète sous la liste de la card Découverte */
.plan__note {
  margin: 4px 0 18px;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.45;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.plan .btn { align-self: stretch; justify-content: center; }

.pricing__reassurance {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding-block: var(--section-y); }
.faq__container { max-width: 900px; }

.faq__list { border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green-dark);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--green-dark); }

.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 75ch;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   CTA FINAL (fond noir, signature Parla)
   ============================================ */
.cta-final {
  position: relative;
  padding-block: var(--section-y);
  text-align: center;
  background: var(--bg-dark);
  color: #fff;
}
.cta-final__glow { display: none; }
.cta-final .container { position: relative; z-index: 1; }

.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: #fff;
}

.cta-final__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0 auto 36px;
  max-width: 60ch;
  line-height: 1.6;
}

.cta-final .btn--primary {
  background: var(--green);
  color: #0F0F0F;
}
.cta-final .btn--primary:hover { background: var(--green-dark); }

.cta-final__reassurance {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding-block: 50px 24px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo { height: 24px; }
.footer__brand p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.footer__base {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer__base p { margin: 0; color: var(--muted); font-size: 13px; }

/* ============================================
   ANIMATIONS — fade in on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .rec-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   ARTICLE — pages SEO/GEO long-form
   (pages /studio-video-distanciel/, etc.)
   ============================================ */
.article {
  padding-block: clamp(50px, 8vw, 100px) clamp(80px, 10vw, 140px);
}

.article__container {
  max-width: 820px;
}

.article__header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.article__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.article__breadcrumb a {
  color: var(--muted);
  transition: color 0.15s ease;
}
.article__breadcrumb a:hover { color: var(--green-dark); }
.article__breadcrumb span[aria-hidden] { opacity: 0.5; }

.article__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  font-weight: 600;
}
.article__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

.article__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 70ch;
}

/* Table des matières */
.article__toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 64px;
}
.article__toc-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 18px;
}
.article__toc ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
@media (max-width: 720px) {
  .article__toc ol { grid-template-columns: 1fr; }
  .article__toc { padding: 22px 24px; }
}
.article__toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.article__toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 400;
}
.article__toc a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s ease;
}
.article__toc a:hover { color: var(--green-dark); }

/* Corps de l'article */
.article__body { font-size: 1.05rem; line-height: 1.7; color: var(--ink-2); }

.article__body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 64px 0 18px;
  scroll-margin-top: 80px;
}

.article__body h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
}

.article__body p {
  margin: 0 0 18px;
  max-width: 72ch;
}

.article__body strong { color: var(--ink); font-weight: 600; }

.article__body ul,
.article__body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  max-width: 72ch;
}
.article__body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.article__body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dark);
}
.article__body ol {
  counter-reset: items;
}
.article__body ol li {
  counter-increment: items;
}
.article__body ol li::before {
  content: counter(items) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  font-size: 1.05rem;
}

/* Tableau comparatif article */
.article__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  margin: 12px 0 32px;
}
.article__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.93rem;
}
.article__table th,
.article__table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.article__table th {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-alt);
}
.article__table tbody tr:last-child td { border-bottom: 0; }
.article__table td:first-child { color: var(--ink); font-weight: 500; }

.article__table-row--highlight td {
  background: rgba(74, 222, 128, 0.08);
  color: var(--ink);
}
.article__table-row--highlight td:first-child { border-left: 3px solid var(--green); }

/* CTA fin d'article */
.article__cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.article__cta .btn { white-space: normal; line-height: 1.3; }
