/* ==========================================================================
   SOLUTION PAGES — TerraGrow (v2 — design eleve)
   Inspired by: Halden (editorial spacing, flat + hairline), Auria (stagger reveals),
   SaleUnion/Aeline (flat + rounded, stat counters), homepage landing (tokens, nav, CTA)
   ========================================================================== */

/* sr-only : defini dans utilities/utilities.css — doublon supprime (MEP-24) */

/* ---------- S1 — HERO PRODUIT (dark, centered, floating mockup) ---------- */
.sol-hero {
  padding: 40px 0 120px;
  background: var(--bg);
  position: relative;
}

/* Dark hero variant — full viewport, cropped product frame, rounded bottom */
/* Per-page navy tints + background images */
.sol-hero--analyses { background: #0A1A3C; }
.sol-hero--previsionnel { background: #0D2247; }
.sol-hero--stress { background: #071530; }
.sol-hero--conseil { background: #102040; }

/* Background image support */
.sol-hero--dark[data-hero-bg] {
  background-size: cover;
  background-position: center;
}
.sol-hero--dark[data-hero-bg]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.sol-hero--analyses[data-hero-bg]::before { background: rgba(10,26,60,.92); }
.sol-hero--previsionnel[data-hero-bg]::before { background: rgba(13,34,71,.90); }
.sol-hero--stress[data-hero-bg]::before { background: rgba(7,21,48,.93); }
.sol-hero--conseil[data-hero-bg]::before { background: rgba(16,32,64,.91); }

.sol-hero--dark {
  background-color: var(--navy);
  padding: 32px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 24px 24px;
}

/* Single animated gradient overlay — covers the entire hero uniformly */
.sol-hero__glow,
.sol-hero__glow--2 { display: none; }

.sol-hero--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(30,58,120,.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 60%, rgba(35,65,130,.3) 0%, transparent 70%);
  background-size: 250% 250%;
  animation: heroGradientDrift 10s ease-in-out infinite alternate;
}
@keyframes heroGradientDrift {
  0% { background-position: 0% 20%; }
  50% { background-position: 100% 80%; }
  100% { background-position: 30% 0%; }
}

/* Collab cursors on dark hero */
.sol-hero__cursor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.sol-hero__cursor-name {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}
.sol-hero__cursor--1 {
  right: 8%;
  bottom: 38%;
  animation: cursorDrift1 8s ease-in-out infinite;
}
.sol-hero__cursor--2 {
  left: 6%;
  bottom: 30%;
  animation: cursorDrift2 10s ease-in-out infinite;
}
.sol-hero__cursor--3 {
  right: 18%;
  bottom: 18%;
  animation: cursorDrift3 9s ease-in-out infinite;
}
@keyframes cursorDrift1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-12px, 8px); }
  50% { transform: translate(6px, -14px); }
  75% { transform: translate(-8px, 4px); }
}
@keyframes cursorDrift2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -6px); }
  50% { transform: translate(-8px, 12px); }
  75% { transform: translate(14px, -4px); }
}
@keyframes cursorDrift3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, 10px); }
  50% { transform: translate(-14px, -6px); }
  75% { transform: translate(4px, 8px); }
}
@media (max-width: 768px) {
  .sol-hero__cursor { display: none; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-xs, 12px);
  color: var(--text-muted);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--duration-normal, 0.2s) var(--ease-default, ease);
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--text-faint); font-size: 10px; }
.breadcrumb span[aria-current] { color: var(--navy); font-weight: 500; }

/* Light breadcrumb on dark hero */
.breadcrumb--light a { color: rgba(255,255,255,.4); }
.breadcrumb--light a:hover { color: rgba(255,255,255,.8); }
.breadcrumb--light .breadcrumb__sep { color: rgba(255,255,255,.2); }
.breadcrumb--light span[aria-current] { color: rgba(255,255,255,.7); font-weight: 500; }

/* Centered hero content */
.sol-hero__centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.sol-hero--dark .sol-hero__centered { padding-bottom: 56px; }

/* Eyebrow dark variant */
.eyebrow--dark {
  background: rgba(59,118,246,.15);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(59,118,246,.2);
}

.sol-hero--dark h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--font-weight-bold); /* MEP-26: 600→700, alignement typography.css */
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.sol-hero--dark .sol-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.sol-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.sol-hero__cta { margin-bottom: 16px; }
.sol-hero__reassurance {
  font-size: var(--font-size-xs, 12px);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 360px;
}
.sol-hero--dark .sol-hero__reassurance {
  color: rgba(255,255,255,.6); /* MEP-20: .35→.6, microcopie reassurance, ratio ~7:1 sur navy */
  margin: 12px auto 0;
}

/* Hero bottom zone — contains marquee + cropped product frame */
.sol-hero__bottom {
  position: relative;
  margin-top: auto;
  flex-shrink: 0;
  z-index: 2;
}

/* Logo marquee — scrolls behind the product frame */
.sol-hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 24px 0;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.sol-hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.sol-hero__marquee-track img {
  height: 18px;
  width: auto;
  opacity: 0.25;
  filter: brightness(10);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Product frame — cropped, on top of marquee */
.sol-hero__product-wrap {
  position: relative;
  z-index: 2;
}
.sol-hero__product-frame {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.sol-hero__product-frame > img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  box-shadow:
    0 -2px 4px rgba(0,0,0,.06),
    0 -8px 24px rgba(0,0,0,.1),
    0 -24px 48px rgba(0,0,0,.12);
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
}
.sol-hero__frag-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    0 4px 12px rgba(0,0,0,.1),
    0 12px 32px rgba(0,0,0,.18);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}
.sol-hero__frag-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
}
.sol-hero__frag-float--left {
  width: 220px;
  height: 155px;
  left: -60px;
  top: -20px;
  animation: fragFloatL 7s ease-in-out infinite alternate;
}
.sol-hero__frag-float--right {
  width: 200px;
  height: 160px;
  right: -50px;
  top: 40%;
  animation: fragFloatR 8s ease-in-out infinite alternate;
}
@keyframes fragFloatL {
  0% { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-10px) rotate(0deg); }
}
@keyframes fragFloatR {
  0% { transform: translateY(0) rotate(1deg); }
  100% { transform: translateY(-12px) rotate(0deg); }
}

@media (max-width: 900px) {
  .sol-hero__product-frame { max-height: 280px; }
  .sol-hero__marquee-track img { height: 14px; }
  .sol-hero__frag-float--left { width: 160px; height: 110px; left: -10px; }
  .sol-hero__frag-float--right { width: 150px; height: 110px; right: -10px; }
}
@media (max-width: 480px) {
  .sol-hero__product-frame { max-height: 180px; border-radius: 8px 8px 0 0; }
  .sol-hero__marquee-track { gap: 32px; }
  .sol-hero__frag-float--left, .sol-hero__frag-float--right { display: none; }
}

/* Legacy grid hero (for pages not using dark variant) */
.sol-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.sol-hero__content .eyebrow { margin-bottom: 24px; }
.sol-hero__content h1 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: var(--font-weight-bold); /* MEP-26: 600→700 */
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.sol-hero__subtitle {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}
.sol-hero__visual { position: relative; }

@media (max-width: 900px) {
  .sol-hero { padding: 24px 0 80px; }
  .sol-hero--dark { padding: 24px 0 0; }
  .sol-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .sol-hero--dark h1 { font-size: clamp(28px, 6vw, 40px); }
  .sol-hero__glow { width: 300px; height: 300px; }
  .sol-hero__glow--2 { width: 250px; height: 250px; }
}
@media (max-width: 480px) {
  .sol-hero { padding: 16px 0 64px; }
  .sol-hero--dark h1 { font-size: clamp(24px, 7vw, 34px); }
  .sol-hero__centered { padding-bottom: 40px; }
  .sol-hero__glow, .sol-hero__glow--2 { display: none; }
}

/* ---------- S2 — PREUVE FLASH ---------- */
.proof-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-bar__text {
  font-size: var(--font-size-sm, 13px);
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-bar__text strong {
  color: var(--navy);
  font-weight: 600;
}
.proof-bar__logos {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-bar__logos img {
  height: 14px;
  width: auto;
  opacity: 0.3;
  filter: grayscale(1);
  object-fit: contain;
  transition: opacity var(--duration-normal, 0.2s);
}
.proof-bar__logos img:hover { opacity: 0.6; }

.proof-bar__placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
}
.proof-bar__placeholder-item {
  width: 64px;
  height: 20px;
  background: var(--bg-subtle);
  border-radius: 4px;
  border: 1px dashed var(--border);
}

/* ---------- TRANSFORMATION — unified section ---------- */
.sol-transform {
  padding: 64px 0 48px;
  background: var(--bg);
}
.sol-transform__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Row layout — zone centered, files left, chips right */
.sol-drop__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Input file cards — stacked, aligned right toward the zone */
.sol-drop__files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.sol-drop__file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  opacity: 0;
  transform: translateX(-16px);
}
.sol-drop__file svg { color: var(--text-muted); flex-shrink: 0; }

