﻿@charset "UTF-8";

:root {
  --bg: #eef2f9;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.78);
  --text: #0f172a;
  --muted: #64748b;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --neon: #60a5fa;
  --ring: rgba(59, 130, 246, 0.22);
  --border: #e2e8f0;
  --radius: 18px;
  --radius-lg: 22px;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 48px rgba(37, 99, 235, 0.11);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --cost-ink: #1e3a8a;
  --cost-glass: rgba(255, 255, 255, 0.42);
  --cost-glass-border: rgba(255, 255, 255, 0.68);
  --cost-employee-bg: rgba(255, 251, 235, 0.85);
  --cost-employee-border: rgba(251, 191, 36, 0.55);
  --cost-employee-bar: #f59e0b;
  --cost-employee-ink: #b45309;
  --cost-blue-bg: rgba(239, 246, 255, 0.48);
  --cost-blue-border: rgba(147, 197, 253, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(59, 130, 246, 0.24);
  color: #0f172a;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #e9eff8 0%, #f5f8fc 38%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 10%, rgba(96, 165, 250, 0.07), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(56, 189, 248, 0.05), transparent 34%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.04), transparent 40%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, black 25%, transparent 82%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 50;
  background: rgba(226, 232, 240, 0.5);
}

.scroll-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #38bdf8);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.55);
  transition: width 0.08s linear;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.52;
  animation: orbFloat 14s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
}

.orb-2 {
  width: 360px;
  height: 360px;
  top: 38%;
  right: -100px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, transparent 70%);
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  bottom: 8%;
  left: 28%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
  animation-delay: -8s;
}

.bg-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.deco {
  position: absolute;
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.14));
}

.deco-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.deco-galaxy {
  top: 36%;
  right: 6%;
  width: min(280px, 34vw);
  opacity: 0.26;
  animation: decoSpin 90s linear infinite;
}

.deco-orbit {
  top: 2%;
  right: 0;
  width: min(300px, 36vw);
  opacity: 0.26;
  animation: decoDrift 20s ease-in-out infinite;
}

.deco-network {
  top: 6%;
  right: 3%;
  width: min(250px, 31vw);
  opacity: 0.28;
  animation: decoFloat 9s ease-in-out infinite;
}

.deco-rocket {
  top: 15%;
  right: 10%;
  width: min(60px, 8.5vw);
  opacity: 0.28;
  animation: rocketFloat 8s ease-in-out infinite;
}

.deco-satellite {
  top: 23%;
  right: 15%;
  width: min(96px, 12vw);
  opacity: 0.27;
  animation: decoFloat 8s ease-in-out infinite reverse;
}

.deco-stars {
  top: 4%;
  left: 2%;
  width: min(240px, 30vw);
  opacity: 0.26;
  animation: starsTwinkle 5.5s ease-in-out infinite;
}

.deco-clipboard {
  bottom: 20%;
  left: 4%;
  width: min(62px, 9vw);
  opacity: 0.23;
  animation: decoFloat 10s ease-in-out infinite;
}

.deco-docs {
  top: 46%;
  left: 3%;
  width: min(58px, 8vw);
  opacity: 0.22;
  animation: decoDrift 13s ease-in-out infinite;
}

.deco-calendar {
  bottom: 30%;
  right: 4%;
  width: min(56px, 8vw);
  opacity: 0.22;
  animation: decoFloat 11s ease-in-out infinite reverse;
}

.deco-ring {
  bottom: 10%;
  left: 1%;
  width: min(150px, 23vw);
  opacity: 0.22;
  animation: decoSpin 55s linear infinite;
}

.deco-hex {
  bottom: 22%;
  right: 3%;
  width: min(68px, 10vw);
  opacity: 0.23;
  animation: decoDrift 14s ease-in-out infinite reverse;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

#realite,
#services,
#avantages,
#temoignages,
#contact {
  scroll-margin-top: 5.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 32px rgba(37, 99, 235, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.92;
}

.logo-text {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #1d4ed8;
  text-rendering: optimizeLegibility;
}

.logo-image {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.menu a:not(.btn) {
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu a:not(.btn):hover,
.menu a:not(.btn).is-nav-active,
.menu a:not(.btn)[aria-current="page"],
.menu a:not(.btn)[aria-current="location"] {
  background: rgba(59, 130, 246, 0.09);
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.2s ease;
}

.menu a:hover::after,
.menu a.is-nav-active::after,
.menu a[aria-current="page"]::after,
.menu a[aria-current="location"]::after {
  width: 100%;
}

.menu a[aria-current="page"],
.menu a[aria-current="location"],
.menu a.is-nav-active {
  color: var(--primary-dark);
  font-weight: 700;
}

.menu-mobile-label {
  display: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.28);
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 34%;
  height: 300%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.36) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(20deg);
  transition: left 0.4s ease;
}

.btn:hover::after {
  left: 120%;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.88);
  color: #2563eb !important;
  border: 1.5px solid rgba(96, 165, 250, 0.55);
  -webkit-text-fill-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.btn-ghost:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff !important;
  border-color: transparent;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
}

.hero {
  padding: 4rem 0 2.5rem;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(56, 189, 248, 0.07), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(59, 130, 246, 0.06), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.85rem;
  font-weight: 700;
}

.eyebrow-pulse {
  animation: eyebrowPulse 3.2s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(59, 130, 246, 0);
}

.eyebrow-dark {
  background: rgba(30, 58, 138, 0.12);
  color: #1e3a8a;
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-line-1 {
  display: block;
}

.hero-rotate-line {
  display: block;
  line-height: 1.2;
}

.hero-rotate-word {
  display: inline;
  background: linear-gradient(120deg, #1d4ed8 0%, #3b82f6 40%, #60a5fa 70%, #2563eb 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}

.hero-rotate-word.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.text-gradient {
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lead {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.trust-list {
  list-style: none;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.82rem 0.38rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 234, 254, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
}

.trust-list li::before,
.trust-list li::after {
  content: none !important;
  display: none !important;
}

.trust-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.trust-list-icon svg {
  width: 9px;
  height: 9px;
  display: block;
}

.card {
  background: var(--surface-glass);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--shadow-inset);
  padding: 1.25rem;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  position: relative;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0) 72%,
    rgba(96, 165, 250, 0.12) 100%
  );
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.65);
  box-shadow: var(--shadow-lg), var(--shadow-inset);
}

.hero-card {
  align-self: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.86) 0%, rgba(244, 248, 255, 0.68) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-inset);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.28) 0%, rgba(96, 165, 250, 0) 70%);
  pointer-events: none;
  animation: floatGlow 5.5s ease-in-out infinite;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent);
  filter: blur(0.4px);
  opacity: 0.7;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
}

.stat-item {
  position: relative;
  border: 1px solid #dce7fb;
  border-radius: 14px;
  padding: 0.75rem 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 250, 255, 0.74) 100%);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.08);
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.stat-number {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
}

