/* Servolution.fr — corporate site, charte navy/orange/white */
:root {
  /* Charte officielle Servolution v3 */
  --brown:     #B05A3B;
  --brown-dk:  #8A3F25;
  --brown-lt:  #D4795A;
  --orange:    #F6A858;
  --orange-dk: #E8932E;
  --orange-lt: #FFF3E0;
  --peach:     #FDEAE3;
  --warm-sand: #FBF3EC;
  --cream:     #FDFAF7;
  --dark:      #1E1810;
  --dark-mid:  #2C2016;
  --txt:       #2C2016;
  --txt-mid:   #5C4A3A;
  --txt-lt:    #9A8070;
  --border:    #E8DDD4;
  --white:     #FFFFFF;
  --bg:        #FAF7F4;
  --bg-alt:    #F5EFE8;
  --success:   #3D8B5E;
  --danger:    #C45040;

  /* Aliases backward-compat (anciens noms remappés sur vraie charte) */
  --navy: var(--brown);
  --navy-700: var(--brown-dk);
  --navy-900: var(--dark-mid);
  --navy-dark: var(--dark-mid);
  --orange-light: var(--orange-dk);
  --grey-50: var(--cream);
  --grey-100: var(--warm-sand);
  --grey-200: var(--border);
  --grey-300: var(--border);
  --grey-400: var(--txt-lt);
  --grey-500: var(--txt-mid);
  --grey-700: var(--txt);
  --grey-900: var(--dark-mid);
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--grey-900);
  line-height: 1.55;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* === TOPBAR === */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; }
.brand { font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; font-weight: 800; }
.nav nav { display: flex; gap: 32px; align-items: center; }
.nav nav a { font-size: 0.94rem; color: var(--grey-700); font-weight: 500; transition: color 0.2s; }
.nav nav a:hover { color: var(--navy); }
.nav nav a.cta {
  background: var(--navy); color: var(--white);
  padding: 10px 22px; border-radius: 999px;
}
.nav nav a.cta:hover { background: var(--navy-900); color: var(--white); }

/* === HERO === */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,168,88,0.08) 0%, transparent 70%);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy);
  margin: 18px 0 28px;
  max-width: 900px;
}
.hero h1 .accent { color: var(--orange); }
.kicker {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--orange); text-transform: uppercase;
}
.lead {
  font-size: 1.2rem; color: var(--grey-700);
  max-width: 720px; margin-bottom: 36px; line-height: 1.6;
}
.cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy); color: var(--white) !important;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176,90,59,0.25); }
.btn-ghost {
  color: var(--navy) !important; font-weight: 600;
  padding: 16px 28px; border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-ghost.dark { color: var(--navy) !important; border: 1.5px solid var(--navy); margin-top: 24px; display: inline-block; }
.btn-ghost.dark:hover { background: var(--navy); color: var(--white) !important; }

/* === STRIP STATS === */
.strip {
  background: var(--navy); color: var(--white);
  padding: 48px 0;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats div { display: flex; flex-direction: column; }
.stats b {
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800;
  color: var(--orange); letter-spacing: -0.03em;
  line-height: 1;
}
.stats span { font-size: 0.92rem; color: var(--grey-400); margin-top: 8px; }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section.dark { background: var(--navy-900); color: var(--white); }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--navy); margin-bottom: 16px;
  max-width: 800px;
}
.section.dark h2 { color: var(--white); }
.sub { font-size: 1.1rem; color: var(--grey-500); max-width: 720px; margin-bottom: 56px; }

