/* ============================================
   TransacFlow — Landing Page
   ============================================ */

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

:root {
  --bg:         #0d111e;
  --bg-deep:    #020617;
  --bg-card:    linear-gradient(180deg, #0f172a, #020617);
  --accent:     #6176ff;
  --accent-dim: rgba(97,118,255,0.15);
  --accent-bd:  rgba(97,118,255,0.3);
  --border:     #1c243b;
  --text:       #f4f4f7;
  --muted:      rgba(244,244,247,0.6);
  --dim:        rgba(244,244,247,0.35);
  --green:      #22c55e;
  --radius:     16px;
  --radius-lg:  22px;
}

html { scroll-behavior: smooth; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero — cascade au chargement */
.hero h1   { animation: fadeUp 0.65s ease-out both; }
.hero p    { animation: fadeUp 0.65s ease-out 0.12s both; }
.hero-cta  { animation: fadeUp 0.65s ease-out 0.24s both; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  background: radial-gradient(1200px 600px at top, #141c35, #0d111e);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 56px;
  height: 68px;
  background: rgba(13,17,30,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
}

.nav-logo span { color: var(--accent); }

.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ============================================
   BUTTONS
   ============================================ */

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #6176ff, #8b97ff);
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(97,118,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(97,118,255,0.4);
  filter: brightness(1.05);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-full { width: 100%; }

.btn-ghost {
  background: #1a2140;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.btn-ghost:hover {
  background: #202862;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  text-align: center;
  padding: 200px 40px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: #7c8cff;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

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

/* ============================================
   PAIN POINTS
   ============================================ */

.pain-section {
  padding: 72px 40px 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border);
}

.pain-section h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 44px;
  line-height: 1.15;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pain-list li {
  font-size: 19px;
  font-weight: 500;
  color: var(--muted);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.pain-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(239, 68, 68, 0.65);
  font-weight: 700;
}

.pain-resolution {
  font-size: 18px;
  font-weight: 600;
  color: #c7d2fe;
  line-height: 1.7;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ============================================
   CARDS — FEATURES
   ============================================ */

.cards-section {
  padding: 40px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.cards-section h2 {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-bottom: 48px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 48px rgba(97,118,255,0.12);
}

.card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: #8b97ff;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-intro {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.card-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.card-result {
  font-size: 14px;
  font-weight: 600;
  color: #c7d2fe;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============================================
   POSITIONING LINE
   ============================================ */

.positioning {
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(97,118,255,0.04);
}

.positioning p {
  font-size: 20px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.positioning strong { color: var(--text); }

/* ============================================
   COMMENT CA MARCHE
   ============================================ */

/* ============================================
   IA SECTION
   ============================================ */

.ai-section {
  background: linear-gradient(180deg, #0b0f1f 0%, #060a18 60%, #0d111e 100%);
  border-top: 1px solid rgba(97,118,255,0.12);
  border-bottom: 1px solid rgba(97,118,255,0.12);
  padding: 96px 40px;
}

.ai-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(97,118,255,0.12);
  border: 1px solid rgba(97,118,255,0.3);
  color: #818cf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.ai-badge::before {
  content: "✦";
  font-size: 10px;
  color: #6366f1;
}

.ai-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #f4f4f7;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.ai-section-sub {
  font-size: 18px;
  color: rgba(244,244,247,0.6);
  text-align: center;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 64px;
}

.ai-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 52px;
}

.ai-proof-card {
  background: linear-gradient(160deg, rgba(15,23,42,0.9), rgba(6,9,24,0.95));
  border: 1px solid rgba(97,118,255,0.16);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-proof-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #818cf8, transparent);
  border-radius: 18px 18px 0 0;
}

.ai-proof-card:hover {
  border-color: rgba(97,118,255,0.38);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(97,118,255,0.1);
}

.ai-proof-icon {
  font-size: 28px;
  line-height: 1;
}

.ai-proof-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.3;
}

.ai-proof-card p {
  font-size: 14px;
  color: rgba(244,244,247,0.55);
  line-height: 1.6;
  flex: 1;
}

.ai-proof-example {
  font-size: 12.5px;
  font-style: italic;
  color: #818cf8;
  background: rgba(97,118,255,0.08);
  border: 1px solid rgba(97,118,255,0.16);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.5;
  margin-top: 4px;
}

/* ===== RAPPORT VENDEUR SPOTLIGHT ===== */
.vendor-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(6,9,24,0.98));
  border: 1px solid rgba(97,118,255,0.22);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.vendor-spotlight::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #a78bfa, #38bdf8);
}

.vendor-spotlight-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99,102,241,0.2);
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.vendor-spotlight-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.3;
  margin-bottom: 14px;
}

.vendor-spotlight-left p {
  font-size: 15px;
  color: rgba(244,244,247,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.vendor-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vendor-spotlight-list li {
  font-size: 14px;
  color: rgba(244,244,247,0.65);
  padding-left: 20px;
  position: relative;
}

.vendor-spotlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
}

.vendor-preview-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(244,244,247,0.35);
  margin-bottom: 12px;
}

.vendor-preview-box {
  background: rgba(6,9,24,0.8);
  border: 1px solid rgba(97,118,255,0.18);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: monospace;
}

.vendor-preview-line {
  font-size: 12.5px;
  color: rgba(244,244,247,0.5);
  line-height: 1.5;
}

.vendor-preview-line--subject {
  color: rgba(244,244,247,0.75);
  font-weight: 600;
  font-family: inherit;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(97,118,255,0.15);
  margin-bottom: 4px;
}

.vendor-preview-line--section {
  color: #818cf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  font-family: inherit;
}

.vendor-preview-tag {
  margin-top: 8px;
  font-size: 11px;
  color: #6366f1;
  font-family: inherit;
  opacity: 0.8;
  text-align: right;
}

/* Preview mail amélioré */
.vendor-preview-meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

.vendor-preview-meta-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(244,244,247,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 40px;
  flex-shrink: 0;
}

.vendor-preview-meta-value {
  font-size: 12px;
  color: rgba(244,244,247,0.55);
}

.vendor-preview-meta-subject {
  color: rgba(244,244,247,0.8);
  font-weight: 600;
}

.vendor-preview-divider {
  height: 1px;
  background: rgba(97,118,255,0.18);
  margin: 8px 0;
}

.vendor-preview-line em {
  color: #a5b4fc;
  font-style: normal;
}

.vendor-preview-line strong {
  color: rgba(244,244,247,0.8);
  font-weight: 600;
}

.vendor-preview-line--sign {
  font-size: 12px;
  color: rgba(244,244,247,0.4);
  line-height: 1.6;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(97,118,255,0.1);
}

/* Mails IA spotlight */
.mails-ia-spotlight {
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(6,9,24,0.98));
  border-color: rgba(99,102,241,0.22);
}

