/* ===========================================================
   PALETTE & TOKENS
   =========================================================== */
:root {
  --ink: #0E1116;
  --paper: #FBF7F1;
  --paper-2: #F3ECDF;
  --line: #1A1F26;
  --corail: #FF5A4D;
  --corail-deep: #E04438;
  --cobalt: #2B3FE8;
  --cobalt-deep: #1F2DB8;
  --lime: #C7F25C;
  --sun: #FFC83D;
  --plum: #3B1E55;
  --shadow: 0 8px 0 var(--ink);
  --shadow-sm: 0 4px 0 var(--ink);
}

*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
.contact, #temoignages { scroll-margin-top: 80px }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
.display { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1 }
.italic { font-style: italic }
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { font-family: 'Fraunces', serif; font-weight: 800; font-size: 24px; letter-spacing: -0.03em }
.logo span { color: var(--corail); font-style: italic }
.nav-links { display: flex; gap: 28px; font-weight: 500; font-size: 14px }
.nav-links a:hover { color: var(--corail) }
.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: transform .15s;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--corail) }

/* Bouton hamburger mobile */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  width: 40px; height: 40px; touch-action: manipulation;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0 }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Menu mobile déroulant */
.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 49;
  background: var(--paper); border-bottom: 2px solid var(--ink);
  flex-direction: column; padding: 8px 0 16px;
}
.nav-mobile.open { display: flex }
.nav-mobile a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 16px;
  padding: 14px 32px; border-bottom: 1px solid rgba(14, 17, 22, .08);
  touch-action: manipulation;
}
.nav-mobile a:last-child { border-bottom: none }
.nav-mobile a:hover { color: var(--corail) }
.nav-mobile a:active { background: rgba(14, 17, 22, .04) }

@media (max-width: 768px) {
  .nav-links { display: none }
  .nav-cta { display: none }
  .hamburger { display: flex }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  padding: 80px 32px 120px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(199, 242, 92, .4), transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(255, 200, 61, .3), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--paper);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--lime); border-radius: 50% }
.hero h1 { font-size: clamp(48px, 7vw, 96px); margin: 0 0 24px }
.hero h1 em { color: var(--corail) }
.hero h1 .underline {
  padding: 0 6px; font-style: italic;
}
.hero p.lead { font-size: 20px; color: #3D444F; max-width: 520px; margin: 0 0 40px }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap }
.btn {
  padding: 18px 32px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--ink);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  touch-action: manipulation; min-height: 48px;
}
.btn-primary { background: var(--corail); color: var(--paper); box-shadow: var(--shadow-sm) }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 0 6px 0 var(--ink) }
.btn-ghost { background: transparent; color: var(--ink) }
.btn-ghost:hover { background: var(--ink); color: var(--paper) }

/* Cartes flottantes du hero */
.hero-cards { position: relative; height: 520px }
.float-card {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 20px;
}
.fc-1 { top: 0; right: 0; width: 280px; background: var(--cobalt); color: var(--paper); transform: rotate(3deg) }
.fc-2 { top: 160px; left: 0; width: 240px; background: var(--sun); transform: rotate(-4deg) }
.fc-3 { bottom: 0; right: 60px; width: 300px; background: var(--corail); color: var(--paper); transform: rotate(2deg) }
.float-card .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .85; margin-bottom: 10px }
.float-card .big { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 600; line-height: 1.1 }
.float-card .meta { margin-top: 14px; font-size: 13px; opacity: .9 }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr }
  .hero-cards { height: 380px; display: none }
}

/* ===========================================================
   PORTFOLIO
   =========================================================== */