/* === GRIDS BRANDS === */
.grid-6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.grid-5 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.grid-3-equal {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: 16px; padding: 36px;
  transition: all 0.25s;
}
.value-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.value-num {
  font-size: 1.6rem; font-weight: 800; color: var(--orange);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.value-card h3 {
  font-size: 1.3rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.value-card p { color: var(--grey-700); font-size: 0.95rem; }

.section-sublabel {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--grey-500); text-transform: uppercase;
  margin: 64px 0 24px;
  text-align: center;
}

.featured-card {
  display: flex; align-items: stretch;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: 24px; overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.25s;
  min-height: 320px;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(176,90,59,0.25); }
.featured-card .featured-tag {
  position: absolute; top: 24px; right: 24px;
  background: var(--orange); color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em;
  padding: 8px 16px; border-radius: 999px;
  z-index: 2;
}
.featured-card .featured-content {
  flex: 1.2; padding: 56px 56px 56px 56px;
  color: var(--white); display: flex; flex-direction: column; justify-content: center;
}
.featured-card .featured-content h3 {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 12px;
}
.featured-card .featured-tagline {
  color: var(--orange); font-weight: 600; font-size: 1.1rem;
  margin-bottom: 16px;
}
.featured-card .featured-content p {
  color: var(--grey-400); font-size: 1.0rem; line-height: 1.6;
}
.featured-card .featured-meta {
  margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--grey-400);
}
.featured-card .featured-meta span:nth-child(2n-1) { color: var(--white); font-weight: 600; }
.featured-card .preview {
  flex: 1; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.featured-card .preview img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  display: block;
}
.featured-card .featured-cta {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--orange); color: var(--white);
  padding: 12px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  z-index: 2;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.brand-card .preview-img {
  width: 100%; height: 180px;
  background: var(--grey-100); border-bottom: 1px solid var(--grey-200);
  overflow: hidden; position: relative;
}
.brand-card .preview-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  display: block;
}
.brand-card .preview-img.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--grey-100) 0%, var(--grey-50) 100%);
}
.brand-card .preview-img.placeholder span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--grey-400); text-transform: uppercase;
}
.brand-card .body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex-grow: 1; }
.brand-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(176,90,59,0.12);
}
.brand-card:hover .preview-img img { transform: scale(1.03); }
.brand-card .preview-img img { transition: transform 0.4s; }
.brand-tag {
  display: inline-block; align-self: flex-start;
  color: var(--white); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 6px 12px; border-radius: 4px;
  margin-bottom: 18px;
}
.brand-card h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.brand-card p { color: var(--grey-700); font-size: 0.94rem; flex-grow: 1; line-height: 1.55; }
.brand-card .link {
  color: var(--orange); font-size: 0.84rem; font-weight: 600;
  margin-top: 20px; letter-spacing: 0.02em;
}

.metiers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.metier-block {
  padding: 24px; background: var(--grey-50);
  border-radius: 12px; border: 1px solid var(--grey-200);
  transition: all 0.25s;
}
.metier-block:hover { background: var(--white); border-color: var(--orange); transform: translateY(-3px); }
.metier-block h4 {
  font-size: 1.0rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.metier-soft {
  font-size: 0.84rem; color: var(--grey-700);
  line-height: 1.55; margin-bottom: 14px;
}
.metier-stack {
  font-size: 0.78rem; color: var(--orange);
  font-weight: 600; letter-spacing: 0.02em;
}

.preview-band {
  margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.preview-tile {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 180px; background: var(--grey-100);
  border: 1px solid var(--grey-200);
}
.preview-tile img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
}
.preview-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(44,32,22,0.95) 100%);
  color: var(--white); padding: 24px 16px 14px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}

.lead-small {
  font-size: 0.86rem; color: var(--grey-500);
  margin-top: 16px; letter-spacing: 0.01em;
}

