/* ============================================================
   RAGIANT.cloud — Design System
   Mobile-first · Chaleureux · Botanique · Premium-doux
   ============================================================ */

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

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --paper:         #F5EFE3;
  --paper-2:       #EDE4D3;
  --card:          #FBF7EE;
  --line:          #D9CCB6;
  --ink:           #2E2A24;
  --ink-soft:      #6B6356;
  --moss:          #5C7A52;
  --moss-deep:     #3E5838;
  --leaf:          #7FA86A;
  --terracotta:    #C77B4F;
  --terracotta-2:  #B5683C;
  --amber:         #E0A458;
  --teal:          #3E8C8C;
  --shadow:        rgba(62,88,56,.12);

  --r-lg: 24px;
  --r-md: 14px;
  --r-sm: 9px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 48px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  /* Texture discrète */
  background-image: radial-gradient(circle, var(--line) 0.6px, transparent 0.6px);
  background-size: 22px 22px;
  background-attachment: fixed;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--moss); text-decoration: none; }
a:hover { color: var(--moss-deep); }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }
fieldset { border: none; }

/* ── Typographie ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 2vw, 21px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── Boutons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--moss);
  color: #fff;
  box-shadow: 0 4px 16px var(--shadow);
}
.btn-primary:hover {
  background: var(--moss-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--moss);
  border: 2px solid var(--moss);
}
.btn-secondary:hover {
  background: var(--moss);
  color: #fff;
  transform: translateY(-2px);
}

.btn-warm {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(199,123,79,.25);
}
.btn-warm:hover {
  background: var(--terracotta-2);
  color: #fff;
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 3px;
}

/* ── Cartes ─────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(62,88,56,.16);
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding: var(--section-pad);
}

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

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(20px, 5vw, 48px);
}

.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 150ms, color 150ms;
}
.nav-links a:hover {
  background: var(--paper-2);
  color: var(--ink);
}

.nav-cta {
  display: none; /* masqué sur mobile — remplacé par .mobile-cta-fixed */
  font-size: 14px;
  padding: 10px 20px;
}

/* ── CTA fixe bas d'écran (mobile uniquement) ───────────── */
.mobile-cta-fixed {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 20px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  pointer-events: none;
}

.mobile-cta-fixed .btn {
  pointer-events: auto;
  width: 100%;
  max-width: 400px;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(62, 88, 56, .35);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  padding: 8px;
  transition: background 150ms;
}
.burger:hover { background: var(--paper-2); }
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--paper);
  z-index: 99;
  padding: 24px clamp(20px, 5vw, 48px);
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: var(--r-md);
  transition: background 150ms;
}
.mobile-menu a:hover { background: var(--paper-2); }
.mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