.section { padding: 100px 32px; max-width: 1280px; margin: 0 auto }
.section-head { margin-bottom: 64px; max-width: 720px }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--ink); text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(40px, 5vw, 64px); margin: 0 }
.section-head h2 em { color: var(--corail) }
.section-head p { font-size: 18px; color: #3D444F; margin: 20px 0 0 }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr } }

.work-card {
  border: 2px solid var(--ink); border-radius: 24px;
  overflow: hidden; background: var(--paper);
  transition: transform .25s, box-shadow .25s;
}
.work-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink) }
.work-thumb {
  aspect-ratio: 16/10;
  border-bottom: 2px solid var(--ink);
  position: relative; overflow: hidden;
}
.work-info { padding: 24px 28px }
.work-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px }
.work-cat { font-size: 12px; font-weight: 600; color: var(--cobalt); letter-spacing: .1em; text-transform: uppercase }
.work-year { font-size: 13px; color: #666; font-family: 'Fraunces', serif; font-style: italic }
.work-title { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em }
.work-desc { font-size: 14px; color: #3D444F; margin: 0 }

/* Vignette Kanto Rennes */
.thumb-kanto {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .15), transparent 50%),
    linear-gradient(135deg, #1B1430 0%, #3B1E55 50%, #0F0820 100%);
  display: flex; align-items: center; justify-content: center;
}
.thumb-kanto::before {
  content: "● LIVE";
  position: absolute; top: 18px; left: 18px;
  background: var(--corail); color: var(--paper);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 10px; border-radius: 4px;
}
.thumb-kanto::after {
  content: "WHATNOT";
  position: absolute; top: 18px; right: 18px;
  color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .15em;
}
.kanto-card {
  width: 140px; height: 200px; border-radius: 12px;
  background: linear-gradient(160deg, #FFD93D 0%, #FF8C42 100%);
  border: 3px solid var(--paper);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5), 0 8px 16px rgba(0, 0, 0, .3);
  transform: rotate(-6deg);
  position: relative; overflow: hidden;
}
.kanto-card::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1.5px solid rgba(0, 0, 0, .3);
  border-radius: 6px;
}
.kanto-card::after {
  content: "PSA 10";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--lime);
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 3px;
}
.kanto-card-2 {
  width: 140px; height: 200px; border-radius: 12px;
  background: linear-gradient(160deg, #4A90E2 0%, #7B61FF 100%);
  border: 3px solid var(--paper);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  transform: rotate(8deg) translateX(-30px);
  position: absolute;
}

/* Vignette Maroma Barber */
.thumb-maroma {
  background: repeating-linear-gradient(
    180deg,
    #C03535 0px, #C03535 28px,
    #9A9A9A 28px, #9A9A9A 56px,
    #2A4EA0 56px, #2A4EA0 84px,
    #9A9A9A 84px, #9A9A9A 112px
  );
  display: flex; align-items: center; justify-content: center;
}
.pole {
  width: 52px; height: 220px; border-radius: 26px;
  border: 4px solid #F4C542;
  background: repeating-linear-gradient(
    135deg,
    #ED1C24 0, #ED1C24 14px,
    var(--paper) 14px, var(--paper) 28px,
    #1B5FA8 28px, #1B5FA8 42px,
    var(--paper) 42px, var(--paper) 56px
  );
  box-shadow: 0 0 0 3px rgba(244,197,66,.4), 0 20px 50px rgba(0, 0, 0, .5);
  position: relative;
}
.pole::before, .pole::after {
  content: ""; position: absolute; left: -8px; right: -8px; height: 18px;
  background: linear-gradient(180deg, #F4C542, #C8920A);
  border: 2px solid rgba(0,0,0,.2); border-radius: 4px;
}
.pole::before { top: -10px }
.pole::after { bottom: -10px }

/* Cartes "à venir" */
.work-card.coming { opacity: .55 }
.thumb-soon {
  background: repeating-linear-gradient(
    45deg, var(--paper-2), var(--paper-2) 20px,
    var(--paper) 20px, var(--paper) 40px
  );
  display: flex; align-items: center; justify-content: center;
}
.thumb-soon span {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 32px;
  color: var(--ink); background: var(--paper);
  padding: 10px 24px; border: 2px solid var(--ink); border-radius: 999px;
}

/* ── Vignette Plomberie Le Goff ── */
.thumb-plomb {
  background-color: #3a6e8c;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.08) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-client-logo {
  max-height: 70%;
  max-width: 80%;
  object-fit: contain;
}

/* ===========================================================
   OUTILS & INTÉGRATIONS
   =========================================================== */
.tools-section {
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 56px 32px;
}
.tools-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.tools-inner .section-tag { color: var(--lime) }
.tools-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--paper);
  margin: 8px 0 32px;
  letter-spacing: -0.02em;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.tool-pill {
  background: rgba(251,247,241,.07);
  border: 1.5px solid rgba(251,247,241,.18);
  color: var(--paper);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .15s, border-color .15s, color .15s;
}
.tool-pill:hover {
  background: rgba(199,242,92,.12);
  border-color: var(--lime);
  color: var(--lime);
}
.tools-note {
  font-size: 13px;
  color: rgba(251,247,241,.45);
  margin: 0;
  font-style: italic;
}

/* ===========================================================
   OFFRES — Section principale
   =========================================================== */
.offers-bg {
  background: var(--paper-2);
  padding: 100px 0 80px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.offers-head {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 32px;
}
.offers-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0;
}
.offers-head p {
  font-size: 18px;
  color: #3D444F;
  margin: 20px 0 0;
  max-width: 720px;
}

/* --- Toggle Abonnement / Achat --- */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.pricing-toggle {
  display: inline-flex;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}
.toggle-btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  /* Animation douce au survol et au clic */
  transition: background .2s, color .2s, transform .1s;
  font-family: 'Inter', sans-serif;
  min-height: 48px;
  touch-action: manipulation;
}
.toggle-btn.active {
  background: var(--ink);
  color: var(--paper);
}
.toggle-btn:hover:not(.active) {
  background: rgba(14, 17, 22, .08);
}
.toggle-btn:active {
  transform: scale(.97);
}

