:root {
  --bg: #FFFFFF;
  --bg-soft: #F4F6F8;
  --bg-section: #F8FAFC;
  --border: #E5E7EB;
  --border-soft: #F1F5F9;
  --ink: #0F172A;
  --ink-950: #020617;
  --ink-muted: #475569;
  --ink-light: #94A3B8;
  --cream: #FAFAF7;
  --cream-warm: #F5F1E8;
  --primary: #0EA5A4;
  --primary-dark: #0B8786;
  --primary-soft: #CCFBF1;
  --primary-tint: #F0FDFA;
  --accent: #F97066;
  --accent-dark: #E55B53;
  --accent-soft: #FEE4E2;
  --gold: #D97706;
  --gold-soft: #FED7AA;
  --warning: #F59E0B;
  --success: #10B981;
  --indigo: #6366F1;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 80px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 24px 80px rgba(14, 165, 164, 0.32);
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.module-detail-grid > *,
.hero-grid > * { min-width: 0; max-width: 100%; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hero .container { max-width: 1320px; }

/* TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; color: var(--ink); }
.brand-logo { height: 120px; width: auto; display: block; }
.nav { display: flex; gap: 32px; font-size: 14.5px; font-weight: 500; color: var(--ink-muted); }
.nav a { transition: color .15s; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--primary); font-weight: 600; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.btn-text {
  color: var(--ink-muted); font-size: 14.5px; font-weight: 500;
  padding: 10px 14px; transition: color .15s;
}
.btn-text:hover { color: var(--ink); }
.btn-primary {
  background: var(--accent); color: white;
  padding: 11px 20px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600;
  border: 0; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all .15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: white; color: var(--ink);
  padding: 11px 20px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer; transition: all .15s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--ink-light); }
.btn-large { padding: 14px 26px; font-size: 15px; border-radius: 10px; }

/* HERO */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(1100px 540px at 80% -10%, var(--primary-tint), transparent 60%),
    radial-gradient(900px 480px at 0% 110%, var(--accent-soft), transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 0.8fr 1.4fr;
  gap: 56px; align-items: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--primary-dark);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--primary-soft);
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}
.hero h1 {
  font-size: clamp(46px, 6.2vw, 88px);
  line-height: 1.02; font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 span.highlight {
  color: var(--primary-dark);
  background: linear-gradient(180deg, transparent 55%, var(--primary-soft) 55%);
  padding: 0 6px;
  position: relative;
}
.hero h1 span.gradient {
  background: linear-gradient(135deg, var(--primary-dark), #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 19px; color: var(--ink-muted);
  line-height: 1.6; max-width: 580px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-large { padding: 18px 32px; font-size: 16px; border-radius: 12px; font-weight: 700; letter-spacing: 0.005em; }
.btn-primary.btn-large {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 28px rgba(249, 112, 102, 0.32);
}
.btn-primary.btn-large:hover {
  box-shadow: 0 18px 36px rgba(249, 112, 102, 0.44);
  transform: translateY(-2px);
}
.hero-meta { font-size: 13.5px; color: var(--ink-muted); display: flex; gap: 22px; align-items: center; flex-wrap: wrap; font-weight: 500; }
.hero-meta-check {
  color: white;
  background: var(--success);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-right: 5px;
}

/* STATS BAR (entre hero et modules) */
.stats-bar {
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: white;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(14, 165, 164, 0.18), transparent 60%),
    radial-gradient(500px 280px at 100% 100%, rgba(249, 112, 102, 0.14), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-grid > div {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-grid > div:last-child { border-right: none; }
.stats-num {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-soft), white);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stats-label {
  font-size: 14px; color: rgba(255, 255, 255, 0.72);
  font-weight: 500; line-height: 1.4;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div:nth-child(2) { border-right: none; }
  .stats-grid > div { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 16px; }
}

/* SECTION DARK (Pourquoi Travicy) */
.section-dark {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(14, 165, 164, 0.15), transparent 60%),
    radial-gradient(600px 320px at 0% 80%, rgba(244, 63, 94, 0.10), transparent 60%);
  pointer-events: none;
}
.section-dark .section-head { position: relative; z-index: 1; }
.section-dark .section-eyebrow { color: var(--primary-soft); }
.section-dark h2 { color: white; }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.section-dark .destinations { position: relative; z-index: 1; }
.section-dark .dest-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.section-dark .dest-card h4 { color: white; }
.section-dark .dest-card p { color: rgba(255, 255, 255, 0.68); }
.section-dark .dest-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* PAGE HEADER (smaller hero for sub-pages) */
.page-header {
  padding: 72px 0 56px;
  background:
    radial-gradient(900px 360px at 80% 0%, var(--primary-tint), transparent 60%);
  text-align: center;
}
.page-header .hero-eyebrow { margin-left: auto; margin-right: auto; }
.page-header h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
  max-width: 820px; margin: 0 auto 18px;
}
.page-header h1 .highlight {
  color: var(--primary-dark);
  background: linear-gradient(180deg, transparent 60%, var(--primary-soft) 60%);
  padding: 0 4px;
}
.page-header p.lead {
  font-size: 18px; color: var(--ink-muted);
  line-height: 1.6; max-width: 640px; margin: 0 auto;
}

/* MOCK DASHBOARD */
.mock-dash {
  background: white; border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: rotate(-0.5deg);
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px; border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mock-dot:nth-child(1) { background: #FF6058; }
.mock-dot:nth-child(2) { background: #FFBE2E; }
.mock-dot:nth-child(3) { background: #28C940; }
.mock-url {
  margin-left: auto; background: white;
  padding: 4px 12px; border-radius: 6px;
  font-size: 11px; color: var(--ink-light);
  font-family: ui-monospace, monospace;
  border: 1px solid var(--border);
}
.mock-body { padding: 22px; display: grid; grid-template-columns: 160px 1fr; gap: 18px; }
.mock-side { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--ink-muted); font-weight: 500; }
.mock-side-item {
  padding: 8px 12px; border-radius: 6px;
  display: flex; align-items: center; gap: 8px;
}
.mock-side-item.active { background: var(--primary-tint); color: var(--primary-dark); font-weight: 600; }
.mock-side-icon {
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--border);
}
.mock-side-item.active .mock-side-icon { background: var(--primary); }
.mock-main h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.mock-card {
  border: 1px solid var(--border-soft); border-radius: 8px;
  padding: 12px; background: white;
}
.mock-card-label { font-size: 10px; color: var(--ink-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.mock-card-value { font-size: 18px; font-weight: 800; color: var(--ink); }
.mock-card-trend { font-size: 10px; color: var(--success); font-weight: 600; margin-top: 2px; }
.mock-chart {
  height: 100px; border: 1px solid var(--border-soft); border-radius: 8px;
  background:
    linear-gradient(180deg, transparent, transparent),
    repeating-linear-gradient(0deg, var(--border-soft), var(--border-soft) 1px, transparent 1px, transparent 24px);
  position: relative; padding: 10px;
}
.mock-chart::before {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 16px; height: 60%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><path d='M0,50 L20,40 L40,45 L60,30 L80,32 L100,20 L120,22 L140,12 L160,18 L180,8 L200,15' stroke='%230EA5A4' stroke-width='2' fill='none'/><path d='M0,50 L20,40 L40,45 L60,30 L80,32 L100,20 L120,22 L140,12 L160,18 L180,8 L200,15 L200,60 L0,60 Z' fill='%230EA5A4' opacity='0.12'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%;
}
.mock-list { display: flex; flex-direction: column; gap: 6px; }
.mock-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border: 1px solid var(--border-soft); border-radius: 6px;
  font-size: 11px;
}
.mock-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.mock-row-name { flex: 1; font-weight: 600; color: var(--ink); }
.mock-row-meta { color: var(--ink-light); font-size: 10px; }
.mock-tag {
  padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mock-tag.green { background: var(--primary-soft); color: var(--primary-dark); }
.mock-tag.coral { background: var(--accent-soft); color: var(--accent-dark); }
.mock-tag.amber { background: #FEF3C7; color: #B45309; }

/* TRUST BAR */
.trust-bar { padding: 32px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-soft); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: 13px; color: var(--ink-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.trust-logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; opacity: 0.7; }
.trust-logo { font-weight: 700; font-size: 16px; color: var(--ink-muted); letter-spacing: -0.01em; }
.trust-logo em { font-style: italic; color: var(--ink-light); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-section); }
.section-eyebrow {
  display: inline-block;
  color: var(--primary-dark); font-size: 13px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 720px;
}
.section-lead {
  margin-top: 18px; font-size: 18px;
  color: var(--ink-muted); max-width: 640px;
  line-height: 1.6;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* HOW IT WORKS — STEPS */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: white; padding: 32px;
  border-radius: 16px; border: 1px solid var(--border);
  position: relative; transition: all .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-soft); }
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary-tint); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.step p { font-size: 15px; color: var(--ink-muted); line-height: 1.6; }

/* MODULES */
.modules {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module {
  background: white; padding: 28px;
  border-radius: 14px; border: 1px solid var(--border);
  transition: all .2s; cursor: default;
}
.module:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.module-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-tint); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
}
.module-icon.coral { background: var(--accent-soft); color: var(--accent-dark); }
.module-icon.amber { background: #FEF3C7; color: #B45309; }
.module-icon.indigo { background: #E0E7FF; color: #4338CA; }
.module h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.module p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.55; }
.module-pill {
  display: inline-block; margin-top: 14px;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.module-pill.flag { background: var(--primary); color: white; }
.module-pill.addon { background: var(--bg-soft); color: var(--ink-muted); border: 1px solid var(--border); }

/* SHOWCASE WITH PHOTO */
.showcase {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.62)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80") center/cover;
  color: white;
}
.showcase h2 { color: white; }
.showcase .section-lead { color: rgba(255,255,255,0.85); }
.showcase .section-eyebrow { color: var(--primary); }
.destinations {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.dest-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 24px 22px;
  transition: all .2s;
}
.dest-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.dest-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.dest-card p { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* TESTIMONIALS — simple */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial {
  background: white; padding: 32px;
  border-radius: 16px; border: 1px solid var(--border);
}
.testimonial-stars { color: var(--warning); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 18px; line-height: 1.55;
  font-weight: 500; color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.author-avatar.coral { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.author-name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.author-role { font-size: 13px; color: var(--ink-muted); }

/* PRICING */
.pricing {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.price-card {
  background: white; padding: 32px 28px;
  border-radius: 16px; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: all .2s;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px rgba(14, 165, 164, 0.15);
  position: relative;
}
.price-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--primary); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.price-tagline { font-size: 13.5px; color: var(--ink-muted); margin-bottom: 20px; }
.price-amount {
  font-size: 38px; font-weight: 800; color: var(--ink);
  margin-bottom: 4px; letter-spacing: -0.02em;
}
.price-amount span { font-size: 15px; font-weight: 600; color: var(--ink-muted); }
.price-fcfa { font-size: 12px; color: var(--ink-light); margin-bottom: 24px; }
.price-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.price-features li { font-size: 14px; color: var(--ink-muted); padding-left: 24px; position: relative; line-height: 1.5; }
.price-features li:before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--primary); font-weight: 800; font-size: 14px;
}
.price-cta {
  text-align: center; padding: 12px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  background: var(--bg-soft); color: var(--ink); border: 1px solid var(--border);
  transition: all .15s; cursor: pointer;
}
.price-card.featured .price-cta { background: var(--accent); color: white; border-color: var(--accent); }
.price-card.featured .price-cta:hover { background: var(--accent-dark); }
.price-cta:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* CTA FINAL */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
}
.cta-final h2 { color: white; max-width: 700px; margin: 0 auto; }
.cta-final p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,0.9); max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-final-btn {
  display: inline-block; margin-top: 36px;
  background: var(--accent); color: white;
  padding: 16px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  transition: all .15s; position: relative;
}
.cta-final-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-extra {
  margin-top: 18px; font-size: 13px;
  color: rgba(255,255,255,0.75);
  position: relative;
}

/* FOOTER */
footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid h5 { color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.foot-grid ul { list-style: none; line-height: 2; font-size: 14px; }
.foot-grid a:hover { color: white; }
.foot-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: white; font-size: 18px; margin-bottom: 16px; }
.foot-logo {
  height: 48px; width: auto;
  background: white; padding: 10px 18px; border-radius: 10px;
  display: block;
}
.foot-tagline { max-width: 320px; line-height: 1.6; font-size: 14px; }

/* PILIERS ALTERNÉS */
.pillars { padding: 100px 0; background: white; }
.pillar-block {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
  padding: 56px 0;
}
.pillar-block.reverse { grid-template-columns: 1fr 1.05fr; }
.pillar-block.reverse .pillar-content { order: 2; }
.pillar-block.reverse .pillar-visual { order: 1; }
.pillar-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark); margin-bottom: 18px;
}
.pillar-eyebrow strong { color: var(--primary); margin-right: 8px; }
.pillar-block h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 16px;
}
.pillar-sub {
  font-size: 17px; color: var(--ink-muted);
  line-height: 1.6; margin-bottom: 28px; max-width: 480px;
}
.pillar-bullets { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pillar-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.pillar-bullets li svg { flex-shrink: 0; margin-top: 2px; }
.pillar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white;
  padding: 12px 22px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600;
  transition: all .15s; box-shadow: var(--shadow-sm);
}
.pillar-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pillar-visual { position: relative; padding: 24px; }
.pillar-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--primary-tint), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--accent-soft), transparent 65%);
  border-radius: 24px; opacity: 0.7; z-index: -1;
}
.pillar-mock {
  background: white; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px; transition: transform .3s ease;
}
.pillar-block:hover .pillar-mock { transform: rotate(-0.4deg) translateY(-4px); }
.pillar-mock-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.pillar-mock-bar-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.pillar-mock-bar-meta { margin-left: auto; font-size: 11px; color: var(--ink-light); font-weight: 600; }
.pillar-mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: var(--bg-soft); margin-bottom: 8px;
  font-size: 12.5px;
}
.pillar-mock-row strong { color: var(--ink); font-weight: 600; }
.pillar-mock-row span { color: var(--ink-light); margin-left: auto; }
.pillar-mock-stat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 14px;
}
.pillar-mock-stat-card {
  border: 1px solid var(--border-soft); border-radius: 10px;
  padding: 14px; background: white;
}
.pillar-mock-stat-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-light); margin-bottom: 4px;
}
.pillar-mock-stat-value { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.pillar-mock-stat-trend { font-size: 11px; color: var(--success); font-weight: 600; margin-top: 2px; }
.pillar-mock-graph {
  height: 90px; padding: 14px; border-radius: 10px;
  background: var(--primary-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><path d='M0,50 L25,38 L50,42 L75,28 L100,32 L125,18 L150,22 L175,8 L200,12' stroke='%230EA5A4' stroke-width='2.5' fill='none' stroke-linecap='round'/><path d='M0,50 L25,38 L50,42 L75,28 L100,32 L125,18 L150,22 L175,8 L200,12 L200,60 L0,60 Z' fill='%230EA5A4' opacity='0.18'/></svg>");
  background-size: calc(100% - 28px) calc(100% - 28px);
  background-repeat: no-repeat; background-position: 14px 14px;
}
.pillar-mock-pill {
  display: inline-block; padding: 3px 10px;
  border-radius: 999px; font-size: 10px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.pillar-mock-pill.green { background: var(--primary-soft); color: var(--primary-dark); }
.pillar-mock-pill.coral { background: var(--accent-soft); color: var(--accent-dark); }
.pillar-mock-pill.amber { background: #FEF3C7; color: #B45309; }

/* COMPARAISON SANS/AVEC */
.compare-section { padding: 100px 0; background: var(--bg-section); }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 1080px; margin: 56px auto 0;
}
.compare-card {
  border-radius: 16px; padding: 36px 32px;
  transition: transform .25s ease;
}
.compare-card.without {
  background: var(--bg-soft); border: 1px solid var(--border);
  opacity: 0.92;
}
.compare-card.with {
  background: white; border: 2px solid var(--primary);
  box-shadow: 0 16px 48px rgba(14, 165, 164, 0.12);
  position: relative;
}
.compare-card.with:hover { transform: translateY(-4px); }
.compare-card-badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--primary); color: white;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.compare-card h3 {
  font-size: 22px; font-weight: 800; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.compare-card.without h3 { color: var(--ink-muted); }
.compare-card-sub { font-size: 13.5px; color: var(--ink-light); margin-bottom: 24px; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.5;
}
.compare-list li svg { flex-shrink: 0; margin-top: 2px; }
.compare-card.without li { color: var(--ink-muted); }
.compare-card.with li { color: var(--ink); }
.compare-cta-wrap { text-align: center; margin-top: 48px; }

/* TÉMOIGNAGES ENRICHIS */
.testimonial-rich {
  background: white; border-radius: 18px; border: 1px solid var(--border);
  padding: 36px; transition: all .25s ease;
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-rich:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.testimonial-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.testimonial-logo {
  font-weight: 800; font-size: 18px;
  color: var(--ink); letter-spacing: -0.01em;
}
.testimonial-chip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--primary-dark);
  background: var(--primary-tint); padding: 4px 12px;
  border-radius: 999px; border: 1px solid var(--primary-soft);
}
.testimonial-foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; flex-shrink: 0;
}
.testimonial-avatar.coral { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--ink-muted); }
.testimonial-modules { display: flex; flex-wrap: wrap; gap: 6px; }
.testimonial-module-pill {
  font-size: 11px; font-weight: 600;
  background: var(--bg-soft); color: var(--ink-muted);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--border);
}
.testimonial-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  transition: all .15s; align-self: flex-start;
}
.testimonial-link:hover { color: var(--primary-dark); gap: 10px; }