/* === GRID 3 PROGRAMMES === */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.program-card:hover {
  background: rgba(246,168,88,0.06);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.program-card .num {
  font-size: 2.2rem; font-weight: 800; color: var(--orange);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.program-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.program-card .rate {
  color: var(--orange); font-weight: 600; font-size: 0.92rem;
  margin-bottom: 20px; letter-spacing: 0.01em;
}
.program-card p:not(.rate) { color: var(--grey-400); font-size: 0.95rem; flex-grow: 1; }
.program-card .link {
  color: var(--white); font-size: 0.86rem; font-weight: 600;
  margin-top: 24px; opacity: 0.9;
}

/* === SPLIT === */
.split {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.kpis div {
  padding: 28px;
  background: var(--grey-50);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
}
.kpis b {
  display: block; font-size: 1.4rem; font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 6px;
}
.kpis span { font-size: 0.88rem; color: var(--grey-500); line-height: 1.5; }

/* === FOOTER === */
.footer {
  background: var(--navy-900); color: var(--grey-400);
  padding: 70px 0 0;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.foot-grid strong { color: var(--white); font-size: 1.1rem; display: block; margin-bottom: 12px; }
.foot-grid .muted { color: var(--grey-400); font-size: 0.88rem; line-height: 1.6; }
.foot-label {
  color: var(--orange); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; margin-bottom: 16px;
}
.foot-grid a {
  display: block; color: var(--grey-400); font-size: 0.9rem;
  padding: 6px 0; transition: color 0.2s;
}
.foot-grid a:hover { color: var(--orange); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; font-size: 0.82rem; color: var(--grey-500);
}

/* === PROGRAM PAGES === */
.page-hero {
  background: var(--navy); color: var(--white);
  padding: 110px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,168,88,0.15) 0%, transparent 70%);
}
.page-hero .kicker { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  margin: 16px 0 24px;
  color: var(--white);
}
.page-hero .lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 720px; }

.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white); padding: 56px 48px; border-radius: 24px;
  text-align: center; margin: 80px 0;
}
.callout h3 {
  font-size: 1.8rem; font-weight: 800; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.callout p { color: var(--grey-400); font-size: 1.05rem; margin-bottom: 28px; }
.callout .btn-orange {
  background: var(--orange); color: var(--white);
  padding: 16px 36px; border-radius: 999px;
  font-weight: 600; display: inline-block;
  transition: all 0.2s;
}
.callout .btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); }

.feat-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin: 48px 0; }
.feat-list .item {
  padding: 28px; background: var(--grey-50);
  border-radius: 12px; border-left: 3px solid var(--orange);
}
.feat-list .item h4 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feat-list .item p { color: var(--grey-700); font-size: 0.94rem; }

.steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin: 48px 0;
  position: relative;
}
.step {
  text-align: center; padding: 32px 16px;
  background: var(--grey-50); border-radius: 16px;
  border-top: 3px solid var(--orange);
}
.step .num {
  font-size: 2.4rem; font-weight: 800; color: var(--orange);
  margin-bottom: 8px;
}
.step h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 0.82rem; color: var(--grey-500); }