.stat-grid strong {
  display: block;
  font-size: 1.25rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-curve {
  display: block;
  width: 100%;
  height: 38px;
  margin-top: 0.45rem;
  overflow: visible;
}

.stat-curve--mobile {
  display: none;
}

.stat-curve--mobile .stat-chart-bg {
  fill: url(#stat-chart-bg-grad);
  stroke: #c7ddfd;
  stroke-width: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.stat-curve--mobile .stat-chart-grid line {
  stroke: #bfdbfe;
  stroke-width: 0.8;
  stroke-dasharray: 4 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.08s;
}

.stat-curve--mobile .stat-chart-bar {
  fill: url(#stat-bar-grad);
  opacity: 0;
  transform: scaleY(0);
  transform-box: fill-box;
  transform-origin: bottom center;
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-curve--mobile .stat-chart-bar:nth-child(1) {
  transition-delay: 0.12s;
}

.stat-curve--mobile .stat-chart-bar:nth-child(2) {
  transition-delay: 0.18s;
}

.stat-curve--mobile .stat-chart-bar:nth-child(3) {
  transition-delay: 0.24s;
}

.stat-curve--mobile .stat-chart-bar:nth-child(4) {
  transition-delay: 0.3s;
}

.stat-curve--mobile .stat-chart-bar:nth-child(5) {
  transition-delay: 0.36s;
}

.stat-curve--mobile .stat-chart-bar:nth-child(6) {
  transition-delay: 0.42s;
}

.stat-curve--mobile .stat-curve-area {
  fill: url(#stat-fill-grad-mobile);
}

.stat-curve--mobile .stat-curve-glow {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transition:
    opacity 0.4s ease 0.35s,
    stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.stat-curve--mobile .stat-curve-line {
  stroke-width: 2.6;
  filter: drop-shadow(0 1px 4px rgba(59, 130, 246, 0.45));
}

.stat-curve--mobile .stat-curve-point {
  fill: #ffffff;
  stroke: #2563eb;
  stroke-width: 1.4;
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-curve--mobile .stat-curve-point:nth-of-type(1) {
  transition-delay: 0.75s;
}

.stat-curve--mobile .stat-curve-point:nth-of-type(2) {
  transition-delay: 0.88s;
}

.stat-curve--mobile .stat-curve-point:nth-of-type(3) {
  transition-delay: 1s;
}

.stat-curve--mobile .stat-curve-dot-ring {
  fill: rgba(59, 130, 246, 0.14);
  stroke: #93c5fd;
  stroke-width: 1.2;
  opacity: 0;
  transform: scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 0.35s ease 1.05s,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 1.05s;
}

.hero-card.stats-ready .stat-curve--mobile .stat-chart-bg,
.hero-card.stats-ready .stat-curve--mobile .stat-chart-grid line {
  opacity: 1;
}

.hero-card.stats-ready .stat-curve--mobile .stat-chart-bar {
  opacity: 1;
  transform: scaleY(1);
}

.hero-card.stats-ready .stat-curve--mobile .stat-curve-glow {
  opacity: 0.35;
  stroke-dashoffset: 0;
}

.hero-card.stats-ready .stat-curve--mobile .stat-curve-point {
  opacity: 1;
  transform: scale(1);
}

.hero-card.stats-ready .stat-curve--mobile .stat-curve-dot-ring {
  opacity: 1;
  transform: scale(1);
}

.stat-curve-area {
  fill: url(#stat-fill-grad);
  opacity: 0;
  transform-origin: bottom center;
  transform: scaleY(0.6);
  transition: opacity 0.9s ease 0.25s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.stat-curve-line {
  fill: none;
  stroke: url(#stat-line-grad);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.35));
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transition: stroke-dashoffset 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-curve-dot {
  fill: #2563eb;
  stroke: #ffffff;
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.35s ease 1.05s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 1.05s;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.55));
}

.hero-card.stats-ready .stat-curve-area {
  opacity: 1;
  transform: scaleY(1);
}

.hero-card.stats-ready .stat-curve-line {
  stroke-dashoffset: 0;
}

.hero-card.stats-ready .stat-curve-dot {
  opacity: 1;
  transform: scale(1);
}

.hero-insights {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.insight-row {
  border: 1px solid #d9e6ff;
  border-radius: 12px;
  padding: 0.55rem 0.65rem 0.65rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.insight-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.insight-head span {
  color: #475569;
  font-size: 0.83rem;
}

.insight-head strong {
  color: #1e3a8a;
  font-size: 0.9rem;
}

.insight-bar {
  height: 8px;
  border-radius: 999px;
  background: #e6efff;
  overflow: hidden;
}

.insight-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 70%, #93c5fd 100%);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.35);
  transition: width 1.2s ease;
}

.hero-card.stats-ready .insight-bar i {
  width: var(--value);
}

.hero-card-footer {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-card-footer span {
  border: 1px solid #d7e4ff;
  background: #eef4ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-card h2 {
  font-size: 1.3rem;
}

.section {
  padding: 3.6rem 0;
  position: relative;
  isolation: isolate;
}

.section > .container > h2,
.pain-header h2 {
  text-align: center;
}

.section-intro {
  color: var(--muted);
  margin-top: -0.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.section > .container > h2::after,
.pain-header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #38bdf8);
  opacity: 0.85;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.35), transparent);
  pointer-events: none;
  animation: sectionGlow 4.8s ease-in-out infinite;
}

h2 {
  position: relative;
}

h2::after {
  content: none;
}

.pain-section {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.pain-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 248, 255, 0.72) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-inset);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.pain-shell::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: floatGlow 5.5s ease-in-out infinite;
}

.pain-shell::after {
  content: "";
  position: absolute;
  inset: auto 10% 0 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), transparent);
  pointer-events: none;
}

.pain-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.pain-header h2 {
  margin-bottom: 0.35rem;
}

.pain-subtitle {
  margin: 0 0 0.75rem;
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.pain-intro {
  margin-bottom: 0;
}

.pain-load-meter {
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
  padding: 0.95rem 1rem 0.85rem;
  border-radius: 16px;
  border: 1px solid #d9e6ff;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pain-load-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.pain-load-label {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

.pain-load-value {
  color: #1e3a8a;
  font-size: 1.05rem;
  font-weight: 800;
}

.pain-load-track {
  height: 10px;
  border-radius: 999px;
  background: #e6efff;
  overflow: hidden;
}

.pain-load-track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 70%, #93c5fd 100%);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
  transition: width 1.3s ease;
}

.pain-shell.is-ready .pain-load-track i {
  width: var(--value);
}

.pain-load-caption {
  margin: 0.55rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.45;
}

.pain-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pain-card {
  --pain-accent: #3b82f6;
  --pain-accent-soft: rgba(59, 130, 246, 0.12);
  --pain-accent-border: rgba(147, 197, 253, 0.55);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  padding: 1.15rem 1.1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 100% 0%, var(--pain-accent-soft) 0%, transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 249, 255, 0.84) 100%);
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pain-card:nth-child(1) {
  --pain-accent: #2563eb;
  --pain-accent-soft: rgba(37, 99, 235, 0.13);
  --pain-accent-border: rgba(147, 197, 253, 0.62);
}

.pain-card:nth-child(2) {
  --pain-accent: #1d4ed8;
  --pain-accent-soft: rgba(29, 78, 216, 0.12);
  --pain-accent-border: rgba(125, 211, 252, 0.55);
}

.pain-card:nth-child(3) {
  --pain-accent: #4338ca;
  --pain-accent-soft: rgba(67, 56, 202, 0.1);
  --pain-accent-border: rgba(165, 180, 252, 0.58);
}

.pain-card:nth-child(4) {
  --pain-accent: #0284c7;
  --pain-accent-soft: rgba(2, 132, 199, 0.11);
  --pain-accent-border: rgba(125, 211, 252, 0.58);
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pain-accent), #60a5fa 55%, #bae6fd);
  opacity: 0.92;
}

.pain-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pain-accent-soft) 0%, transparent 72%);
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--pain-accent-border);
  box-shadow:
    0 22px 38px rgba(37, 99, 235, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.pain-card:hover::after {
  transform: scale(1.15);
  opacity: 1.15;
}

.pain-card-visual {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  min-height: 48px;
}

.pain-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--pain-accent);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, var(--pain-accent-soft) 100%);
  border: 1px solid var(--pain-accent-border);
  box-shadow:
    0 8px 18px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover .pain-card-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 12px 22px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pain-card-icon svg {
  width: 23px;
  height: 23px;
}

.pain-card-num {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  font-size: clamp(2.35rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pain-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.pain-card-quote {
  margin: 0;
  padding: 0.4rem 0.68rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  color: #1e3a8a;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98) 0%, rgba(219, 234, 254, 0.72) 100%);
  border: 1px solid rgba(147, 197, 253, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pain-card-tag {
  display: inline-block;
  margin: 0;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pain-accent);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--pain-accent-border);
}

.pain-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #0f172a;
}

.pain-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 0.92rem;
}

.pain-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.pain-stat-light {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid #dce7fb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 255, 0.78) 100%);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

.pain-stat-light .pain-stat-number {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.pain-stat-title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.pain-stat-light .pain-stat-note {
  margin: 0;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.45;
}

.pain-bottom .transform-bridge {
  margin: 0;
  height: 100%;
  align-items: center;
}

.transform-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 246, 255, 0.58) 100%);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.transform-bridge-text {
  margin: 0;
  font-size: 1.08rem;
  color: #334155;
  max-width: 520px;
  line-height: 1.5;
}

.transform-bridge-text strong {
  color: #1d4ed8;
}

/* â”€â”€ Simulateur â€” section dÃ©diÃ©e â”€â”€ */
.sim-teaser {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.35rem;
  padding: 1rem 1.05rem 1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(147, 197, 253, 0.72);
  background:
    radial-gradient(circle at 0% 50%, rgba(96, 165, 250, 0.14) 0%, transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 246, 255, 0.78) 100%);
  box-shadow:
    0 16px 36px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sim-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.sim-teaser:hover::before,
.sim-teaser:focus-visible::before {
  transform: translateX(120%);
}

.sim-teaser:hover,
.sim-teaser:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.95);
  box-shadow:
    0 22px 44px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.sim-teaser-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 15px;
  background: linear-gradient(145deg, #2563eb 0%, #60a5fa 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.sim-teaser:hover .sim-teaser-icon,
.sim-teaser:focus-visible .sim-teaser-icon {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.38);
}

.sim-teaser-icon svg {
  width: 23px;
  height: 23px;
}

.sim-teaser-copy {
  display: grid;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.sim-teaser-copy strong {
  color: #0f172a;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.sim-teaser-copy span {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.45;
}

.sim-teaser-badge {
  flex-shrink: 0;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.sim-teaser-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 999px;
  color: #2563eb;
  background: rgba(239, 246, 255, 0.95);
  border: 1px solid rgba(147, 197, 253, 0.65);
  transition: transform 0.24s ease, background 0.24s ease;
}

.sim-teaser-arrow svg {
  width: 18px;
  height: 18px;
}

.sim-teaser:hover .sim-teaser-arrow,
.sim-teaser:focus-visible .sim-teaser-arrow {
  transform: translateX(3px);
  background: rgba(219, 234, 254, 0.95);
}

.sim-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5rem;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.sim-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sim-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: floatGlow 7s ease-in-out infinite;
}

.sim-orb--1 {
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.28) 0%, transparent 68%);
}

.sim-orb--2 {
  bottom: -100px;
  left: -70px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  animation-delay: -2s;
}

.sim-orb--3 {
  top: 40%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(147, 197, 253, 0.12) 0%, transparent 65%);
  animation-duration: 9s;
}