.mails-ia-preview {
  background: rgba(6,9,24,0.8);
  border: 1px solid rgba(97,118,255,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mails-ia-category {}

.mails-ia-category-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #818cf8;
  margin-bottom: 7px;
}

.mails-ia-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mail-pill {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  border-radius: 999px;
  font-size: 11.5px;
  color: rgba(244,244,247,0.65);
  white-space: nowrap;
}

.mails-ia-cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(97,118,255,0.12);
}

.mails-ia-cta-icon {
  font-size: 14px;
  color: #6366f1;
}

.mails-ia-cta-text {
  font-size: 11px;
  color: rgba(244,244,247,0.35);
  line-height: 1.5;
}

.ai-result-bar {
  width: 100%;
  background: linear-gradient(135deg, rgba(97,118,255,0.12), rgba(97,118,255,0.04));
  border: 1px solid rgba(97,118,255,0.25);
  border-radius: 16px;
  padding: 28px 40px;
  text-align: center;
}

.ai-result-bar p {
  font-size: 17px;
  color: rgba(244,244,247,0.7);
  line-height: 1.6;
}

.ai-result-bar strong {
  color: #c7d2fe;
  font-weight: 700;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section {
  padding: 96px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.how-section h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 52px;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bd);
  color: #8b97ff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   PRICING — 3 TIERS
   ============================================ */

.pricing-section {
  padding: 52px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.pricing-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-section-head h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.pricing-section-head p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-note-global {
  font-size: 13px;
  color: var(--dim);
}

.pricing-roi-callout {
  text-align: center;
  margin: 0 auto 52px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(97,118,255,0.13), rgba(97,118,255,0.04));
  border: 1px solid rgba(97,118,255,0.28);
  border-radius: 14px;
  font-size: 19px;
  font-weight: 700;
  color: #c7d2fe;
  letter-spacing: -0.2px;
  max-width: 620px;
  line-height: 1.4;
}

.pricing-tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: -8px;
}