/* Files appear then slide right into the zone */
.sol-transform.visible .sol-drop__file--1 { animation: fileDrop 2.5s cubic-bezier(0.4,0,0.2,1) 0.2s both; }
.sol-transform.visible .sol-drop__file--2 { animation: fileDrop 2.5s cubic-bezier(0.4,0,0.2,1) 0.5s both; }
.sol-transform.visible .sol-drop__file--3 { animation: fileDrop 2.5s cubic-bezier(0.4,0,0.2,1) 0.8s both; }
.sol-transform.visible .sol-drop__file--4 { animation: fileDrop 2.5s cubic-bezier(0.4,0,0.2,1) 1.1s both; }

@keyframes fileDrop {
  0% { opacity: 0; transform: translateX(-16px) scale(1); }
  15% { opacity: 1; transform: translateX(0) scale(1); }
  55% { opacity: 1; transform: translateX(0) scale(1); }
  80% { opacity: 0.5; transform: translateX(50px) scale(0.8); }
  100% { opacity: 0; transform: translateX(70px) scale(0.5); }
}

/* Drop zone — centered, macOS style */
.sol-drop__zone {
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  background: rgba(255,255,255,.6);
}
.sol-transform.visible .sol-drop__zone {
  animation: zoneFlash 3.5s ease 0.5s both;
}
@keyframes zoneFlash {
  0%, 25% { border-color: var(--border); }
  45% { border-color: var(--accent); background: rgba(59,118,246,.05); }
  65% { border-color: var(--accent); }
  100% { border-color: var(--border); background: rgba(255,255,255,.6); }
}
.sol-drop__zone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sol-drop__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.sol-transform.visible .sol-drop__logo {
  animation: logoShimmer 2s ease-in-out 2s infinite;
}
@keyframes logoShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3) drop-shadow(0 0 8px rgba(59,118,246,.4)); }
}
.sol-drop__zone-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* Output chips — wrap to the right of the zone */
.sol-drop__outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}

/* Chips — tech product style */
.sol-transform__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  opacity: 0;
  transform: translateX(-24px) scale(0.85);
  letter-spacing: -0.01em;
}
.sol-transform__chip:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-1px);
  border-color: var(--accent);
}
.sol-transform__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Chips slide out then float */
.sol-transform.visible .sol-transform__chip {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.4s ease, transform 0.5s var(--ease-spring, cubic-bezier(0.22,1,0.36,1));
}
.sol-transform.visible .sol-transform__chip:nth-child(1) { transition-delay: 3.2s; }
.sol-transform.visible .sol-transform__chip:nth-child(2) { transition-delay: 3.35s; }
.sol-transform.visible .sol-transform__chip:nth-child(3) { transition-delay: 3.5s; }
.sol-transform.visible .sol-transform__chip:nth-child(4) { transition-delay: 3.65s; }
.sol-transform.visible .sol-transform__chip:nth-child(5) { transition-delay: 3.8s; }
.sol-transform.visible .sol-transform__chip:nth-child(6) { transition-delay: 3.95s; }
.sol-transform.visible .sol-transform__chip:nth-child(7) { transition-delay: 4.1s; }
.sol-transform.visible .sol-transform__chip:nth-child(8) { transition-delay: 4.25s; }

@media (max-width: 768px) {
  .sol-transform { padding: 56px 0 48px; }
  .sol-drop { max-width: 100%; }
  .sol-drop__row { grid-template-columns: 1fr; gap: 24px; }
  .sol-drop__files { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .sol-drop__zone { padding: 32px 24px; }
  .sol-drop__outputs { justify-content: center; }
  .sol-transform__chip { font-size: 12px; padding: 7px 14px; }
  .sol-transform.visible .sol-transform__chip:nth-child(1) { transition-delay: 0.3s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(2) { transition-delay: 0.4s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(3) { transition-delay: 0.5s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(4) { transition-delay: 0.6s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(5) { transition-delay: 0.7s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(6) { transition-delay: 0.8s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(7) { transition-delay: 0.9s !important; }
  .sol-transform.visible .sol-transform__chip:nth-child(8) { transition-delay: 1.0s !important; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-drop__file { opacity: 1 !important; animation: none !important; }
  .sol-drop__zone { animation: none !important; }
  .sol-drop__logo { animation: none !important; }
  .sol-transform__chip {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- COUNTER stat — inline layout --- */
.sol-counter {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.sol-counter__value {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' 1;
  display: block;
  margin-bottom: 8px;
}
.sol-counter__text {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Loading dots before counter starts */
.sol-counter__dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.sol-counter__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  animation: dotPulse 1s ease-in-out infinite;
}
.sol-counter__dots span:nth-child(2) { animation-delay: 0.15s; }
.sol-counter__dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* ---------- S3 — IMPACT (Halden blog-grid, exact layout) ---------- */
.sol-impact {
  padding: 48px 0 64px;
  background: #F1F3F5;
  border-radius: 20px;
  margin: 0 40px;
}
.sol-impact__header {
  margin-bottom: 48px;
}
.sol-impact__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.sol-impact__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* 3-column grid — Halden: no borders, no shadows, flat */
.sol-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-impact__card {
  display: flex;
  flex-direction: column;
}

/* Image — full-width, rounded, blue gradient overlay */
.sol-impact__img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.sol-impact__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,60,.25) 0%, rgba(59,118,246,.15) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: inherit;
}
.sol-impact__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-default, ease);
}
.sol-impact__card:hover .sol-impact__img img {
  transform: scale(1.03);
}

/* Label — uppercase monospace-like, small */
.sol-impact__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

/* Title — large, tight leading */
.sol-impact__card h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

/* Body */
.sol-impact__card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Link — uppercase, small, monospace-like tracking */
.sol-impact__link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: color 0.2s;
  margin-top: auto;
}
.sol-impact__link:hover { color: var(--accent); }

@media (max-width: 768px) {
  .sol-impact { padding: 64px 0; }
  .sol-impact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- S4 — COMMENT CA MARCHE (Aeline tabbed) ---------- */
.sol-how {
  padding: 80px 0;
  background: var(--bg);
}
.sol-how__header { text-align: center; margin-bottom: 48px; }
.sol-how__header .eyebrow { margin-bottom: 16px; }
.sol-how__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto;
}

/* Tab bar — Aeline pill segmented */
.sol-how__tabs {
  display: flex;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 3px;
  max-width: 520px;
  margin: 0 auto 32px;
}
.sol-how__tab {
  flex: 1;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font);
}
.sol-how__tab:hover { color: var(--navy); }
.sol-how__tab.is-active {
  background: var(--bg-subtle);
  color: var(--navy);
}
.sol-how__tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--border-light);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  margin-right: 4px;
  letter-spacing: 0;
  transition: background 0.3s, color 0.3s;
}
.sol-how__tab.is-active .sol-how__tab-num {
  background: var(--navy);
  color: #fff;
}

/* Panel card */
.sol-how__panels {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.03), 0 4px 16px rgba(0,0,0,.03);
}
.sol-how__panel {
  display: none;
  grid-template-columns: 5fr 6fr;
  height: 340px;
}
.sol-how__panel.is-active {
  display: grid;
  animation: panelFade 0.35s ease-out;
}
@keyframes panelFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Panel left — text content */
.sol-how__panel-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.sol-how__panel-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.sol-how__panel-content h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.sol-how__panel-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 380px;
}

/* Panel right — visual, navy + animated glow */
.sol-how__panel-visual {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.sol-how__panel-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(59,118,246,.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(59,118,246,.25) 0%, transparent 55%);
  background-size: 200% 200%;
  animation: panelGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes panelGlow {
  0% { background-position: 0% 20%; }
  50% { background-position: 100% 80%; }
  100% { background-position: 30% 0%; }
}
.sol-how__panel-visual--img {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.sol-how__panel-visual--img img {
  position: absolute;
  bottom: -60px;
  right: 0;
  width: calc(100% - 32px);
  height: auto;
  display: block;
  border-radius: 10px 0 0 0;
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 24px rgba(0,0,0,.25);
  z-index: 1;
  background: #fff;
}
/* Photo: right-aligned, zoomed 80% */
.sol-how__panel-visual--img img[src*="bd8c4b89"] {
  bottom: -200px;
  top: auto;
  left: auto;
  right: 0;
  width: calc(100% - 32px);
  object-fit: contain;
  border-radius: 10px 0 0 0;
  border-right: none;
  border-bottom: none;
  transform: none;
}
.sol-how__panel-mockup {
  width: 100%;
  max-width: 340px;
}

/* Visual: file list (step 1) */
.sol-how__panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sol-how__panel-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sol-how__panel-files span {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: box-shadow 0.2s;
}
.sol-how__panel-files span:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }

/* Visual: KPI cards (step 2) */
.sol-how__panel-kpis {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-how__panel-kpi {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sol-how__panel-kpi-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.sol-how__panel-kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.01em;
}

/* Visual: document (step 3) */
.sol-how__panel-doc {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.sol-how__panel-doc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.sol-how__panel-doc-header small {
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  font-size: 11px;
  margin-top: 2px;
}
.sol-how__panel-doc-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.sol-how__panel-doc-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sol-how__panel-doc-lines span {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
}
.sol-how__panel-doc-lines span:nth-child(2) { width: 85%; }
.sol-how__panel-doc-lines span:nth-child(3) { width: 65%; }
.sol-how__panel-doc-lines span:nth-child(4) { width: 90%; }

/* Legacy step classes (keep for other pages) */
.sol-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.sol-how__step { position: relative; z-index: 1; }
.sol-how__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  font-feature-settings: 'tnum' 1;
  border: 1.5px solid var(--border);
  transition: background var(--duration-normal, 0.2s), color var(--duration-normal, 0.2s), border-color var(--duration-normal, 0.2s);
}
.sol-how__step:hover .sol-how__step-num {
  background: var(--navy);
  color: var(--surface-primary, #fff);
  border-color: var(--navy);
}
.sol-how__step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.sol-how__step p {
  font-size: var(--font-size-base, 14px);
  color: var(--text-body);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .sol-how { padding: 64px 0; }
  .sol-how__panel { grid-template-columns: 1fr; min-height: auto; }
  .sol-how__panel-content { padding: 32px 24px; }
  .sol-how__panel-visual { padding: 24px; }
}
@media (max-width: 480px) {
  .sol-how__tabs { flex-direction: column; border-radius: 16px; }
  .sol-how__tab { border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-how__panel.is-active { animation: none; }
}

/* ---------- S5 — FONCTIONNALITES (scroll-pinned) ---------- */
.sol-feat-pin {
  height: 350vh;
  position: relative;
}
.sol-feat-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Panels — crossfade, all stacked in same space */
.sol-feat-split__left {
  position: relative;
  min-height: 280px;
}
.sol-feat-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  pointer-events: none;
}
.sol-feat-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.sol-features {
  padding: 80px 0;
  background: var(--bg);
}
.sol-feat-scroll__header {
  text-align: center;
  margin-bottom: 32px;
}
.sol-feat-scroll__header .eyebrow { margin-bottom: 16px; }
.sol-feat-scroll__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 560px;
  margin: 0 auto;
}

/* Panel label inside family */
.sol-feat-split__panel-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .sol-features { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-feat-split__panel.is-active { animation: none; }
}

/* --- FEATURE SPLIT — families scroll, frame sticky --- */
.sol-feat-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* Family blocks — spaced for scroll pacing */
.sol-feat-family {
  padding: 48px 0;
  min-height: 40vh;
  border-bottom: 1px solid var(--border-light);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.sol-feat-family:last-child { border-bottom: none; }
.sol-feat-family.is-active { opacity: 1; }

/* Left column — scrollable families */
.sol-feat-split__left {
  display: flex;
  flex-direction: column;
}

/* Family tab nav — sticky at top */
.sol-feat-split__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  position: sticky;
  top: 112px;
  z-index: 3;
  background: var(--bg);
  padding: 8px 0;
}
.sol-feat-split__tab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font);
  letter-spacing: -0.01em;
}
.sol-feat-split__tab:hover {
  color: var(--navy);
  border-color: var(--border);
}
.sol-feat-split__tab.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Feature panels — ALL visible, stacked vertically, spaced out */
.sol-feat-split__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px 0;
  min-height: 40vh;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.sol-feat-split__panel.is-active {
  opacity: 1;
}
.sol-feat-split__panel-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* Feature items — border-left tracks scroll, generous height */
.sol-feat-split__item {
  padding: 24px 0 24px 20px;
  border-left: 2px solid var(--border-light);
  transition: border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.45;
}
.sol-feat-split__item.is-active {
  border-left-color: var(--accent);
  opacity: 1;
}
.sol-feat-split__item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.sol-feat-split__item.is-active h3 { color: var(--accent); }
.sol-feat-split__item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}
.sol-feat-split__item-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s ease, color 0.2s;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease, gap 0.2s ease;
}
.sol-feat-split__item.is-active .sol-feat-split__item-link {
  opacity: 1;
  transform: translateY(0);
}
.sol-feat-split__item-link:hover {
  gap: 10px;
  color: var(--navy);
}
.sol-feat-split__item-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Right: visual wrapper */
.sol-feat-split__visual-wrap {
  position: relative;
}

