/* ============================================================
   SKOD V2 — Shared Styles
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  --violet: #2a27c0;
  --violet-light: #ededff;
  --violet-mid: #4a47d4;
  --violet-dark: #1e1b8a;
  --dark: #111118;
  --gray-900: #1a1a2e;
  --gray-700: #3d3d56;
  --gray-500: #6b6b80;
  --gray-400: #8e8ea0;
  --gray-300: #b0b0c0;
  --gray-100: #f4f4f8;
  --gray-50: #f9f9fb;
  --white: #ffffff;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-red-light: #fef2f2;
  --accent-green-light: #f0fdf4;
  --accent-orange: #f59e0b;
  --placeholder-bg: #e8e6ff;
  --placeholder-border: #c5c2f0;
  --placeholder-text: #6a65d6;
  /* Blog category colors */
  --cat-green: #10b981;
  --cat-green-light: #ecfdf5;
  --cat-green-text: #059669;
  --cat-sky: #0ea5e9;
  --cat-sky-light: #f0f9ff;
  --cat-sky-text: #0369a1;
  --cat-amber: #f59e0b;
  --cat-amber-light: #fffbeb;
  --cat-amber-text: #92400e;
  --cat-rose: #e11d48;
  --cat-rose-light: #fff1f2;
  --cat-rose-text: #be123c;
  --cat-slate: #475569;
  --cat-slate-light: #f1f5f9;
  --cat-slate-text: #475569;
  --cat-orange: #ea580c;
  --cat-orange-light: #fff7ed;
  --cat-orange-text: #c2410c;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
}

/* ============ TYPOGRAPHY ============ */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 56px;
}

.section-centered .section-title,
.section-centered .section-subtitle,
.section-centered .section-label {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-centered .section-title { max-width: 700px; }
.section-centered .section-subtitle { max-width: 600px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--violet);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--violet); }
.nav-links a.active { color: var(--violet); font-weight: 600; }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover { color: var(--violet); }
.nav-dropdown-trigger.active { color: var(--violet); font-weight: 600; }

.nav-chevron {
  font-size: 12px;
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 8px 0;
  min-width: 220px;
  z-index: 110;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--violet-light);
  color: var(--violet);
}

.nav-cta {
  background: var(--violet);
  color: white !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--violet-mid); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--violet);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--violet-mid);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--violet);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--violet-light);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--violet);
  background: var(--violet-light);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.btn-ghost:hover { gap: 12px; }
.btn-ghost .arrow { font-size: 18px; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--violet);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-white:hover {
  background: var(--violet-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ IMAGE PLACEHOLDERS ============ */
.img-placeholder {
  background: var(--placeholder-bg);
  border: 2px dashed var(--placeholder-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 14px,
    rgba(106, 101, 214, 0.04) 14px, rgba(106, 101, 214, 0.04) 28px
  );
}

.img-placeholder .ph-label {
  position: relative; z-index: 1;
  background: var(--violet);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.img-placeholder .ph-title {
  position: relative; z-index: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--placeholder-text);
  margin-bottom: 6px;
}

.img-placeholder .ph-desc {
  position: relative; z-index: 1;
  font-size: 12px;
  color: var(--placeholder-text);
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.5;
}

.img-placeholder--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}

.img-placeholder--dark::before {
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 14px,
    rgba(255,255,255,0.02) 14px, rgba(255,255,255,0.02) 28px
  );
}

.img-placeholder--dark .ph-label { background: rgba(255,255,255,0.15); }
.img-placeholder--dark .ph-title,
.img-placeholder--dark .ph-desc { color: rgba(255,255,255,0.5); }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

.footer-legal {
  display: flex;
  gap: 24px;
}

/* ================================================================
   HOMEPAGE-SPECIFIC STYLES
   ================================================================ */

/* Hero */
.hero-home {
  padding-top: 150px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-home .hero-text {
  text-align: center;
}

.hero-home h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.08;
  color: var(--dark);
  max-width: 820px;
  margin: 0 auto 12px;
  letter-spacing: -1.5px;
}

.hero-home .hero-highlight {
  display: block;
  color: var(--violet);
}

.hero-home .hero-sub-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gray-400);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero-home .hero-text > p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-visual {
  margin-top: 56px;
  text-align: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: inline-block;
}

.hero-visual .img-placeholder {
  min-height: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 39, 192, 0.10), 0 1px 3px rgba(0,0,0,0.06);
}

/* Problem section */
.problem-section {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s;
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  background: #fef7f7;
}