/* --- Grilles de tarifs (panels) --- */
/* Les deux panels sont cachés par défaut */
.pricing-panel {
  display: none;
}
/* Quand le panel devient actif, il s'affiche avec une animation */
.pricing-panel.visible {
  display: block;
  animation: fadeSlideIn .3s ease forwards;
}
/* Animation entrée : glisse vers le haut + fondu */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* Grille des cartes tarifaires */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr } }

/* --- Cartes tarifaires --- */
.offer {
  border: 1px solid #d9d1bc;
  border-radius: 28px;
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.offer:hover { transform: translateY(-3px); }
.offer.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 36px 60px -32px rgba(20,15,5,.55);
}
.offer.featured:hover { transform: translateY(-15px); }
.offer-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #0c1a04;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 8px 24px -8px rgba(205,255,59,.6);
  white-space: nowrap;
}
.offer-name { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 14px; opacity: .75 }
.offer-name.featured-tag { color: var(--lime); opacity: 1 }
.offer-price {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.offer-price.price-achat { font-size: clamp(38px, 4vw, 54px); }
.offer-price small {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  opacity: .55;
}
.offer-period {
  font-size: 13px;
  opacity: .65;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.offer-sub { font-size: 14px; opacity: .75; margin: 8px 0 24px; max-width: 32ch; }
.offer-features { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.offer-features li {
  font-size: 14px; padding-left: 24px;
  position: relative; line-height: 1.5; opacity: .9;
}
.offer.featured .offer-features li { opacity: .9 }
.offer-features li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 2px;
  background: currentColor; opacity: .5;
}
.offer.featured .offer-features li::before { background: var(--lime); opacity: 1 }
.offer .btn { width: 100%; justify-content: center }
.offer.featured .btn-primary { background: var(--corail); color: var(--paper); border-color: var(--corail) }

/* ===========================================================
   SECTION AGENTS IA (toujours visible sous les tarifs)
   =========================================================== */
.agents-section {
  max-width: 1280px;
  margin: 72px auto 0;
  padding: 0 32px;
  border-top: 2px dashed rgba(14, 17, 22, .15);
  padding-top: 64px;
}
.agents-section-head {
  margin-bottom: 40px;
}
.agents-section-head h3 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 8px 0 0;
}
.agents-section-head h3 em {
  color: var(--cobalt);
}
.agents-section-head p {
  font-size: 16px;
  color: #3D444F;
  margin: 16px 0 0;
  max-width: 620px;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .agents-grid { grid-template-columns: 1fr } }

/* Carte agent : même style que .offer mais plus compact */
.agent-card {
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px 24px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
/* Variante mise en avant : fond plum (violet foncé) */
.agent-card.featured-agent {
  background: var(--plum);
  color: var(--paper);
}
.agent-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin: 12px 0 4px;
}
.agent-price span {
  font-size: 20px;
  font-weight: 400;
  opacity: .8;
}
.agent-recurrence {
  font-size: 13px;
  font-style: italic;
  opacity: .7;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
}
/* La ligne de séparation dans les features d'agent est plus subtile */
.agent-card .offer-features li {
  border-bottom-color: rgba(14, 17, 22, .06);
}
.agent-card.featured-agent .offer-features li {
  border-bottom-color: rgba(255, 255, 255, .1);
}

/* ===========================================================
   GARANTIES (4 blocs sous les agents)
   =========================================================== */
.garanties-wrap {
  max-width: 1280px;
  margin: 48px auto;
  padding: 0 32px;
}
.garanties-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .garanties-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 480px)  { .garanties-grid { grid-template-columns: 1fr } }

.garantie {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 20px 18px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.garantie strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
}
.garantie span {
  font-size: 13px;
  color: #3D444F;
  line-height: 1.4;
}
/* Icône textuelle devant chaque garantie */
.garantie::before {
  font-size: 20px;
}
.garantie:nth-child(1)::before { content: "⚡" }
.garantie:nth-child(2)::before { content: "🛡" }
.garantie:nth-child(3)::before { content: "🔓" }
.garantie:nth-child(4)::before { content: "✓" }