/* Stacked frames — 3 frames layered, one visible at a time */
.sol-feat-split__stack {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  padding: 28px 0 0 28px;
  height: 380px;
}
.sol-feat-split__frame {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  pointer-events: none;
}
.sol-feat-split__frame.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  top: 0;
  left: 0;
  height: calc(100% - 28px);
}
.sol-feat-split__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  border-radius: 10px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 20px rgba(0,0,0,.2);
  background: #fff;
}

/* Ghost frames peeking behind — depth effect */
.sol-feat-split__stack::before,
.sol-feat-split__stack::after {
  content: '';
  position: absolute;
  border-radius: 8px 0 0 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  border-right: none;
  border-bottom: none;
  pointer-events: none;
}
.sol-feat-split__stack::before {
  top: 10px;
  left: 12px;
  right: 8px;
  bottom: 8px;
  z-index: 0;
}
.sol-feat-split__stack::after {
  top: 18px;
  left: 20px;
  right: 4px;
  bottom: 4px;
  z-index: 0;
  background: rgba(255,255,255,.03);
}

/* Collab cursors on the frame */
.sol-feat-split__cursor {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}
.sol-feat-split__cursor span {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1;
}
.sol-feat-split__cursor--1 {
  top: 25%;
  right: 15%;
  animation: cursorDrift1 8s ease-in-out infinite;
}
.sol-feat-split__cursor--2 {
  bottom: 30%;
  left: 10%;
  animation: cursorDrift2 10s ease-in-out infinite;
}

@media (max-width: 900px) {
  .sol-feat-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sol-feat-split__visual-wrap {
    position: static;
    order: -1;
  }
  .sol-feat-split__stack { height: 280px; }
  .sol-feat-split__chips,
  .sol-feat-split__cursor { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-feat-split__chip,
  .sol-feat-split__cursor { animation: none !important; }
}

/* ---------- BOOKING / CALENDLY (redesign) ---------- */
.sol-booking {
  padding: 80px 0;
  background: var(--bg);
}
/* Grid: info left + calendar right — balanced */
.sol-booking__grid {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(400px, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.03), 0 8px 32px rgba(0,0,0,.05);
  max-width: 880px;
  margin: 0 auto;
}

/* Header inside left panel */
.sol-booking__info-header { margin-bottom: 8px; }
.sol-booking__info-header .eyebrow { margin-bottom: 14px; }
.sol-booking__info-header h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sol-booking__info-header p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

/* Left: info panel — same height as calendar */
.sol-booking__info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--border-light);
  height: 560px;
  overflow: hidden;
}

/* Person card */
.sol-booking__person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sol-booking__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
}
.sol-booking__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.sol-booking__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Details */
.sol-booking__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-booking__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.sol-booking__detail svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Reassurances */
.sol-booking__reassurance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.sol-booking__reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.sol-booking__reassurance-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Right: Calendly iframe — fixed height matching left panel */
.sol-booking__calendar {
  height: 560px;
  overflow: hidden;
}
.sol-booking__calendar iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: none;
}

@media (max-width: 900px) {
  .sol-booking__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .sol-booking__info {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 32px 24px;
  }
  .sol-booking__info { height: auto; }
  .sol-booking__calendar { height: 540px; }
  .sol-booking__calendar iframe { height: 540px; }
}

/* ---------- AVANT/APRES header ---------- */
.sol-compare__header {
  margin-bottom: 48px;
}