.compare {
  width: 100%; border-collapse: collapse; margin: 48px 0;
  font-size: 0.95rem;
}
.compare th, .compare td { padding: 16px 20px; text-align: left; }
.compare thead { background: var(--navy); color: var(--white); }
.compare thead th {
  font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.compare tbody tr { border-bottom: 1px solid var(--grey-200); }
.compare tbody tr:last-child { border-bottom: none; background: linear-gradient(90deg, rgba(246,168,88,0.05) 0%, transparent 100%); }
.compare tbody tr:last-child td { font-weight: 600; color: var(--navy); }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.contact-card {
  padding: 32px; background: var(--grey-50);
  border-radius: 16px; border: 1px solid var(--grey-200);
}
.contact-card h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.contact-card p { color: var(--grey-700); font-size: 0.94rem; margin-bottom: 16px; }
.contact-card a { color: var(--orange); font-weight: 600; font-size: 0.9rem; }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .grid-6, .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   v2 Émotionnel — composants ajoutés
   ════════════════════════════════════════════════ */

/* HERO EMOTION */
.hero-emotion {
  background: linear-gradient(180deg, #FDFAF7 0%, #FBF3EC 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-emotion::before {
  content:''; position:absolute; top:-300px; right:-200px;
  width:700px; height:700px; border-radius:50%;
  background: radial-gradient(circle, rgba(246,168,88,0.10) 0%, transparent 70%);
  z-index: 0;
}
.hero-grid {
  display:grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em;
  color: var(--navy); margin: 14px 0 24px;
}
.accent-strike {
  display: inline; color: var(--orange);
  position: relative;
}
.lead-strong {
  font-size: 1.15rem; color: var(--navy);
  font-weight: 600; line-height: 1.5;
  margin: 24px 0 32px;
  padding-left: 16px; border-left: 3px solid var(--orange);
}
.hero-text .lead {
  font-size: 1.08rem; color: var(--grey-700);
  line-height: 1.6; max-width: none;
  margin-bottom: 24px;
}

/* MOCKUP visual */
.hero-visual {
  position: relative;
}
.mockup {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(176,90,59,0.15), 0 8px 20px rgba(176,90,59,0.05);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}
.mockup-bar {
  background: var(--grey-100);
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-200);
  display: flex; gap: 7px;
}
.mockup-bar span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #ff605c;
}
.mockup-bar span:nth-child(2) { background: #ffbd44; }
.mockup-bar span:nth-child(3) { background: #00ca4e; }
.mockup img {
  width: 100%; display: block;
}
.mockup-float {
  position: absolute; bottom: -32px; right: -32px;
  width: 60%; max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(176,90,59,0.25);
  overflow: hidden;
  border: 4px solid var(--white);
}
.mockup-float img { width: 100%; display: block; }

/* TRUST STRIP */
.trust-strip {
  background: var(--white); padding: 32px 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust-label {
  text-align: center; color: var(--grey-500);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; margin-bottom: 24px;
}
.trust-logos {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 24px;
  align-items: center; justify-items: center;
}
.trust-logo {
  font-size: 1.0rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em;
  opacity: 0.8;
  padding: 12px 0;
}

/* PAIN SECTION */
.pain-section {
  background: var(--grey-50); padding: 100px 0;
}
.pain-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--navy);
  margin-bottom: 16px;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
  margin-top: 56px;
}
.pain-card {
  background: var(--white); padding: 36px 32px;
  border-radius: 16px; border: 1px solid var(--grey-200);
  transition: all 0.25s;
}
.pain-card:hover { transform: translateY(-3px); border-color: var(--navy); }
.pain-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(220,53,69,0.1); color: #DC3545;
  font-size: 1.6rem; font-weight: 800; margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.pain-card p { color: var(--grey-700); font-size: 0.98rem; line-height: 1.55; }

/* SOLUTION VS */
.solution-section { padding: 100px 0; }
.solution-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--navy);
  margin-bottom: 16px;
}
.vs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 56px;
}
.vs-col {
  padding: 40px 36px; border-radius: 16px;
}
.vs-before {
  background: #fff3f3;
  border: 1px solid #ffd3d6;
}
.vs-after {
  background: linear-gradient(135deg, #B05A3B 0%, #8A3F25 100%);
  color: var(--white);
}
.vs-tag {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  padding: 6px 14px; border-radius: 999px;
  display: inline-block; margin-bottom: 24px;
}
.vs-before .vs-tag { background: #DC3545; color: var(--white); }
.vs-after .vs-tag { background: var(--orange); color: var(--white); }
.vs-col ul {
  list-style: none; padding: 0; margin: 0;
}
.vs-col li {
  padding: 12px 0 12px 32px; position: relative;
  font-size: 0.96rem; line-height: 1.5;
}
.vs-before li { color: var(--grey-700); border-bottom: 1px solid #ffd3d6; }
.vs-before li:last-child { border-bottom: none; }
.vs-after li { color: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(255,255,255,0.08); }
.vs-after li:last-child { border-bottom: none; }
.vs-before li::before {
  content:'×'; position:absolute; left: 0; top: 9px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #DC3545; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem; font-weight: 700;
}
.vs-after li::before {
  content:'✓'; position:absolute; left: 0; top: 11px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}

/* CATALOGUE / HERO PRODUCT */
.catalogue-section { padding: 100px 0; background: var(--grey-50); }
.catalogue-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--navy);
  margin-bottom: 16px;
}
.hero-product {
  margin-top: 56px;
  background: linear-gradient(135deg, #2C2016 0%, #B05A3B 100%);
  border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(176,90,59,0.20);
}
.hero-product-content {
  padding: 56px 56px;
  color: var(--white);
}
.hero-product-tag {
  display: inline-block;
  background: var(--orange); color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.hero-product h3 {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.hero-product-tagline {
  color: var(--orange); font-weight: 600; font-size: 1.15rem;
  margin-bottom: 18px;
}
.hero-product-content > p {
  color: rgba(255,255,255,0.85); font-size: 1.0rem;
  line-height: 1.6; margin-bottom: 24px;
}
.hero-product-features {
  list-style: none; padding: 0; margin: 0 0 32px;
}
.hero-product-features li {
  padding: 8px 0 8px 28px; position: relative;
  color: rgba(255,255,255,0.9); font-size: 0.95rem;
}
.hero-product-features li::before {
  content:'→'; position:absolute; left:0; color: var(--orange);
  font-weight: 700;
}
.hero-product-visual {
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.hero-product-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
}

/* BRAND CARDS V2 */
.brand-card-v2 {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--grey-200);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.brand-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(176,90,59,0.12);
  border-color: var(--orange);
}
.bcv-img {
  height: 160px; overflow: hidden; background: var(--grey-100);
  position: relative;
}
.bcv-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  transition: transform 0.4s;
}
.brand-card-v2:hover .bcv-img img { transform: scale(1.04); }
.bcv-img.bcv-soon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--grey-100) 0%, var(--grey-50) 100%);
}
.bcv-img.bcv-soon span {
  font-size: 0.78rem; letter-spacing: 0.18em; font-weight: 700;
  color: var(--grey-400); text-transform: uppercase;
}
.bcv-tag {
  display: inline-block; align-self: flex-start;
  background: var(--navy); color: var(--white);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em;
  padding: 5px 12px; border-radius: 4px;
  margin: 24px 24px 12px;
}
.brand-card-v2 h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; padding: 0 24px; margin-bottom: 8px;
}
.brand-card-v2 p {
  padding: 0 24px; color: var(--grey-700); font-size: 0.92rem;
  line-height: 1.5; flex-grow: 1; margin-bottom: 20px;
}
.bcv-price {
  margin: 0 24px 24px; color: var(--orange); font-weight: 700;
  font-size: 0.92rem;
}