.sim-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.sim-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.35rem;
}

.sim-section-intro {
  margin-bottom: 0;
}

.sim-page {
  min-height: calc(100dvh - 70px);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.sim-page-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.sim-page-head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.sim-page-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sim-page-back:hover,
.sim-page-back:focus-visible {
  color: var(--primary-dark);
}

.sim-page-trust {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.sim-page-trust li {
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: rgba(255, 255, 255, 0.82);
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
}

/* â”€â”€ Simulateur premium â€” palette enrichie â”€â”€ */
.sim-page--pro {
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(129, 140, 248, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 15%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(251, 191, 36, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #e8eef9 0%, #eef2f9 40%, #ffffff 100%);
}

.sim-page--pro .sim-section-bg .sim-orb--1 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.26) 0%, transparent 68%);
}

.sim-page--pro .sim-section-bg .sim-orb--2 {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
}

.sim-page--pro .sim-section-bg .sim-orb--3 {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 65%);
}

.sim-container {
  max-width: 920px;
}

.sim-page-back {
  gap: 0.35rem;
}

.sim-page-back svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.sim-dashboard--pro {
  display: block;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #a5b4fc 0%, #7dd3fc 45%, #fcd34d 100%) border-box;
  box-shadow:
    0 36px 90px rgba(79, 70, 229, 0.12),
    0 12px 32px rgba(14, 165, 233, 0.08),
    0 4px 12px rgba(15, 23, 42, 0.04);
}

.sim-gain-block--hero {
  position: relative;
  text-align: center;
  padding: clamp(1.85rem, 4vw, 2.4rem) 1.5rem clamp(1.55rem, 3vw, 1.95rem);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(165, 180, 252, 0.35);
  background: linear-gradient(145deg, #eef2ff 0%, #eff6ff 35%, #f0f9ff 70%, #fff 100%);
  overflow: hidden;
}

.sim-gain-block--hero::before {
  content: "";
  position: absolute;
  inset: -50% -15% auto;
  height: 130%;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 0%, rgba(14, 165, 233, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.sim-gain-block--hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), rgba(14, 165, 233, 0.35), transparent);
  pointer-events: none;
}

.sim-gain-block--hero > * {
  position: relative;
  z-index: 1;
}

.sim-gain-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.sim-dashboard--pro .sim-gain-label {
  color: #6366f1;
  letter-spacing: 0.08em;
}

.sim-dashboard--pro .sim-gain-annual {
  margin: 0;
  color: #475569;
}

.sim-dashboard--pro .sim-gain-badge {
  margin-top: 0;
  padding: 0.35rem 0.85rem;
  border: none;
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 55%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
}

.sim-dashboard--pro .sim-gain-value {
  font-size: clamp(2.85rem, 8.5vw, 4.15rem);
  letter-spacing: -0.045em;
}

.sim-dashboard--pro .sim-gain-value.is-gain {
  background: linear-gradient(120deg, #4338ca 0%, #2563eb 40%, #0ea5e9 75%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 16px rgba(37, 99, 235, 0.2));
}

.sim-controls-row {
  padding: 1.4rem 1.5rem 0.85rem;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

.sim-controls-label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #818cf8;
}

.sim-dashboard--pro .sim-inputs {
  gap: 1rem;
}

.sim-dashboard--pro .sim-inputs .cost-field {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sim-dashboard--pro .sim-inputs .cost-field:focus-within {
  border-color: #818cf8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
  transform: translateY(-1px);
}

.sim-dashboard--pro .cost-field-head output {
  color: #4338ca;
  border-color: #c7d2fe;
  background: linear-gradient(165deg, #fff 0%, #eef2ff 100%);
  box-shadow: inset 0 1px 2px rgba(99, 102, 241, 0.06);
}

.sim-dashboard--pro .cost-range-fill {
  background: linear-gradient(90deg, #4f46e5 0%, #2563eb 40%, #0ea5e9 100%);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.25);
}

.sim-dashboard--pro .cost-range-knob {
  border-color: #4338ca;
  background: linear-gradient(145deg, #fff 0%, #eef2ff 100%);
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.28);
}

.sim-dashboard--pro .cost-min-alert {
  margin: 0 1.5rem 0.5rem;
}

.sim-compare-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
  align-items: stretch;
  padding: 0.35rem 1.5rem 1.45rem;
}

.sim-vs-badge {
  align-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #2563eb 100%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
  flex-shrink: 0;
}

.sim-dashboard--pro .sim-vs-card {
  position: relative;
  padding: 1.2rem 1.15rem 1.05rem;
  border-radius: 20px;
  border: 1px solid;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sim-dashboard--pro .sim-vs-card:hover {
  transform: translateY(-2px);
}

.sim-dashboard--pro .sim-vs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.sim-dashboard--pro .sim-vs-card--employee {
  background: linear-gradient(165deg, #fff7ed 0%, #ffedd5 45%, #fff 100%);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.1);
}

.sim-dashboard--pro .sim-vs-card--employee:hover {
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.14);
}

.sim-dashboard--pro .sim-vs-card--employee::before {
  background: linear-gradient(90deg, #ea580c, #f97316, #fbbf24);
}

.sim-dashboard--pro .sim-vs-card--ac {
  background: linear-gradient(165deg, #eef2ff 0%, #e0f2fe 45%, #fff 100%);
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
}

.sim-dashboard--pro .sim-vs-card--ac:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.14);
}

.sim-dashboard--pro .sim-vs-card--ac::before {
  background: linear-gradient(90deg, #4338ca, #2563eb, #38bdf8);
}

.sim-vs-card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.6rem;
  border-radius: 12px;
}

.sim-vs-card-icon svg {
  width: 20px;
  height: 20px;
}

.sim-vs-card-icon--employee {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(251, 191, 36, 0.12) 100%);
  color: #c2410c;
}

.sim-vs-card-icon--ac {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14) 0%, rgba(14, 165, 233, 0.12) 100%);
  color: #4338ca;
}

.sim-dashboard--pro .sim-vs-card--employee .sim-vs-tag {
  color: #c2410c;
}

.sim-dashboard--pro .sim-vs-card--employee .sim-vs-price {
  color: #9a3412;
}

.sim-dashboard--pro .sim-vs-card--ac .sim-vs-tag {
  color: #4338ca;
}

.sim-dashboard--pro .sim-vs-card--ac .sim-vs-price {
  color: #1e40af;
}

.sim-dashboard--pro .sim-vs-price {
  display: block;
  margin: 0.2rem 0 0;
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
}

.sim-dashboard--pro .sim-proj-strip {
  display: block;
  margin: 0 1.5rem 1.35rem;
  padding: 1.15rem 1.05rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #eff6ff 100%);
  border: 1px solid rgba(134, 239, 172, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sim-proj-title {
  margin: 0 0 0.9rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
}

.sim-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  position: relative;
}

.sim-proj-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #a7f3d0, #6ee7b7, #93c5fd, #6ee7b7, #a7f3d0);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.sim-dashboard--pro .sim-proj-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.8rem 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(167, 243, 208, 0.6);
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.06);
}