/* ---------- ENCART POUR LE CABINET ---------- */
.sol-cabinet-aside {
  padding: 0 0 100px;
  background: var(--bg);
}
.sol-cabinet-aside__inner {
  max-width: 800px;
  padding: 40px 48px;
  background: var(--navy);
  color: var(--surface-primary, #fff);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow */
.sol-cabinet-aside__inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,118,246,.12) 0%, transparent 70%);
  pointer-events: none;
}
.sol-cabinet-aside__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  position: relative;
}
.sol-cabinet-aside__inner h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--surface-primary, #fff);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.sol-cabinet-aside__inner p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  position: relative;
}
.sol-cabinet-aside__inner p strong {
  color: var(--surface-primary, #fff);
  font-weight: 600;
}

/* ---------- S6 — AVANT / APRES ---------- */
.sol-compare {
  padding: 80px 0;
  background: var(--bg);
}
.sol-compare h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.sol-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sol-compare__col {
  padding: 36px 32px;
  border-radius: 16px;
}
.sol-compare__col--before {
  background: #fff;
  border: 1px solid var(--border-light);
}
.sol-compare__col--after {
  background: var(--navy);
  color: var(--surface-primary, #fff);
}
.sol-compare__col-title {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sol-compare__col--before .sol-compare__col-title { color: var(--text-muted); }
.sol-compare__col--after .sol-compare__col-title { color: rgba(255,255,255,.4); }
.sol-compare__item {
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.sol-compare__item-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.sol-compare__col--after .sol-compare__item-label { color: rgba(255,255,255,.6); /* MEP-20 */ }
.sol-compare__col--after .sol-compare__item { border-bottom-color: rgba(255,255,255,.06); }
.sol-compare__item:last-child { border-bottom: none; }
.sol-compare__note {
  font-size: var(--font-size-xs, 12px);
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 28px;
  font-style: italic;
}
@media (max-width: 768px) {
  .sol-compare { padding: 64px 0 80px; }
  .sol-compare__grid { grid-template-columns: 1fr; }
}

/* ---------- S6b — VERSUS (metric cards redesign) ---------- */
.sol-versus {
  padding: 80px 0;
  background: var(--bg);
}
.sol-versus__header {
  text-align: center;
  margin-bottom: 48px;
}
.sol-versus__header .eyebrow { margin-bottom: 16px; }
.sol-versus__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.sol-versus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.sol-versus__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.sol-versus__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.sol-versus__card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.sol-versus__card--wide .sol-versus__label { margin-bottom: 0; }

.sol-versus__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.sol-versus__before,
.sol-versus__after {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sol-versus__before p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,.15);
}
.sol-versus__after p {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 500;
}
.sol-versus__after p strong { color: var(--accent); font-weight: 600; }

.sol-versus__tag {
  display: inline-flex;
  width: fit-content;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
}
.sol-versus__tag--before { background: var(--bg); color: var(--text-muted); }
.sol-versus__tag--after { background: var(--accent-light); color: var(--accent); }

.sol-versus__stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.sol-versus__stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sol-versus__stat-num--dim {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,.15);
}

@media (max-width: 768px) {
  .sol-versus__grid { grid-template-columns: 1fr; }
  .sol-versus__card--wide { grid-template-columns: 1fr; }
}

/* ---------- S7 — SCREENSHOT / MOCKUP PRODUIT ---------- */
.sol-screenshot {
  padding: 80px 0;
  background: var(--bg);
}
.sol-screenshot h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Product mockup — elevated Halden-style */
.sol-mockup {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 4px 12px rgba(0,0,0,.04),
    0 16px 40px rgba(0,0,0,.06),
    0 32px 80px rgba(0,0,0,.04);
  background: var(--bg);
  transition: box-shadow var(--duration-slow, 0.3s), transform var(--duration-slow, 0.3s);
}
.sol-mockup:hover {
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 4px 12px rgba(0,0,0,.06),
    0 20px 48px rgba(0,0,0,.08),
    0 40px 96px rgba(0,0,0,.06);
  transform: translateY(-4px);
}

.sol-mockup__topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.sol-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.sol-mockup__dot:first-child { background: #FF5F57; }
.sol-mockup__dot:nth-child(2) { background: #FEBC2E; }
.sol-mockup__dot:nth-child(3) { background: #28C840; }
.sol-mockup__topbar-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}

.sol-mockup__body { padding: 28px; }
.sol-mockup__grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
}
@media (max-width: 768px) { .sol-mockup__grid { grid-template-columns: 1fr; } }

/* KPI dominant — larger, more prominent */
.sol-mockup__kpi {
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}
.sol-mockup__kpi-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sol-mockup__kpi-unit {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}
.sol-mockup__kpi-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

/* Data table — hover rows */
.sol-mockup__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-xs, 12px);
}
.sol-mockup__table th {
  text-align: left;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.sol-mockup__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
  color: var(--navy);
  font-feature-settings: 'tnum' 1;
  transition: background var(--duration-fast, 0.15s);
}
.sol-mockup__table tbody tr:hover td { background: var(--bg); }
.sol-mockup__table tr:last-child td { border-bottom: none; }
.sol-mockup__table .cell-positive { color: var(--success); font-weight: 600; }
.sol-mockup__table .cell-negative { color: var(--danger); font-weight: 600; }
.sol-mockup__table .cell-muted { color: var(--text-muted); }

/* PDF preview aside */
.sol-mockup__pdf {
  background: var(--bg);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border-light);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sol-mockup__pdf-page {
  width: 100%;
  aspect-ratio: 210/297;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.sol-mockup__pdf-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 12px;
}
.sol-mockup__pdf-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--text-muted);
  font-weight: 700;
}
.sol-mockup__pdf-cabinet {
  font-size: 9px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.sol-mockup__pdf-cabinet span {
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}
.sol-mockup__pdf-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sol-mockup__pdf-line {
  height: 4px;
  background: var(--bg-subtle);
  border-radius: 2px;
}
.sol-mockup__pdf-line--short { width: 60%; }
.sol-mockup__pdf-line--medium { width: 80%; }
.sol-mockup__pdf-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* Callouts — refined */
.sol-mockup__callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sol-mockup__callout {
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  font-size: var(--font-size-sm, 13px);
  color: var(--text-body);
  line-height: 1.55;
}
.sol-mockup__callout strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .sol-mockup__callouts { grid-template-columns: 1fr; }
}

/* Chart mockup (bar/line) */
.sol-mockup__chart {
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border-light);
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 20px;
}
.sol-mockup__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-width: 16px;
  position: relative;
  transition: opacity var(--duration-fast, 0.15s);
}
.sol-mockup__bar:hover { opacity: 0.85; }
.sol-mockup__bar--actual { background: var(--navy); }
.sol-mockup__bar--forecast {
  background: repeating-linear-gradient(
    45deg, var(--accent), var(--accent) 2px,
    rgba(59,118,246,.12) 2px, rgba(59,118,246,.12) 6px
  );
}
.sol-mockup__bar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
  font-feature-settings: 'tnum' 1;
}

/* Portfolio view mockup */
.sol-mockup__portfolio-list {
  display: flex;
  flex-direction: column;
}
.sol-mockup__portfolio-row {
  display: grid;
  grid-template-columns: 1fr 100px 80px 60px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  font-size: var(--font-size-xs, 12px);
  gap: 8px;
  transition: background var(--duration-fast, 0.15s);
}
.sol-mockup__portfolio-row:hover { background: var(--bg); }
.sol-mockup__portfolio-row:first-child {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sol-mockup__portfolio-row:first-child:hover { background: transparent; }
.sol-mockup__portfolio-name { font-weight: 500; color: var(--navy); }
.sol-mockup__risk-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.sol-mockup__risk-badge--ok { background: #DCFCE7; color: #166534; }
.sol-mockup__risk-badge--warn { background: #FEF9C3; color: #854D0E; }
.sol-mockup__risk-badge--alert { background: #FEE2E2; color: #991B1B; }

/* Benchmark cursors */
.sol-mockup__benchmark {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
}
.sol-mockup__bench-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sol-mockup__bench-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
.sol-mockup__bench-bar {
  position: relative;
  height: 8px;
  background: var(--bg-subtle);
  border-radius: 4px;
  overflow: visible;
}
.sol-mockup__bench-range {
  position: absolute;
  height: 100%;
  background: rgba(59,118,246,.1);
  border-radius: 4px;
}
.sol-mockup__bench-marker {
  position: absolute;
  top: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--surface-primary, #fff);
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transform: translateX(-50%);
  transition: transform var(--duration-normal, 0.2s) var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
}
.sol-mockup__bench-marker:hover { transform: translateX(-50%) scale(1.2); }
.sol-mockup__bench-avg {
  position: absolute;
  top: -3px;
  width: 2px;
  height: 14px;
  background: var(--navy);
  opacity: 0.25;
  transform: translateX(-50%);
}
.sol-mockup__bench-values {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  font-feature-settings: 'tnum' 1;
}

/* Opportunity list */
.sol-mockup__opps {
  display: flex;
  flex-direction: column;
}
.sol-mockup__opp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--duration-fast, 0.15s);
}
.sol-mockup__opp-row:hover { background: var(--bg); }
.sol-mockup__opp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sol-mockup__opp-text {
  font-size: var(--font-size-xs, 12px);
  color: var(--navy);
  font-weight: 500;
  flex: 1;
}
.sol-mockup__opp-value {
  font-size: var(--font-size-xs, 12px);
  color: var(--accent);
  font-weight: 600;
  font-feature-settings: 'tnum' 1;
}

/* ---------- S8 — TEMOIGNAGES (Aeline carousel) ---------- */
.sol-testi {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}
.sol-testi__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.sol-testi__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.sol-testi__sub {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

/* Nav arrows */
.sol-testi__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.sol-testi__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
}
.sol-testi__arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Track — horizontal scroll */
.sol-testi__track-wrap {
  overflow: visible;
  padding-left: max(24px, calc((100vw - 1400px) / 2 + 24px));
}
.sol-testi__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
}

/* Card — photo background with overlay text */
.sol-testi__card {
  flex-shrink: 0;
  width: 340px;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: default;
}
.sol-testi__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sol-testi__card:hover .sol-testi__photo {
  transform: scale(1.03);
}

/* Gradient overlay — bottom dark */
.sol-testi__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.1) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