/* METIER CARDS */
.metier-section { padding: 100px 0; }
.metier-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--navy);
  margin-bottom: 16px;
}
.metier-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.metier-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; border: 1px solid var(--grey-200);
  transition: all 0.25s;
}
.metier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(176,90,59,0.12);
  border-color: var(--orange);
}
.metier-img {
  height: 160px; background-size: cover; background-position: center;
  background-color: var(--grey-100);
}
.metier-body {
  padding: 20px 22px 24px;
}
.metier-body h4 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.metier-body p {
  font-size: 0.88rem; color: var(--grey-700);
  line-height: 1.5; margin-bottom: 12px;
}
.metier-stack {
  font-size: 0.78rem; color: var(--orange);
  font-weight: 600; letter-spacing: 0.02em;
}

/* WHY SECTION dark */
.why-section {
  background: linear-gradient(180deg, #B05A3B 0%, #2C2016 100%);
  padding: 100px 0;
  color: var(--white);
}
.why-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 56px;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.why-card {
  padding: 0;
}
.why-num {
  font-size: 3rem; font-weight: 800; color: var(--orange);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.why-card p {
  color: rgba(255,255,255,0.78); font-size: 0.98rem;
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta {
  background: var(--white); padding: 100px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--navy);
  margin-bottom: 20px;
}
.final-lead {
  font-size: 1.15rem; color: var(--grey-700);
  max-width: 680px; margin: 0 auto 40px;
  line-height: 1.6;
}
.btn-primary.big {
  font-size: 1.05rem; padding: 20px 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin-top: 32px; }
  .mockup-float { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .hero-product { grid-template-columns: 1fr; }
  .hero-product-content { padding: 40px 28px; }
  .hero-product-visual { height: 240px; }
  .grid-5 { grid-template-columns: 1fr; }
  .metier-cards { grid-template-columns: 1fr 1fr; }
  .trust-logos { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

/* Logo Servolution */
.brand-logo {
  height: 44px; width: auto; display: block;
}
.nav .brand { padding: 0; line-height: 0; }
.topbar .nav { padding-top: 6px; padding-bottom: 6px; }
.brand-logo-foot {
  height: 56px; width: auto; display: block;
  margin-bottom: 16px;
}


/* Footer 5 colonnes */
.foot-grid-5 { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr !important; }
@media (max-width: 900px) {
  .foot-grid-5 { grid-template-columns: 1fr 1fr !important; }
}
/* Topbar ajustement nav 8 items */
.topbar nav a { font-size: 0.88rem !important; }
.topbar nav { gap: 22px !important; }
@media (max-width: 1100px) {
  .topbar nav { gap: 16px !important; }
  .topbar nav a { font-size: 0.82rem !important; }
}


/* ════════════════════════════════════════════════════════════
   WIDGET CHAT IA SERVOLUTION
   ════════════════════════════════════════════════════════════ */

#sup-launcher {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light, #E8932E) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(246,168,88,0.4), 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white;
  z-index: 998;
  transition: transform 0.25s, opacity 0.25s;
}
#sup-launcher:hover { transform: scale(1.08); }
#sup-launcher.hidden { transform: scale(0); opacity: 0; pointer-events: none; }
#sup-launcher svg { width: 28px; height: 28px; }
.sup-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--navy);
  color: white;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 999px;
  border: 2px solid white;
}

#sup-panel {
  position: fixed; bottom: 24px; right: 24px;
  width: 380px; height: 580px; max-height: calc(100vh - 48px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(176,90,59,0.25), 0 8px 20px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.32,0.72,0.4,1.2), opacity 0.2s;
  z-index: 999;
  font-family: 'Inter', -apple-system, sans-serif;
}
#sup-panel.open { transform: scale(1); opacity: 1; }