/* ===========================================================
   PROCESS
   =========================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr } }

.step {
  border: 2px solid var(--ink); border-radius: 18px;
  padding: 28px 24px; background: var(--paper);
  position: relative;
}
.step:nth-child(1) { background: var(--lime) }
.step:nth-child(2) { background: var(--sun) }
.step:nth-child(3) { background: var(--corail); color: var(--paper) }
.step:nth-child(4) { background: var(--cobalt); color: var(--paper) }
.step-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 48px; font-weight: 600; line-height: 1; margin-bottom: 16px;
}
.step h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; margin: 0 0 8px }
.step p { font-size: 14px; margin: 0; opacity: .85; line-height: 1.5 }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
  background: var(--corail); color: var(--paper);
  padding: 80px 32px; text-align: center;
  border-top: 2px solid var(--ink);
}
.contact h2 {
  font-family: 'Fraunces', serif; font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 20px; font-weight: 600;
}
.contact h2 em { font-style: italic; padding: 0 8px; color: var(--ink) }
.contact p { font-size: 18px; max-width: 600px; margin: 0 auto 36px; opacity: .95 }

.contact-form {
  max-width: 560px; margin: 0 auto;
  display: grid; gap: 14px;
  background: var(--paper);
  padding: 32px; border-radius: 18px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  color: var(--ink); text-align: left;
}
.contact-form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--ink); border-radius: 10px;
  font-family: inherit; font-size: 14px;
  background: var(--paper); color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; background: var(--paper-2);
  box-shadow: 0 0 0 3px var(--lime);
}
.contact-form textarea { min-height: 120px; resize: vertical }
/* Champ honeypot anti-bot : invisible aux humains, rempli par les bots */
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0 }
.contact-form button { margin-top: 8px }
.form-note { font-size: 11px; color: #666; margin-top: 10px; font-style: italic }
.contact-direct { display: flex; gap: 16px; justify-content: center; margin-top: 30px; flex-wrap: wrap }

/* ===========================================================
   FOOTER
   =========================================================== */
footer { background: var(--ink); color: var(--paper); padding: 60px 32px 28px }
.foot-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 480px)  { .foot-grid { grid-template-columns: 1fr } }
.foot-brand .display { font-size: 36px; color: var(--paper) }
.foot-brand p { font-size: 14px; color: #9CA3AF; max-width: 300px; margin-top: 16px }
.foot-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin: 0 0 18px; color: var(--lime) }
.foot-col a { display: block; font-size: 14px; color: #D1D5DB; padding: 6px 0 }
.foot-col a:hover { color: var(--corail) }
.foot-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid #2D3340; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #9CA3AF;
}

/* ===========================================================
   PAGE HERO (sous-pages)
   =========================================================== */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 32px;
  border-bottom: 2px solid var(--ink);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto }
.page-hero .section-tag { color: var(--lime); margin-bottom: 16px }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  margin: 8px 0 20px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-hero p { font-size: 18px; opacity: .82; max-width: 620px; margin: 0; line-height: 1.6 }

/* ===========================================================
   USE CASE CARDS (agents-ia.html)
   =========================================================== */
.uc-section { padding: 72px 32px 100px }
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) { .uc-grid { grid-template-columns: 1fr } }
.uc-grid .uc-card:nth-child(5) { grid-column: 1 / -1; max-width: 640px; margin: 0 auto; width: 100% }
@media (max-width: 900px) { .uc-grid .uc-card:nth-child(5) { grid-column: auto; max-width: 100% } }

.uc-card {
  border: 2px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.uc-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink) }

.uc-visual {
  padding: 28px 32px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  justify-content: flex-end;
  position: relative;
}
.uc-card:nth-child(1) .uc-visual { background: var(--cobalt); color: var(--paper) }
.uc-card:nth-child(2) .uc-visual { background: var(--corail); color: var(--paper) }
.uc-card:nth-child(3) .uc-visual { background: var(--plum); color: var(--paper) }
.uc-card:nth-child(4) .uc-visual { background: var(--lime); color: var(--ink) }
.uc-card:nth-child(5) .uc-visual { background: var(--sun); color: var(--ink) }

.uc-index {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  opacity: .18;
  position: absolute;
  top: 12px;
  right: 24px;
}
.uc-flow { display: flex; align-items: center; gap: 6px; flex-wrap: wrap }
.uc-node {
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.uc-node.main { background: rgba(255,255,255,.35); border-color: rgba(255,255,255,.6) }
.uc-card:nth-child(4) .uc-node,
.uc-card:nth-child(5) .uc-node { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.2) }
.uc-card:nth-child(4) .uc-node.main,
.uc-card:nth-child(5) .uc-node.main { background: rgba(0,0,0,.18); border-color: rgba(0,0,0,.35) }
.uc-arrow { font-size: 14px; opacity: .55; flex-shrink: 0 }