/* ONBOARDING 4 ÉTAPES */
.onboarding { padding: 100px 0; background: var(--bg-section); }
.onboarding-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px; position: relative;
}
.onboarding-grid::before {
  content: ""; position: absolute;
  top: 60px; left: 12.5%; right: 12.5%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 6px, transparent 6px, transparent 12px);
  opacity: 0.4; z-index: 0;
}
.step-card {
  background: white; border-radius: 16px; border: 1px solid var(--border);
  padding: 28px 24px; position: relative; z-index: 1;
  transition: all .2s ease;
}
.step-card:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step-number-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary-tint); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  margin: 0 auto 18px; transition: all .2s ease;
  border: 3px solid white; box-shadow: 0 0 0 1px var(--primary-soft);
}
.step-card:hover .step-number-circle { background: var(--primary); color: white; }
.step-icon { display: flex; justify-content: center; margin-bottom: 14px; color: var(--primary); }
.step-card h3 {
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; text-align: center;
}
.step-card p {
  font-size: 14px; color: var(--ink-muted);
  line-height: 1.55; text-align: center;
}

/* FAQ */
.faq-section { padding: 100px 0; background: white; }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 16px;
  font-family: inherit; font-size: 17px; font-weight: 600;
  color: var(--ink); text-align: left;
  transition: color .15s;
}
.faq-question:hover { color: var(--primary); }
.faq-question:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 4px; }
.faq-toggle {
  flex-shrink: 0; color: var(--primary);
  transition: transform .25s ease;
  display: flex; align-items: center; justify-content: center;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 480px; padding: 0 0 24px; }