.pricing-tier--featured .pricing-tier-name {
  color: #818cf8;
}

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

.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-tier:hover {
  transform: translateY(-5px);
  border-color: rgba(97,118,255,0.4);
  box-shadow: 0 20px 48px rgba(97,118,255,0.12);
}

.pricing-tier--featured {
  border-color: var(--accent-bd);
  box-shadow: 0 0 0 1px var(--accent-bd), 0 28px 64px rgba(97,118,255,0.18);
  padding-top: 48px;
}

.pricing-tier--featured:hover {
  transform: translateY(-7px);
  box-shadow: 0 0 0 1px var(--accent-bd), 0 36px 80px rgba(97,118,255,0.28);
}

.pricing-tier--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #6176ff, #8b97ff);
}

.pricing-popular-pill {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6176ff, #8b97ff);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 14px rgba(97,118,255,0.45);
}

.pricing-tier-agents {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.pricing-tier--featured .pricing-tier-agents {
  color: #a5b4fc;
}

.pricing-tier-price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-tier-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  vertical-align: middle;
}

.pricing-tier-price small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--dim);
  letter-spacing: 0;
  margin-top: 2px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.btn-tier-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-tier-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ============================================
   FINAL CTA STANDALONE
   ============================================ */

.final-cta-standalone {
  border-top: 1px solid var(--border);
  padding: 88px 40px;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.final-cta-standalone h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta-standalone p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.demo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
  display: inline-flex;
}

.demo-list li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.demo-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  padding: 80px 40px 40px; /* moins de padding haut */
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-no-title h2 {
  display: none;
}

.testimonials-no-title {
  margin-top: -50px; /* remonte un peu la section */
}

.testimonials-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  position: relative;
  min-width: 320px;
  flex-shrink: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-agency {
  font-size: 14px;
  color: var(--muted);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 48px;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: serif;
}

.testimonial-card cite {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  padding: 100px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.footer p {
  font-size: 13px;
  color: var(--dim);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(13,17,30,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.hidden { display: none; }

.modal-box {
  background: linear-gradient(180deg, #0f172a, #020617);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.modal-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-box input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-box input::placeholder { color: var(--dim); }

.modal-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(97,118,255,0.2);
}

.modal-box .btn-primary { margin-top: 8px; padding: 14px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  color: var(--dim);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.modal-close:hover { color: var(--text); }

.form-success {
  text-align: center;
  color: var(--green);
  padding: 24px 0;
  font-size: 15px;
  line-height: 1.7;
}

.hidden { display: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-tier--featured { padding-top: 48px; }
}

@media (max-width: 700px) {
  .nav { padding: 0 20px; }
  .nav-actions .btn-primary,
  .nav-actions .btn-ghost {
    padding: 7px 13px;
    font-size: 13px;
    border-radius: 10px;
  }
  .hero { padding: 80px 20px 72px; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .hero p { font-size: 17px; }
  .cards-section { padding: 60px 20px 72px; }
  .positioning { padding: 48px 20px; }
  .positioning p { font-size: 17px; }
  .ai-section { padding: 72px 20px; }
  .ai-section-title { font-size: 30px; }
  .ai-section-sub { font-size: 16px; margin-bottom: 40px; }
  .ai-proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .vendor-spotlight { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }
  .vendor-preview-box { display: none; }
  .mails-ia-preview { display: none; }
  .ai-result-bar { padding: 24px 20px; }
  .ai-result-bar p { font-size: 15px; }
  .how-section { padding: 64px 20px; }
  .pricing-section { padding: 64px 20px 56px; }
  .pricing-section-head h2 { font-size: 30px; }
  .final-cta-standalone { padding: 64px 20px; }
  .final-cta-standalone h2 { font-size: 28px; }
  .footer { flex-direction: column; gap: 10px; text-align: center; padding: 24px 20px; }
  .modal-box { padding: 32px 20px; }
}