@media (min-width: 768px) {
  .burger { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .mobile-cta-fixed { display: none; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-content { max-width: 580px; }
.hero-content .eyebrow { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content .lead { margin-bottom: 32px; }

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

/* Hero avatars composition */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatars-scene {
  position: relative;
  width: 320px;
  height: 320px;
}

@media (min-width: 900px) {
  .avatars-scene {
    width: 420px;
    height: 420px;
  }
}

.avatar-bubble {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: var(--card);
  border: 3px solid var(--card);
  box-shadow: 0 8px 32px var(--shadow);
}

.avatar-bubble img { width: 100%; height: 100%; object-fit: cover; }

.avatar-bubble-behind { width: 110px; height: 110px; top: 8%; right: 6%; left: auto; z-index: 0; opacity: 0.92; }
.avatar-bubble-lg { width: 140px; height: 140px; top: 50%; left: 50%; transform: translate(-50%, -65%); z-index: 1; }
.avatar-bubble-md { width: 110px; height: 110px; bottom: 20%; right: 5%; }
.avatar-bubble-sm { width: 90px; height: 90px; bottom: 10%; left: 10%; }
.avatar-bubble-xs { width: 72px; height: 72px; top: 25%; left: 0; }

@media (min-width: 900px) {
  .avatar-bubble-behind { width: 140px; height: 140px; }
  .avatar-bubble-lg { width: 180px; height: 180px; }
  .avatar-bubble-md { width: 140px; height: 140px; }
  .avatar-bubble-sm { width: 112px; height: 112px; }
  .avatar-bubble-xs { width: 88px; height: 88px; }
}

/* Flottement avatars */
@keyframes float-a { 0%,100% { transform: translate(-50%, -65%) translateY(0); } 50% { transform: translate(-50%, -65%) translateY(-10px); } }
@keyframes float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-c { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes float-d { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.avatar-bubble-behind { animation: float-d 4.2s ease-in-out infinite 0.5s; }
.avatar-bubble-lg { animation: float-a 4s ease-in-out infinite; }
.avatar-bubble-md { animation: float-b 5s ease-in-out infinite 0.7s; }
.avatar-bubble-sm { animation: float-c 4.5s ease-in-out infinite 1.2s; }
.avatar-bubble-xs { animation: float-d 3.8s ease-in-out infinite 0.3s; }

/* Décor botanique hero */
.hero-leaf-1, .hero-leaf-2 {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}
.hero-leaf-1 { top: 10%; right: 2%; }
.hero-leaf-2 { bottom: 5%; left: 1%; transform: rotate(180deg); }

/* ── Bandeau réassurance ────────────────────────────────── */
.reassurance-bar {
  background: var(--moss);
  color: #fff;
  padding: 14px clamp(20px, 5vw, 48px);
}

.reassurance-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  align-items: center;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
  white-space: nowrap;
}

.reassurance-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── Section Problème ───────────────────────────────────── */
.problem-grid {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px 0;
}

.problem-tag {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.problem-transition {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--moss);
  font-style: italic;
  margin-top: 32px;
}

/* ── Section Équipe ─────────────────────────────────────── */
.team-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.team-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 12px;
  font-style: italic;
}

/* Filtres */
.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--line);
  color: var(--ink-soft);
  background: var(--card);
  transition: all 180ms ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--moss);
  color: var(--moss);
  background: rgba(92,122,82,.08);
}

.filter-btn.active {
  background: var(--moss);
  color: #fff;
  border-color: var(--moss);
}

/* Grille agents */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Carte agent */
.agent-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px 24px;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 250ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(62,88,56,.16);
}

.agent-card.hidden {
  display: none;
}

.agent-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.agent-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--shadow);
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-info { flex: 1; min-width: 0; }

.agent-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.agent-domain {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.agent-mission {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.agent-roi {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,164,88,.15);
  border: 1px solid rgba(224,164,88,.3);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.agent-roi-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.agent-tasks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.agent-task {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.agent-task::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}

/* ── Étapes ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.step-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--ink-soft); }

/* ── Calculateur ROI ────────────────────────────────────── */
.roi-section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.roi-calculator {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .roi-calculator { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.roi-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.roi-field .field-hint {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}

.roi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.roi-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--moss);
  border: 3px solid var(--card);
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
}

.roi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--moss);
  border: 3px solid var(--card);
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
}

.roi-slider-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--moss);
  min-width: 60px;
  text-align: right;
}

.roi-outputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roi-result-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 20px 24px;
  box-shadow: 0 2px 12px var(--shadow);
}

.roi-result-card .result-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.roi-result-card .result-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.roi-result-card .result-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Carte coût de l'inaction */
.roi-inaction-card {
  background: linear-gradient(135deg, rgba(199,123,79,.12), rgba(181,104,60,.08));
  border: 2px solid rgba(199,123,79,.3);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(199,123,79,.1);
}

.roi-inaction-card .result-label { color: var(--terracotta); }
.roi-inaction-card .result-value { color: var(--terracotta-2); }

.inaction-counter {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(199,123,79,.2);
}

.inaction-counter .counter-label {
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 500;
}

.inaction-counter .counter-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--terracotta-2);
}

.roi-cta-wrap {
  text-align: center;
  margin-top: 8px;
}

.roi-honesty {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 20px;
  font-style: italic;
  max-width: 600px;
  margin-inline: auto;
}