.faq-answer p {
  font-size: 14.5px; line-height: 1.7; color: var(--ink-muted);
  max-width: 620px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
  .faq-toggle { transition: none; }
}

/* CATEGORY PILLS (page fonctionnalites.html) */
.category-pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.category-pill-crm { background: #E0F2FE; color: #075985; }
.category-pill-itineraire { background: var(--primary-tint); color: var(--primary-dark); }
.category-pill-facturation { background: #FEF3C7; color: #B45309; }
.category-pill-marketing { background: var(--accent-soft); color: var(--accent-dark); }
.category-pill-settings { background: #EDE9FE; color: #5B21B6; }

/* CATEGORY ANCHOR MENU (page fonctionnalites.html) */
.category-menu {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin: 40px auto 0;
  max-width: 980px; padding: 0 16px;
}
.category-menu a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 10px;
  background: white; border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: all .15s;
}
.category-menu a:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.category-menu a span.dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.category-menu a.crm span.dot { background: #0EA5E9; }
.category-menu a.itineraire span.dot { background: var(--primary); }
.category-menu a.facturation span.dot { background: #F59E0B; }
.category-menu a.marketing span.dot { background: var(--accent); }
.category-menu a.settings span.dot { background: #8B5CF6; }

/* CATEGORY HEADER (titre de section sur fonctionnalites.html) */
.category-header {
  padding: 64px 0 24px;
  text-align: center;
}
.category-header h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; margin: 12px auto 0;
  max-width: 720px;
}

/* (anciennes regles .module-detail supprimees - remplacees par version Editorial Premium plus bas) */

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .destinations { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .pillar-block, .pillar-block.reverse { grid-template-columns: 1fr; gap: 36px; }
  .pillar-block.reverse .pillar-content { order: 2; }
  .pillar-block.reverse .pillar-visual { order: 1; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card.with { order: -1; }
  .onboarding-grid { grid-template-columns: repeat(2, 1fr); }
  .onboarding-grid::before { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .modules, .pricing, .destinations, .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .onboarding-grid { grid-template-columns: 1fr; }
  .pillar-block { padding: 32px 0; }
}

/* ============================================================
 * EDITORIAL PREMIUM - Direction esthetique 2026
 * Style Stripe / Mews / Linear, refonte visuelle de la landing
 * ============================================================ */

/* Display serif italic pour les phrases d'accroche */
.display-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Hero refondu - asymetrie, halo, display serif */
.hero {
  padding: 96px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Hero centre quand la video est en showcase apres */
.hero-centered { padding: 100px 0 56px; }
.hero-centered .hero-text-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-centered .hero-eyebrow,
.hero-centered .hero-meta { justify-content: center; }
.hero-centered .hero-meta { display: flex; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-centered h1 { letter-spacing: -0.04em; }

/* HERO SPLIT EDITORIAL - texte gauche + preview cards flottantes */
.hero-split { padding: 88px 0 72px; }
.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-split .hero-text-block {
  position: relative;
  z-index: 1;
}
.hero-split .hero-text-block h1 { letter-spacing: -0.035em; }
.hero-split .hero-meta { flex-wrap: wrap; }

/* PREVIEW CARDS - 4 mini mockups flottants */
.hero-previews {
  position: relative;
  height: 540px;
}
.preview-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.10),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  font-family: var(--font-body);
  width: 280px;
  transition: transform 0.3s ease;
}
.preview-card:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 10;
}
.preview-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Card 1 - Site Web (top-left) */
.preview-site {
  top: 0;
  left: -40px;
  transform: rotate(-3deg);
  animation: floatA 6s ease-in-out infinite;
  z-index: 3;
}
.preview-site-mock {
  background: linear-gradient(135deg, #FEF3C7, #FED7AA);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
}
.preview-site-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
}
.preview-site-sub {
  font-size: 11px;
  color: var(--ink-muted);
  margin: 4px 0 10px;
}
.preview-site-cta {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* Card 2 - Devis IA (top-right, en avant) */
.preview-devis {
  top: 30px;
  right: -10px;
  transform: rotate(2deg);
  animation: floatB 7s ease-in-out infinite;
  z-index: 4;
}
.preview-devis-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-muted);
}
.preview-devis-row strong {
  color: var(--ink);
  font-weight: 700;
}
.preview-devis-total {
  margin-top: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-devis-total span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}
.preview-devis-total strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Card 3 - Chatbot (mid-left) */
.preview-chat {
  top: 240px;
  left: -20px;
  transform: rotate(-1.5deg);
  animation: floatC 8s ease-in-out infinite;
  z-index: 2;
}
.preview-chat-bubble {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
  line-height: 1.45;
}
.preview-chat-bubble.user {
  background: var(--accent);
  color: white;
  margin-left: 40px;
  border-bottom-right-radius: 4px;
}
.preview-chat-bubble.bot {
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--border-soft);
  border-bottom-left-radius: 4px;
}
.preview-chat-bubble .lang-pill {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary-dark);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

/* Card 4 - SEO (bottom-right) */
.preview-seo {
  top: 290px;
  right: -30px;
  transform: rotate(2.5deg);
  animation: floatD 9s ease-in-out infinite;
  z-index: 3;
}
.preview-seo-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.preview-seo-meta {
  font-size: 10.5px;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.preview-seo-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.preview-seo-scores > div {
  background: linear-gradient(135deg, #6366F1, #4f46e5);
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
.preview-seo-scores span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.preview-seo-scores strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

/* Animations drift subtiles */
@keyframes floatA {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}
@keyframes floatC {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-6px); }
}
@keyframes floatD {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(2.5deg) translateY(-9px); }
}

/* Responsive : sous 1100px on cache les cards flottantes (overflow visuel) */
@media (max-width: 1100px) {
  .hero-split .hero-grid { grid-template-columns: 1fr; }
  .hero-previews { display: none; }
  .hero-split .hero-text-block { text-align: center; max-width: 720px; margin: 0 auto; }
  .hero-split .hero-eyebrow, .hero-split .hero-meta, .hero-split .hero-actions { justify-content: center; }
  .hero-split .hero-meta { display: flex; }
  .hero-split .hero-sub { margin-left: auto; margin-right: auto; }
}

/* HERO SHOWCASE - video en grand sous le hero */
.hero-showcase {
  padding: 0 0 96px;
  background: linear-gradient(180deg, var(--cream) 0%, white 60%);
  position: relative;
}
.hero-showcase .container {
  max-width: 1280px;
  position: relative;
  z-index: 1;
}
.hero-showcase-frame {
  position: relative;
}
.hero-showcase-glow {
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(closest-side, rgba(14, 165, 164, 0.45), transparent 70%),
    radial-gradient(closest-side at 90% 90%, rgba(249, 112, 102, 0.32), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.hero-showcase-window {
  background: var(--ink-950);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  position: relative;
}
.hero-showcase-bar {
  background: #1a2535;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-showcase-bar .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #475569;
}
.hero-showcase-bar .dot.red { background: #FF6058; }
.hero-showcase-bar .dot.yellow { background: #FFBE2E; }
.hero-showcase-bar .dot.green { background: #28C940; }
.hero-showcase-url {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-showcase-window video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-showcase { padding-bottom: 56px; }
  .hero-showcase-glow { inset: -40px; filter: blur(40px); }
  .hero-showcase-bar { padding: 10px 14px; }
  .hero-showcase-url { display: none; }
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 90% -10%, rgba(14, 165, 164, 0.16), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(249, 112, 102, 0.10), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  background: white;
  border: 1px solid var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h1 .serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}
.hero-sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero { padding: 72px 0 88px; }

/* Halo derriere la video hero */
.hero-video-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink-950);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}
.hero-video-wrapper::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side, rgba(14, 165, 164, 0.35), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}
.hero-video-wrapper video {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}
.hero-video-frame {
  position: relative;
  display: inline-block;
}
.hero-video-frame::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  filter: blur(80px); opacity: 0.4;
  z-index: -2; bottom: -60px; right: -60px;
  border-radius: 50%;
  pointer-events: none;
}

/* Stats bar - sombre profond, 4 chiffres choc */
.stats-bar {
  background: var(--ink-950);
  color: white;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-bar::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 25% 10%, rgba(14, 165, 164, 0.20), transparent 60%),
    radial-gradient(600px 320px at 100% 90%, rgba(249, 112, 102, 0.14), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid > div {
  text-align: center;
  padding: 8px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-grid > div:last-child { border-right: none; }
.stats-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 7vw, 92px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(180deg, white, var(--primary-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.stats-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .stats-grid > div:nth-child(2) { border-right: none; }
  .stats-grid > div:nth-last-child(-n+2) { border-bottom: none; }
}

/* Section sombre (Pourquoi Travicy, comparatif) */
.section-dark {
  background: linear-gradient(180deg, var(--ink-950) 0%, #0a1525 100%);
  color: white;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 80% 20%, rgba(14, 165, 164, 0.18), transparent 60%),
    radial-gradient(700px 380px at 0% 80%, rgba(244, 63, 94, 0.10), transparent 60%);
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark .section-eyebrow { color: var(--primary-soft); }
.section-dark h2 { color: white; }
.section-dark h2 .serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-soft);
}
.section-dark .section-lead { color: rgba(255, 255, 255, 0.74); }

/* Section cream (warm contrast vs blanc) */
.section-cream { background: var(--cream); padding: 112px 0; }

/* Bandeau probleme (frustrations agences) */
.problem-band {
  background: var(--cream-warm);
  padding: 96px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.problem-card {
  background: white;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}
.problem-card .x-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}
.problem-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.problem-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* Section detaillee module - mockup gauche, texte droite (alterne) */
.module-detail {
  padding: 112px 0;
}
.module-detail.alt { background: var(--cream); }
.module-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.module-detail-grid.reverse { grid-template-columns: 1fr 1.1fr; }
.module-detail-grid.reverse .module-detail-visual { order: 2; }
.module-detail-grid.reverse .module-detail-content { order: 1; }
.module-detail-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.module-detail-eyebrow.primary { color: var(--primary-dark); }
.module-detail-eyebrow.accent { color: var(--accent-dark); }
.module-detail-eyebrow.indigo { color: var(--indigo); }
.module-detail h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.module-detail h3 .serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.module-detail-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.module-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 28px;
}
.module-detail-features li {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.module-detail-features .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}
.module-detail-roi {
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.08), rgba(14, 165, 164, 0.02));
  border: 1px solid var(--primary-soft);
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.module-detail-roi strong { color: var(--primary-dark); }
@media (max-width: 900px) {
  .module-detail-grid, .module-detail-grid.reverse { grid-template-columns: 1fr; gap: 48px; }
  .module-detail-grid.reverse .module-detail-visual { order: 2; }
  .module-detail-grid.reverse .module-detail-content { order: 1; }
  .module-detail-features { grid-template-columns: 1fr; }
}

/* Mockup window (cadre browser-like) */
.mockup-window {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  width: 100%;
}
.module-detail-visual { width: 100%; }
.mockup-window-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.mockup-window-bar .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border);
}
.mockup-window-bar .dot.red { background: #FF6058; }
.mockup-window-bar .dot.yellow { background: #FFBE2E; }
.mockup-window-bar .dot.green { background: #28C940; }
.mockup-window-url {
  margin-left: auto; background: white;
  padding: 4px 12px; border-radius: 6px;
  font-size: 11px; color: var(--ink-light);
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
  border: 1px solid var(--border);
}
.mockup-window-body { padding: 24px; }
.mockup-window-video video {
  width: 100%; display: block;
}

/* Mockup Devis IA */
.mockup-quote-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
  margin-top: 16px;
}
.mockup-quote-table thead {
  background: var(--cream);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  font-weight: 700;
}
.mockup-quote-table th {
  padding: 10px 14px;
  text-align: right;
  border-bottom: 1px solid var(--border-soft);
}
.mockup-quote-table th:first-child { text-align: left; }
.mockup-quote-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-soft);
  text-align: right;
}
.mockup-quote-table td:first-child { text-align: left; font-weight: 500; }
.mockup-quote-table tfoot {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}
.mockup-quote-table tfoot td {
  padding: 16px 14px;
  font-weight: 700;
  font-size: 16px;
  border: none;
}
.mockup-quote-table tfoot td .small { font-size: 11px; opacity: 0.85; font-weight: 500; display: block; }

/* Mockup Chatbot */
.mockup-chat {
  display: flex; flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.5;
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--accent);
  color: white;
  border-bottom-right-radius: 4px;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-bottom-left-radius: 4px;
}
.chat-bubble.bot .lang-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--primary-tint);
}
.chat-cta {
  align-self: flex-start;
  background: var(--primary-tint);
  border: 1px dashed var(--primary);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Mockup SEO Content */
.mockup-seo {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.mockup-article {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.mockup-article-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
}
.mockup-article-meta {
  font-size: 11px;
  color: var(--ink-light);
  margin-bottom: 14px;
}
.mockup-article h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 6px;
}
.mockup-article p {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.mockup-seo-side {
  background: var(--cream);
  padding: 16px;
  border-radius: 10px;
  font-size: 12px;
}
.mockup-seo-score {
  text-align: center;
  padding: 16px 8px;
  background: white;
  border-radius: 8px;
  margin-bottom: 12px;
}
.mockup-seo-score .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  color: var(--primary-dark);
  line-height: 1;
  font-weight: 400;
}
.mockup-seo-score .label {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.mockup-seo-cocon {
  list-style: none; padding: 0; margin: 0;
}
.mockup-seo-cocon li {
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
}
.mockup-seo-cocon li:last-child { border-bottom: none; }
.mockup-seo-cocon .pillar { color: var(--gold); font-weight: 700; }

/* Comparatif vs concurrents - tableau dans section sombre */
.compare-table {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
  backdrop-filter: blur(10px);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table thead {
  background: rgba(255, 255, 255, 0.04);
}
.compare-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-table th:first-child {
  font-weight: 700;
  color: white;
  font-size: 14px;
}
.compare-table th.travicy {
  background: linear-gradient(180deg, rgba(14, 165, 164, 0.18), rgba(14, 165, 164, 0.06));
  color: var(--primary-soft);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.compare-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-table td:first-child {
  font-weight: 600;
  color: white;
}
.compare-table td.travicy {
  background: rgba(14, 165, 164, 0.08);
  color: var(--primary-soft);
  font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-icon {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
}
.compare-icon.yes { color: var(--primary-soft); }
.compare-icon.no { color: rgba(255, 255, 255, 0.42); }
.compare-icon.partial { color: var(--gold-soft); }

/* CTA finale - plein ecran sombre + gradient mesh */
.cta-final-editorial {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-950) 100%);
  color: white;
  padding: 144px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-editorial::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(14, 165, 164, 0.28), transparent 60%),
    radial-gradient(900px 460px at 50% 100%, rgba(249, 112, 102, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-final-editorial .container { position: relative; z-index: 1; }
.cta-final-editorial h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}
.cta-final-editorial h2 .serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-soft);
}
.cta-final-editorial p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 44px;
}
.cta-final-editorial .cta-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.cta-final-editorial .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 24px 48px rgba(249, 112, 102, 0.36);
}
.cta-final-editorial .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 56px rgba(249, 112, 102, 0.48);
}
.cta-final-editorial .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 18px 36px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}
.cta-final-editorial .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