.uc-body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1 }
.uc-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--cobalt); margin-bottom: 8px;
}
.uc-title { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; margin: 0 0 12px; letter-spacing: -.01em }
.uc-desc { font-size: 14px; color: #3D444F; margin: 0 0 20px; line-height: 1.65; flex-grow: 1 }
.uc-features { list-style: none; padding: 0; margin: 0 0 20px; border-top: 1px solid rgba(14,17,22,.08) }
.uc-features li {
  font-size: 13px; padding: 9px 0;
  border-bottom: 1px solid rgba(14,17,22,.06);
  display: flex; gap: 8px; align-items: flex-start; color: #3D444F;
}
.uc-features li::before { content: "→"; color: var(--corail); font-weight: 700; flex-shrink: 0; margin-top: 1px }
.uc-tech { display: flex; flex-wrap: wrap; gap: 6px }
.uc-pill {
  background: var(--paper-2);
  border: 1.5px solid rgba(14,17,22,.1);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

/* ===========================================================
   CONTACT PAGE (pages/contact.html)
   =========================================================== */
.contact-page-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px }
}
.contact-info-col h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.contact-info-col h2 em { color: var(--corail); font-style: italic }
.contact-info-col > p { font-size: 16px; color: #3D444F; margin: 0 0 40px; line-height: 1.7 }
.contact-info-list { display: flex; flex-direction: column; gap: 14px }
.contact-info-item {
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 18px 22px;
  background: var(--paper-2);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px }
.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px }
.contact-info-item span, .contact-info-item a { font-size: 14px; color: #3D444F }
.contact-info-item a:hover { color: var(--corail) }

.contact-form-page {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-page h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 28px;
  letter-spacing: -.01em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr } }
.form-group { margin-bottom: 14px }
.form-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--paper);
  color: var(--ink);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: var(--paper-2);
  box-shadow: 0 0 0 3px var(--lime);
}
.form-group textarea { min-height: 130px; resize: vertical }
.contact-form-page .btn { width: 100%; justify-content: center; margin-top: 8px }

/* ===========================================================
   NOS AGENTS IA — Section dédiée
   =========================================================== */