/* Logo top-left */
.sol-testi__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 20px;
  width: auto;
  filter: brightness(10);
  opacity: 0.7;
}

/* Quote mark */
.sol-testi__quote-mark {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.sol-testi__overlay blockquote {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 12px;
  font-style: normal;
}
.sol-testi__author {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-align: right;
}

@media (max-width: 768px) {
  .sol-testi__card { width: 280px; height: 400px; }
  .sol-testi__track-wrap { padding-left: 16px; }
  .sol-testi__header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Legacy testimonial (keep for other pages) */
.sol-testimonial {
  padding: 80px 0;
  background: var(--bg);
}
.sol-testimonial__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
/* Large quotation mark — editorial touch */
.sol-testimonial__card::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
  pointer-events: none;
}
.sol-testimonial__card blockquote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  font-style: normal;
  position: relative;
}
.sol-testimonial__card blockquote strong { font-weight: 600; }
.sol-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.sol-testimonial__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.sol-testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.sol-testimonial__role {
  font-size: var(--font-size-xs, 12px);
  color: var(--text-muted);
}

/* Placeholder testimonial */
.sol-testimonial--placeholder .sol-testimonial__card {
  padding: 40px 36px;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed var(--border);
}
.sol-testimonial--placeholder .sol-testimonial__card::before { color: var(--border); }
.sol-testimonial--placeholder blockquote {
  color: var(--text-muted);
  font-style: italic;
}
.sol-testimonial__collect-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* ---------- S9 — FAQ (Halden style) ---------- */
.sol-faq-v2 {
  padding: 80px 0;
  background: #F1F3F5;
  border-radius: 20px;
  margin: 0 40px;
}
.sol-faq-v2__header {
  text-align: center;
  margin-bottom: 48px;
}
.sol-faq-v2__header .eyebrow { margin-bottom: 16px; }
.sol-faq-v2__header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.sol-faq-v2__sub {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}

/* Category tabs — Halden segmented */
.sol-faq-v2__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 4px;
  max-width: 420px;
  margin: 0 auto 36px;
}
.sol-faq-v2__tab {
  flex: 1;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.25s ease;
}
.sol-faq-v2__tab:hover { color: var(--navy); }
.sol-faq-v2__tab.is-active {
  background: var(--navy);
  color: #fff;
}

/* FAQ list */
.sol-faq-v2__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual FAQ card — Halden rounded box */
.sol-faq-v2__item {
  background: rgba(255,255,255,.6);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: background 0.2s;
}
.sol-faq-v2__item[open] {
  background: rgba(255,255,255,.85);
}

.sol-faq-v2__item summary {
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.sol-faq-v2__item summary:hover { color: var(--accent); }
.sol-faq-v2__item summary::-webkit-details-marker { display: none; }
.sol-faq-v2__item summary span:first-child { flex: 1; }

/* Circle +/- icon */
.sol-faq-v2__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.sol-faq-v2__icon::before,
.sol-faq-v2__icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
}
.sol-faq-v2__icon::before {
  width: 12px;
  height: 1.5px;
}
.sol-faq-v2__icon::after {
  width: 1.5px;
  height: 12px;
}
.sol-faq-v2__item[open] .sol-faq-v2__icon {
  border-color: var(--navy);
  background: var(--navy);
}
.sol-faq-v2__item[open] .sol-faq-v2__icon::before {
  background: #fff;
}
.sol-faq-v2__item[open] .sol-faq-v2__icon::after {
  background: #fff;
  transform: rotate(90deg);
}

/* Body content */
.sol-faq-v2__body {
  padding: 0 28px 24px;
}
.sol-faq-v2__body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Article link */
.sol-faq-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.sol-faq-v2__link:hover { color: var(--navy); }

/* Legacy FAQ kept for other pages */
.sol-faq {
  padding: 80px 0;
  background: var(--bg);
}

@media (max-width: 900px) {
  .sol-faq-v2 { margin: 0 16px; }
}
@media (max-width: 768px) {
  .sol-faq-v2 { margin: 0 16px; padding: 56px 0; }
  .sol-faq-v2__item summary { padding: 18px 20px; font-size: 14px; }
  .sol-faq-v2__body { padding: 0 20px 20px; }
}

/* ---------- S10 — CTA FINAL ---------- */
.sol-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Radial glow behind CTA — dramatic finish */
.sol-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,118,246,.1) 0%, transparent 65%);
  pointer-events: none;
}
.sol-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.sol-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--surface-primary, #fff);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.sol-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.7); /* MEP-20: .45→.7, ratio ~9:1 sur navy */
  line-height: 1.65;
  margin-bottom: 32px;
}
.sol-cta .btn-demo-charles {
  background: var(--bg);
  color: var(--navy);
}
.sol-cta .btn-demo-charles:hover {
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  transform: translateY(-2px);
}

/* ---------- AUTRES SOLUTIONS — product cards ---------- */
.sol-others {
  padding: 80px 0;
  background: var(--bg);
}
.sol-others__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.sol-others__header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.sol-others__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: color 0.2s;
}
.sol-others__all:hover { color: var(--navy); }

/* 3-column grid */
.sol-others__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

/* Product card — image + text */
.sol-others__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.sol-others__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: var(--border);
  transform: translateY(-4px);
}

/* Image area — navy bg, product screenshot */
.sol-others__card-img {
  background: var(--navy);
  padding: 20px 0 0 20px;
  overflow: hidden;
  position: relative;
  height: 200px;
}
.sol-others__card-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  transition: transform 0.4s ease;
  background: #fff;
}
.sol-others__card:hover .sol-others__card-img img {
  transform: scale(1.03);
}

/* Text body */
.sol-others__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sol-others__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sol-others__arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.sol-others__card:hover .sol-others__arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}
.sol-others__card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.sol-others__card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Reassurance badges — DS Marcassin style */
.sol-others__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sol-others__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 4px;
}
.sol-others__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sol-others__grid { grid-template-columns: 1fr; }
  .sol-others__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sol-others__reassurance { flex-direction: column; align-items: center; gap: 8px; }
}

/* ---------- REASSURANCE FINALE ---------- */
.sol-reassurance {
  padding: 40px 0 48px;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.sol-reassurance__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sol-reassurance__item {
  font-size: var(--font-size-sm, 13px);
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-reassurance__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--success);
}

/* ---------- NAVIGATION TUNNEL ---------- */
.sol-tunnel {
  padding: 32px 0 64px;
  background: var(--bg);
}
.sol-tunnel__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.sol-tunnel__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm, 13px);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration-normal, 0.2s);
  position: relative;
}
.sol-tunnel__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration-slow, 0.3s) var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
}
.sol-tunnel__link:hover { color: var(--accent); }
.sol-tunnel__link:hover::after { width: 100%; }
.sol-tunnel__link svg { width: 16px; height: 16px; }
.sol-tunnel__link--next { margin-left: auto; }
.sol-tunnel__link--next svg { order: 1; }
.sol-tunnel__link--next::after { left: auto; right: 0; transform-origin: right; }

/* ---------- PLACEHOLDER BADGES ---------- */
.placeholder-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #854D0E;
  background: #FEF9C3;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

/* ===================================================================
   OUTILS PREVISIONNELS — variant components (split hero, stats,
   zigzag impact, timeline, bento grid, quotes grid, flat FAQ)
   =================================================================== */

/* ---------- HERO SPLIT (text left, visual right) ---------- */
.sol-hero--split {
  min-height: auto;
  padding: 32px 0 0;
}
.sol-hero--split .sol-hero__bottom { display: none; }
.sol-hero-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.sol-hero-split__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sol-hero-split__text .eyebrow { margin-bottom: 24px; }
.sol-hero-split__text h1 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.sol-hero-split__text .sol-hero__subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 480px;
}
.sol-hero-split__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.sol-hero-split__logos img {
  height: 16px;
  width: auto;
  opacity: 0.25;
  filter: brightness(10);
  flex-shrink: 0;
}
.sol-hero-split__visual {
  position: relative;
}
.sol-hero-split__frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 4px 12px rgba(0,0,0,.12),
    0 16px 40px rgba(0,0,0,.18);
}
.sol-hero-split__frame img {
  width: 100%;
  height: auto;
  display: block;
}
.sol-hero-split__visual { animation: solMockupRise 0.8s ease-out 0.4s both; }
@media (max-width: 900px) {
  .sol-hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
  }
  .sol-hero-split__text .sol-hero__subtitle { max-width: 100%; }
  .sol-hero-split__text h1 { font-size: clamp(26px, 6vw, 38px); }
}
@media (max-width: 480px) {
  .sol-hero-split { padding-bottom: 40px; }
  .sol-hero-split__logos { gap: 16px; }
  .sol-hero-split__logos img { height: 14px; }
}