.pain-card .pain-marker {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  margin-bottom: 14px;
  opacity: 0.7;
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

.problem-transition {
  text-align: center;
  padding-top: 8px;
}

.problem-transition p {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.problem-transition p em {
  color: var(--violet);
  font-style: normal;
}

/* Promise section */
.promise-section {
  background: var(--gray-900);
  color: white;
  padding: 100px 0;
}

.promise-section .section-label { color: rgba(255,255,255,0.4); }

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.promise-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.promise-title span { color: #a5a3ff; }

.promise-body {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* "Ce qu'on facture" section */
.what-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.what-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.25s;
}

.what-item:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 20px rgba(42, 39, 192, 0.06);
  transform: translateY(-2px);
}

.what-item-visual .img-placeholder {
  min-height: 100px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.what-item-content {
  padding: 20px 20px 24px;
}

.what-item .what-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.what-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.what-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.what-cta { text-align: center; }

/* "Pour qui" section */
.who-section { background: var(--white); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.who-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(42, 39, 192, 0.07);
  transform: translateY(-2px);
}

.who-card-visual .img-placeholder {
  min-height: 160px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.who-card-content {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.who-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.who-card-header .who-icon {
  font-size: 30px;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.who-card .who-pitch {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
}

.who-card .who-profiles {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.who-card .who-profiles span {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 5px;
  margin: 0 5px 6px 0;
}

.who-card .btn-ghost {
  margin-top: auto;
  font-size: 14px;
}

/* "Pourquoi Skod" section */
.why-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.25s;
}

.why-card:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 20px rgba(42, 39, 192, 0.05);
}

.why-card .why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-card-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Proof section */
.proof-section { background: var(--white); }

.proof-layout {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.proof-quote {
  background: var(--gray-50);
  border-left: 4px solid var(--violet);
  border-radius: 0 14px 14px 0;
  padding: 32px 36px;
  margin-bottom: 48px;
  text-align: left;
}

.proof-quote blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.proof-quote .quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.proof-quote .quote-role {
  font-size: 13px;
  color: var(--gray-400);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-strip-item .trust-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.trust-strip-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.trust-strip-item p {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

/* Final CTA (violet bg) */
.final-cta-section {
  background: var(--violet);
  text-align: center;
  padding: 88px 0;
}

.final-cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.final-cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ================================================================
   FEATURES PAGE STYLES
   ================================================================ */

/* Features Hero */
.hero-features {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-features .hero-badge {
  display: inline-block;
  background: var(--violet-light);
  color: var(--violet);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-features h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 24px;
  letter-spacing: -1px;
}

.hero-features h1 span { color: var(--violet); }

.hero-features p {
  font-size: 19px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-scroll-hint {
  margin-top: 56px;
  font-size: 13px;
  color: var(--gray-300);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll-hint .arrow {
  display: block;
  margin: 8px auto 0;
  font-size: 20px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Steps */
.steps-section {
  background: var(--gray-100);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  padding: 32px 28px;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--gray-300);
  opacity: 0.4;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--violet);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Channels */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.channel-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.channel-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(42, 39, 192, 0.08);
  transform: translateY(-2px);
}

.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 22px;
}

.channel-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.channel-card .channel-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.55;
}

.channel-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-examples span {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
}

/* Infrastructure (dark bg) */
.infra-section {
  background: var(--gray-900);
  color: white;
}

.infra-section .section-label { color: rgba(255,255,255,0.5); }
.infra-section .section-title { color: white; }
.infra-section .section-subtitle { color: rgba(255,255,255,0.55); }

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.infra-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
}

.infra-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.infra-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.infra-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.infra-card ul {
  list-style: none;
  margin-top: 14px;
}

.infra-card ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.infra-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 13px;
}

/* Amplifiers */
.amplifiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amplifier-card {
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  background: var(--white);
  transition: all 0.25s;
}

.amplifier-card:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 20px rgba(42, 39, 192, 0.06);
}

.amplifier-card .amp-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}

.amplifier-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.amplifier-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Trust bar (features page) */
.trust-section {
  background: var(--gray-100);
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item .trust-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Features final CTA (uses .final-cta-section above) */
.final-cta-section--features {
  background: var(--white);
  text-align: center;
  padding: 100px 0 120px;
}

.final-cta-section--features h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.final-cta-section--features h2 span { color: var(--violet); }

.final-cta-section--features p {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ================================================================
   SOLUTION PAGE STYLES
   ================================================================ */

/* Solution Hero */
.hero-solution {
  padding-top: 150px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tags span {
  background: var(--violet-light);
  color: var(--violet);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
}

.hero-solution h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-solution h1 em {
  font-style: normal;
  color: var(--violet);
}

.hero-solution .hero-body {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-solution .hero-visual .img-placeholder {
  min-height: 380px;
  box-shadow: 0 20px 60px rgba(42, 39, 192, 0.10), 0 1px 3px rgba(0,0,0,0.06);
}

/* Mirror section (scenarios) */
.mirror-section {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.scenario-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.scenario {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.scenario:last-child { border-bottom: none; }

.scenario-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.scenario-marker {
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  opacity: 0.6;
}

.scenario h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}

.scenario p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 24px;
}

.mirror-transition {
  text-align: center;
  padding-top: 48px;
}

.mirror-transition p {
  font-size: 19px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

.mirror-transition p em {
  color: var(--violet);
  font-style: normal;
}

/* Shift section (dark) */
.shift-section {
  background: var(--gray-900);
  color: white;
}

.shift-section .section-label { color: rgba(255,255,255,0.35); }

.shift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.shift-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}

.shift-text h2 span { color: #a5a3ff; }

.shift-prose {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.shift-prose p { margin-bottom: 20px; }
.shift-prose p:last-child { margin-bottom: 0; }

.shift-pivot {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Projection section (use cases) */
.projection-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.usecase-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 28px rgba(42, 39, 192, 0.06);
  transform: translateY(-2px);
}

.usecase-visual .img-placeholder {
  min-height: 130px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.usecase-content {
  padding: 24px;
}

.usecase-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.usecase-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px 28px;
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
}

.benefit-card .benefit-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* FAQ */
.faq-section {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 28px 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 0;
  font-family: inherit;
}

.faq-question::before {
  content: '\2192';
  flex-shrink: 0;
  color: var(--violet);
  font-weight: 700;
  margin-top: 1px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::before {
  transform: rotate(90deg);
}

.faq-answer {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 24px;
}

/* ================================================================
   SOLUTION PAGE — CENTERED VARIANTS (Créateurs, Agences)
   ================================================================ */

/* Centered hero (no split layout) */
.hero-solution--centered {
  padding-top: 150px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  text-align: center;
}

.hero-solution--centered .hero-tags {
  justify-content: center;
}

.hero-solution--centered h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.12;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -1px;
}

.hero-solution--centered h1 em {
  font-style: normal;
  color: var(--violet);
}

.hero-solution--centered .hero-body {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 620px;
}

/* Icon-based usecase cards (no image placeholder) */
.usecase-card--icon {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.usecase-card--icon:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 28px rgba(42, 39, 192, 0.06);
  transform: translateY(-2px);
}

.usecase-card--icon .usecase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--violet-light);
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 20px;
}

.usecase-card--icon h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.usecase-card--icon .usecase-scene {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.usecase-card--icon .usecase-mechanism {
  font-size: 12px;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* 4-column benefits grid */
.benefits-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Centered shift section (no split layout, no image) */
.shift-section .shift-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.shift-section .shift-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 32px;
  letter-spacing: -0.8px;
}

.shift-section .shift-inner h2 span { color: #a5a3ff; }

.shift-section .shift-inner .shift-prose {
  text-align: left;
}

.shift-section .shift-inner .shift-pivot {
  text-align: center;
}

/* ================================================================
   BLOG / RESOURCES PAGE STYLES
   ================================================================ */

/* Blog Hero */
.blog-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.blog-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.12;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -1.2px;
}

.blog-hero h1 em {
  font-style: normal;
  color: var(--violet);
}

.blog-hero .hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Guides section */
.guides-section {
  padding-top: 16px;
  padding-bottom: 72px;
  background: var(--gray-50);
}

.guides-section-header {
  margin-bottom: 28px;
}

.guides-section-header h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guides-section-header h2::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(42, 39, 192, 0.12);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(42, 39, 192, 0.07);
  transform: translateY(-3px);
}

.guide-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guide-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 16px,
    rgba(255, 255, 255, 0.04) 16px, rgba(255, 255, 255, 0.04) 32px
  );
}

.guide-visual--agences { background: var(--violet); }
.guide-visual--coachs { background: var(--gray-900); }
.guide-visual--createurs { background: #4338ca; }

.guide-visual .gv-icon {
  position: relative;
  z-index: 1;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-body {
  padding: 22px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-badge .gb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.guide-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex-grow: 1;
}

.guide-card .guide-excerpt {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 16px;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  transition: gap 0.2s;
}

.guide-card:hover .guide-link { gap: 10px; }

/* Filters bar */
.filters-section {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.filters-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-50);
  color: var(--gray-500);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.filter-btn:hover {
  background: var(--violet-light);
  color: var(--violet);
  border-color: var(--violet-light);
}

.filter-btn--active {
  background: var(--violet);
  color: white;
  border-color: var(--violet);
}

.filter-btn--active:hover {
  background: var(--violet-mid);
  color: white;
}

/* Articles grid */
.articles-section {
  padding: 48px 0 80px;
  background: var(--white);
}

.articles-section-header {
  margin-bottom: 28px;
}

.articles-section-header h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.articles-section-header h2::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.articles-count {
  font-weight: 500;
  color: var(--gray-300);
  text-transform: none;
  letter-spacing: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Article card */
.article-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  border-color: var(--violet);
  box-shadow: 0 6px 24px rgba(42, 39, 192, 0.06);
  transform: translateY(-3px);
}

.article-accent {
  height: 4px;
  width: 100%;
}

.article-accent--facturation { background: var(--cat-green); }
.article-accent--freelances { background: var(--cat-sky); }
.article-accent--consultants { background: var(--cat-amber); }
.article-accent--agences { background: var(--violet); }
.article-accent--createurs { background: var(--cat-rose); }
.article-accent--outils { background: var(--cat-slate); }
.article-accent--default { background: var(--gray-300); }

.article-body {
  padding: 22px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.article-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 5px;
}

.article-tag--facturation { background: var(--cat-green-light); color: var(--cat-green-text); }
.article-tag--freelances { background: var(--cat-sky-light); color: var(--cat-sky-text); }
.article-tag--consultants { background: var(--cat-amber-light); color: var(--cat-amber-text); }
.article-tag--agences { background: var(--violet-light); color: var(--violet); }
.article-tag--createurs { background: var(--cat-rose-light); color: var(--cat-rose-text); }
.article-tag--outils { background: var(--cat-slate-light); color: var(--cat-slate-text); }
.article-tag--default { background: var(--gray-100); color: var(--gray-500); }

.article-date {
  font-size: 12px;
  color: var(--gray-300);
  font-weight: 500;
}

.article-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex-grow: 1;
}

.article-card .article-excerpt {
  font-size: 13.5px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-top: auto;
  transition: gap 0.2s;
}

.article-card:hover .article-read { gap: 10px; }

/* Articles empty / loading states */
.articles-loading,
.articles-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--gray-400);
  font-size: 15px;
}

/* Blog CTA */
.blog-cta-section {
  background: var(--gray-900);
  padding: 72px 0;
  text-align: center;
}

.blog-cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.blog-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  margin: 0 auto 32px;
}

.blog-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 8px 0; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-layout { grid-template-columns: 1fr; }
  .promise-visual-col { order: -1; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-card::after { display: none !important; }
  .channels-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .amplifiers-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-solution .container { grid-template-columns: 1fr; }
  .hero-solution .hero-visual { order: -1; }
  .shift-layout { grid-template-columns: 1fr; }
  .shift-visual { order: -1; }
  .usecase-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid--4col { grid-template-columns: repeat(2, 1fr); }

  .guides-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .articles-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .journey-ui {
    flex-direction: column;
    min-height: auto;
  }

  .journey-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 20px;
  }

  .journey-step:not(:last-child)::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(50%);
  }

  .journey-step-header {
    padding: 15px;
    text-align: center;
  }

  .journey-step-num {
    margin: 0 auto 8px;
  }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  section { padding: 64px 0; }
  .hero-home { padding-top: 120px; padding-bottom: 24px; }
  .hero-features { padding-top: 120px; padding-bottom: 48px; }
  .hero-solution { padding-top: 120px; padding-bottom: 24px; }
  .hero-solution--centered { padding-top: 120px; padding-bottom: 24px; }
  .benefits-grid--4col { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .blog-hero { padding-top: 110px; }
  .filters-bar { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: 12px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ================================================================
   FEATURES PAGE V2 — INTERACTIVE ELEMENTS
   ================================================================ */

/* Hero Dashboard Embed */
.hero-screenshot {
  margin-top: 56px;
  position: relative;
}

.hero-screenshot::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 40px;
  right: 40px;
  height: 40px;
  background: rgba(42, 39, 192, 0.07);
  border-radius: 0 0 20px 20px;
  filter: blur(18px);
  z-index: 0;
}

.hero-screenshot::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 30px;
  background: rgba(42, 39, 192, 0.12);
  border-radius: 0 0 16px 16px;
  filter: blur(10px);
  z-index: 0;
}

.hero-screenshot .img-placeholder {
  min-height: 400px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 39, 192, 0.10), 0 1px 3px rgba(0,0,0,0.06);
}

/* Dashboard wrapper */
.db-wrap {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 4px 8px rgba(0,0,0,0.04),
    0 12px 32px rgba(42,39,192,0.08),
    0 32px 64px rgba(42,39,192,0.06);
  background: white;
}

/* Browser bar */
.db-browser-bar {
  background: #f8f8fa;
  border-bottom: 1px solid #e8e8f0;
  padding: 0 16px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-dots { display: flex; gap: 6px; }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot:nth-child(1) { background: #ff5f57; }
.db-dot:nth-child(2) { background: #febc2e; }
.db-dot:nth-child(3) { background: #28c840; }

.db-url {
  flex: 1; max-width: 320px; margin: 0 auto;
  background: #ededf5; border-radius: 5px;
  height: 22px; display: flex; align-items: center;
  padding: 0 10px; gap: 5px;
  font-size: 11px; color: #8888a0;
}

/* Dashboard layout */
.db-layout { display: flex; height: 460px; overflow: hidden; }

/* Sidebar */
.db-sidebar {
  width: 200px; background: #0f0e2a;
  display: flex; flex-direction: column;
  padding: 20px 0; flex-shrink: 0;
}

.db-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: white;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.5px;
}

.db-logo span { color: #7573ff; }

.db-section-label {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,0.25);
  padding: 16px 20px 6px;
}

.db-nav { display: flex; flex-direction: column; gap: 1px; padding: 0 10px; }

.db-nav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 7px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.4);
}

.db-nav-item.active {
  background: rgba(117,115,255,0.15); color: white;
}

.db-nav-icon { font-size: 13px; width: 16px; text-align: center; flex-shrink: 0; }

.db-sidebar-bottom {
  margin-top: auto; padding: 14px 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.db-user { display: flex; align-items: center; gap: 9px; padding: 8px 10px; }

.db-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #7573ff 0%, #2a27c0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white; flex-shrink: 0;
}

.db-user-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
.db-user-role { font-size: 9px; color: rgba(255,255,255,0.3); }

/* Main area */
.db-main { flex: 1; background: #f8f8fc; display: flex; flex-direction: column; overflow: hidden; }

.db-topbar {
  background: white; border-bottom: 1px solid #eeeef5;
  padding: 0 24px; height: 52px;
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}

.db-topbar-title { font-size: 15px; font-weight: 700; color: #111118; }
.db-topbar-sub { font-size: 11px; color: #9090a8; margin-top: 1px; }
.db-topbar-right { display: flex; align-items: center; gap: 10px; }

.db-live-badge {
  display: flex; align-items: center; gap: 5px;
  background: #f0f0ff; border: 1px solid rgba(42,39,192,0.1);
  border-radius: 7px; padding: 5px 10px;
  font-size: 11px; font-weight: 600; color: #2a27c0;
}

.db-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981;
  animation: db-blink 2s ease infinite;
}

@keyframes db-blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.db-cta {
  background: #2a27c0; color: white;
  border-radius: 7px; padding: 6px 12px;
  font-size: 11px; font-weight: 600;
}

/* Content area */
.db-content { flex: 1; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }

/* KPIs */
.db-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; flex-shrink: 0; }

.db-kpi {
  background: white; border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px; padding: 14px 16px;
  position: relative; overflow: hidden;
}

.db-kpi::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 10px 10px 0 0;
}

.db-kpi:nth-child(1)::after { background: linear-gradient(90deg,#2a27c0,#7573ff); }
.db-kpi:nth-child(2)::after { background: linear-gradient(90deg,#10b981,#34d399); }
.db-kpi:nth-child(3)::after { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
.db-kpi:nth-child(4)::after { background: linear-gradient(90deg,#6366f1,#818cf8); }

.db-kpi-label { font-size: 10px; font-weight: 600; color: #9090a8; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 7px; }
.db-kpi-value { font-size: 21px; font-weight: 700; color: #111118; line-height: 1; margin-bottom: 5px; }
.db-kpi-delta { font-size: 10px; font-weight: 600; }
.db-kpi-delta.up { color: #10b981; }
.db-kpi-delta.neutral { color: #9090a8; }

/* Grid layout */
.db-grid { display: grid; grid-template-columns: 1fr 290px; gap: 12px; flex: 1; min-height: 0; overflow: hidden; }

/* Sessions list */
.db-sessions {
  background: white; border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px; display: flex; flex-direction: column; overflow: hidden;
}

.db-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid #f0f0f8; flex-shrink: 0;
}

.db-card-title { font-size: 12px; font-weight: 700; color: #111118; }
.db-card-action { font-size: 11px; font-weight: 600; color: #2a27c0; }

.db-session-row {
  display: flex; align-items: center; padding: 9px 16px; gap: 10px;
  border-bottom: 1px solid #f8f8fc;
}

.db-session-row:last-child { border-bottom: none; }
.db-session-row.hl { background: #fafaff; }

.db-s-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white; flex-shrink: 0;
}

.db-s-info { flex: 1; min-width: 0; }
.db-s-name { font-size: 11px; font-weight: 600; color: #111118; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-s-type { font-size: 10px; color: #9090a8; }
.db-s-amount { font-size: 12px; font-weight: 700; color: #111118; flex-shrink: 0; }
.db-s-status { flex-shrink: 0; font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 20px; }
.db-s-done { background: rgba(16,185,129,0.1); color: #10b981; }
.db-s-live { background: rgba(42,39,192,0.1); color: #2a27c0; display: flex; align-items: center; gap: 3px; }
.db-s-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #2a27c0; animation: db-blink 1.2s ease infinite; }
.db-s-pending { background: rgba(245,158,11,0.1); color: #f59e0b; }
.db-s-time { font-size: 9px; color: #c0c0d0; flex-shrink: 0; width: 48px; text-align: right; }

/* Right column */
.db-right { display: flex; flex-direction: column; gap: 12px; overflow: hidden; }

.db-chart {
  background: white; border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px; padding: 14px 14px 10px; flex-shrink: 0;
}

.db-chart-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.db-chart-value { font-size: 18px; font-weight: 700; color: #111118; line-height: 1; }
.db-chart-period { font-size: 9px; color: #9090a8; margin-top: 2px; }
.db-chart-delta { background: rgba(16,185,129,0.1); color: #10b981; font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 5px; }

.db-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.db-bar { flex: 1; border-radius: 3px 3px 0 0; background: #ededff; }
.db-bar.active { background: linear-gradient(180deg,#2a27c0 0%,#7573ff 100%); position: relative; }

.db-bar.active::after {
  content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #2a27c0;
  border: 2px solid white; box-shadow: 0 0 0 1px rgba(42,39,192,0.3);
}

.db-months { display: flex; gap: 4px; margin-top: 5px; }
.db-month { flex: 1; text-align: center; font-size: 8px; color: #c0c0d0; }
.db-month.active { color: #2a27c0; font-weight: 600; }

.db-activity {
  background: white; border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px; flex: 1; display: flex; flex-direction: column; overflow: hidden;
}

.db-activity-list { padding: 4px 0; overflow: hidden; }
.db-activity-item { display: flex; align-items: center; gap: 9px; padding: 7px 14px; }
.db-activity-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.db-activity-text { flex: 1; font-size: 10px; color: #4a4a60; line-height: 1.4; }
.db-activity-text strong { font-weight: 600; color: #111118; }
.db-activity-time { font-size: 9px; color: #c0c0d0; flex-shrink: 0; }

/* ============ MINI UI CARDS — STEPS ============ */
.mini-ui {
  background: var(--white);
  border: 1px solid rgba(42,39,192,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 2px 12px rgba(42,39,192,0.08);
  overflow: hidden;
  position: relative;
}

.mini-config { display: flex; flex-direction: column; gap: 6px; }
.mini-config-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); margin-bottom: 2px; }
.mini-config-options { display: flex; gap: 5px; }
.mini-option { display: flex; align-items: center; gap: 4px; background: var(--gray-100); border-radius: 5px; padding: 4px 8px; font-size: 10px; font-weight: 500; color: var(--gray-700); border: 1px solid transparent; }
.mini-option.active { background: var(--violet-light); color: var(--violet); border-color: rgba(42,39,192,0.2); font-weight: 600; }
.mini-option-dot { width: 6px; height: 6px; border-radius: 50%; border: 1.5px solid var(--gray-300); }
.mini-option.active .mini-option-dot { background: var(--violet); border-color: var(--violet); }
.mini-price-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.mini-price-input { flex: 1; background: var(--gray-100); border: 1px solid rgba(0,0,0,0.08); border-radius: 5px; padding: 4px 8px; font-size: 11px; font-weight: 600; color: var(--dark); display: flex; align-items: center; justify-content: space-between; }
.mini-price-unit { font-size: 9px; color: var(--gray-500); font-weight: 400; }
.mini-save-btn { background: var(--violet); color: white; border-radius: 5px; padding: 4px 10px; font-size: 10px; font-weight: 600; }

.mini-payment { display: flex; flex-direction: column; gap: 7px; }
.mini-payment-header { display: flex; align-items: center; gap: 8px; }
.mini-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; font-weight: 700; flex-shrink: 0; }
.mini-expert-name { font-size: 10px; font-weight: 700; color: var(--dark); }
.mini-session-type { font-size: 9px; color: var(--gray-500); }
.mini-amount-badge { background: var(--violet-light); color: var(--violet); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.mini-card-field { background: var(--gray-100); border: 1px solid rgba(0,0,0,0.08); border-radius: 5px; padding: 5px 8px; display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--gray-500); }
.mini-card-dots { color: var(--gray-700); font-weight: 600; letter-spacing: 1px; }
.mini-pay-btn { background: var(--violet); color: white; border-radius: 5px; padding: 5px 10px; font-size: 10px; font-weight: 700; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }

.mini-call { display: flex; flex-direction: column; gap: 7px; }
.mini-call-header { display: flex; align-items: center; justify-content: space-between; }
.mini-call-status { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: #10b981; }
.mini-pulse { width: 7px; height: 7px; border-radius: 50%; background: #10b981; animation: pulse-dot 1.5s ease infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.mini-timer { font-size: 14px; font-weight: 700; font-family: monospace; color: var(--dark); letter-spacing: 1px; }
.mini-call-participants { display: flex; gap: 6px; align-items: center; }
.mini-participant { display: flex; align-items: center; gap: 4px; font-size: 9px; color: var(--gray-500); }
.mini-participant-dot { width: 20px; height: 20px; border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: white; }
.mini-meter-bar { background: var(--gray-100); border-radius: 3px; height: 4px; overflow: hidden; flex: 1; }
.mini-meter-fill { height: 100%; background: linear-gradient(90deg, var(--violet) 0%, var(--violet-mid) 100%); border-radius: 3px; animation: meter-anim 3s ease-in-out infinite alternate; width: 60%; }
@keyframes meter-anim { 0% { width: 30%; } 100% { width: 85%; } }
.mini-billing-live { display: flex; align-items: center; justify-content: space-between; background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); border-radius: 5px; padding: 4px 8px; font-size: 9px; color: #10b981; font-weight: 600; }

.mini-invoice { display: flex; flex-direction: column; gap: 5px; }
.mini-invoice-header { display: flex; align-items: center; justify-content: space-between; }
.mini-invoice-title { font-size: 10px; font-weight: 700; color: var(--dark); }
.mini-invoice-num { font-size: 9px; color: var(--gray-500); font-family: monospace; }
.mini-invoice-row { display: flex; justify-content: space-between; font-size: 9px; color: var(--gray-500); padding: 2px 0; }
.mini-invoice-divider { border: none; border-top: 1px solid var(--gray-100); margin: 2px 0; }
.mini-invoice-total { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--dark); }
.mini-check-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.2); border-radius: 4px; padding: 2px 7px; font-size: 9px; font-weight: 700; }

/* ============ MINI UI — CHANNELS ============ */
.mini-ui-canal {
  background: var(--white);
  border-radius: 0;
  padding: 16px 20px;
  font-size: 11px;
  line-height: 1.4;
  height: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 160px;
  justify-content: center;
}

/* Canal 1 — Appel */
.canal-call-header { display: flex; align-items: center; justify-content: space-between; }
.canal-call-title { font-size: 12px; font-weight: 700; color: var(--dark); }
.canal-timer-big { font-size: 22px; font-weight: 700; font-family: monospace; color: var(--dark); letter-spacing: 2px; }
.canal-status-row { display: flex; align-items: center; gap: 8px; }
.canal-participants { display: flex; gap: 8px; }
.canal-participant-chip { display: flex; align-items: center; gap: 5px; background: var(--gray-100); border-radius: 20px; padding: 4px 10px; font-size: 10px; font-weight: 500; color: var(--gray-700); }
.canal-participant-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.canal-rate-bar { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border-radius: 6px; padding: 6px 12px; font-size: 10px; font-weight: 600; color: var(--violet); }
.canal-rate-counter { font-weight: 700; font-size: 12px; }

/* Canal 2 — Messagerie */
.canal-msg-thread { display: flex; flex-direction: column; gap: 7px; }
.canal-msg { display: flex; flex-direction: column; gap: 2px; max-width: 80%; }
.canal-msg.right { align-self: flex-end; align-items: flex-end; }
.canal-msg-bubble { padding: 7px 10px; border-radius: 10px; font-size: 10px; line-height: 1.4; }
.canal-msg.left .canal-msg-bubble { background: var(--gray-100); color: var(--gray-700); border-bottom-left-radius: 3px; }
.canal-msg.right .canal-msg-bubble { background: var(--violet); color: white; border-bottom-right-radius: 3px; }
.canal-msg-meta { font-size: 9px; color: var(--gray-300); }
.canal-msg-gate { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border: 1px solid rgba(42,39,192,0.15); border-radius: 7px; padding: 7px 12px; margin-top: 2px; }
.canal-msg-gate-text { font-size: 10px; font-weight: 600; color: var(--violet); }
.canal-msg-gate-btn { background: var(--violet); color: white; border-radius: 5px; padding: 3px 10px; font-size: 9px; font-weight: 700; }

/* Canal 3 — Live */
.canal-live-header { display: flex; align-items: center; justify-content: space-between; }
.canal-live-badge { display: flex; align-items: center; gap: 5px; background: #ef4444; color: white; border-radius: 5px; padding: 3px 9px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }
.canal-live-pulse { width: 7px; height: 7px; border-radius: 50%; background: white; animation: pulse-dot 1.5s ease infinite; }
.canal-live-viewers { font-size: 10px; color: var(--gray-500); }
.canal-live-title { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.canal-live-access { display: flex; align-items: center; justify-content: space-between; background: var(--gray-100); border-radius: 7px; padding: 8px 12px; }
.canal-live-price { font-size: 14px; font-weight: 700; color: var(--dark); }
.canal-live-price span { font-size: 10px; font-weight: 400; color: var(--gray-500); }
.canal-live-btn { background: var(--violet); color: white; border-radius: 5px; padding: 5px 12px; font-size: 10px; font-weight: 700; }
.canal-live-counter { display: flex; align-items: center; gap: 5px; font-size: 9px; color: var(--gray-500); }

/* Canal 4 — Projet */
.canal-project-title { font-size: 11px; font-weight: 700; color: var(--dark); }
.canal-steps-list { display: flex; flex-direction: column; gap: 5px; }
.canal-step-row { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 6px; background: var(--gray-100); }
.canal-step-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.canal-step-icon.done { background: #10b981; color: white; }
.canal-step-icon.active { background: var(--violet); color: white; }
.canal-step-icon.locked { background: var(--gray-300); color: white; font-size: 8px; }
.canal-step-label { flex: 1; font-size: 10px; color: var(--gray-700); font-weight: 500; }
.canal-step-price { font-size: 9px; font-weight: 600; }
.canal-step-price.done { color: #10b981; }
.canal-step-price.active { color: var(--violet); }
.canal-step-price.locked { color: var(--gray-300); }

/* Updated channel card with visual */
.channel-card {
  padding: 0;
  overflow: hidden;
}

.channel-card-visual {
  width: 100%;
}

.channel-card-visual .img-placeholder {
  min-height: 180px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.channel-card-content {
  padding: 28px 28px 32px;
}

.channel-icon {
  width: 44px; height: 44px;
  background: var(--violet-light);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 20px;
}

/* ============ MINI UI — INFRASTRUCTURE (dark) ============ */
.mini-ui-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Facture dark */
.infra-invoice-header { display: flex; align-items: flex-start; justify-content: space-between; }
.infra-invoice-logo { font-weight: 700; font-size: 13px; color: white; }
.infra-invoice-meta { text-align: right; }
.infra-invoice-num { font-size: 10px; color: rgba(255,255,255,0.5); font-family: monospace; }
.infra-invoice-date { font-size: 9px; color: rgba(255,255,255,0.3); }
.infra-invoice-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); }
.infra-invoice-row { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.5); }
.infra-invoice-total { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: white; }
.infra-invoice-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.25); border-radius: 5px; padding: 3px 8px; font-size: 9px; font-weight: 700; align-self: flex-start; }

/* Page pro dark */
.infra-page-browser { display: flex; flex-direction: column; gap: 0; }
.infra-page-bar { background: rgba(255,255,255,0.08); border-radius: 7px 7px 0 0; padding: 6px 10px; display: flex; align-items: center; gap: 6px; }
.infra-page-dots { display: flex; gap: 4px; }
.infra-page-dot { width: 7px; height: 7px; border-radius: 50%; }
.infra-page-url { flex: 1; background: rgba(255,255,255,0.08); border-radius: 4px; padding: 3px 8px; font-size: 9px; color: rgba(255,255,255,0.4); font-family: monospace; text-align: center; }
.infra-page-body { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-top: none; border-radius: 0 0 7px 7px; padding: 10px 12px; display: flex; flex-direction: column; gap: 7px; }
.infra-page-avatar-row { display: flex; align-items: center; gap: 8px; }
.infra-page-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #6366f1, var(--violet)); }
.infra-page-name { font-size: 11px; font-weight: 700; color: white; }
.infra-page-role { font-size: 9px; color: rgba(255,255,255,0.4); }
.infra-page-offers { display: flex; flex-direction: column; gap: 4px; }
.infra-page-offer { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.05); border-radius: 5px; padding: 5px 8px; }
.infra-page-offer-label { font-size: 9px; color: rgba(255,255,255,0.6); }
.infra-page-offer-price { font-size: 10px; font-weight: 700; color: white; }
.infra-page-cta { background: var(--violet); color: white; border-radius: 5px; padding: 5px 10px; font-size: 9px; font-weight: 700; text-align: center; }

/* Infrastructure layout override */
.infra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.infra-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.infra-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.infra-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============ MINI UI — AMPLIFICATEURS ============ */
.mini-ui-amp {
  background: var(--gray-100);
  border-radius: 0;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
  justify-content: center;
}

/* Équipes */
.amp-team-row { display: flex; align-items: center; gap: 8px; padding: 5px 8px; background: white; border-radius: 6px; border: 1px solid rgba(0,0,0,0.05); }
.amp-team-avatar { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; flex-shrink: 0; }
.amp-team-name { flex: 1; font-size: 10px; font-weight: 600; color: var(--dark); }
.amp-team-role { font-size: 9px; color: var(--gray-500); }
.amp-team-commission { background: var(--violet-light); color: var(--violet); border-radius: 4px; padding: 2px 7px; font-size: 9px; font-weight: 700; }
.amp-team-header { display: flex; align-items: center; justify-content: space-between; font-size: 9px; }
.amp-team-header-label { color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.amp-team-total { color: var(--violet); font-weight: 700; }

/* Marque blanche */
.amp-brand-split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.amp-brand-card { border-radius: 6px; padding: 8px 10px; }
.amp-brand-card.before { background: #f4f4f8; border: 1px solid rgba(0,0,0,0.06); }
.amp-brand-card.after { background: var(--violet-light); border: 1px solid rgba(42,39,192,0.15); }
.amp-brand-label { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); margin-bottom: 5px; }
.amp-brand-card.after .amp-brand-label { color: var(--violet-mid); }
.amp-brand-logo { font-size: 10px; font-weight: 700; margin-bottom: 3px; }
.amp-brand-card.before .amp-brand-logo { color: var(--gray-500); }
.amp-brand-card.after .amp-brand-logo { color: var(--violet); }
.amp-brand-url { font-size: 8px; font-family: monospace; }
.amp-brand-card.before .amp-brand-url { color: var(--gray-300); }
.amp-brand-card.after .amp-brand-url { color: var(--violet-mid); }
.amp-brand-arrow { display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-300); }

/* Analytics */
.amp-analytics-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.amp-kpi { background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: 6px; padding: 6px 8px; }
.amp-kpi-value { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1; }
.amp-kpi-label { font-size: 8px; color: var(--gray-500); margin-top: 2px; }
.amp-kpi-delta { font-size: 8px; font-weight: 600; color: #10b981; }
.amp-chart { background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: 6px; padding: 8px 10px; }
.amp-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 36px; }
.amp-bar { flex: 1; background: var(--violet-light); border-radius: 3px 3px 0 0; }
.amp-bar.highlight { background: var(--violet); }

/* Updated amplifier card with visual */
.amplifier-card {
  padding: 0;
  overflow: hidden;
}

.amplifier-card-visual .img-placeholder {
  min-height: 140px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.amplifier-card-content {
  padding: 24px 22px 28px;
}

/* ============ ANNOTATION SYSTEM ============ */
.annotation {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #664d03;
}

.annotation strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #997404;
}

/* Step illustration override */
.step-card .step-illustration {
  margin-bottom: 20px;
}

.step-card .step-illustration .img-placeholder {
  min-height: 100px;
  border-radius: 10px;
}

/* ============ RESPONSIVE OVERRIDES ============ */
@media (max-width: 900px) {
  .infra-layout { grid-template-columns: 1fr; }
  .infra-visual { display: none; }
  .db-kpis { grid-template-columns: repeat(2, 1fr); }
  .db-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .db-layout { flex-direction: column; height: auto; }
  .db-sidebar { width: 100%; }
  .db-kpis { grid-template-columns: 1fr; }
}

/* ============================================================
   MINI UI COMPONENTS — HOMEPAGE
   ============================================================ */

/* ---- Base shared ---- */
.mini-ui, .mini-ui-canal, .mini-ui-dark, .mini-ui-who {
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
@keyframes hp-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes hp-blink { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes hp-meter { 0%{width:30%} 100%{width:85%} }

/* ---- SECTION 3 — Flux mécanisme (dark, 300px) ---- */
.mini-flux {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
}
.flux-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.flux-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(117,115,255,0.5) 0%, rgba(117,115,255,0.1) 100%);
}
.flux-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.flux-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(117,115,255,0.2);
  border: 1px solid rgba(117,115,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.flux-content { padding: 8px 0 28px; }
.flux-title {
  font-size: 15px; font-weight: 700; color: white;
  margin-bottom: 4px;
}
.flux-desc {
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5;
}
.flux-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  color: #10b981;
  border-radius: 5px; padding: 2px 8px;
  font-size: 10px; font-weight: 600;
  margin-top: 6px;
}

/* ---- SECTION 4 — Ce qu'on facture (6 mini, 100px) ---- */
.mini-what {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 96px;
  justify-content: center;
  background: white;
}

/* Appels */
.mw-call-row { display: flex; align-items: center; justify-content: space-between; }
.mw-call-status { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: #10b981; }
.mw-pulse { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: hp-pulse 1.5s ease infinite; }
.mw-timer { font-size: 18px; font-weight: 700; font-family: monospace; color: var(--dark); letter-spacing: 1px; }
.mw-rate { background: var(--violet-light); border-radius: 5px; padding: 3px 8px; font-size: 10px; font-weight: 600; color: var(--violet); }
.mw-participants { display: flex; gap: 5px; }
.mw-chip { display: flex; align-items: center; gap: 4px; background: var(--gray-100); border-radius: 20px; padding: 3px 8px; font-size: 9px; font-weight: 500; color: var(--gray-700); }
.mw-dot { width: 7px; height: 7px; border-radius: 50%; }

/* Visio */
.mw-visio { display: flex; flex-direction: column; gap: 7px; }
.mw-visio-screen { background: #1a1a2e; border-radius: 7px; padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; }
.mw-visio-avatars { display: flex; gap: -4px; }
.mw-visio-avatar { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #1a1a2e; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; margin-left: -4px; }
.mw-visio-avatar:first-child { margin-left: 0; }
.mw-visio-timer { font-size: 12px; font-weight: 700; font-family: monospace; color: white; letter-spacing: 1px; }
.mw-visio-rec { display: flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 600; color: #ef4444; }
.mw-visio-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; animation: hp-blink 1.2s ease infinite; }
.mw-visio-footer { display: flex; align-items: center; justify-content: space-between; }
.mw-visio-type { font-size: 10px; color: var(--gray-500); }
.mw-visio-amount { font-size: 11px; font-weight: 700; color: var(--violet); }

/* Messages */
.mw-msgs { display: flex; flex-direction: column; gap: 5px; }
.mw-msg { padding: 5px 8px; border-radius: 8px; font-size: 10px; line-height: 1.4; max-width: 80%; }
.mw-msg.left { background: var(--gray-100); color: var(--gray-700); align-self: flex-start; border-bottom-left-radius: 2px; }
.mw-msg.right { background: var(--violet); color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.mw-msg-gate { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border-radius: 6px; padding: 4px 8px; }
.mw-msg-gate-text { font-size: 9px; font-weight: 600; color: var(--violet); }
.mw-msg-gate-btn { background: var(--violet); color: white; border-radius: 4px; padding: 2px 7px; font-size: 9px; font-weight: 700; }

/* Livrables */
.mw-livrable { display: flex; flex-direction: column; gap: 6px; }
.mw-doc { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: var(--gray-100); border-radius: 7px; }
.mw-doc-icon { font-size: 16px; flex-shrink: 0; }
.mw-doc-info { flex: 1; }
.mw-doc-name { font-size: 10px; font-weight: 700; color: var(--dark); }
.mw-doc-size { font-size: 9px; color: var(--gray-400); }
.mw-doc-lock { font-size: 13px; }
.mw-doc-unlock-row { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border-radius: 6px; padding: 4px 10px; }
.mw-doc-unlock-text { font-size: 9px; font-weight: 600; color: var(--violet); }
.mw-doc-unlock-btn { background: var(--violet); color: white; border-radius: 4px; padding: 2px 8px; font-size: 9px; font-weight: 700; }

/* Lives */
.mw-live { display: flex; flex-direction: column; gap: 7px; }
.mw-live-header { display: flex; align-items: center; justify-content: space-between; }
.mw-live-badge { display: flex; align-items: center; gap: 4px; background: #ef4444; color: white; border-radius: 4px; padding: 2px 7px; font-size: 9px; font-weight: 700; letter-spacing: 0.5px; }
.mw-live-pulse { width: 6px; height: 6px; border-radius: 50%; background: white; animation: hp-pulse 1.5s ease infinite; }
.mw-live-viewers { font-size: 9px; color: var(--gray-500); }
.mw-live-title { font-size: 11px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.mw-live-footer { display: flex; align-items: center; justify-content: space-between; background: var(--gray-100); border-radius: 5px; padding: 5px 8px; }
.mw-live-price { font-size: 12px; font-weight: 700; color: var(--dark); }
.mw-live-btn { background: var(--violet); color: white; border-radius: 4px; padding: 3px 9px; font-size: 9px; font-weight: 700; }

/* Projets */
.mw-project { display: flex; flex-direction: column; gap: 4px; }
.mw-step-row { display: flex; align-items: center; gap: 7px; padding: 4px 6px; border-radius: 5px; background: var(--gray-100); }
.mw-step-icon { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; }
.mw-step-icon.done { background: #10b981; color: white; }
.mw-step-icon.active { background: var(--violet); color: white; }
.mw-step-icon.locked { background: var(--gray-300); color: white; font-size: 7px; }
.mw-step-label { flex: 1; font-size: 9px; color: var(--gray-700); font-weight: 500; }
.mw-step-price { font-size: 9px; font-weight: 600; }
.mw-step-price.done { color: #10b981; }
.mw-step-price.active { color: var(--violet); }
.mw-step-price.locked { color: var(--gray-300); }

/* ---- SECTION 5 — Pour qui (170px) ---- */
.mini-who {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Indépendants — profil pro */
.who-profile-header { display: flex; align-items: center; gap: 10px; }
.who-avatar-big {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%);
}
.who-profile-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.who-profile-role { font-size: 10px; color: var(--gray-500); }
.who-profile-url { font-size: 9px; font-family: monospace; color: var(--violet-mid); }
.who-offers { display: flex; flex-direction: column; gap: 5px; }
.who-offer-row { display: flex; align-items: center; justify-content: space-between; background: var(--gray-100); border-radius: 6px; padding: 5px 9px; }
.who-offer-label { font-size: 10px; color: var(--gray-700); }
.who-offer-price { font-size: 11px; font-weight: 700; color: var(--dark); }
.who-offer-btn { background: var(--violet); color: white; border-radius: 5px; padding: 3px 9px; font-size: 9px; font-weight: 600; text-align: center; }

/* Créateurs — DMs & audience */
.who-creator-header { display: flex; align-items: center; justify-content: space-between; }
.who-creator-profile { display: flex; align-items: center; gap: 8px; }
.who-creator-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
}
.who-creator-name { font-size: 12px; font-weight: 700; color: var(--dark); }
.who-creator-followers { font-size: 9px; color: var(--gray-500); }
.who-creator-badge { background: var(--violet-light); color: var(--violet); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 20px; }
.who-creator-msgs { display: flex; flex-direction: column; gap: 5px; margin-top: 2px; }
.who-creator-dm { display: flex; align-items: center; gap: 7px; padding: 5px 8px; background: var(--gray-100); border-radius: 6px; }
.who-creator-dm-avatar { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: white; flex-shrink: 0; }
.who-creator-dm-text { flex: 1; font-size: 9px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.who-creator-dm-price { font-size: 9px; font-weight: 700; color: var(--violet); flex-shrink: 0; }
.who-creator-stats { display: flex; gap: 8px; }
.who-creator-stat { flex: 1; background: var(--gray-100); border-radius: 6px; padding: 5px 8px; text-align: center; }
.who-creator-stat-val { font-size: 13px; font-weight: 700; color: var(--dark); }
.who-creator-stat-label { font-size: 8px; color: var(--gray-500); }

/* Agences — back-office équipe */
.who-agency-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.who-agency-title { font-size: 11px; font-weight: 700; color: var(--dark); }
.who-agency-total { font-size: 11px; font-weight: 700; color: var(--violet); }
.who-team-row { display: flex; align-items: center; gap: 8px; padding: 5px 8px; background: var(--gray-100); border-radius: 6px; }
.who-team-avatar { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; flex-shrink: 0; }
.who-team-name { flex: 1; font-size: 10px; font-weight: 600; color: var(--dark); }
.who-team-role { font-size: 9px; color: var(--gray-500); }
.who-team-commission { background: var(--violet-light); color: var(--violet); border-radius: 4px; padding: 2px 6px; font-size: 9px; font-weight: 700; }
.who-team-rev { font-size: 10px; font-weight: 700; color: #10b981; }

/* ============================================================
   MINI UI COMPONENTS — SOLUTIONS/INDEPENDANTS
   ============================================================ */

/* ================================================================
   SECTION 3 — PARCOURS CLIENT (dark, 340px)
   Affichage : Page pro → Choix offre → Paiement → Accès expert
================================================================ */
.journey-ui {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
}

/* Étape wrapper */
.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.journey-step:last-child { border-right: none; }

/* Flèche de connexion entre étapes */
.journey-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255,255,255,0.25);
  z-index: 2;
}

.journey-step-header {
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.journey-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--violet);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 8px;
}
.journey-step-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.journey-step-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

.journey-step-body {
  flex: 1;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- Étape 1 : Page pro ---- */
.jp-profile-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), #7573ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white;
  margin-bottom: 4px;
}
.jp-profile-name {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
}
.jp-profile-role {
  font-size: 10px; color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.jp-offer-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 7px 10px;
  gap: 6px;
}
.jp-offer-label {
  font-size: 10px; color: rgba(255,255,255,0.55); flex: 1;
  display: flex; align-items: center; gap: 5px;
}
.jp-offer-price {
  font-size: 11px; font-weight: 700;
  color: rgba(117,115,255,0.9);
  white-space: nowrap;
}

/* ---- Étape 2 : Choix offre ---- */
.jp-choice-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 8px 10px;
  cursor: default;
  transition: border-color 0.15s;
}
.jp-choice-row.selected {
  background: rgba(117,115,255,0.12);
  border-color: rgba(117,115,255,0.35);
}
.jp-choice-radio {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.jp-choice-radio.checked {
  border-color: #7573ff;
  background: #7573ff;
}
.jp-choice-radio.checked::after {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: white;
}
.jp-choice-info { flex: 1; }
.jp-choice-name { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.75); }
.jp-choice-detail { font-size: 9px; color: rgba(255,255,255,0.3); }
.jp-choice-price { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); white-space: nowrap; }
.jp-confirm-btn {
  background: var(--violet);
  color: white;
  border-radius: 7px;
  padding: 7px 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
}

/* ---- Étape 3 : Paiement ---- */
.jp-pay-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2px;
}
.jp-pay-label { font-size: 10px; color: rgba(255,255,255,0.4); }
.jp-pay-amount {
  font-size: 20px; font-weight: 700; color: white;
  margin-bottom: 10px;
}
.jp-pay-amount span { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.35); }
.jp-card-field {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.jp-card-dots { color: rgba(255,255,255,0.65); letter-spacing: 2px; font-weight: 600; font-size: 9px; }
.jp-stripe-row {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; color: rgba(255,255,255,0.25);
  margin-bottom: 8px;
}
.jp-pay-btn {
  background: var(--violet);
  color: white;
  border-radius: 7px;
  padding: 8px 10px;
  text-align: center;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* ---- Étape 4 : Accès expert ---- */
.jp-access-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px; font-weight: 700; color: #10b981;
  margin-bottom: 10px;
  align-self: flex-start;
}
.jp-access-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: jp-blink 1.5s ease infinite; }
@keyframes jp-blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.jp-call-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 7px;
}
.jp-call-participants { display: flex; gap: 6px; }
.jp-call-av {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
}
.jp-timer {
  font-size: 18px; font-weight: 700; font-family: monospace;
  color: white; letter-spacing: 1px; text-align: center;
}
.jp-rate {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(117,115,255,0.1);
  border-radius: 5px; padding: 5px 8px;
  font-size: 9px; color: rgba(117,115,255,0.8); font-weight: 600;
}


/* ================================================================
   SECTION 4 — USECASES (mini cards ~130px)
================================================================ */
.uc-ui {
  background: var(--gray-100);
  border-radius: 12px 12px 0 0;
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

/* Usecase 1 — Appel payant */
.uc-call-header { display: flex; align-items: center; justify-content: space-between; }
.uc-call-status { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: #10b981; }
.uc-pulse { width: 7px; height: 7px; border-radius: 50%; background: #10b981; animation: jp-blink 1.5s ease infinite; }
.uc-timer { font-size: 18px; font-weight: 700; font-family: monospace; color: var(--dark); letter-spacing: 1px; }
.uc-participants { display: flex; gap: 6px; align-items: center; }
.uc-avatar { width: 24px; height: 24px; border-radius: 50%; font-size: 9px; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.uc-av-name { font-size: 9px; color: var(--gray-500); }
.uc-rate-bar { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border-radius: 5px; padding: 5px 10px; font-size: 9px; font-weight: 600; color: var(--violet); }

/* Usecase 2 — Messagerie */
.uc-msg { display: flex; flex-direction: column; gap: 6px; }
.uc-bubble { padding: 6px 9px; border-radius: 9px; font-size: 10px; line-height: 1.4; max-width: 85%; }
.uc-bubble.left { background: white; border: 1px solid rgba(0,0,0,0.06); color: var(--gray-700); border-bottom-left-radius: 3px; align-self: flex-start; }
.uc-bubble.right { background: var(--violet); color: white; border-bottom-right-radius: 3px; align-self: flex-end; }
.uc-gate { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border: 1px solid rgba(42,39,192,0.15); border-radius: 6px; padding: 5px 10px; }
.uc-gate-text { font-size: 9px; font-weight: 600; color: var(--violet); }
.uc-gate-btn { background: var(--violet); color: white; border-radius: 4px; padding: 2px 8px; font-size: 9px; font-weight: 700; }

/* Usecase 3 — Livrable */
.uc-file-card { display: flex; align-items: center; gap: 10px; background: white; border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 10px 12px; }
.uc-file-icon { font-size: 22px; flex-shrink: 0; }
.uc-file-info { flex: 1; min-width: 0; }
.uc-file-name { font-size: 10px; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uc-file-size { font-size: 9px; color: var(--gray-500); }
.uc-file-lock { font-size: 14px; flex-shrink: 0; }
.uc-unlock-row { display: flex; align-items: center; justify-content: space-between; background: var(--violet-light); border: 1px solid rgba(42,39,192,0.12); border-radius: 6px; padding: 6px 10px; }
.uc-unlock-text { font-size: 9px; font-weight: 600; color: var(--violet); }
.uc-unlock-btn { background: var(--violet); color: white; border-radius: 4px; padding: 3px 10px; font-size: 9px; font-weight: 700; }

/* Usecase 4 — Projet jalons */
.uc-project-title { font-size: 10px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.uc-steps { display: flex; flex-direction: column; gap: 5px; }
.uc-step-row { display: flex; align-items: center; gap: 7px; background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: 6px; padding: 5px 8px; }
.uc-step-icon { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; color: white; }
.uc-step-icon.done { background: #10b981; }
.uc-step-icon.active { background: var(--violet); }
.uc-step-icon.locked { background: var(--gray-300); }
.uc-step-label { flex: 1; font-size: 9px; font-weight: 500; color: var(--gray-700); }
.uc-step-price { font-size: 9px; font-weight: 700; }
.uc-step-price.done { color: #10b981; }
.uc-step-price.active { color: var(--violet); }
.uc-step-price.locked { color: var(--gray-300); }