.sup-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700, #8A3F25) 100%);
  color: white;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.sup-header-left { display: flex; align-items: center; gap: 12px; }
.sup-avatar {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.sup-avatar svg { width: 22px; height: 22px; }
.sup-title { font-weight: 700; font-size: 0.96rem; }
.sup-status {
  font-size: 0.72rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.sup-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.sup-close {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.2rem; line-height: 1;
  transition: background 0.2s;
}
.sup-close:hover { background: rgba(255,255,255,0.2); }

.sup-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  background: var(--grey-50, #FDFAF7);
  display: flex; flex-direction: column; gap: 14px;
}
.sup-msg { display: flex; flex-direction: column; max-width: 85%; }
.sup-msg-bot { align-self: flex-start; }
.sup-msg-user { align-self: flex-end; align-items: flex-end; }
.sup-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.92rem; line-height: 1.5;
}
.sup-msg-bot .sup-bubble {
  background: white;
  color: var(--grey-900, #2C2016);
  border: 1px solid var(--grey-200, #E8DDD4);
  border-top-left-radius: 4px;
}
.sup-msg-bot .sup-bubble a {
  color: var(--orange); font-weight: 600; text-decoration: underline;
}
.sup-msg-user .sup-bubble {
  background: var(--navy);
  color: white;
  border-top-right-radius: 4px;
}
.sup-meta {
  font-size: 0.68rem; color: var(--grey-400, #9A8070);
  margin-top: 4px; padding: 0 4px;
}

.sup-quick {
  padding: 8px 16px 4px;
  background: var(--grey-50, #FDFAF7);
  display: flex; gap: 8px; flex-wrap: wrap;
  border-top: 1px solid var(--grey-200, #E8DDD4);
}
.sup-chip {
  background: white;
  border: 1px solid var(--grey-200, #E8DDD4);
  color: var(--navy);
  font-size: 0.78rem; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.sup-chip:hover {
  background: var(--orange); color: white; border-color: var(--orange);
  transform: translateY(-1px);
}

.sup-input {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: white;
  border-top: 1px solid var(--grey-200, #E8DDD4);
}
.sup-input input {
  flex: 1;
  border: 1px solid var(--grey-200, #E8DDD4);
  background: var(--grey-50, #FDFAF7);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  color: var(--grey-900, #2C2016);
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
}
.sup-input input:focus { border-color: var(--orange); background: white; }
.sup-input button {
  background: var(--orange);
  color: white;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-family: inherit;
}
.sup-input button:hover { background: #E8932E; }
.sup-input button svg { width: 18px; height: 18px; }

.sup-foot {
  font-size: 0.68rem; color: var(--grey-400, #9A8070);
  text-align: center;
  padding: 8px 16px 12px;
  background: white;
}
.sup-foot strong { color: var(--orange); font-weight: 700; }

@media (max-width: 480px) {
  #sup-panel { width: calc(100vw - 16px); height: calc(100vh - 24px); right: 8px; bottom: 8px; }
  #sup-launcher { right: 16px; bottom: 16px; }
}


/* Preview tile lien hover */
.preview-tile-link {
  display: block; text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 12px; overflow: hidden;
}
.preview-tile-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(176,90,59,0.18);
}


/* Logos marques produit en topbar */
.brand-product-logo {
  height: 44px; width: auto; display: block;
}

/* Logos marques dans brand-card-v2 du hub */
.bcv-logo {
  padding: 24px 24px 0;
}
.bcv-logo img {
  height: 44px; width: auto; display: block;
}


/* ════════════════════════════════════════════════════════
   SECTION INTÉGRATION — schéma orbital + flows
   ════════════════════════════════════════════════════════ */
.integration-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-sand) 100%);
  padding: 100px 0 !important;
}

.hub-diagram {
  position: relative;
  width: 100%; max-width: 720px;
  margin: 64px auto 0;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.hub-center {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--white);
  border: 3px solid var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(176,90,59,0.20);
}
.hub-center img {
  max-width: 78%; max-height: 78%;
  object-fit: contain;
}
.hub-orbit {
  position: absolute;
  width: 460px; height: 460px;
}
.hub-orbit::before {
  content:''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--brown);
  opacity: 0.35;
}
.hub-node {
  position: absolute;
  width: 100px; height: 100px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.hub-node:hover {
  transform: scale(1.08);
  background: var(--orange);
  box-shadow: 0 8px 28px rgba(246,168,88,0.4);
}
.hub-node:hover .hub-label { color: var(--white); }
.hub-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--brown); text-align: center;
  letter-spacing: -0.01em;
}
/* Position 7 nœuds en cercle */
.hub-node-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.hub-node-2 { top: 12%; right: -10px; }
.hub-node-3 { bottom: 20%; right: -30px; }
.hub-node-4 { bottom: -20px; left: 60%; transform: translateX(-50%); }
.hub-node-5 { bottom: -20px; left: 25%; transform: translateX(-50%); }
.hub-node-6 { bottom: 20%; left: -30px; }
.hub-node-7 { top: 12%; left: -10px; }

/* Liste des flux automatiques */
.flow-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 920px; margin: 24px auto 0;
}
.flow-item {
  display: grid; grid-template-columns: 1.2fr 24px 2fr 24px 1.2fr;
  gap: 16px; align-items: center;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.94rem;
  transition: all 0.2s;
}
.flow-item:hover { border-color: var(--orange); transform: translateX(4px); }
.flow-from { font-weight: 700; color: var(--brown); }
.flow-action { color: var(--txt-mid); font-style: italic; font-size: 0.88rem; text-align: center; }
.flow-arrow { color: var(--orange); font-size: 1.4rem; font-weight: 700; text-align: center; }
.flow-to { font-weight: 700; color: var(--orange-dk); text-align: right; }

/* 4 bénéfices intégration */
.integration-bullets {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.ib-item {
  text-align: center; padding: 28px 16px;
  background: var(--white); border-radius: 14px;
  border-top: 3px solid var(--orange);
}
.ib-item strong {
  display: block; font-size: 1.2rem; font-weight: 800;
  color: var(--brown); margin-bottom: 8px; letter-spacing: -0.02em;
}
.ib-item span {
  font-size: 0.86rem; color: var(--txt-mid); line-height: 1.5;
}

@media (max-width: 720px) {
  .hub-diagram { height: 380px; max-width: 380px; }
  .hub-center { width: 130px; height: 130px; }
  .hub-orbit { width: 320px; height: 320px; }
  .hub-node { width: 70px; height: 70px; }
  .hub-label { font-size: 0.62rem; }
  .flow-item { grid-template-columns: 1fr; gap: 6px; text-align: center; }
  .flow-arrow { display: none; }
  .integration-bullets { grid-template-columns: 1fr 1fr; }
}


/* Trust strip avec vrais logos SVG */
.trust-strip { padding: 36px 0 28px !important; }
.trust-logos {
  display: flex !important; flex-wrap: wrap;
  align-items: center; justify-content: space-around;
  gap: 8px 24px;
  grid-template-columns: none !important;
}
.trust-logo-link {
  display: flex; align-items: center; justify-content: center;
  flex: 1 1 130px; max-width: 180px;
  padding: 8px 8px;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
  filter: grayscale(0.15);
}
.trust-logo-link:hover { opacity: 1; transform: translateY(-2px); filter: grayscale(0); }
.trust-logo-link img { height: 48px; width: auto; max-width: 100%; display: block; }

@media (max-width: 900px) {
  .trust-logos { gap: 4px 12px; }
  .trust-logo-link img { height: 36px; }
  .trust-logo-link { flex: 1 1 90px; }
}


/* ════════════════════════════════════════════════════════
   SECTION IA — Servolution AI partout
   ════════════════════════════════════════════════════════ */
.ai-section {
  background: linear-gradient(135deg, #FBF3EC 0%, #FDFAF7 100%);
  position: relative; overflow: hidden;
}
.ai-section::before {
  content:''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,168,88,0.18) 0%, transparent 70%);
}
.ai-section .wrap { position: relative; z-index: 1; }
.ai-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 56px;
}
.ai-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.ai-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 16px 40px rgba(176,90,59,0.12); }
.ai-tag {
  display: inline-block; align-self: flex-start;
  background: var(--orange);
  color: var(--white);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em;
  padding: 5px 12px; border-radius: 4px;
  margin-bottom: 16px;
}
.ai-card h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--brown);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.ai-card p { color: var(--txt-mid); font-size: 0.92rem; line-height: 1.55; flex-grow: 1; }
.ai-card-highlight {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dk) 100%);
  color: var(--white); border-color: var(--brown);
}
.ai-card-highlight h3 { color: var(--white); }
.ai-card-highlight p { color: rgba(255,255,255,0.85); }
.ai-cta {
  display: inline-block; margin-top: 20px;
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none;
  transition: all 0.2s;
}
.ai-cta:hover { background: var(--orange-dk); transform: translateX(2px); }
.ai-promise {
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(176,90,59,0.06);
  border-left: 4px solid var(--brown);
  border-radius: 12px;
  color: var(--txt); font-size: 1.0rem; line-height: 1.7;
  text-align: center;
}
.ai-promise strong { color: var(--brown); font-weight: 800; font-size: 1.1rem; }
@media (max-width: 900px) {
  .ai-grid { grid-template-columns: 1fr; }
}


/* Tableau tarifs avec liens */
.tarifs-table th { background: var(--brown); color: var(--white); font-size: 0.78rem; }
.tarifs-table td:first-child { background: var(--cream); font-weight: 600; }
.link-tarif {
  color: var(--orange-dk); font-weight: 600; font-size: 0.88rem;
  white-space: nowrap; text-decoration: none;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(246,168,88,0.14);
  transition: all 0.2s;
}
.link-tarif:hover {
  background: var(--orange); color: var(--white);
}

/* Setup grid (frais d'installation) — ajouté 09/05 */
.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.setup-line {
  background: var(--grey-50, #FDFAF7);
  padding: 28px 24px;
  border-radius: 12px;
  border-top: 3px solid var(--orange, #F6A858);
}
.setup-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy, #4a2d1a);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.setup-desc {
  font-size: 0.88rem;
  color: var(--txt-mid, #6b5a4d);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .setup-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .setup-grid { grid-template-columns: 1fr; }
}

/* Soigne séparation Migration message en bloc lisible */
.setup-grid + p,
.setup-grid + .sub {
  margin-top: 32px;
}