/* Wrapper de section */
.agents-ia-section {
  padding: 100px 0 80px;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

/* En-tête */
.agents-ia-head {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.agents-ia-head h2 { font-size: clamp(40px, 5vw, 64px); margin: 0 }
.agents-ia-intro {
  font-size: 17px;
  color: #3D444F;
  max-width: 640px;
  margin: 16px 0 0;
  line-height: 1.65;
}

/* Grille auto-ajustable : 3 colonnes sur desktop, 1 sur mobile */
.agents-ia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 0;
  align-items: stretch;
}

/* ── Carte de base ── */
.agent-ia-card {
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── Carte mise en avant (Agent 2) ── */
.agent-ia-card--featured {
  background: var(--ink);
  color: var(--paper);
}

/* ── Header de carte ── */
.agent-ia-header { padding: 36px 28px 0 }

/* Icône principale (~3rem) */
.agent-ia-icon {
  font-size: 40px;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.agent-ia-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.agent-ia-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  margin: 0 0 14px;
  opacity: .75;
}
.agent-ia-desc {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  opacity: .85;
}

/* ── Corps de carte ── */
.agent-ia-body { padding: 20px 28px; flex-grow: 1 }

/* Labels de sous-section */
.agent-ia-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0 0 10px;
  color: #666;
}
.agent-ia-card--featured .agent-ia-label { color: rgba(251,247,241,.55) }
.agent-ia-label--green { color: #1A7D45 }
.agent-ia-label--orange { color: #B45309 }
.agent-ia-card--featured .agent-ia-label--green { color: var(--lime) }
.agent-ia-card--featured .agent-ia-label--orange { color: var(--sun) }

/* Listes de fonctionnalités / points forts / limites */
.agent-ia-features ul,
.agent-ia-strengths ul,
.agent-ia-limits ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.agent-ia-features li,
.agent-ia-strengths li,
.agent-ia-limits li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(14,17,22,.07);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.agent-ia-card--featured .agent-ia-features li,
.agent-ia-card--featured .agent-ia-strengths li,
.agent-ia-card--featured .agent-ia-limits li {
  border-bottom-color: rgba(255,255,255,.1);
}

/* Indicateurs visuels checkmark vert / warning orange */
.ia-check { color: #1A7D45; font-weight: 700; flex-shrink: 0; margin-top: 1px }
.ia-warn  { color: #B45309; flex-shrink: 0; margin-top: 1px }
.agent-ia-card--featured .ia-check { color: var(--lime) }
.agent-ia-card--featured .ia-warn  { color: var(--sun) }

/* Note "base de connaissance" (agent 2 uniquement) */
.agent-ia-knowledge {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 2px 0 18px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(43,63,232,.07);
  border-left: 3px solid var(--cobalt);
}
.agent-ia-card--featured .agent-ia-knowledge {
  background: rgba(199,242,92,.1);
  border-left-color: var(--lime);
}

/* Séparateur entre fonctionnalités et points forts */
.agent-ia-divider {
  border: none;
  border-top: 1px solid rgba(14,17,22,.12);
  margin: 4px 0 16px;
}
.agent-ia-card--featured .agent-ia-divider { border-top-color: rgba(255,255,255,.15) }

/* ── Footer de carte ── */
.agent-ia-footer {
  padding: 16px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agent-ia-ideal { font-size: 12.5px; opacity: .7; line-height: 1.5 }
.agent-ia-ideal strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 3px;
}

/* Prix en fourchette */
.agent-ia-price-main {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.agent-ia-price-main span {
  font-size: 20px;
  font-weight: 400;
  opacity: .7;
  font-style: italic;
}
.agent-ia-price-sub {
  font-size: 12px;
  opacity: .6;
  font-style: italic;
  font-family: 'Fraunces', serif;
  line-height: 1.4;
}

/* CTA pleine largeur */
.agent-ia-footer .btn { width: 100%; justify-content: center }
.agent-ia-card:not(.agent-ia-card--featured) .btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.agent-ia-card:not(.agent-ia-card--featured) .btn-ghost:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.agent-ia-card--featured .btn-primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

/* ── FAQ ── */
.agents-ia-faq {
  max-width: 1280px;
  margin: 64px auto 0;
  padding: 56px 32px 0;
  border-top: 2px dashed rgba(14,17,22,.15);
}
.agents-ia-faq-title { font-size: clamp(28px, 3.5vw, 44px); margin: 0 0 36px }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}
.faq-item {
  border: 2px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  touch-action: manipulation;
  min-height: 48px;
}
/* Indicateur + / × animé */
.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg) }
.faq-question:hover { background: var(--paper-2) }

/* Réponse masquée par défaut, révélée via JS */
.faq-answer { display: none; padding: 0 22px 18px }
.faq-answer.open { display: block }
.faq-answer p { font-size: 14px; color: #3D444F; line-height: 1.65; margin: 0 }

/* ── Responsive ── */
@media (max-width: 900px) {
  .agents-ia-section { padding: 72px 0 60px }
  .agents-ia-head { margin-bottom: 40px }
  /* Plus d'espace vertical sur mobile pour que le badge soit visible */
  .agents-ia-grid { gap: 44px }
  /* FAQ en 1 colonne sur mobile */
  .faq-grid { grid-template-columns: 1fr }
}

/* ===========================================================
   AGENTS IA — Grille 3 colonnes (index.html)
   =========================================================== */
.agents-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .agents-offers-grid { grid-template-columns: 1fr; padding: 0 20px }
}

/* ===========================================================
   ROI BANNER
   =========================================================== */
.roi-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cobalt);
  color: var(--paper);
  border-radius: 16px;
  padding: 20px 32px;
  margin: 0 32px 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.55;
}
.roi-highlight {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 600px) {
  .roi-banner { flex-direction: column; text-align: center; margin: 0 20px 32px }
}

/* ===========================================================
   EXEMPLES CONCRETS (expand / collapse sur cartes agents)
   =========================================================== */
.agent-example-btn {
  width: auto;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  color: var(--cobalt);
  text-align: left;
  margin-bottom: 16px;
  display: inline-block;
  transition: opacity .15s;
}
.agent-example-btn:hover { opacity: .65; background: none }
.agent-example-btn::after { content: none }
.offer.featured .agent-example-btn { color: var(--lime) }

.agent-example {
  display: none;
  background: rgba(14,17,22,.05);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.agent-example.open { display: block }
.offer.featured .agent-example { background: rgba(255,255,255,.1) }
.example-label {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .6;
  margin: 0 0 8px;
}
.example-msg {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px 8px 8px 2px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  border: 1px solid rgba(14,17,22,.1);
  margin-top: 6px;
}

/* ===========================================================
   OPTION B — ANIMATIONS EXEMPLES AGENTS
   =========================================================== */

/* Prospection : lignes d'envoi animées */
.mock-sending { display: flex; flex-direction: column; gap: 7px }
.send-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(14,17,22,.1);
  border-radius: 8px; padding: 8px 12px;
  font-size: 12px; color: var(--ink);
  opacity: 0;
  animation: slideInRight .35s ease forwards;
}
.send-icon { font-size: 14px; flex-shrink: 0 }
.send-text { flex-grow: 1; line-height: 1.3 }
.send-status { font-size: 11px; font-weight: 700; flex-shrink: 0 }
.send-status.sent { color: #22c55e }
.send-status.typing { color: var(--cobalt); animation: blink 1s ease infinite }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(14px) }
  to   { opacity: 1; transform: translateX(0) }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* Support client : chat mock */
.mock-chat {
  background: #fff;
  border: 1px solid rgba(14,17,22,.12);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  color: var(--ink);
}
.mock-chat-header {
  background: var(--ink); color: var(--paper);
  padding: 9px 14px; font-weight: 600; font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.mock-chat-dot {
  width: 7px; height: 7px; background: #22c55e;
  border-radius: 50%; flex-shrink: 0;
}
.mock-chat-body { padding: 12px; display: flex; flex-direction: column; gap: 8px }
.chat-bubble {
  max-width: 82%; padding: 8px 12px;
  border-radius: 12px; line-height: 1.5; font-size: 13px;
}
.chat-bubble.user {
  background: #f0f0f0; align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}
.chat-bubble.bot {
  background: var(--cobalt); color: #fff; align-self: flex-start;
  border-radius: 12px 12px 12px 2px; min-height: 36px;
}
.chat-bubble.bot::after { content: "▋"; animation: cursor-blink .65s infinite }
.chat-bubble.bot.typed::after { display: none }
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Avis Google : notifications animées */
.mock-notifs { display: flex; flex-direction: column; gap: 7px }
.notif-row {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid rgba(14,17,22,.1);
  border-radius: 8px; padding: 8px 12px; font-size: 12px; color: var(--ink);
  opacity: 0;
  animation: slideInRight .35s ease forwards;
}
.notif-stars { color: #F4B400; flex-shrink: 0; font-size: 12px; letter-spacing: -1px }
.notif-stars.neg { color: #ef4444 }
.notif-text { flex-grow: 1; opacity: .8; font-size: 12px }
.notif-replied {
  font-size: 11px; font-weight: 700; color: #22c55e; flex-shrink: 0;
  opacity: 0;
  animation: popIn .25s ease forwards;
}
@keyframes popIn {
  from { opacity:0; transform:scale(.7) }
  to   { opacity:1; transform:scale(1) }
}

/* ===========================================================
   CONFIGURATEUR D'OFFRES
   =========================================================== */
.configurateur-section { padding: 80px 0 60px }
.config-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: start;
}
@media (max-width: 1100px) { .config-wrap { grid-template-columns: 1fr } }

.config-block { margin-bottom: 36px }
.config-block-title {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; margin-bottom: 14px;
}
.config-step {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.config-optional { font-weight: 400; font-size: 13px; opacity: .55; font-style: italic }

/* Grilles de cartes */
.config-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 700px) {
  .config-cards { grid-template-columns: 1fr }
}

/* Carte sélectionnable */
.config-card {
  border: 2px solid rgba(14,17,22,.14);
  border-radius: 14px; padding: 14px 16px;
  cursor: pointer; position: relative;
  transition: border-color .15s, background .15s, transform .1s;
  display: flex; flex-direction: column; gap: 3px;
  user-select: none;
}
.config-card:hover { border-color: var(--cobalt); transform: translateY(-2px) }
.config-card.selected {
  border-color: var(--cobalt);
  background: rgba(43,63,232,.06);
  box-shadow: 0 0 0 3px rgba(43,63,232,.12);
}
.config-card.selected::after {
  content: "✓";
  position: absolute; top: 10px; right: 10px;
  width: 18px; height: 18px; background: var(--cobalt); color: #fff;
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.config-card-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--ink);
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
}
.config-card-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em }
.config-card-price {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 800; line-height: 1.1;
}
.config-card-price span { font-size: 11px; font-weight: 400; opacity: .65; display: block }
.config-card-desc { font-size: 11px; opacity: .55; margin-top: 2px }

/* Panneau récapitulatif */
.config-summary-wrap { position: sticky; top: 88px }
.config-summary {
  background: var(--ink); color: var(--paper);
  border-radius: 20px; padding: 26px 24px;
}
.config-summary-title {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700; margin-bottom: 18px;
}
.cfg-empty { font-size: 13px; opacity: .45; font-style: italic }
.config-summary-items { min-height: 48px; margin-bottom: 16px }
.cfg-summary-line {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 10px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}
.cfg-summary-line:last-child { border-bottom: none }
.cfg-line-price { font-family: 'Fraunces', serif; font-weight: 700; flex-shrink: 0; font-size: 13px }
.config-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-top: 2px solid rgba(255,255,255,.18);
  margin-bottom: 16px; font-size: 13px; opacity: .7;
}
.cfg-price {
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 800;
  color: var(--lime); opacity: 1; letter-spacing: -.02em;
}
.cfg-cta {
  width: 100%; justify-content: center;
  transition: opacity .2s;
  font-size: 13px;
}
.cfg-cta:disabled { opacity: .4; cursor: not-allowed; pointer-events: none }
.cfg-cta:not(:disabled) { opacity: 1; pointer-events: auto }
.cfg-note { font-size: 11px; opacity: .45; text-align: center; margin-top: 10px }

/* ===========================================================
   ANCRAGE DE PRIX
   =========================================================== */
.price-anchor {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 140px;
  background: var(--paper-2);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 0 32px 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.price-anchor-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px }
.price-anchor-body { flex: 1; min-width: 200px }
.price-anchor-title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  margin: 0 0 8px; letter-spacing: -.01em;
}
.price-anchor-body p { font-size: 14px; line-height: 1.6; margin: 0; opacity: .85 }