/* CTA buttons polish global */
.btn-primary.btn-large {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 28px rgba(249, 112, 102, 0.32);
  font-weight: 700;
  padding: 16px 30px;
  font-size: 15.5px;
  border-radius: 12px;
}
.btn-primary.btn-large:hover {
  box-shadow: 0 18px 36px rgba(249, 112, 102, 0.44);
  transform: translateY(-2px);
}

/* Hero meta check polish */
.hero-meta-check {
  color: white;
  background: var(--success);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-right: 6px;
}

/* Section head ajustement Editorial */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-head h2 .serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-dark);
}

/* Use case cards (etudes de cas a venir) */
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.use-case {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.25s;
}
.use-case:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.use-case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.use-case h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.use-case p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
@media (max-width: 768px) { .use-cases { grid-template-columns: 1fr; } }

/* Newsletter inline (footer ou CTA) */
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 24px auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.newsletter-form input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.10);
}

/* ============================================================
 * COOKIE BANNER (RGPD / CNIL)
 * ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 580px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.05);
  padding: 22px 24px;
  z-index: 9999;
  font-family: var(--font-body);
  display: none;
  animation: cookieSlideUp 0.4s ease-out;
}
.cookie-banner.show { display: block; }
@keyframes cookieSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cookie-banner p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.cookie-banner .cookie-accept {
  background: var(--ink);
  color: white;
}
.cookie-banner .cookie-accept:hover {
  background: #1e293b;
  transform: translateY(-1px);
}
.cookie-banner .cookie-refuse {
  background: white;
  color: var(--ink-muted);
  border: 1px solid var(--border);
}
.cookie-banner .cookie-refuse:hover {
  background: var(--bg-soft);
}
.cookie-banner .cookie-customize {
  background: transparent;
  color: var(--primary-dark);
  text-decoration: underline;
  margin-left: auto;
  font-weight: 500;
}
.cookie-banner .cookie-customize:hover {
  color: var(--primary);
}
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .cookie-banner .cookie-actions { gap: 6px; }
  .cookie-banner .cookie-customize { margin-left: 0; flex-basis: 100%; text-align: center; padding: 6px; }
}

/* MODAL Cookie preferences */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cookie-modal-overlay.show { display: flex; }
.cookie-modal {
  background: white;
  border-radius: 16px;
  max-width: 540px;
  width: 100%;
  padding: 32px 28px;
  max-height: 88vh;
  overflow-y: auto;
  font-family: var(--font-body);
}
.cookie-modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cookie-modal > p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cookie-cat {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-cat-head h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.cookie-cat-head .required-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  background: var(--primary-tint);
  padding: 3px 8px;
  border-radius: 999px;
}
.cookie-cat p {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  transition: 0.2s;
}
.cookie-toggle .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.cookie-toggle input:checked + .slider {
  background: var(--primary);
}
.cookie-toggle input:checked + .slider::before {
  transform: translateX(16px);
}
.cookie-toggle input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  flex: 1;
  min-width: 140px;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}