/* ── Preuve sociale ─────────────────────────────────────── */
.proof-header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: 48px;
}

.engagement-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 180ms ease;
}
.engagement-card:hover { transform: translateY(-3px); }

.engagement-card .eng-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.engagement-card .eng-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.engagement-card .eng-desc {
  font-size: 13px;
  color: var(--ink-soft);
}

.sectors-block {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.sectors-block h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-weight: 500;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.sector-tag {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.testimonials-placeholder {
  max-width: 500px;
  margin-inline: auto;
  text-align: center;
  padding: 32px;
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  color: var(--ink-soft);
  font-style: italic;
  font-size: 15px;
}

/* ── Données souveraineté ───────────────────────────────── */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.data-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px 24px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 180ms ease;
}
.data-card:hover { transform: translateY(-3px); }

.data-card .data-icon {
  width: 44px;
  height: 44px;
  background: rgba(92,122,82,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.data-card h3 { font-size: 17px; margin-bottom: 8px; }
.data-card p { font-size: 14px; color: var(--ink-soft); }

/* ── Différenciation ────────────────────────────────────── */
.diff-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.diff-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  font-style: italic;
  color: var(--moss);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 48px;
  line-height: 1.4;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.diff-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px 24px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 180ms ease;
}
.diff-card:hover { transform: translateY(-3px); }

.diff-card .diff-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: rgba(92,122,82,.25);
  line-height: 1;
  margin-bottom: 8px;
}

.diff-card h3 { font-size: 17px; margin-bottom: 8px; }
.diff-card p { font-size: 14px; color: var(--ink-soft); }

/* ── Formulaire contact ─────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 1fr 1fr; }
}

.contact-intro h2 { margin-bottom: 16px; }
.contact-intro .lead { margin-bottom: 24px; }

.contact-reassurance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-reassurance li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-reassurance li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  /* Évite que le footer/formulaire soit masqué par le CTA fixe */
  body { padding-bottom: 80px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  transition: border-color 180ms;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--moss);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-group .field-error {
  font-size: 12px;
  color: var(--terracotta);
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--terracotta);
}

.form-group.has-error .field-error { display: block; }

/* Créneaux radio */
.slot-group { display: flex; gap: 12px; }

.slot-option {
  flex: 1;
  position: relative;
}

.slot-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.slot-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 180ms;
  text-align: center;
  background: var(--card);
}

.slot-option input[type="radio"]:checked + label {
  border-color: var(--moss);
  background: rgba(92,122,82,.08);
  color: var(--moss);
}

.slot-option input[type="radio"]:focus-visible + label {
  outline: 3px solid var(--moss);
  outline-offset: 2px;
}

/* RGPD checkbox */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--moss);
  cursor: pointer;
}

.consent-group label {
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.5;
}

.consent-group label a {
  color: var(--moss);
  text-decoration: underline;
}

.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px 32px; }

/* Succès formulaire */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

.form-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); font-size: 15px; }

/* Bloc Calendly */
.calendly-block {
  margin-top: 24px;
  padding: 24px;
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  text-align: center;
}

.calendly-block p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 48px) 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

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

@media (min-width: 640px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand .logo-img { filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color 150ms;
}
.footer-col a:hover { color: #fff; }

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

/* ── Décorations botaniques SVG ─────────────────────────── */
.botanical-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.08;
}

/* ── Animations au scroll ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── prefers-reduced-motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-moss { color: var(--moss); }
.text-amber { color: var(--amber); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot anti-spam */
.hp-field { display: none !important; }

/* Section divider leaf */
.section-leaf-divider {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  opacity: 0.3;
}

/* Séparateur inline */
.inline-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  margin: 0 8px;
  opacity: 0.5;
}

/* ── ROI calculator slider fill (dynamic via JS) ─────────── */
.roi-slider { --val: 50%; }
/* Filled track (WebKit) */
.roi-slider::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--moss) var(--val), var(--line) var(--val));
  height: 6px;
  border-radius: 3px;
}