.price-anchor-table { flex-shrink: 0; min-width: 260px }
.pa-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(14,17,22,.08);
  align-items: center;
}
.pa-row:last-child { border-bottom: none }
.pa-head { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .55 }
.pa-them { opacity: .6; text-decoration: line-through }
.pa-us { font-weight: 700; color: var(--cobalt) }
@media (max-width: 700px) {
  .price-anchor { flex-direction: column; margin: 0 20px 32px }
  .price-anchor-table { width: 100% }
}

/* ===========================================================
   ROI PAR CARTE
   =========================================================== */
.roi-card {
  background: rgba(199,242,92,.12);
  border: 1px solid rgba(199,242,92,.45);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.55;
}
.offer.featured .roi-card {
  background: rgba(199,242,92,.15);
  border-color: rgba(199,242,92,.4);
}
.roi-card-title {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 5px;
  letter-spacing: .01em;
}
.roi-card p { margin: 0 }
.roi-card em { opacity: .65; font-size: 11px }

/* ===========================================================
   BOUTON CAL.COM (appel découverte)
   =========================================================== */
.btn-cal {
  width: 100%;
  justify-content: center;
  background: transparent;
  border: 2px dashed rgba(14,17,22,.3);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, border-color .15s;
  margin-bottom: 8px;
}
.btn-cal:hover {
  background: rgba(14,17,22,.05);
  border-color: var(--ink);
}
.btn-cal--featured {
  border-color: rgba(255,255,255,.35);
  color: var(--paper);
}
.btn-cal--featured:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--paper);
}
.btn-cal--hero {
  width: auto;
  margin-bottom: 0;
}