/* CTA alignment — left on split hero */
.sol-hero__ctas--left { justify-content: flex-start; }

/* ---------- STATS (3 big numbers, Linear-style) ---------- */
.sol-stats {
  padding: 80px 0;
  background: var(--bg);
}
.sol-stats__intro {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.sol-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-stats__item {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sol-stats__item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.sol-stats__number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' 1;
  margin-bottom: 16px;
}
.sol-stats__unit {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.sol-stats__arrow {
  font-size: 0.6em;
  color: var(--accent);
  margin: 0 4px;
}
.sol-stats__label {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sol-stats { padding: 64px 0; }
  .sol-stats__grid { grid-template-columns: 1fr; gap: 16px; }
  .sol-stats__item { padding: 32px 20px; }
}

/* ---------- ZIGZAG IMPACT (alternating text + frame) ---------- */
.sol-zigzag {
  padding: 80px 0;
  background: #F1F3F5;
  border-radius: 20px;
  margin: 0 40px;
}
.sol-zigzag__header {
  margin-bottom: 56px;
}
.sol-zigzag__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.sol-zigzag__block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.sol-zigzag__block:last-child { margin-bottom: 0; }
.sol-zigzag__block--reverse {
  direction: rtl;
}
.sol-zigzag__block--reverse > * {
  direction: ltr;
}
.sol-zigzag__text {
  display: flex;
  flex-direction: column;
}
.sol-zigzag__text h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.sol-zigzag__text p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}
.sol-zigzag__visual {
  position: relative;
}
.sol-zigzag__frame {
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  padding: 20px 0 0 20px;
}
.sol-zigzag__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 20px rgba(0,0,0,.15);
}
@media (max-width: 900px) {
  .sol-zigzag { margin: 0 16px; padding: 64px 0; }
  .sol-zigzag__block,
  .sol-zigzag__block--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .sol-zigzag__block { margin-bottom: 48px; }
}

/* ---------- TIMELINE (vertical 1-2-3 + sticky visual) ---------- */
.sol-timeline {
  padding: 80px 0;
  background: var(--bg);
}
.sol-timeline__header {
  text-align: center;
  margin-bottom: 56px;
}
.sol-timeline__header .eyebrow { margin-bottom: 16px; }
.sol-timeline__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto;
}
.sol-timeline__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.sol-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sol-timeline__step {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.sol-timeline__step.is-active {
  opacity: 1;
}
.sol-timeline__step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.sol-timeline__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: 'tnum' 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.sol-timeline__step.is-active .sol-timeline__step-num {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.sol-timeline__step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: var(--border-light);
  margin-top: 8px;
}
.sol-timeline__step-content h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sol-timeline__step-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 400px;
}

/* Right: sticky visual */
.sol-timeline__visual-wrap {
  position: relative;
}
.sol-timeline__visual-sticky {
  position: sticky;
  top: 120px;
}
.sol-timeline__frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  padding: 24px 0 0 24px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  pointer-events: none;
}
.sol-timeline__frame.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.sol-timeline__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 20px rgba(0,0,0,.2);
}
/* Photo frame — no navy bg, no offset */
.sol-timeline__frame img[src*="bd8c4b89"] {
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  object-fit: cover;
  max-height: 400px;
}
.sol-timeline__frame:last-child {
  background: transparent;
  padding: 0;
}

@media (max-width: 900px) {
  .sol-timeline__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-timeline__visual-wrap { display: none; }
  .sol-timeline__step { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-timeline__frame { transition: none; }
  .sol-timeline__step { transition: none; }
}

/* ---------- BENTO GRID (features) ---------- */
.sol-bento {
  padding: 80px 0;
  background: #fff;
}

.sol-bento__header {
  text-align: center;
  margin-bottom: 48px;
}
.sol-bento__header .eyebrow { margin-bottom: 16px; }
.sol-bento__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 560px;
  margin: 0 auto;
}
.sol-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
/* Large cards span 2 columns */
.sol-bento__card--large {
  grid-column: span 2;
}
/* Small cards span 1 column */
.sol-bento__card--small {
  grid-column: span 1;
}

/* Base card */
.sol-bento__card {
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sol-bento__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

/* Dark variant */
.sol-bento__card--dark {
  background: var(--navy);
  border-color: transparent;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.sol-bento__card--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(59,118,246,.25) 0%, transparent 60%);
  pointer-events: none;
}
.sol-bento__card--dark .sol-bento__card-text {
  position: relative;
  z-index: 1;
}
.sol-bento__card--dark h3 { color: #fff; }
.sol-bento__card--dark p { color: rgba(255,255,255,.55); }
.sol-bento__card--dark .sol-bento__card-label {
  background: rgba(59,118,246,.2);
  color: rgba(255,255,255,.7);
  border-color: rgba(59,118,246,.3);
}

/* Card label */
.sol-bento__card-label {
  display: inline-flex;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Card text */
.sol-bento__card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.sol-bento__card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Card image in large cards */
.sol-bento__card-img {
  margin: 20px -28px -28px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 16px 0 0 16px;
}
.sol-bento__card-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 20px rgba(0,0,0,.15);
}

@media (max-width: 900px) {
  .sol-bento__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sol-bento__card--large { grid-column: span 2; }
}
@media (max-width: 600px) {
  .sol-bento__grid {
    grid-template-columns: 1fr;
  }
  .sol-bento__card--large,
  .sol-bento__card--small { grid-column: span 1; }
}

/* ---------- QUOTES GRID (2x2 testimonials) ---------- */
.sol-quotes {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}
.sol-quotes__header {
  text-align: center;
  margin-bottom: 48px;
}
.sol-quotes__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.sol-quotes__sub {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}
.sol-quotes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.sol-quotes__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sol-quotes__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.sol-quotes__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sol-quotes__logo {
  height: 18px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
}
.sol-quotes__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}
.sol-quotes__card blockquote {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
  font-style: normal;
  flex: 1;
}
.sol-quotes__author {
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .sol-quotes__grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---------- FAQ FLAT variant (no category tabs) ---------- */
.sol-faq-v2--flat .sol-faq-v2__tabs { display: none; }

/* ==========================================================================
   STRESS-TESTS PAGE — unique components (sol-hero--float, sol-kpi-band,
   sol-bigquote, sol-pains, sol-steps-h, sol-feat-acc, sol-testi-hero)
   ========================================================================== */

/* ---------- HERO FLOAT VARIANT — full-width dashboard, not cropped ---------- */
.sol-hero--float {
  min-height: auto;
  padding-bottom: 0;
  border-radius: 0;
}
.sol-hero--float .sol-hero__centered {
  padding-bottom: 56px;
}

/* Floating dashboard frame — full width, visible entirely, deep shadow */
.sol-hero-float__frame-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.sol-hero-float__frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 2px 4px rgba(0,0,0,.06),
    0 8px 16px rgba(0,0,0,.1),
    0 20px 48px rgba(0,0,0,.16),
    0 40px 80px rgba(0,0,0,.2),
    0 64px 120px rgba(0,0,0,.14);
  animation: solMockupRise 0.8s ease-out 0.5s both;
}
.sol-hero-float__frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Marquee UNDER the frame (not behind) */
.sol-hero-float__marquee {
  position: relative;
  z-index: 1;
  padding: 28px 0 32px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

@media (max-width: 900px) {
  .sol-hero-float__frame { border-radius: 10px; }
  .sol-hero-float__marquee { padding: 20px 0 24px; }
}
@media (max-width: 480px) {
  .sol-hero-float__frame { border-radius: 8px; }
}

/* ---------- KPI BANDEAU — 3 KPI side by side ---------- */
.sol-kpi-band {
  padding: 0;
  background: var(--navy);
}
.sol-kpi-band__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
}
.sol-kpi-band__item {
  flex: 1;
  text-align: center;
  padding: 0 36px;
}
.sol-kpi-band__value {
  display: block;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-feature-settings: 'tnum' 1;
}
.sol-kpi-band__label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.sol-kpi-band__sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sol-kpi-band__row {
    flex-direction: column;
    gap: 28px;
    padding: 36px 0;
  }
  .sol-kpi-band__sep {
    width: 80px;
    height: 1px;
  }
  .sol-kpi-band__item { padding: 0 16px; }
  .sol-kpi-band__value { font-size: 22px; }
}

/* ---------- GRANDE CITATION (sol-bigquote) ---------- */
.sol-problem-quote {
  padding: 100px 0 80px;
  background: var(--bg);
}