.cookie-modal-actions .save-pref {
  background: var(--ink);
  color: white;
}
.cookie-modal-actions .save-pref:hover { background: #1e293b; }
.cookie-modal-actions .accept-all {
  background: var(--primary);
  color: white;
}
.cookie-modal-actions .accept-all:hover { background: var(--primary-dark); }

/* GDPR badge dans footer */
.gdpr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}
.gdpr-badge svg {
  color: var(--primary-dark);
  flex-shrink: 0;
}
.gdpr-badge strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}
footer .gdpr-badge {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.7);
}
footer .gdpr-badge strong { color: white; }
footer .gdpr-badge svg { color: var(--primary-soft); }

/* ====================================================================
   REFONTE VISUELLE — animations + nouvelles sections
   Date : 2026-05-04
   Sections ajoutées : logo-wall, CRM, Marketing, ROI calc, Sécurité,
   Testimonials, FAQ, Pricing teaser
   ==================================================================== */

/* --- Keyframes scroll-triggered animations --- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 28px rgba(249, 112, 102, 0.32); }
  50% { box-shadow: 0 18px 44px rgba(249, 112, 102, 0.48); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes counter-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Reveal-on-scroll (initial state hidden, observer toggles .visible) --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* --- Pulse-glow on primary CTA in hero --- */
