/* ============================================================
   PLANÈTE MANEKI — Audit Itinéraire Japon
   Brand System identique Travel Planning
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600;1,9..144,700&family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --paper:  #F8F5F0;
  --ink:    #1A1410;
  --red:    #B83A28;
  --gold:   #C9A96E;
  --muted:  #8A7E72;
  --ivory:  #F2EDE4;
  --dark:   #1A1410;
  --border: rgba(26,20,16,0.10);
  --max:    1120px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label.light { color: rgba(242,237,228,0.4); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted); transition: color .15s; }
.header-nav a:hover { color: var(--ink); }
.header-cta {
  background: var(--ink);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 2px;
  transition: opacity .15s;
}
.header-cta:hover { opacity: .85; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--red); }
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--red); }
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 500; }
.hero-cta-block { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .12s;
  text-decoration: none;
}
.cta-primary:hover { opacity: .88; transform: translateY(-1px); }
.cta-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.cta-price sup { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); font-weight: 400; vertical-align: super; }
.cta-delivery {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .10em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.5;
}

/* Hero illustration container */
.hero-visual {
  position: relative;
  width: 100%;
}
.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   POURQUOI SECTION
   ================================================================ */
.pourquoi {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.pourquoi-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}
.pourquoi-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.pourquoi-h2 em { font-style: italic; color: var(--red); }
.pourquoi-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.pourquoi-intro strong { color: var(--ink); font-weight: 500; }
.erreurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.erreur-card {
  background: #FDFBF8;
  padding: 28px 24px;
}
.erreur-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.erreur-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.erreur-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.erreur-cout {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .10em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}

/* ================================================================
   CE QUE J'ANALYSE
   ================================================================ */
.analyse {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.analyse-header { margin-bottom: 48px; }
.analyse-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.analyse-h2 em { font-style: italic; color: var(--red); }
.analyse-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}
.analyse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.analyse-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  align-items: start;
}
.analyse-item:nth-child(even) { border-right: none; padding-left: 28px; padding-right: 0; }
.analyse-item:nth-last-child(-n+2) { border-bottom: none; }
.analyse-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184,58,40,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.analyse-icon svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.analyse-text {}
.analyse-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}
.analyse-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================================
   CE QUE VOUS RECEVEZ
   ================================================================ */
.livrable {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
  background: #FDFBF8;
}
.livrable-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.livrable-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.livrable-h2 em { font-style: italic; color: var(--red); }
.livrable-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.livrable-list { border-top: 1px solid var(--border); }
.livrable-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.livrable-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}
.livrable-item-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.livrable-item-text strong { font-weight: 500; }

/* Livrable visual card */
.livrable-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.lc-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(26,20,16,0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-title-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .10em;
  color: var(--muted);
  text-transform: uppercase;
}
.lc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.lc-body { padding: 22px 20px; }
.lc-section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lc-verdict {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.lc-comment {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.lc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.lc-tag-warn { background: rgba(201,169,110,0.12); color: #7A5F2A; }
.lc-tag-ok { background: rgba(15,100,70,0.08); color: #0F6446; }
.lc-tag-fix { background: rgba(184,58,40,0.08); color: var(--red); }
.lc-footer {
  padding: 12px 20px;
  background: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .10em;
  color: rgba(242,237,228,0.45);
  text-transform: uppercase;
}

/* ================================================================
   POUR QUI
   ================================================================ */
.pour-qui {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.pour-qui-header { margin-bottom: 48px; }
.pour-qui-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.pour-qui-h2 em { font-style: italic; color: var(--red); }
.pq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pq-card {
  background: #FDFBF8;
  padding: 28px 24px;
}
.pq-profile {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pq-profile::before { content: '—'; }
.pq-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
}
.pq-text strong { font-weight: 500; }

/* ================================================================
   PROCESS
   ================================================================ */
.process {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.process-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 48px;
}
.process-h2 em { font-style: italic; color: var(--red); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.process-step {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.ps-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.ps-title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.ps-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.ps-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(184,58,40,0.3);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* ================================================================
   PRICING BLOCK
   ================================================================ */
.pricing {
  padding: 88px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(242,237,228,0.08);
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.pricing-left {}
.pricing-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pricing-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--red); }
.pricing-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 20px;
}
.pricing-h2 em { font-style: italic; color: var(--red); }
.pricing-rationnel {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,237,228,0.5);
  line-height: 1.7;
}
.pricing-rationnel strong { color: var(--ivory); font-weight: 500; }
.pricing-card {
  background: #FDFBF8;
  border: 1px solid rgba(242,237,228,0.08);
  border-radius: 2px;
  padding: 36px 32px;
}
.pc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pc-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pc-name em { font-style: italic; }
.pc-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.pc-price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-price sup { font-family: 'JetBrains Mono', monospace; font-size: 18px; color: var(--muted); font-weight: 400; vertical-align: super; }
.pc-delivery {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pc-includes { margin-bottom: 24px; }
.pc-include-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(26,20,16,0.05);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink);
}
.pc-include-item:last-child { border-bottom: none; }
.pc-include-item::before { content: '→'; color: var(--red); font-family: 'JetBrains Mono', monospace; font-size: 11px; flex-shrink: 0; }
.pc-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
}
.pc-cta:hover { opacity: .88; }
.pc-upsell {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.pc-upsell a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.faq-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 48px;
}
.faq-h2 em { font-style: italic; color: var(--red); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.faq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .10em;
  color: var(--red);
  padding-top: 2px;
}
.faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
.faq-q em { font-style: italic; font-weight: 400; }
.faq-a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.faq-a strong { color: var(--ink); font-weight: 500; }

/* ================================================================
   CTA FINAL
   ================================================================ */
.cta-final {
  background: var(--dark);
  padding: 96px 0;
}
.cta-final-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}
.cta-final-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 16px;
}
.cta-final-h2 em { font-style: italic; color: var(--red); }
.cta-final-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,237,228,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-final-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.2);
  margin-top: 20px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(242,237,228,0.06);
  padding: 28px 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(242,237,228,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(242,237,228,0.3); transition: color .15s; }
.footer-links a:hover { color: rgba(242,237,228,0.6); }
.footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .10em; color: rgba(242,237,228,0.18); text-transform: uppercase; }

/* ================================================================
   STICKY CTA
   ================================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid rgba(242,237,228,0.10);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-left { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(242,237,228,0.45); }
.sticky-left strong { display: block; color: var(--ivory); font-size: 14px; }
.sticky-btn {
  background: var(--red);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
}
.sticky-btn:hover { opacity: .88; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .container, .header-inner, .hero-inner, .footer-inner { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr 400px; gap: 48px; }
  .erreurs-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .container, .header-inner, .hero-inner, .footer-inner,
  .pricing .container, .cta-final-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 300px; }
  .pourquoi-header { grid-template-columns: 1fr; gap: 20px; }
  .erreurs-grid { grid-template-columns: 1fr; }
  .analyse-grid { grid-template-columns: 1fr; }
  .analyse-item { border-right: none; padding-left: 0; padding-right: 0; }
  .analyse-item:nth-child(even) { border-right: none; padding-left: 0; }
  .analyse-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .analyse-item:last-child { border-bottom: none; }
  .livrable-inner { grid-template-columns: 1fr; gap: 40px; }
  .livrable-card { position: static; }
  .pq-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .pricing-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing .container { padding: 0 20px; }
  .faq-item { grid-template-columns: 44px 1fr; }
  .faq-a { grid-column: 2; }
  .footer-inner { flex-direction: column; gap: 16px; padding: 0 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .sticky-cta { padding: 12px 20px; }
}