/* ===========================================================
   TÉMOIGNAGES
   =========================================================== */
.testimonials-bg {
  background: var(--ink);
  padding: 96px 0;
}
.testimonials-head {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-head p { margin: 12px 0 0 }
.section-tag--light {
  background: rgba(251,247,241,.1);
  color: var(--paper);
  border-color: rgba(251,247,241,.15);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr } }

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .2s;
}
.testimonial-card:hover { background: rgba(255,255,255,.08) }
.testimonial-card--featured {
  background: var(--cobalt);
  border-color: var(--cobalt);
}
.testimonial-card--featured:hover { background: var(--cobalt-deep) }
.testi-stars { color: #F4B400; font-size: 16px; letter-spacing: 3px }
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(251,247,241,.85);
  font-style: italic;
  font-family: 'Fraunces', serif;
  flex-grow: 1;
  margin: 0;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--paper) }
.testi-job { font-size: 12px; color: rgba(251,247,241,.5); margin-top: 2px }
.testi-agent-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(199,242,92,.12);
  border: 1px solid rgba(199,242,92,.3);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.testimonial-card--featured .testi-agent-tag {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

/* ===========================================================
   RÉFÉRENCES CLIENTS (ancienne section témoignages)
   =========================================================== */
.testimonials-grid.refs-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .testimonials-grid.refs-grid { grid-template-columns: 1fr } }

.ref-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lime);
  margin-bottom: 6px;
}
.ref-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.refs-invite {
  text-align: center;
  margin-top: 48px;
  padding: 0 32px;
}
.refs-invite p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(251,247,241,.65);
  margin: 0 0 20px;
}

/* ===========================================================
   BOUTON FLOTTANT DÉMO
   =========================================================== */
.demo-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 4px 24px rgba(14,17,22,.35), 0 0 0 1px rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.demo-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.demo-float:hover { box-shadow: 0 8px 32px rgba(14,17,22,.45), 0 0 0 1px rgba(255,255,255,.12) }
.demo-float-dot {
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5) }
  60%      { box-shadow: 0 0 0 7px rgba(34,197,94,0) }
}
.demo-float-link {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}
.demo-float-link::before { content: "📅 " }
@media (max-width: 600px) {
  .demo-float { bottom: 20px; right: 16px; padding: 12px 18px 12px 14px }
  .demo-float-link { font-size: 13px }
}