.hero .btn-primary.btn-large {
  animation: pulse-glow 3.2s ease-in-out infinite;
}

/* --- Fix btn-secondary on hero (was nearly invisible on light gradient bg) --- */
.hero .btn-secondary,
.cta-final-editorial .btn-ghost {
  border: 1.5px solid var(--ink);
  background: white;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.hero .btn-secondary:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

/* --- LOGO WALL / TRUST BAND --- */
.trust-band {
  background: white;
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
}
.trust-stat {
  text-align: center;
}
.trust-stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* --- ROI CALCULATOR (interactive, vanilla JS) --- */
.roi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.roi-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 1080px;
  margin: 48px auto 0;
  border: 1px solid var(--border-soft);
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .roi-grid { grid-template-columns: 1fr; gap: 32px; }
  .roi-card { padding: 32px 24px; }
}
.roi-inputs h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
}
.roi-input-row {
  margin-bottom: 24px;
}
.roi-input-row label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.roi-input-row label .roi-input-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--primary-dark);
  font-weight: 400;
}
.roi-input-row input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}
.roi-output {
  background: linear-gradient(135deg, var(--primary-tint), var(--primary-soft));
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.roi-output::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.18), transparent 70%);
  pointer-events: none;
}
.roi-output-eyebrow {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.roi-output-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.roi-output-unit {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.roi-output-breakdown {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  position: relative;
  z-index: 1;
}
.roi-output-breakdown strong {
  color: var(--ink);
  font-weight: 700;
}

/* --- SÉCURITÉ & RGPD --- */
.security-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.security-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.security-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.security-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-tint), var(--primary-soft));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-dark);
}
.security-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}
.security-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}
.security-badge-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.security-badge svg {
  color: var(--success);
  flex-shrink: 0;
}