.sol-bigquote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  position: relative;
  padding-top: 24px;
}
.sol-bigquote__mark {
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  user-select: none;
}
.sol-bigquote__text {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-style: italic;
  margin-bottom: 28px;
}
.sol-bigquote__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sol-bigquote__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.sol-bigquote__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- 3 POINTS DE DOULEUR (sol-pains) ---------- */
.sol-pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-pains__item {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sol-pains__item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  border-color: var(--border);
}
.sol-pains__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}
.sol-pains__item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.sol-pains__item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sol-problem-quote { padding: 64px 0 56px; }
  .sol-pains { grid-template-columns: 1fr; }
  .sol-bigquote { margin-bottom: 40px; }
}

/* ---------- COMMENT CA MARCHE — horizontal cards + progression line ---------- */
.sol-steps-h {
  padding: 100px 0;
  background: #F1F3F5;
  border-radius: 20px;
  margin: 0 40px;
}
.sol-steps-h__header {
  text-align: center;
  margin-bottom: 56px;
}
.sol-steps-h__header .eyebrow { margin-bottom: 16px; }
.sol-steps-h__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto;
}

.sol-steps-h__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

/* Vertical progression line */
.sol-steps-h__line {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(10,26,60,.12);
}
.sol-steps-h__dot {
  position: absolute;
  left: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid #F1F3F5;
  box-shadow: 0 0 0 2px rgba(10,26,60,.06);
}
.sol-steps-h__dot--1 { top: 48px; }
.sol-steps-h__dot--2 { top: 50%; transform: translateY(-50%); }
.sol-steps-h__dot--3 { bottom: 48px; }

/* Horizontal card */
.sol-steps-h__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.7);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
  transition: box-shadow 0.3s, background 0.3s;
}
.sol-steps-h__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  background: rgba(255,255,255,.9);
}
.sol-steps-h__card-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sol-steps-h__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.sol-steps-h__card h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sol-steps-h__card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Visual right side */
.sol-steps-h__card-visual {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.sol-steps-h__card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(59,118,246,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(59,118,246,.2) 0%, transparent 55%);
  pointer-events: none;
}
.sol-steps-h__card-visual img {
  position: relative;
  z-index: 1;
  width: calc(100% - 24px);
  height: auto;
  display: block;
  border-radius: 8px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 20px rgba(0,0,0,.2);
  margin-top: 24px;
  margin-left: 24px;
}

@media (max-width: 900px) {
  .sol-steps-h { margin: 0 16px; padding: 64px 0; }
  .sol-steps-h__list { padding-left: 0; }
  .sol-steps-h__line { display: none; }
  .sol-steps-h__card { grid-template-columns: 1fr; }
  .sol-steps-h__card-visual { min-height: 180px; }
}

/* ---------- FONCTIONNALITES — accordion + visual (sol-feat-acc) ---------- */
.sol-feat-acc {
  padding: 100px 0;
  background: var(--bg);
}
.sol-feat-acc__header {
  text-align: center;
  margin-bottom: 48px;
}
.sol-feat-acc__header .eyebrow { margin-bottom: 16px; }
.sol-feat-acc__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 560px;
  margin: 0 auto;
}

.sol-feat-acc__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* Accordion list */
.sol-feat-acc__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sol-feat-acc__item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sol-feat-acc__item[open] {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.sol-feat-acc__item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.sol-feat-acc__item summary::-webkit-details-marker { display: none; }
.sol-feat-acc__item summary:hover { color: var(--accent); }

.sol-feat-acc__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
.sol-feat-acc__item[open] .sol-feat-acc__item-icon {
  background: var(--navy);
  color: #fff;
}

.sol-feat-acc__item-title {
  flex: 1;
}

.sol-feat-acc__body {
  padding: 0 24px 20px 72px;
}
.sol-feat-acc__body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Visual — stacked frames, cross-fade */
.sol-feat-acc__visual {
  position: sticky;
  top: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  padding: 24px 0 0 24px;
  min-height: 340px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.08);
}
.sol-feat-acc__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(59,118,246,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(59,118,246,.2) 0%, transparent 55%);
  pointer-events: none;
}
.sol-feat-acc__frame {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  pointer-events: none;
  z-index: 1;
}
.sol-feat-acc__frame.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  top: 0;
  left: 0;
}
.sol-feat-acc__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 20px rgba(0,0,0,.2);
}

@media (max-width: 900px) {
  .sol-feat-acc { padding: 64px 0; }
  .sol-feat-acc__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sol-feat-acc__visual {
    position: static;
    order: -1;
    min-height: 200px;
  }
  .sol-feat-acc__body { padding-left: 24px; }
}

/* Feature accordion: reuse sol-faq-v2__icon rotation for open/close */
.sol-feat-acc__item .sol-faq-v2__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-left: auto;
}
.sol-feat-acc__item[open] .sol-faq-v2__icon {
  border-color: var(--navy);
  background: var(--navy);
}
.sol-feat-acc__item[open] .sol-faq-v2__icon::before {
  background: #fff;
}
.sol-feat-acc__item[open] .sol-faq-v2__icon::after {
  background: #fff;
  transform: rotate(90deg);
}

/* ---------- TEMOIGNAGE HERO — grande carte pleine largeur ---------- */
.sol-testi-hero {
  padding: 100px 0;
  background: var(--bg);
}
.sol-testi-hero__header {
  margin-bottom: 32px;
}
.sol-testi-hero__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.sol-testi-hero__card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px rgba(0,0,0,.03), 0 8px 32px rgba(0,0,0,.06);
  min-height: 420px;
  transition: box-shadow 0.3s;
}

.sol-testi-hero__photo {
  position: relative;
  overflow: hidden;
}
.sol-testi-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sol-testi-hero__card:hover .sol-testi-hero__photo img {
  transform: scale(1.03);
}
/* Blue tint overlay */
.sol-testi-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,60,.2) 0%, rgba(59,118,246,.1) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.sol-testi-hero__content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sol-testi-hero__logo {
  height: 24px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
  margin-bottom: 24px;
}
.sol-testi-hero__quote-mark {
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.18;
  line-height: 0.5;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  user-select: none;
}
.sol-testi-hero__content blockquote {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 28px;
}
.sol-testi-hero__author {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.sol-testi-hero__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.sol-testi-hero__role {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .sol-testi-hero__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sol-testi-hero__photo { height: 240px; }
  .sol-testi-hero__content { padding: 32px 24px; }
}

/* ---------- HERO ENTRANCE ANIMATION ---------- */
@keyframes solFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes solMockupRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.sol-hero .eyebrow,
.sol-hero .eyebrow--dark { animation: solFadeUp 0.5s ease-out 0.1s both; }
.sol-hero h1 { animation: solFadeUp 0.6s ease-out 0.2s both; }
.sol-hero__subtitle { animation: solFadeUp 0.5s ease-out 0.3s both; }
.sol-hero__ctas { animation: solFadeUp 0.5s ease-out 0.4s both; }
.sol-hero__cta { animation: solFadeUp 0.5s ease-out 0.4s both; }
.sol-hero__reassurance { animation: solFadeUp 0.4s ease-out 0.45s both; }
.sol-hero__visual { animation: solFadeUp 0.7s ease-out 0.35s both; }
.sol-hero__bottom { animation: solMockupRise 0.8s ease-out 0.5s both; }
.sol-hero-split__logos { animation: solFadeUp 0.4s ease-out 0.5s both; }

@media (prefers-reduced-motion: reduce) {
  .sol-hero .eyebrow,
  .sol-hero .eyebrow--dark,
  .sol-hero h1,
  .sol-hero__subtitle,
  .sol-hero__ctas,
  .sol-hero__cta,
  .sol-hero__reassurance,
  .sol-hero__visual,
  .sol-hero__bottom,
  .sol-hero-split__visual,
  .sol-hero-split__logos {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .sol-hero__glow,
  .sol-hero__glow--2 { animation: none; }
  .sol-hero__marquee-track { animation: none; }
  .sol-features__item::after { transition: none; }
  .sol-mockup:hover,
  .sol-mockup--hero:hover { transform: none; }

  /* MEP-22 : animations de fond/curseurs/fragments */
  .sol-hero__overlay { animation: none; } /* heroGradientDrift */
  .sol-hero__cursor--1,
  .sol-hero__cursor--2,
  .sol-hero__cursor--3 { animation: none; } /* cursorDrift1/2/3 */
  .sol-hero__frag-float--left,
  .sol-hero__frag-float--right { animation: none; } /* sol-hero__frag-float */
}

/* ==========================================================================
   CONSEIL AVANCE — unique layout (editorial hero, verbatim cards,
   split sticky steps, 2x3 feature grid, navy testimonials, split CTA)
   Prefixed ca- to avoid collisions with sol- classes
   ========================================================================== */

/* ---------- CA HERO — editorial, bg-subtle, split with perspective frame ---------- */
.ca-hero {
  padding: 40px 0 100px;
  background: var(--bg-subtle, #F3F4F6);
  position: relative;
  overflow: hidden;
}
.ca-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.ca-hero__content {
  position: relative;
  z-index: 1;
}
.ca-hero__content .eyebrow { margin-bottom: 24px; }
.ca-hero__content h1 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: var(--font-weight-bold); /* MEP-26: 600→700 */
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  animation: solFadeUp 0.6s ease-out 0.15s both;
}
.ca-hero__subtitle {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
  animation: solFadeUp 0.5s ease-out 0.25s both;
}
.ca-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: solFadeUp 0.5s ease-out 0.35s both;
}
.ca-hero__reassurance {
  font-size: var(--font-size-xs, 12px);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 380px;
  animation: solFadeUp 0.4s ease-out 0.4s both;
}

/* Visual: perspective-rotated frame */
.ca-hero__visual {
  position: relative;
  z-index: 1;
  animation: solFadeUp 0.7s ease-out 0.3s both;
}
/* Cursors on editorial hero */
.ca-hero__visual .sol-hero__cursor { position: absolute; z-index: 10; }
.ca-hero__visual .sol-hero__cursor--1 { top: 12%; right: 8%; animation: cursorDrift1 8s ease-in-out infinite; }
.ca-hero__visual .sol-hero__cursor--2 { bottom: 35%; left: 3%; animation: cursorDrift2 10s ease-in-out infinite; }
/* Floating chips */
.ca-hero__chip {
  position: absolute; z-index: 10;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 8px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: var(--navy);
  white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.08);
  pointer-events: none;
}
.ca-hero__chip--1 { bottom: 12%; right: -20px; animation: chipDrift1 5s ease-in-out infinite; }
.ca-hero__chip--2 { top: 30%; left: -24px; animation: chipDrift2 6s ease-in-out infinite; }
@keyframes chipDrift1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes chipDrift2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
/* Logo marquee */
.ca-hero__logos {
  margin-top: 48px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.ca-hero__logos .sol-hero__marquee-track img { opacity: 0.3; filter: grayscale(1); }
@media (max-width: 768px) {
  .ca-hero__chip { display: none; }
  .ca-hero__visual .sol-hero__cursor { display: none; }
  .ca-hero__logos { margin-top: 32px; }
}
.ca-hero__frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 4px 12px rgba(0,0,0,.06),
    0 16px 48px rgba(0,0,0,.08),
    0 32px 80px rgba(0,0,0,.06);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.5s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1)),
              box-shadow 0.5s ease;
}
.ca-hero__frame:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg);
  box-shadow:
    0 4px 12px rgba(0,0,0,.08),
    0 20px 56px rgba(0,0,0,.1),
    0 40px 96px rgba(0,0,0,.08);
}
.ca-hero__frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .ca-hero { padding: 24px 0 64px; }
  .ca-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .ca-hero__frame {
    transform: perspective(1200px) rotateY(0) rotateX(0);
  }
  .ca-hero__frame:hover {
    transform: perspective(1200px) rotateY(0) rotateX(0);
  }
}
@media (max-width: 480px) {
  .ca-hero { padding: 16px 0 48px; }
  .ca-hero__content h1 { font-size: clamp(24px, 7vw, 34px); }
}