.sim-dashboard--pro .sim-proj-item--mid {
  border-color: #6ee7b7;
  background: linear-gradient(165deg, #fff 0%, #ecfdf5 100%);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.12);
}

.sim-dashboard--pro .sim-proj-item span {
  color: #64748b;
}

.sim-dashboard--pro .sim-proj-item strong {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: #047857;
}

.sim-dashboard--pro .sim-proj-item--mid strong {
  background: linear-gradient(120deg, #059669, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sim-more {
  padding: 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.sim-dashboard--pro .sim-details {
  border-radius: 16px;
  border-color: #e2e8f0;
  background: #fafbfc;
}

.sim-dashboard--pro .sim-details summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.86rem;
  border-radius: 16px;
}

.sim-dashboard--pro .sim-details[open] summary {
  border-radius: 16px 16px 0 0;
  color: #4338ca;
}

.sim-dashboard--pro .sim-stage-foot {
  margin-top: 1.15rem;
  padding: 1.4rem 1.5rem 1.75rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-radius: 0;
}

.sim-dashboard--pro .cost-sim-cta {
  width: 100%;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  font-size: 0.95rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #4338ca 0%, #2563eb 50%, #0ea5e9 100%);
  border: none;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sim-dashboard--pro .cost-sim-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.38);
}

.sim-page--pro .sim-page-head {
  margin-bottom: 1.75rem;
}

.sim-page--pro .sim-page-trust li {
  background: rgba(255, 255, 255, 0.94);
  border-color: #c7d2fe;
  color: #475569;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.06);
}

.sim-page--pro .cost-compare-bar {
  background: rgba(226, 232, 240, 0.75);
  border-radius: 999px;
}

.sim-page--pro .cost-compare-bar--employee i {
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fbbf24 100%);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

.sim-page--pro .cost-compare-bar--ac i {
  background: linear-gradient(90deg, #4338ca 0%, #2563eb 45%, #38bdf8 100%);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.35);
}

/* â”€â”€ Simulateur dÃ©lÃ©gation â€” glass & effets â”€â”€ */
.sim-page--pro:has(.sim-dashboard--delegate) {
  background:
    radial-gradient(ellipse 75% 55% at 18% -8%, rgba(129, 140, 248, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 60% 48% at 92% 5%, rgba(56, 189, 248, 0.15) 0%, transparent 52%),
    radial-gradient(ellipse 80% 45% at 50% 108%, rgba(147, 197, 253, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #e9eff8 0%, #f2f6fb 50%, #ffffff 100%);
}

.sim-page--pro:has(.sim-dashboard--delegate) .sim-section-bg .sim-orb--3 {
  background: radial-gradient(circle, rgba(147, 197, 253, 0.14) 0%, transparent 65%);
}

.sim-page--pro:has(.sim-dashboard--delegate) .sim-page-trust li {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.sim-dashboard--pro.sim-dashboard--delegate {
  position: relative;
  max-width: 620px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(
      168deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.52) 100%
    )
    padding-box,
    linear-gradient(
      135deg,
      rgba(165, 180, 252, 0.95) 0%,
      rgba(147, 197, 253, 0.85) 50%,
      rgba(191, 219, 254, 0.75) 100%
    )
    border-box;
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  box-shadow:
    0 40px 90px rgba(79, 70, 229, 0.14),
    0 12px 40px rgba(14, 165, 233, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.sim-delegate-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  z-index: 0;
}

.sim-delegate-glow--1 {
  top: -20%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: rgba(99, 102, 241, 0.22);
  animation: simDelegateFloat 9s ease-in-out infinite;
}

.sim-delegate-glow--2 {
  bottom: 10%;
  left: -12%;
  width: 180px;
  height: 180px;
  background: rgba(56, 189, 248, 0.16);
  animation: simDelegateFloat 11s ease-in-out infinite reverse;
}

.sim-dashboard--delegate > *:not(.sim-delegate-glow) {
  position: relative;
  z-index: 1;
}

.sim-delegate-controls {
  padding: 1.55rem 1.5rem 1.3rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sim-delegate-question {
  display: block;
  margin: 0 0 0.45rem;
  color: #0f172a;
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.sim-delegate-hint {
  margin: 0 0 1rem;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.sim-delegate-hint strong {
  color: #4338ca;
  font-weight: 700;
}

.sim-delegate-range-wrap {
  position: relative;
}

.sim-delegate-range-band {
  position: absolute;
  top: 50%;
  left: 11.76%;
  width: 21.57%;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.35);
  pointer-events: none;
  z-index: 0;
}

.sim-delegate-range-labels {
  position: relative;
}

.sim-delegate-range-typical {
  position: absolute;
  left: 22.5%;
  transform: translateX(-50%);
  color: #6366f1;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.sim-delegate-field {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 4px 24px rgba(99, 102, 241, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sim-delegate-field:focus-within {
  border-color: rgba(129, 140, 248, 0.75);
  box-shadow:
    0 0 0 3px rgba(99, 102, 241, 0.12),
    0 8px 28px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sim-delegate-field-label {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.sim-dashboard--delegate .cost-field-head output {
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  color: #4338ca;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(199, 210, 254, 0.6);
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.12);
}

.sim-dashboard--delegate .cost-range-fill {
  background: linear-gradient(90deg, #6366f1 0%, #2563eb 50%, #38bdf8 100%);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.sim-dashboard--delegate .cost-range-knob {
  border-color: #6366f1;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #eef2ff 100%);
  box-shadow:
    0 0 0 2px rgba(99, 102, 241, 0.2),
    0 4px 12px rgba(37, 99, 235, 0.28);
}

.sim-dashboard--delegate .sim-delegate-ht {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    145deg,
    rgba(238, 242, 255, 0.75) 0%,
    rgba(239, 246, 255, 0.55) 40%,
    rgba(255, 255, 255, 0.35) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sim-dashboard--delegate .sim-delegate-ht .sim-gain-label {
  color: #6366f1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sim-dashboard--delegate .sim-delegate-ht-value {
  background: linear-gradient(120deg, #312e81 0%, #4338ca 25%, #2563eb 55%, #0ea5e9 85%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(37, 99, 235, 0.22));
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-dashboard--delegate .sim-delegate-ht-value.is-pulse {
  transform: scale(1.04);
}

.sim-delegate-ht-detail {
  margin: 0.55rem 0 0;
  padding: 0.32rem 0.85rem;
  display: inline-block;
  border-radius: 999px;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sim-delegate-benefit {
  margin: 0 1.35rem 1.35rem;
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(239, 246, 255, 0.78) 0%,
    rgba(238, 242, 255, 0.62) 50%,
    rgba(255, 255, 255, 0.48) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 8px 32px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sim-delegate-benefit-kicker {
  margin: 0;
  color: #6366f1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sim-delegate-save {
  display: block;
  margin: 0.4rem 0 0;
  font-size: clamp(1.55rem, 4.5vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #0f172a;
}

.sim-delegate-save.is-gain {
  background: linear-gradient(120deg, #047857 0%, #059669 40%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sim-delegate-save-note {
  margin: 0.4rem 0 0;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.sim-delegate-bars {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.05rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.sim-delegate-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.sim-delegate-bar-head span {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
}

.sim-delegate-bar-head strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.sim-delegate-bar:first-child .sim-delegate-bar-head strong {
  color: #c2410c;
}

.sim-delegate-bar:last-child .sim-delegate-bar-head strong {
  color: #4338ca;
}

.sim-delegate-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.06);
}

.sim-delegate-bar-track i {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sim-delegate-bar-track i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
}

.sim-delegate-bar-track--employee i {
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fbbf24 100%);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.35);
}

.sim-delegate-bar-track--ac i {
  background: linear-gradient(90deg, #4338ca 0%, #2563eb 50%, #38bdf8 100%);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.sim-delegate-ref {
  margin: 0.8rem 0 0;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.sim-delegate-details {
  margin-top: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.sim-delegate-details summary {
  cursor: pointer;
  list-style: none;
  padding: 0.65rem 0.75rem;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.sim-delegate-details summary::-webkit-details-marker {
  display: none;
}

.sim-delegate-details summary::before {
  content: "+";
  display: inline-block;
  width: 1.1rem;
  margin-right: 0.15rem;
  color: #6366f1;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  vertical-align: -1px;
}

.sim-delegate-details[open] summary::before {
  content: "-";
}

.sim-delegate-details[open] summary {
  color: #4338ca;
  background: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(219, 234, 254, 0.7);
}

.sim-delegate-details-note {
  margin: 0;
  padding: 0.65rem 0.75rem 0.35rem;
  color: #94a3b8;
  font-size: 0.74rem;
  line-height: 1.45;
}

.sim-delegate-details .cost-breakdown-list {
  padding: 0.25rem 0.75rem 0.75rem;
  gap: 0.38rem;
}

.sim-delegate-details .cost-breakdown-list li {
  font-size: 0.78rem;
}

.sim-delegate-details .cost-breakdown-list li strong {
  font-size: 0.8rem;
}

.sim-delegate-details .cost-breakdown-total {
  border-top-color: rgba(219, 234, 254, 0.85);
}

.sim-delegate-details .cost-breakdown-total span,
.sim-delegate-details .cost-breakdown-total strong {
  color: #b45309;
}

.sim-delegate-alert {
  margin: 0 1.35rem 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 251, 235, 0.75);
  border: 1px solid rgba(251, 191, 36, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #92400e;
}

.sim-dashboard--delegate .sim-stage-foot {
  margin-top: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(248, 250, 252, 0.72) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(219, 234, 254, 0.65);
}

.sim-dashboard--delegate .cost-verdict-line:not(:empty) {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sim-dashboard--delegate .cost-sim-cta {
  box-shadow:
    0 14px 40px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes simDelegateFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8px, -12px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sim-delegate-glow {
    animation: none;
  }
}

/* â”€â”€ Simulateur Ã©purÃ© â”€â”€ */
.sim-page--calc {
  background: linear-gradient(180deg, #eef2f9 0%, #f8fafc 50%, #fff 100%);
}

.sim-page--calc .sim-section-bg .sim-orb--1 {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 68%);
}

.sim-page--calc .sim-section-bg .sim-orb--2 {
  background: radial-gradient(circle, rgba(147, 197, 253, 0.12) 0%, transparent 70%);
}

.sim-page--calc .sim-section-bg .sim-orb--3 {
  display: none;
}

.sim-calc {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.07);
  overflow: hidden;
}

.sim-calc-body {
  padding: clamp(1.5rem, 3.5vw, 2rem);
  display: grid;
  gap: 1.75rem;
}

.sim-calc-label {
  display: block;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.sim-calc-slider {
  display: grid;
  gap: 0.65rem;
}

.sim-calc-hours {
  justify-self: start;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 700;
}

.sim-calc .cost-range-wrap {
  margin-top: 0.25rem;
}

.sim-calc .cost-range-fill {
  background: #2563eb;
}

.sim-calc .cost-range-knob {
  border-color: #2563eb;
  border-radius: 50%;
}

.sim-calc .cost-range-labels {
  color: #94a3b8;
  font-size: 0.8rem;
}

.sim-calc-outcome {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid #f1f5f9;
}

.sim-calc-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
}

.sim-calc-amount {
  display: block;
  color: #1e3a8a;
  font-size: clamp(2.25rem, 8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  transition: transform 0.25s ease;
}

.sim-calc-amount.is-pulse {
  transform: scale(1.02);
}

.sim-calc-detail {
  display: block;
  margin-top: 0.35rem;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
}

.sim-calc-benefit {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.sim-calc-save {
  display: block;
  color: #0f172a;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.sim-calc-save.is-gain {
  color: #047857;
}

.sim-calc-save-note {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}

.sim-calc-bars {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sim-calc-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.sim-calc-bar-head span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.sim-calc-bar-head strong {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
}

.sim-calc-bar:first-child .sim-calc-bar-head strong {
  color: #b45309;
}

.sim-calc-bar:last-child .sim-calc-bar-head strong {
  color: #1d4ed8;
}

.sim-calc-bar-track {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.sim-calc-bar-track i {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-calc-bar-track--employee i {
  background: #f59e0b;
}

.sim-calc-bar-track--ac i {
  background: #2563eb;
}

.sim-calc-ref {
  margin: 0.85rem 0 0;
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.sim-calc-alert {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.84rem;
  line-height: 1.45;
}

.sim-calc-foot {
  padding: 1.25rem clamp(1.5rem, 3.5vw, 2rem) 1.5rem;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
  display: grid;
  gap: 0.75rem;
}

.sim-calc-foot .cost-verdict-line {
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.5;
}

.sim-calc-foot .cost-disclaimer {
  margin: 0;
  color: #94a3b8;
  font-size: 0.76rem;
  line-height: 1.5;
}

.sim-calc-foot .cost-sim-cta {
  width: 100%;
  margin-top: 0.25rem;
}

.sim-page--calc .sim-page-head {
  margin-bottom: 1.5rem;
}

.sim-page--calc .sim-section-intro {
  color: #64748b;
}

.sim-stage {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sim-stage::before,
.sim-stage::after {
  display: none;
}

.sim-dashboard {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 2.8vw, 1.65rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: #ffffff;
  box-shadow:
    0 24px 64px rgba(37, 99, 235, 0.1),
    0 4px 16px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.sim-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sim-inputs .cost-field {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sim-inputs .cost-field:focus-within {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.sim-gain-block {
  text-align: center;
  padding: 1.35rem 1rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #eff6ff 0%, #f8fbff 48%, #ffffff 100%);
  border: 1px solid #dbeafe;
}

.sim-gain-label {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sim-gain-value {
  display: block;
  margin: 0.2rem 0 0;
  font-size: clamp(2.4rem, 6.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1e3a8a;
  transition: transform 0.25s ease, color 0.25s ease;
}

.sim-gain-value.is-gain {
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sim-gain-value.is-pulse {
  transform: scale(1.03);
}

.sim-gain-annual {
  margin: 0.45rem 0 0;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}

.sim-gain-badge {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
}

.sim-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sim-vs-card {
  padding: 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sim-vs-card--employee {
  background: linear-gradient(165deg, #fffbeb 0%, #fff7ed 100%);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: inset 4px 0 0 #f59e0b;
}

.sim-vs-card--ac {
  background: linear-gradient(165deg, #eff6ff 0%, #f0f9ff 100%);
  border-color: rgba(147, 197, 253, 0.65);
  box-shadow: inset 4px 0 0 #3b82f6;
}

.sim-vs-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.sim-vs-tag {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sim-vs-card--employee .sim-vs-tag {
  color: #b45309;
}

.sim-vs-card--ac .sim-vs-tag {
  color: #1d4ed8;
}

.sim-vs-price {
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.sim-vs-card--employee .sim-vs-price {
  color: #92400e;
}

.sim-vs-card--ac .sim-vs-price {
  color: #1e40af;
}

.sim-vs-desc {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 500;
}

.sim-vs-bar {
  height: 10px;
  margin-top: 0.15rem;
}

.sim-proj-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.sim-proj-item {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.sim-proj-item--mid {
  border-color: #bfdbfe;
  background: linear-gradient(165deg, #fff 0%, #eff6ff 100%);
}

.sim-proj-item span {
  display: block;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-proj-item strong {
  display: block;
  margin-top: 0.2rem;
  color: #1e3a8a;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: -0.02em;
}

.sim-proj-item--mid strong {
  background: linear-gradient(120deg, #1e40af, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sim-details {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fafbfc;
  overflow: hidden;
}

.sim-details summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  background: #fff;
  transition: color 0.2s ease, background 0.2s ease;
}

.sim-details summary::-webkit-details-marker {
  display: none;
}

.sim-details summary::after {
  content: "+";
  float: right;
  color: #94a3b8;
  font-weight: 800;
}

.sim-details[open] summary::after {
  content: "-";
}

.sim-details[open] summary {
  border-bottom: 1px solid #e2e8f0;
  color: #1d4ed8;
}

.sim-details .cost-breakdown-list,
.sim-details .cost-quality-grid {
  padding: 0.85rem 1rem 1rem;
}

.sim-stage-foot {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.25rem;
  border-top: none;
  margin-top: 0;
}

.cost-simulator {
  position: relative;
  z-index: 1;
  overflow: visible;
  margin-bottom: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cost-simulator::before,
.cost-simulator::after {
  display: none;
}

.cost-sim-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.cost-sim-glow--1 {
  top: -70px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.34) 0%, transparent 68%);
  animation: floatGlow 6s ease-in-out infinite;
}

.cost-sim-glow--2 {
  bottom: -80px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.14) 0%, transparent 70%);
  animation: floatGlow 7.5s ease-in-out infinite reverse;
}

.cost-sim-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.cost-sim-header h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.6vw, 1.52rem);
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.cost-sim-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.88rem;
}

.cost-sim-intro--short {
  display: none;
}

.cost-sim-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.cost-sim-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.8rem;
  border-radius: 16px;
  border: 1px solid var(--cost-glass-border);
  background: var(--cost-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.cost-field {
  padding: 0.62rem 0.68rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cost-field:focus-within {
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 3px var(--ring),
    var(--shadow-inset);
}

.cost-sim-foot {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.55rem;
  align-items: start;
}

.cost-field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.cost-field-head label {
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
}

.cost-field-head output {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--cost-blue-border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-inset);
}

.cost-range-wrap {
  position: relative;
  height: 28px;
  margin-top: 0.55rem;
  --range-progress: 50%;
}

.cost-range-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.9);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
  pointer-events: none;
}

.cost-range-fill {
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--range-progress);
  height: 5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 55%, #60a5fa 100%);
  pointer-events: none;
  z-index: 1;
  transition: width 0.12s ease;
}

.cost-range-knob {
  position: absolute;
  top: 50%;
  left: var(--range-progress);
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border: 2px solid #2563eb;
  box-shadow:
    0 1px 5px rgba(37, 99, 235, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 2;
  transition:
    left 0.12s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.cost-range-wrap:has(.cost-range:hover) .cost-range-knob,
.cost-range-wrap:has(.cost-range:focus-visible) .cost-range-knob {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow:
    0 2px 10px rgba(37, 99, 235, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cost-range-wrap:has(.cost-range:active) .cost-range-knob {
  transform: translate(-50%, -50%) scale(0.96);
}

.cost-range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  z-index: 3;
}

.cost-range:focus-visible {
  outline: none;
}

.cost-range:focus-visible ~ .cost-range-knob {
  box-shadow:
    0 0 0 3px rgba(59, 130, 246, 0.2),
    0 2px 10px rgba(37, 99, 235, 0.34);
}

.cost-range::-webkit-slider-runnable-track {
  height: 28px;
  background: transparent;
}

.cost-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: grab;
}

.cost-range::-webkit-slider-thumb:active {
  cursor: grabbing;
}

.cost-range::-moz-range-track {
  height: 28px;
  border: none;
  background: transparent;
}

.cost-range::-moz-range-progress {
  background: transparent;
}

.cost-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: grab;
}

.cost-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cost-field-note {
  margin: 0;
  padding-top: 0.15rem;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.45;
  border-top: 1px dashed #dbeafe;
}

.cost-field-note strong {
  color: #1e40af;
}

.cost-sim-result {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.8rem;
  border-radius: 16px;
  border: 1px solid var(--cost-glass-border);
  background: var(--cost-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.cost-result-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0.75rem 0.65rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(239, 246, 255, 0.38) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 28px rgba(37, 99, 235, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cost-result-hero:has(.is-gain) {
  border-color: rgba(96, 165, 250, 0.85);
  box-shadow:
    var(--shadow-inset),
    0 12px 32px rgba(37, 99, 235, 0.14);
}

.cost-result-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(96, 165, 250, 0.24) 0%, transparent 55%);
  pointer-events: none;
}

.cost-result-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: simHeroShine 5s ease-in-out infinite;
  pointer-events: none;
}

.cost-result-label {
  position: relative;
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.cost-result-value {
  position: relative;
  display: block;
  color: var(--cost-ink);
  font-size: clamp(1.85rem, 4.8vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
  text-shadow: 0 2px 18px rgba(37, 99, 235, 0.12);
}

.cost-result-value.is-pulse {
  transform: scale(1.04);
}

.cost-result-value.is-gain {
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 14px rgba(37, 99, 235, 0.22));
}

.cost-result-annual {
  position: relative;
  margin: 0.35rem 0 0;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 600;
}

.cost-compare-glass {
  padding: 0.62rem;
  border-radius: 14px;
  border: 1px solid var(--cost-glass-border);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px) saturate(1.06);
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.cost-compare-row {
  padding: 0.52rem 0.48rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cost-compare-row--employee {
  background: linear-gradient(
    160deg,
    var(--cost-employee-bg) 0%,
    rgba(255, 255, 255, 0.28) 100%
  );
  border-color: var(--cost-employee-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cost-compare-row--ac {
  background: linear-gradient(
    160deg,
    var(--cost-blue-bg) 0%,
    rgba(255, 255, 255, 0.28) 100%
  );
  border-color: var(--cost-blue-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cost-compare {
  display: grid;
  gap: 0.45rem;
}

.cost-compare-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.cost-compare-head span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.cost-compare-head strong {
  color: #1e3a8a;
  font-size: 0.92rem;
  white-space: nowrap;
}

.cost-compare-row--you .cost-compare-head strong {
  color: #334155;
}

.cost-compare-row--employee .cost-compare-head strong {
  color: var(--cost-employee-ink);
}

.cost-compare-row--ac .cost-compare-head strong {
  color: var(--primary-dark);
}

.cost-compare-bar {
  height: 11px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.45);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.08);
}

.cost-compare-bar i {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: 999px;
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cost-compare-bar i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, transparent 55%);
}

.cost-compare-bar--employee i {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 52%, #fbbf24 100%);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

.cost-compare-bar--ac i {
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 45%, #60a5fa 100%);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.35);
}

.cost-breakdown {
  border-radius: 12px;
  border: 1px solid var(--cost-glass-border);
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cost-breakdown[open] {
  border-color: rgba(191, 219, 254, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 24px rgba(37, 99, 235, 0.08);
}

.cost-breakdown summary {
  cursor: pointer;
  list-style: none;
  padding: 0.72rem 0.85rem;
  color: #1e40af;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
}

.cost-breakdown summary::-webkit-details-marker {
  display: none;
}

.cost-breakdown summary::after {
  content: "+";
  float: right;
  color: #64748b;
  font-weight: 800;
}

.cost-breakdown[open] summary::after {
  content: "-";
}

.cost-breakdown-list {
  list-style: none;
  margin: 0;
  padding: 0 0.85rem 0.65rem;
  display: grid;
  gap: 0.42rem;
}

.cost-breakdown-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.82rem;
}

.cost-breakdown-list li strong {
  color: #334155;
  font-size: 0.86rem;
  white-space: nowrap;
}

.cost-breakdown-total {
  margin-top: 0.15rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #dbeafe;
}

.cost-breakdown-total span,
.cost-breakdown-total strong {
  color: var(--primary-dark);
  font-weight: 800;
}

.cost-breakdown-note {
  margin: 0;
  padding: 0 0.85rem 0.75rem;
  color: #94a3b8;
  font-size: 0.76rem;
  line-height: 1.45;
}

.cost-breakdown-note strong {
  color: #64748b;
}

.cost-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.cost-quality-col {
  padding: 0.58rem 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--cost-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.cost-quality-col--employee {
  background: linear-gradient(165deg, var(--cost-employee-bg) 0%, rgba(255, 255, 255, 0.32) 100%);
  border-color: var(--cost-employee-border);
}

.cost-quality-col--ac {
  background: linear-gradient(165deg, var(--cost-blue-bg) 0%, rgba(255, 255, 255, 0.32) 100%);
  border-color: var(--cost-blue-border);
}

@media (hover: hover) and (pointer: fine) {
  .cost-quality-col {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cost-quality-col:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
  }
}

.cost-quality-col h5 {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cost-quality-col--employee h5 {
  color: var(--cost-employee-ink);
}

.cost-quality-col--ac h5 {
  color: var(--primary-dark);
}

.cost-quality-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}

.cost-quality-col li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.74rem;
  line-height: 1.35;
  color: #64748b;
}

.cost-quality-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.cost-quality-col li.is-bad::before {
  background: rgba(255, 251, 235, 0.95);
  box-shadow: inset 0 0 0 2px #f59e0b;
}

.cost-quality-col li.is-good::before {
  background: #dbeafe;
  box-shadow: inset 0 0 0 2px var(--primary);
}

.cost-quality-col li.is-good {
  color: #334155;
}

.cost-hourly-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  justify-content: center;
  padding: 0.62rem 0.75rem;
  border-radius: 12px;
  border: 1px dashed #bfdbfe;
  background: rgba(248, 251, 255, 0.85);
}

.cost-hourly-strip span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}

.cost-hourly-strip strong {
  color: #1e3a8a;
  font-size: 0.82rem;
}

.cost-hourly-strip span:nth-child(2) strong {
  color: var(--cost-employee-ink);
}

.cost-hourly-strip span:nth-child(3) strong {
  color: #2563eb;
}

.cost-savings-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #bbf7d0;
  background: linear-gradient(90deg, rgba(240, 253, 244, 0.95) 0%, rgba(236, 253, 245, 0.75) 100%);
}

.cost-savings-pill span {
  color: #166534;
  font-size: 0.84rem;
  font-weight: 600;
}

.cost-savings-pill strong {
  color: #15803d;
  font-size: 1.05rem;
  white-space: nowrap;
}

.cost-savings-pill.is-muted {
  border-color: #dbeafe;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
}

.cost-savings-pill.is-muted span,
.cost-savings-pill.is-muted strong {
  color: #475569;
}

.cost-min-alert {
  margin: 0;
  padding: 0.55rem 0.68rem;
  border-radius: 11px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.88) 0%, rgba(255, 255, 255, 0.42) 100%);
  color: #92400e;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cost-breakdown-min span,
.cost-breakdown-min strong {
  color: #b45309;
}

.cost-verdict-line {
  margin: 0;
  padding: 0.58rem 0.68rem;
  border-radius: 11px;
  border: 1px solid var(--cost-blue-border);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.52) 0%, rgba(255, 255, 255, 0.32) 100%);
  color: #334155;
  font-size: 0.81rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.cost-disclaimer {
  margin: 0;
  color: #94a3b8;
  font-size: 0.72rem;
  line-height: 1.4;
}

.cost-sim-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

#services {
  background: radial-gradient(
    ellipse 62% 70% at 50% 18%,
    rgba(238, 244, 255, 0.38) 0%,
    rgba(248, 251, 255, 0.12) 42%,
    transparent 72%
  );
}

#avantages {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.22) 0%,
    rgba(248, 250, 252, 0.06) 45%,
    transparent 68%
  );
}

#services .section-intro {
  max-width: 700px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 248, 255, 0.62) 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #38bdf8);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #bcd2ff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.16);
}

.service-card:hover::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  pointer-events: none;
}

.service-card h3 {
  margin: 0.2rem 0 0.8rem;
  color: #0f172a;
}

.service-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #64748b;
}

.service-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-list li::marker {
  color: #3b82f6;
}

.alt {
  background: #f8fafc;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(245, 248, 255, 0.56) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.benefit-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.benefit-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  color: #1d4ed8;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(180deg, rgba(191, 219, 254, 0.95) 0%, rgba(219, 234, 254, 0.8) 100%);
  border: 1px solid rgba(147, 197, 253, 0.7);
}

.legal-section .section-intro {
  max-width: 820px;
}

.legal-card h3 {
  margin: 1.1rem 0 0.45rem;
  font-size: 1.08rem;
}

.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card h4 {
  margin: 0.9rem 0 0.35rem;
  font-size: 0.98rem;
  color: #334155;
}

.legal-card p {
  margin: 0 0 0.55rem;
  color: #475569;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.quote {
  margin: 0;
  font-style: italic;
  color: #334155;
}

#temoignages .testimonial.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.83) 0%, rgba(243, 247, 255, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.quote cite strong {
  display: block;
}

.quote cite span {
  display: block;
}

.testimonial-slider {
  overflow: hidden;
  overscroll-behavior: none;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  overflow-x: hidden;
  overscroll-behavior: none;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.9rem;
  height: auto;
  align-self: flex-start;
  flex: 0 0 calc((100% - 2rem) / 3);
  text-align: left;
}

.testimonial.active {
  display: flex;
}

.testimonial-avatar {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #dbeafe;
}

.testimonial-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.testimonial-cta-lead {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

.testimonial-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 17rem;
  max-width: 22rem;
  padding: 0.65rem 1.15rem 0.65rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 255, 0.9) 100%);
  border: 1px solid rgba(219, 234, 254, 0.98);
  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.review-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.95);
  box-shadow:
    0 16px 36px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.review-btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

.review-btn-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.review-btn-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.review-btn-icon--google svg {
  width: 20px;
  height: 20px;
}

.review-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
}

.review-btn-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1.2;
}

.review-btn-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.01em;
}

.review-btn--linkedin:hover {
  border-color: rgba(186, 230, 253, 0.95);
  box-shadow:
    0 16px 36px rgba(10, 102, 194, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.review-btn-icon--linkedin {
  background: linear-gradient(165deg, #fff 0%, #f0f7ff 100%);
}

.review-btn-stars {
  margin-left: auto;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #f59e0b;
  flex-shrink: 0;
}

.stars {
  margin-bottom: 0.5rem;
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
  font-style: normal;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-btn:hover {
  background: #eff6ff;
}

.slider-btn {
  display: none;
}

.contact .form {
  display: grid;
  gap: 0.55rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 248, 255, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.formation-teaser {
  padding-top: 0.2rem;
}

.teaser-box {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 248, 255, 0.6) 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.1);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

label {
  font-weight: 600;
}

input,
textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-note {
  min-height: 1.3rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.footer {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(219, 234, 254, 0.7);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.35) 0%, transparent 100%);
}

.tools-strip-section {
  padding: 0.5rem 0 2rem;
}

.tools-strip {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.4rem 0;
}

.tools-strip-track {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  min-width: max-content;
  padding-left: 1.2rem;
  align-items: center;
  animation: tools-marquee 24s linear infinite;
}

.tools-strip:hover .tools-strip-track,
.tools-strip:active .tools-strip-track,
.tools-strip.is-paused .tools-strip-track {
  animation-play-state: paused;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal-on-scroll.reveal-up {
  transform: translateY(22px) scale(0.985);
}

.reveal-on-scroll.reveal-up-fast {
  transform: translateY(14px) scale(0.99);
  transition-duration: 0.5s;
}

.reveal-on-scroll.reveal-left {
  transform: translateX(-22px) translateY(8px) scale(0.98);
}

.reveal-on-scroll.reveal-right {
  transform: translateX(22px) translateY(8px) scale(0.98);
}

.reveal-on-scroll.reveal-zoom {
  transform: translateY(12px) scale(0.94);
  filter: blur(5px);
}

.reveal-on-scroll.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.72;
  }
}

@keyframes simHeroShine {
  0%,
  72% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(18px, -14px) scale(1.04);
  }
  66% {
    transform: translate(-12px, 10px) scale(0.96);
  }
}

@keyframes rocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@keyframes decoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes decoDrift {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(8px) rotate(-6deg);
  }
}

@keyframes starsTwinkle {
  0%,
  100% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deco,
  .orb,
  .hero-rotate-word,
  .eyebrow-pulse,
  .cost-sim-glow {
    animation: none !important;
  }

  .cost-result-hero::after {
    animation: none !important;
    display: none;
  }

  .menu,
  body.menu-open .header {
    transition: none !important;
  }

  .menu.open a {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .menu.open .menu-mobile-label {
    animation: none !important;
    opacity: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

@keyframes menuLinkReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes decoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes eyebrowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.28);
  }
}

@keyframes shimmerSlide {
  0%,
  100% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(120%);
  }
}

@keyframes sectionGlow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.tool-chip {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tool-logo {
  width: 150px;
  height: 42px;
  object-fit: contain;
  display: block;
  opacity: 0.98;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.12));
}

.tool-logo-airtable {
  width: 132px;
}

.tool-logo-odoo {
  width: 168px;
}

@keyframes tools-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 0.9rem));
  }
}

.footer-content {
  display: flex;
  justify-content: flex-start !important;
  gap: 0.8rem;
  color: var(--muted);
  align-items: center;
  flex-wrap: nowrap;
}

.footer-legal-link,
.footer-top-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-legal-link:hover,
.footer-top-link:hover {
  color: #334155;
}

.footer-top-link {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #334155;
  margin: 5px 0;
}

@media (min-width: 861px) and (max-width: 1180px) {
  .menu {
    gap: 0.55rem;
  }

  .menu a:not(.btn) {
    font-size: 0.86rem;
  }

  .menu a.btn.btn-sm {
    padding: 0.52rem 0.82rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 860px) {
  .deco-orbit,
  .deco-hex,
  .deco-docs,
  .deco-calendar {
    display: none;
  }

  .deco-galaxy {
    display: block;
    width: 190px;
    opacity: 0.18;
    top: 40%;
    right: -6%;
  }

  .deco-network {
    width: 155px;
    opacity: 0.2;
    top: 4%;
    right: 1%;
  }

  .deco-rocket {
    display: block;
    width: 46px;
    opacity: 0.2;
    top: 11%;
    right: 7%;
  }

  .deco-satellite {
    display: block;
    width: 68px;
    opacity: 0.19;
    top: 17%;
    right: 11%;
  }

  .deco-clipboard {
    display: block;
    width: 46px;
    opacity: 0.16;
    bottom: 16%;
    left: 2%;
  }

  .deco-stars {
    width: 155px;
    opacity: 0.17;
    top: 2%;
    left: 1%;
  }

  .nav {
    min-height: 60px;
  }

  main#top {
    margin-top: 8px;
  }

  .hero {
    padding: 0.2rem 0 1.4rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-title {
    gap: 0.55rem;
  }

  .hero-line-1 {
    line-height: 1.15;
  }

  .hero-rotate-line {
    line-height: 1.22;
    max-width: 100%;
  }

  .hero-rotate-word {
    white-space: normal;
  }

  .menu {
    position: fixed;
    top: 78px;
    right: 4%;
    left: 4%;
    padding: 0.85rem 0.75rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.06) 0%, transparent 42%),
      radial-gradient(circle at 0% 100%, rgba(56, 189, 248, 0.04) 0%, transparent 38%),
      linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    box-shadow:
      0 4px 6px rgba(37, 99, 235, 0.04),
      0 22px 48px rgba(37, 99, 235, 0.14),
      0 0 0 1px rgba(147, 197, 253, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(26px) saturate(1.35);
    -webkit-backdrop-filter: blur(26px) saturate(1.35);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top center;
    transition:
      opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.32s;
    pointer-events: none;
    isolation: isolate;
    overflow: hidden;
  }

  .menu::after {
    content: "";
    position: absolute;
    top: -35%;
    right: -18%;
    width: 58%;
    height: 58%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
  }

  .menu::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
      145deg,
      rgba(147, 197, 253, 0.65) 0%,
      rgba(255, 255, 255, 0.35) 42%,
      rgba(56, 189, 248, 0.45) 100%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  body.menu-open {
    overflow: auto;
  }

  body.menu-open .header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95),
      0 14px 36px rgba(37, 99, 235, 0.08);
  }

  .menu-mobile-label {
    display: block;
    position: relative;
    z-index: 1;
    margin: 0 0 0.15rem;
    padding: 0.15rem 0.85rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
    opacity: 0;
  }

  .menu.open .menu-mobile-label {
    animation: menuLinkReveal 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .menu-mobile-label::after {
    content: "";
    display: block;
    margin-top: 0.55rem;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(147, 197, 253, 0.55) 0%,
      rgba(147, 197, 253, 0.12) 55%,
      transparent 100%
    );
  }

  .menu a {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(6px);
  }

  .menu a::after {
    display: none;
  }

  .menu.open a {
    animation: menuLinkReveal 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .menu.open a:nth-child(2) { animation-delay: 0.04s; }
  .menu.open a:nth-child(3) { animation-delay: 0.08s; }
  .menu.open a:nth-child(4) { animation-delay: 0.12s; }
  .menu.open a:nth-child(5) { animation-delay: 0.16s; }
  .menu.open a:nth-child(6) { animation-delay: 0.2s; }
  .menu.open a:nth-child(7) { animation-delay: 0.24s; }
  .menu.open a:nth-child(8) { animation-delay: 0.28s; }

  .menu a:not(.btn) {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.78rem 0.95rem;
    border-radius: 13px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  .menu a:not(.btn)::before {
    content: "";
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .menu a:not(.btn):hover,
  .menu a:not(.btn):focus-visible {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(191, 219, 254, 0.65);
    color: var(--primary-dark);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 6px 16px rgba(37, 99, 235, 0.08);
    transform: translateX(2px);
  }

  .menu a:not(.btn):hover::before,
  .menu a:not(.btn):focus-visible::before {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
    transform: scale(1.12);
  }

  .menu a:not(.btn).is-nav-active {
    background: rgba(239, 246, 255, 0.95);
    border-color: rgba(147, 197, 253, 0.75);
    color: var(--primary-dark);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 4px 14px rgba(37, 99, 235, 0.08);
  }

  .menu a:not(.btn).is-nav-active::before {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.22);
    transform: scale(1.15);
  }

  .menu a.btn {
    margin-top: 0.45rem;
    padding: 0.82rem 1.1rem;
    text-align: center;
    justify-content: center;
    text-shadow: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow:
      0 10px 24px rgba(37, 99, 235, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .menu a.btn::before {
    content: "";
    position: absolute;
    top: -0.42rem;
    left: 0.85rem;
    right: 0.85rem;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(147, 197, 253, 0.45) 50%,
      transparent 100%
    );
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
      0 4px 14px rgba(37, 99, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 41;
    transition:
      background 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  .nav-toggle:active {
    transform: scale(0.96);
  }

  body.menu-open .nav-toggle {
    background: rgba(239, 246, 255, 0.95);
    box-shadow:
      0 6px 18px rgba(37, 99, 235, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 3.5px 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #334155, #475569);
    transition:
      transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.2s ease,
      margin 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  body.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .hero-card {
    padding: 1rem;
  }

  .card {
    border-radius: 14px;
  }

  .service-card {
    border-radius: 16px;
  }

  .service-list {
    line-height: 1.5;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .pain-bento {
    grid-template-columns: 1fr;
  }

  .pain-bottom {
    grid-template-columns: 1fr;
  }

  .cost-sim-sliders {
    grid-template-columns: 1fr;
  }

  .cost-sim-foot {
    grid-template-columns: 1fr;
  }

  .cost-quality-grid {
    grid-template-columns: 1fr;
  }

  .cost-sim-cta {
    width: 100%;
  }

  #realite .reveal-on-scroll {
    transition-duration: 0.36s;
    filter: blur(2px);
  }

  #realite .reveal-on-scroll.reveal-up-fast {
    transition-duration: 0.32s;
  }

  #realite .reveal-on-scroll.reveal-zoom {
    filter: blur(2px);
  }

  #realite .reveal-on-scroll.in {
    filter: none;
  }

  #realite .pain-load-track i {
    transition-duration: 0.7s;
  }

  .pain-stat-light {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .transform-bridge {
    flex-direction: column;
    align-items: stretch;
  }

  .transform-bridge .btn {
    width: 100%;
  }

  .teaser-box {
    grid-template-columns: 1fr;
  }

  .tools-strip-track {
    gap: 1.2rem;
    animation-duration: 18s;
  }

  .insight-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.45rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-link,
  .footer-top-link {
    font-size: 0.88rem;
  }

  .footer-top-link {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1100px, 94%);
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  h2 {
    font-size: clamp(1.25rem, 6.5vw, 1.6rem);
  }

  .lead {
    font-size: 1rem;
  }

  .trust-list {
    gap: 0.45rem;
    font-size: 0.88rem;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }

  .quote {
    font-size: 0.97rem;
  }

  .tool-logo {
    width: 112px;
    height: 32px;
  }

  .tools-strip-track {
    padding-left: 0.4rem;
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .hero-card {
    border-radius: 18px !important;
    padding: 0.95rem !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
  }

  .hero-card::after {
    display: none;
  }

  .hero-card h2 {
    font-size: 1.9rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
  }

  .hero-card > p {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
    margin-top: 0.7rem !important;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px !important;
    padding: 0.55rem 0.52rem 0.5rem !important;
    overflow: hidden;
    border-color: rgba(219, 234, 254, 0.9) !important;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(247, 250, 255, 0.78) 100%
    ) !important;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.07) !important;
  }

  .stat-item::before {
    height: 2px;
  }

  .stat-number {
    font-size: 1.35rem !important;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .stat-grid span {
    font-size: 0.68rem !important;
    line-height: 1.25;
    margin-top: 0.12rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .stat-curve--desktop {
    display: none !important;
  }

  .stat-curve--mobile {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    height: 44px !important;
    margin-top: auto !important;
    padding-top: 0.35rem;
  }

  .stat-curve--mobile .stat-curve-line {
    stroke-width: 2.8;
    stroke-dasharray: 210;
    stroke-dashoffset: 210;
  }

  .hero-card.stats-ready .stat-curve--mobile .stat-curve-line {
    stroke-dashoffset: 0;
  }

  .stat-curve--mobile .stat-curve-dot {
    r: 3.4;
  }

  .hero-insights {
    margin-top: 0.75rem !important;
    gap: 0.55rem !important;
  }

  .insight-row {
    padding: 0.48rem 0.55rem 0.55rem !important;
    border-radius: 10px !important;
  }

  .insight-head span {
    font-size: 0.78rem !important;
  }

  .insight-head strong {
    font-size: 0.86rem !important;
  }

  .hero-card-footer {
    margin-top: 0.75rem !important;
    justify-content: center;
    gap: 0.45rem !important;
  }

  .hero-card-footer span {
    font-size: 0.74rem !important;
    padding: 0.3rem 0.58rem !important;
  }
}

@media (max-width: 430px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.42rem !important;
  }

  .stat-item {
    padding: 0.48rem 0.45rem 0.42rem !important;
    border-radius: 11px !important;
  }

  .stat-number {
    font-size: 1.22rem !important;
  }

  .stat-grid span {
    font-size: 0.64rem !important;
  }

  .stat-curve--mobile {
    height: 38px !important;
    padding-top: 0.28rem;
  }
}

/* Format mobile dÃ©diÃ© pour les avis clients */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
  #temoignages .testimonial-track {
    min-height: 0 !important;
    gap: 0.9rem !important;
    align-items: stretch !important;
  }

  #temoignages .testimonial-track .testimonial.card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    flex: 0 0 min(90vw, 420px) !important;
    width: min(90vw, 420px) !important;
    max-width: min(90vw, 420px) !important;
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 1.1rem 0.95rem !important;
    gap: 0.45rem !important;
    border-radius: 18px !important;
    margin: 0 !important;
  }

  #temoignages .testimonial-track .testimonial.card .testimonial-avatar {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto 0.35rem !important;
    align-self: center !important;
    display: block !important;
    width: 72px !important;
    height: 72px !important;
  }

  #temoignages .testimonial-track .testimonial.card .quote {
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 0.98rem !important;
    line-height: 1.42 !important;
  }

  #temoignages .testimonial-track .testimonial.card .quote cite {
    text-align: center !important;
    margin-top: 0.6rem !important;
    font-size: 0.98rem !important;
  }

  #temoignages .testimonial-track .testimonial.card .stars {
    margin-bottom: 0.25rem !important;
    letter-spacing: 1.3px !important;
    font-size: 1rem !important;
  }

  .testimonial-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .review-btn {
    width: min(100%, 22rem);
    flex: 1 1 auto;
    max-width: 22rem;
    justify-content: flex-start;
    padding: 0.62rem 0.95rem 0.62rem 0.62rem;
    gap: 0.7rem;
  }

  .review-btn-stars {
    display: none;
  }

  .review-btn-label {
    font-size: 0.88rem;
  }
}

/* Format desktop dÃ©diÃ© pour les avis clients */
@media (min-width: 769px) {
  #temoignages .testimonial-track .testimonial.card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 1.25rem !important;
    gap: 0.9rem !important;
  }

  #temoignages .testimonial-track .testimonial.card .testimonial-avatar {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    align-self: flex-start !important;
    width: 82px !important;
    height: 82px !important;
  }

  #temoignages .testimonial-track .testimonial.card .quote,
  #temoignages .testimonial-track .testimonial.card .quote cite {
    text-align: left !important;
  }
}

/* Simulateur â€” mobile Ã©purÃ© (light) */
@media (max-width: 768px) {
  .sim-teaser {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon copy badge"
      "icon copy arrow";
    gap: 0.35rem 0.7rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.9rem 0.85rem;
  }

  .sim-teaser-icon {
    grid-area: icon;
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    align-self: center;
  }

  .sim-teaser-icon svg {
    width: 21px;
    height: 21px;
  }

  .sim-teaser-copy {
    grid-area: copy;
    grid-row: 1 / 3;
    align-self: center;
  }

  .sim-teaser-copy strong {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .sim-teaser-copy span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .sim-teaser-badge {
    grid-area: badge;
    margin-left: 0;
    align-self: start;
    justify-self: end;
    font-size: 0.62rem;
    padding: 0.22rem 0.52rem;
    letter-spacing: 0.06em;
  }

  .sim-teaser-arrow {
    grid-area: arrow;
    align-self: end;
    justify-self: end;
    width: 30px;
    height: 30px;
  }

  .sim-teaser-arrow svg {
    width: 16px;
    height: 16px;
  }

  .sim-section {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .sim-section-head {
    text-align: left;
    margin-bottom: 1rem;
  }

  .sim-section-head h2 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .sim-page--calc .sim-page-head h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    text-align: left;
  }

  .sim-calc-body {
    padding: 1.25rem 1.1rem;
    gap: 1.35rem;
  }

  .sim-calc-amount {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .sim-delegate-controls {
    padding: 1.25rem 1.1rem 1rem;
  }

  .sim-delegate-range-typical {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-top: 0.35rem;
    font-size: 0.68rem;
  }

  .sim-delegate-benefit {
    margin: 0 1.1rem 1rem;
    padding: 1rem;
  }

  .sim-delegate-alert {
    margin: 0 1.1rem 0.85rem;
  }

  .sim-page-head {
    text-align: center;
    margin-bottom: 1rem;
  }

  .sim-page--pro .sim-page-head h1,
  .sim-page--pro .sim-section-intro {
    text-align: center;
  }

  .sim-page-back {
    justify-content: center;
  }

  .sim-page-trust {
    flex-direction: column;
    align-items: stretch;
  }

  .sim-page-trust li {
    text-align: center;
  }

  .sim-controls-row {
    padding: 1.1rem 1rem 0.65rem;
  }

  .sim-compare-wrap {
    grid-template-columns: 1fr;
    padding: 0.25rem 1rem 1rem;
    gap: 0.55rem;
  }

  .sim-vs-badge {
    justify-self: center;
    width: 36px;
    height: 36px;
    font-size: 0.58rem;
  }

  .sim-dashboard--pro .sim-proj-strip {
    margin: 0 1rem 1rem;
  }

  .sim-proj-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .sim-proj-grid::before {
    display: none;
  }

  .sim-more {
    padding: 0 1rem;
  }

  .sim-dashboard--pro .sim-stage-foot {
    padding: 1.15rem 1rem 1.35rem;
  }

  .sim-inputs,
  .sim-vs {
    grid-template-columns: 1fr;
  }

  .sim-dashboard {
    padding: 1rem 0.9rem;
    border-radius: 20px;
  }

  .sim-dashboard--pro {
    padding: 0;
    border-radius: 22px;
  }

  .sim-gain-value {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }

  .sim-proj-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 0.65rem 0.85rem;
  }

  .sim-proj-item span,
  .sim-proj-item strong {
    display: inline;
    margin: 0;
  }

  .cost-sim-cta {
    width: 100%;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    font-size: 0.94rem;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
  }
}