/* --- TESTIMONIALS LANDING --- */
.testimonials-section {
  padding: 80px 0;
  background: white;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card-rich {
  background: linear-gradient(135deg, white 0%, var(--bg-section) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card-rich:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card-rich .quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--primary-soft);
  pointer-events: none;
  user-select: none;
}
.testimonial-rating {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.testimonial-quote-text em {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar-letters {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-avatar-letters.coral {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.testimonial-role {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.testimonial-modules-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.testimonial-module-pill-mini {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--primary-tint);
  color: var(--primary-dark);
  border-radius: 999px;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  padding: 80px 0;
  background: var(--cream);
}
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(14, 165, 164, 0.08);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-dark);
  transition: transform 0.2s;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-item .faq-content {
  padding: 0 26px 22px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item .faq-content strong {
  color: var(--ink);
}
.faq-item .faq-content a {
  color: var(--primary-dark);
  border-bottom: 1px solid var(--primary-soft);
  font-weight: 600;
}

/* --- PRICING TEASER (3 cards before CTA finale) --- */
.pricing-teaser-section {
  padding: 80px 0;
  background: white;
}
.pricing-grid-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .pricing-grid-teaser { grid-template-columns: 1fr; }
}
.pricing-card-teaser {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing-card-teaser.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 16px 48px rgba(14, 165, 164, 0.12);
  transform: translateY(-8px);
}
.pricing-card-teaser:hover:not(.featured) {
  border-color: var(--primary-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-featured-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card-teaser .pack-name {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.pricing-card-teaser .pack-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 6px;
}
.pricing-card-teaser .pack-price-currency {
  font-size: 22px;
  vertical-align: super;
  margin-right: 4px;
}
.pricing-card-teaser .pack-period {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 22px;
}
.pricing-card-teaser .pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pricing-card-teaser .pack-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.pricing-card-teaser .pack-features li:last-child { border-bottom: none; }
.pricing-card-teaser .pack-features svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}
.pricing-card-teaser .btn-pack {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-card-teaser.featured .btn-pack {
  background: var(--primary-dark);
  color: white;
}
.pricing-card-teaser.featured .btn-pack:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pricing-card-teaser:not(.featured) .btn-pack {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.pricing-card-teaser:not(.featured) .btn-pack:hover {
  background: var(--ink);
  color: white;
}

/* --- PROBLEM CARDS — étendu de 4 à 6 avec icônes --- */
.problem-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), #fce7e7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-dark);
}

/* --- DASHBOARD MOCKUP enhanced (CRM, Marketing) --- */
.dash-mockup {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-mockup-header {
  background: linear-gradient(180deg, #fafafa, #f4f4f4);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-mockup-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-mockup-header .dot.red { background: #f87171; }
.dash-mockup-header .dot.yellow { background: #fbbf24; }
.dash-mockup-header .dot.green { background: #34d399; }
.dash-mockup-header .url {
  margin-left: 18px;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: ui-monospace, monospace;
}
.dash-mockup-body {
  padding: 0;
}

/* CRM mockup specific */
.dash-crm-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: white;
  font-size: 12px;
}
.dash-crm-toolbar h5 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}
.dash-crm-toolbar-pill {
  background: var(--primary-tint);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.dash-crm-row {
  display: grid;
  grid-template-columns: 36px 1.4fr 1fr 0.8fr 0.6fr;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
}
.dash-crm-row:last-child { border-bottom: none; }
.dash-crm-row .crm-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 12px;
}
.dash-crm-row .crm-name { font-weight: 700; color: var(--ink); }
.dash-crm-row .crm-trip { color: var(--ink-muted); font-size: 12px; }
.dash-crm-row .crm-budget { font-weight: 700; color: var(--ink); }
.dash-crm-row .crm-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
}
.dash-crm-row .crm-badge.hot { background: var(--accent-soft); color: var(--accent-dark); }
.dash-crm-row .crm-badge.warm { background: #fef3c7; color: #B45309; }
.dash-crm-row .crm-badge.cold { background: #e0f2fe; color: #0369a1; }

/* Marketing mockup specific */
.dash-marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px 20px;
}
.dash-marketing-card {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 16px;
  font-size: 12px;
}
.dash-marketing-card-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.dash-marketing-card h6 {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.3;
}
.dash-marketing-card p {
  color: var(--ink-muted);
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0;
}
.dash-marketing-card .meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-light);
  font-weight: 600;
}
.dash-marketing-card .meta strong { color: var(--success); }

/* --- prefers-reduced-motion : respect accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero .btn-primary.btn-large { animation: none; }
}