/* ---------- CA VALUE — big number centered + mini stats ---------- */
.ca-value {
  padding: 100px 0;
  background: var(--bg);
}
.ca-value__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ca-value__big {
  text-align: center;
}
.ca-value__number {
  font-size: clamp(64px, 10vw, 112px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum' 1;
  display: block;
  margin-bottom: 8px;
}
.ca-value__unit {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.ca-value__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 8px;
}
.ca-value__source {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}
.ca-value__stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.ca-value__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}
.ca-value__stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ca-value__stat-label {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  max-width: 220px;
}

@media (max-width: 768px) {
  .ca-value { padding: 64px 0; }
  .ca-value__stats {
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
  }
}

/* ---------- CA QUOTES — verbatim citation cards ---------- */
.ca-quotes {
  padding: 80px 0;
  background: #F1F3F5;
  border-radius: 20px;
  margin: 0 40px;
}
.ca-quotes__header {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.ca-quotes__header .eyebrow { margin-bottom: 16px; }
.ca-quotes__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ca-quotes__intro {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.ca-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Citation card */
.ca-quote-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ca-quote-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.ca-quote-card__mark {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: -4px;
  opacity: 0.5;
  font-family: Georgia, 'Times New Roman', serif;
}
.ca-quote-card p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}
.ca-quote-card__footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.ca-quote-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}
.ca-quote-card__role {
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
}
.ca-quote-card__label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-subtle, #F3F4F6);
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .ca-quotes__grid { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 768px) {
  .ca-quotes { margin: 0 16px; padding: 64px 24px; border-radius: 16px; }
}

/* ---------- CA STEPS — split sticky frame left, steps scroll right ---------- */
.ca-steps {
  padding: 100px 0;
  background: var(--bg);
}
.ca-steps__header {
  text-align: center;
  margin-bottom: 56px;
}
.ca-steps__header .eyebrow { margin-bottom: 16px; }
.ca-steps__header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto;
}
.ca-steps__split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left: sticky visual */
.ca-steps__visual {
  position: sticky;
  top: 120px;
}
.ca-steps__frame {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 0 0 24px;
  box-shadow:
    0 4px 12px rgba(0,0,0,.06),
    0 16px 48px rgba(0,0,0,.1);
}
.ca-steps__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 0 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 24px rgba(0,0,0,.2);
  transition: opacity 0.3s ease;
}

/* Right: scrolling steps */
.ca-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ca-step {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.ca-step:last-child { border-bottom: none; }
.ca-step.is-active { opacity: 1; }
.ca-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.ca-step h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ca-step p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 400px;
}

@media (max-width: 900px) {
  .ca-steps { padding: 64px 0; }
  .ca-steps__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ca-steps__visual {
    position: static;
    order: -1;
  }
  .ca-step { padding: 32px 0; opacity: 1; }
}

/* ---------- CA FEATURES — 2x3 grid of flat white cards ---------- */
.ca-features {
  padding: 100px 0;
  background: var(--bg-subtle, #F3F4F6);
}
.ca-features__header {
  text-align: center;
  margin-bottom: 48px;
}
.ca-features__header .eyebrow { margin-bottom: 16px; }
.ca-features__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 560px;
  margin: 0 auto;
}
.ca-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.ca-feat-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ca-feat-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.ca-feat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ca-feat-card__icon svg {
  width: 20px;
  height: 20px;
}
.ca-feat-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.ca-feat-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .ca-features { padding: 64px 0; }
  .ca-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ca-features__grid { grid-template-columns: 1fr; }
}

/* ---------- CA TESTI — navy background, small cards, carousel ---------- */
.ca-testi {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Subtle glow */
.ca-testi::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(59,118,246,.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 60%, rgba(59,118,246,.1) 0%, transparent 70%);
  pointer-events: none;
}
.ca-testi__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.ca-testi__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.6); /* MEP-20: .35→.6 */
  margin-bottom: 12px;
  display: block;
}
.ca-testi__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.ca-testi__sub {
  font-size: 15px;
  color: rgba(255,255,255,.7); /* MEP-20: .45→.7 */
  line-height: 1.5;
  margin-top: 12px;
}
.ca-testi__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ca-testi__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ca-testi__arrow:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

/* Track */
.ca-testi__track-wrap {
  overflow: hidden;
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  position: relative;
  z-index: 1;
}
.ca-testi__track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  will-change: transform;
}

/* Small cards — white, compact */
.ca-testi__card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ca-testi__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transform: translateY(-4px);
}
.ca-testi__logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1);
  align-self: flex-start;
}
.ca-testi__card blockquote {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.ca-testi__author {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .ca-testi { padding: 64px 0; }
  .ca-testi__card { width: 280px; }
  .ca-testi__track-wrap { padding-left: 16px; }
  .ca-testi__header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- CA CTA — split: photo left, text right, navy bg ---------- */
.ca-cta {
  padding: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow */
.ca-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 500px;
  height: 500px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(59,118,246,.1) 0%, transparent 65%);
  pointer-events: none;
}
.ca-cta__split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.ca-cta__photo {
  position: relative;
  z-index: 1;
}
.ca-cta__photo img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  display: block;
}
.ca-cta__content {
  padding: 80px 64px;
  position: relative;
  z-index: 1;
}
.ca-cta__content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.ca-cta__content p {
  font-size: 15px;
  color: rgba(255,255,255,.7); /* MEP-20: .45→.7 */
  line-height: 1.65;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .ca-cta__split {
    grid-template-columns: 1fr;
  }
  .ca-cta__photo { display: none; }
  .ca-cta__content {
    padding: 64px 24px;
    text-align: center;
  }
  .ca-cta__content .btn-demo-charles--light {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ca-hero__content h1,
  .ca-hero__subtitle,
  .ca-hero__ctas,
  .ca-hero__reassurance,
  .ca-hero__visual {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .ca-hero__frame,
  .ca-hero__frame:hover {
    transform: none;
  }
  .ca-steps__frame img {
    transition: none;
  }
}
