:root {
  --brand: #08506D;
  --brand-soft: #0A6E8B;
  --brand-dark: #043344;
  --brand-light: #E4F3F8;
  --brand-lighter: #F1F7F9;
  --accent: #F3A852;

  --bg-main: #FFFEF6;
  --bg-soft: #F5F7FB;
  --surface: #ffffff;
  --surface-alt: #F9FBFD;

  --text-main: #0F172A;
  --text-muted: #6B7280;

  --border-subtle: rgba(148, 163, 184, 0.45);
  --border-strong: rgba(209, 213, 219, 0.9);

  --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.12);

  --max-width: 1180px;
}

/* THEME DARK OVERRIDES */
html[data-theme="dark"] {
  --bg-main: radial-gradient(circle at top left, #0B2530 0%, #021117 45%, #020912 100%);
  --bg-soft: #020912;
  --surface: rgba(4, 24, 33, 0.97);
  --surface-alt: rgba(4, 24, 33, 0.94);

  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;

  --border-subtle: rgba(148, 163, 184, 0.6);
  --border-strong: rgba(148, 163, 184, 0.7);

  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

p {
  margin: 0 0 0.9rem;
  line-height: 1.8;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.6rem;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}

.section-header {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* PROBLÉMATIQUE – header pleine largeur */

.problem-text p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.problem-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.problem-card {
  border-radius: 20px;
  padding: 0.9rem 0.9rem 0.85rem;
  background: #F9FBFF;
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.25);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}








/* BACKGROUND ORBS */
.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.bg-orb--blue {
  width: 420px;
  height: 420px;
  background: #CFEAF5;
  top: -140px;
  left: -80px;
}

.bg-orb--teal {
  width: 420px;
  height: 420px;
  background: #D3ECF4;
  top: 40%;
  right: -140px;
}

.bg-orb--amber {
  width: 260px;
  height: 260px;
  background: #FFE4C2;
  bottom: -140px;
  left: 15%;
}

html[data-theme="dark"] .bg-orb--blue {
  background: #0A6E8B;
  filter: blur(70px);
  opacity: 0.5;
}

html[data-theme="dark"] .bg-orb--teal {
  background: #0C859F;
  filter: blur(70px);
  opacity: 0.5;
}

html[data-theme="dark"] .bg-orb--amber {
  background: #F3A852;
  filter: blur(70px);
  opacity: 0.35;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

html[data-theme="dark"] .navbar {
  background: radial-gradient(circle at top left, rgba(4, 24, 33, 0.96), rgba(4, 24, 33, 0.96));
  border-bottom-color: rgba(148, 163, 184, 0.55);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
}

.navbar-logo-img {
  height: 34px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.navbar-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-soft), var(--accent));
  transition: width 0.18s ease-out;
}

.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .nav-pill {
  background: rgba(4, 24, 33, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1.3rem;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: inherit;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background 0.12s ease-out,
    border-color 0.12s ease-out,
    color 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at top left, #0A6E8B, #08506D);
  color: #F9FAFB;
  box-shadow: 0 18px 40px rgba(8, 80, 109, 0.35);
  border: 1px solid rgba(8, 80, 109, 0.9);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(8, 80, 109, 0.45);
  filter: brightness(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

html[data-theme="dark"] .btn-outline {
  color: #F9FAFB;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.3);
  transform: translateY(-1px);
}

html[data-theme="dark"] .btn-outline:hover {
  background: rgba(4, 24, 33, 0.94);
  box-shadow: 0 14px 30px rgba(4, 24, 33, 0.9);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.navbar-burger {
  display: none;
  border: none;
  background: transparent;
  padding: 0.3rem;
  cursor: pointer;
  border-radius: 999px;
}

.navbar-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition:
    transform 0.16s ease-out,
    opacity 0.16s ease-out;
}

.navbar-burger span + span {
  margin-top: 4px;
}

.navbar-burger.open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.navbar-burger.open span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.navbar-nav-mobile {
  display: none;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

html[data-theme="dark"] .navbar-nav-mobile {
  background: rgba(4, 24, 33, 0.97);
  border-top-color: rgba(148, 163, 184, 0.6);
}

.navbar-nav-mobile.open {
  display: block;
}

.navbar-nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0.7rem 1.6rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.navbar-nav-mobile-list a {
  padding: 0.25rem 0;
}

/* THEME TOGGLE BUTTON */
.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.45rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-muted);
}

.theme-toggle .theme-icon {
  width: 22px;
  height: 22px;
  display: block;
  stroke: none;
  fill: currentColor;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  padding: 0.85rem 1rem;
  background: #08506D;
  color: #F9FAFB;
  border-radius: 14px;
  box-shadow: 0 16px 35px rgba(8, 80, 109, 0.35);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
  pointer-events: none;
  max-width: 320px;
  font-size: 0.92rem;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(4, 24, 33, 0.96);
  color: #E5E7EB;
  border-color: rgba(148, 163, 184, 0.7);
}

.theme-toggle:hover {
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  padding: 3.4rem 0 3.4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1.4rem;
  align-items: flex-start;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  color: var(--brand-soft);
  justify-self: center;
}

html[data-theme="dark"] .hero-eyebrow {
  background: rgba(4, 24, 33, 0.96);
  border-color: rgba(148, 163, 184, 0.7);
  color: #E0F2FE;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 1rem 0 0.8rem;
  color: var(--brand-dark);
}

html[data-theme="dark"] .hero-title {
  color: #F9FAFB;
}

.hero-title span {
  background: linear-gradient(120deg, #0A6E8B, #F3A852);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
}

.hero-trust-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #FFFEF6;
  background: #E5F1F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--brand-dark);
}

html[data-theme="dark"] .hero-trust-avatar {
  border-color: #020912;
  background: #0B2530;
  color: #E5E7EB;
}

.hero-trust-avatar + .hero-trust-avatar {
  margin-left: -8px;
}

/* HERO – Carte (utilisée maintenant uniquement dans Résultats) */
.hero-card {
  width: 100%;
  max-width: 380px;
  border-radius: 26px;
  padding: 1.1rem 1.1rem 1rem;
  background: radial-gradient(circle at top left, #FFFFFF, #F1F7F9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 22px 70px rgba(148, 163, 184, 0.35);
  color: #0F172A;
}

html[data-theme="dark"] .hero-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  border-color: rgba(148, 163, 184, 0.8);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.95);
  color: #E5E7EB;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-sub {
  font-size: 0.76rem;
  opacity: 0.8;
}

.hero-card-badge {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: #DCFCE7;
  color: #16A34A;
  border: 1px solid rgba(22, 163, 74, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
}

html[data-theme="dark"] .hero-card-badge {
  background: rgba(34, 197, 94, 0.15);
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.metric-card {
  border-radius: 16px;
  padding: 0.6rem 0.65rem;
  background: #F9FBFF;
  border: 1px solid rgba(148, 163, 184, 0.65);
}

html[data-theme="dark"] .metric-card {
  background: radial-gradient(circle at top, rgba(15, 167, 200, 0.18), rgba(15, 23, 42, 0.98));
  border-color: rgba(148, 163, 184, 0.85);
}

.metric-label {
  font-size: 0.72rem;
  color: #94A3B8;
  margin-bottom: 0.16rem;
}

.metric-value {
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.metric-delta {
  font-size: 0.72rem;
  color: #22C55E;
}

.metric-tag {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: #9CA3AF;
}

.hero-progress-group {
  display: grid;
  gap: 0.75rem;
}

.hero-progress-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.18rem;
}

.hero-progress-label {
  font-size: 0.76rem;
  color: #94A3B8;
}

.hero-progress-value {
  font-size: 0.8rem;
  font-weight: 600;
}

.progress-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #E5E7EB;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

html[data-theme="dark"] .progress-bar {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(30, 64, 175, 0.9);
}

.progress-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0FA7C8, #38bdf8);
}

.progress-fill.success {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.progress-fill.warn {
  background: linear-gradient(90deg, #f97316, #facc15);
}

/* SECTION-TRUST – bandeau "Pensé par des hôteliers" */
.section-trust {
  padding: 1.8rem 0 2.6rem;
}

.trust-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.trust-text span {
  color: var(--text-main);
  font-weight: 600;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.25);
  padding: 0.6rem 0;
}

html[data-theme="dark"] .logo-strip {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.96));
  border-color: rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 50px rgba(4, 24, 33, 0.95);
}

.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

html[data-theme="dark"] .logo-strip::before {
  background: linear-gradient(to right, #020617, transparent);
}

html[data-theme="dark"] .logo-strip::after {
  background: linear-gradient(to left, #020617, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  animation: marquee 32s linear infinite;
  padding-inline: 2.4rem;
  white-space: nowrap;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-pill {
  opacity: 0.9;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION SURFACE */
.section-block {
  padding: 4rem 0 4.2rem;
}

.section-card {
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  padding: 2.6rem 2.4rem 2.4rem;
}

/* SECTIONS ACCENTUÉES (fond bleu type CTA) */
.section-accent {
  background: radial-gradient(circle at top left, #0A6E8B, #043344 60%);
}

.section-accent .section-card {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.7);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.7);
}

.section-accent .section-title {
  color: #F9FAFB;
}

.section-accent .section-subtitle {
  color: #E5E7EB;
}

/* On recentre légèrement le contenu pour encore plus d'effet "bande" */
.section-accent .section-card > .section-header {
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

/* Les KPIs et témoignages restent en cartes blanches, mais on augmente un peu leur shadow pour bien ressortir */
.section-accent .kpi-pill,
.section-accent .testimonial-card {
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.5);
}


html[data-theme="dark"] .section-card {
  background: radial-gradient(circle at top left, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.94));
  border-color: rgba(148, 163, 184, 0.7);
}

html[data-theme="dark"] .problem-card {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.97));
  border-color: rgba(148, 163, 184, 0.8);
  box-shadow: 0 18px 40px rgba(4, 24, 33, 0.9);
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.4);
  border-color: rgba(8, 80, 109, 0.6);
}

.problem-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #0A6E8B, #F1F7F9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand-soft);
  margin-bottom: 0.55rem;
}

html[data-theme="dark"] .problem-icon {
  background: radial-gradient(circle at 30% 20%, #0A6E8B, #043344);
  color: #E5E7EB;
}

.problem-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

html[data-theme="dark"] .problem-card-title {
  color: #E5E7EB;
}

.problem-card-text {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* FEATURES GRID – "Une solution complète, sans recruter" */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.feature-card {
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: #FFFFFF;
  padding: 1.5rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    border-color 0.14s ease-out,
    background 0.14s ease-out;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.35);
  border-color: rgba(8, 80, 109, 0.4);
  background: #F9FBFF;
}

html[data-theme="dark"] .feature-card {
  background: rgba(4, 24, 33, 0.97);
  border-color: rgba(148, 163, 184, 0.7);
  color: #9CA3AF;
}

html[data-theme="dark"] .feature-card:hover {
  box-shadow: 0 20px 40px rgba(4, 24, 33, 0.95);
  border-color: rgba(8, 80, 109, 0.9);
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.98));
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: radial-gradient(circle at top, #E4F3F8, #CFEAF5);
  font-size: 1rem;
  color: var(--brand-soft);
}

html[data-theme="dark"] .feature-icon {
  background: radial-gradient(circle at top, #0A6E8B, #043344);
  color: #E0F2FE;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--brand-dark);
}

html[data-theme="dark"] .feature-title {
  color: #E5E7EB;
}

/* TWO-COL */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
  margin-top: 1.8rem;
}

/* SOLUTION NESTOR – liste + téléphone */
.solution-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.solution-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: flex-start;
}

.solution-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #0A6E8B, #F1F7F9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  color: var(--brand-soft);
  flex-shrink: 0;
  margin-top: 0.18rem;
}

html[data-theme="dark"] .solution-icon {
  background: radial-gradient(circle at 30% 20%, #0A6E8B, #020617);
  color: #E5E7EB;
}

.solution-item-title {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.12rem;
  color: var(--text-main);
}

html[data-theme="dark"] .solution-item-title {
  color: #E5E7EB;
}

.solution-item-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.phone-mockup {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.phone-frame {
  border-radius: 32px;
  padding: 0.7rem;
  background: conic-gradient(from 120deg, #0FA7C8, #38bdf8, #0B789F, #0FA7C8);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.phone-inner {
  border-radius: 26px;
  padding: 0.7rem 0.55rem 0.7rem;
  background: #020617;
  border: 3px solid rgba(15, 23, 42, 1);
  color: #E5E7EB;
  font-size: 0.8rem;
}

.phone-notch {
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
  margin: 0 auto 0.55rem;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0 0.1rem;
  font-size: 0.76rem;
}

.phone-title {
  font-weight: 600;
}

.phone-badge {
  font-size: 0.72rem;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 167, 200, 0.25);
  color: #e0f2fe;
  border: 1px solid rgba(56, 189, 248, 0.8);
}

.chat-thread {
  display: grid;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.chat-bubble {
  max-width: 80%;
  border-radius: 16px;
  padding: 0.45rem 0.6rem;
  line-height: 1.4;
  position: relative;
}

.chat-bubble.client {
  margin-left: auto;
  background: #020617;
  border: 1px solid rgba(55, 65, 81, 0.9);
  border-bottom-right-radius: 4px;
  color: #E5E7EB;
}

.chat-bubble.nestor {
  margin-right: auto;
  background: radial-gradient(circle at top, #0FA7C8, #08506D);
  border-bottom-left-radius: 4px;
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
}

.chat-meta {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: #64748b;
  text-align: right;
}

.chat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.72rem;
  margin-top: 0.3rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.9);
  color: #e2e8f0;
}

.phone-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0 0.15rem;
}

.phone-input {
  flex: 1;
  border-radius: 999px;
  background: #020617;
  border: 1px solid rgba(55, 65, 81, 0.85);
  padding: 0.32rem 0.6rem;
  font-size: 0.76rem;
  color: #64748b;
}

.phone-send {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0FA7C8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #020617;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.95);
}

/* RÉSULTATS – KPIs + Vue synthétique */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-pill {
  border-radius: 999px;
  padding: 0.85rem 0.85rem;
  background: #F9FBFF;
  border: 1px solid rgba(148, 163, 184, 0.75);
  box-shadow: 0 18px 50px rgba(148, 163, 184, 0.25);
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 108px;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

html[data-theme="dark"] .kpi-pill {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.97));
  border-color: rgba(148, 163, 184, 0.8);
  box-shadow: 0 22px 60px rgba(4, 24, 33, 0.9);
}

.kpi-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(148, 163, 184, 0.4);
  border-color: rgba(8, 80, 109, 0.7);
}

.kpi-value {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--text-main);
}

html[data-theme="dark"] .kpi-value {
  color: #E5E7EB;
}

.kpi-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.results-note {
  margin-top: 1.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 640px;
}

.results-note strong {
  color: var(--text-main);
}

html[data-theme="dark"] .results-note strong {
  color: #E5E7EB;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: stretch;
}

.results-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* FONCTIONNEMENT – Flow steps */
.flow-steps {
  position: relative;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flow-line {
  position: absolute;
  top: 24px;
  left: 7%;
  right: 7%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 167, 200, 0.6), transparent 40%, rgba(15, 167, 200, 0.6));
  opacity: 0.4;
  pointer-events: none;
}

.flow-step {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 210px;
  border-radius: 20px;
  padding: 0.9rem 0.95rem 0.9rem;
  background: #F9FBFF;
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: 0 20px 55px rgba(148, 163, 184, 0.3);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
  font-size: 0.88rem;
  color: var(--text-muted);
}

html[data-theme="dark"] .flow-step {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.97));
  border-color: rgba(148, 163, 184, 0.8);
  box-shadow: 0 20px 55px rgba(4, 24, 33, 0.95);
}

.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(148, 163, 184, 0.4);
  border-color: rgba(8, 80, 109, 0.8);
}

.flow-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #0A6E8B, #F1F7F9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--brand-soft);
}

html[data-theme="dark"] .flow-icon-wrap {
  background: radial-gradient(circle at 30% 20%, #0A6E8B, #020617);
  color: #E5E7EB;
}

.flow-index {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A6E8B;
  font-weight: 600;
}

html[data-theme="dark"] .flow-index {
  background: #020617;
  color: #38bdf8;
}

.flow-title {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

html[data-theme="dark"] .flow-title {
  color: #E5E7EB;
}

.flow-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* OFFRES & TARIFS – pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(148, 163, 184, 0.85);
  box-shadow: 0 22px 60px rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--text-muted);
  position: relative;
  transition:
transform 0.16s ease-out,
box-shadow 0.16s ease-out,
border-color 0.16s ease-out,
background 0.16s ease-out;
}

html[data-theme="dark"] .pricing-card {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.96));
  border-color: rgba(148, 163, 184, 0.85);
  box-shadow: 0 22px 60px rgba(4, 24, 33, 0.95);
  color: #9CA3AF;
}

.pricing-card.popular {
  transform: translateY(-4px);
  border-width: 2px;
  border-color: rgba(56, 189, 248, 0.95);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.14), #FFFFFF);
}

html[data-theme="dark"] .pricing-card.popular {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.22), rgba(4, 24, 33, 0.98));
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(148, 163, 184, 0.35);
  border-color: rgba(8, 80, 109, 0.7);
}

.pricing-popular-badge {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0FA7C8);
  color: #020617;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.45);
}

/* Responsive : 1 colonne sur mobile */
@media (max-width: 980px) {
  .pricing-grid {
grid-template-columns: minmax(0, 1fr);
max-width: 520px;
  }
}

.pricing-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 0.18rem;
  color: var(--text-main);
}

html[data-theme="dark"] .pricing-name {
  color: #F9FAFB;
}

.pricing-tagline {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.pricing-price {
  margin: 0.7rem 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

html[data-theme="dark"] .pricing-price {
  color: #E5E7EB;
}

.pricing-price span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.14rem;
}

.pricing-details {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.pricing-details strong {
  color: var(--text-main);
}

html[data-theme="dark"] .pricing-details strong {
  color: #E5E7EB;
}

.pricing-features {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}

.pricing-features li::before {
  content: "•";
  color: #38bdf8;
  font-size: 0.96rem;
  line-height: 1;
  margin-top: 0.02rem;
}

.pricing-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pricing-note {
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: none;
}

.pricing-note strong {
  color: var(--text-main);
}

html[data-theme="dark"] .pricing-note strong {
  color: #E5E7EB;
}

/* ABOUT METRICS */
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: 0.86rem;
}

.about-metric {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #F1F7F9;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.about-metric span {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand-soft);
  margin-bottom: 0.15rem;
}

html[data-theme="dark"] .about-metric {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.96));
  border-color: rgba(56, 189, 248, 0.5);
  color: #9CA3AF;
}

html[data-theme="dark"] .about-metric span {
  color: #E0F2FE;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 50px rgba(148, 163, 184, 0.35);
}

html[data-theme="dark"] .about-image {
  border-color: rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 50px rgba(4, 24, 33, 0.95);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.testimonial-card {
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  background: #FFFFFF;
  padding: 1.7rem 1.6rem 1.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    border-color 0.14s ease-out;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(148, 163, 184, 0.4);
  border-color: rgba(8, 80, 109, 0.4);
}

html[data-theme="dark"] .testimonial-card {
  background: rgba(4, 24, 33, 0.97);
  border-color: rgba(148, 163, 184, 0.7);
  color: #9CA3AF;
}

html[data-theme="dark"] .testimonial-card:hover {
  box-shadow: 0 22px 55px rgba(4, 24, 33, 0.98);
  border-color: rgba(8, 80, 109, 0.9);
}

.testimonial-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #DCFCE7;
  border: 1px solid #22C55E;
  color: #166534;
}

html[data-theme="dark"] .testimonial-badge {
  background: rgba(22, 163, 74, 0.18);
  border-color: rgba(34, 197, 94, 0.7);
  color: #BBF7D0;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #E4F3F8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--brand-soft);
  margin-bottom: 0.7rem;
}

html[data-theme="dark"] .testimonial-avatar {
  background: radial-gradient(circle at top, #0A6E8B, #043344);
  color: #E5E7EB;
}

.testimonial-rating {
  font-size: 0.8rem;
  color: #F59E0B;
  margin-bottom: 0.3rem;
}

.testimonial-author {
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 0.9rem;
}

html[data-theme="dark"] .testimonial-author {
  color: #E5E7EB;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: 4rem 0;
}

.cta-inner {
  border-radius: 26px;
  padding: 2.5rem 2.4rem;
  background: radial-gradient(circle at top left, #0A6E8B, #1D4F63 65%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  color: #F9FAFB;
}

html[data-theme="dark"] .cta-inner {
  background: radial-gradient(circle at top left, #0A6E8B, #043344 60%);
  box-shadow: 0 26px 70px rgba(4, 24, 33, 0.98);
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

.cta-text {
  font-size: 0.94rem;
  max-width: 440px;
}

.cta-list {
  margin: 0.9rem 0 0;
  font-size: 0.84rem;
}

.cta-list li {
  margin-bottom: 0.25rem;
}

/* CONTACT */
.contact {
  padding: 4.2rem 0 4.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: flex-start;
}

.contact-card {
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: #FFFFFF;
  padding: 1.7rem 1.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  box-shadow: 0 22px 60px rgba(148, 163, 184, 0.35);
}

html[data-theme="dark"] .contact-card {
  background: rgba(4, 24, 33, 0.97);
  border-color: rgba(148, 163, 184, 0.7);
  box-shadow: 0 22px 60px rgba(4, 24, 33, 0.98);
  color: #9CA3AF;
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--brand-dark);
}

html[data-theme="dark"] .contact-title {
  color: #E5E7EB;
}

.contact-info-row {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.84rem;
}

.contact-pill {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #DCFCE7;
  border: 1px solid #22C55E;
  color: #166534;
  font-size: 0.8rem;
}

html[data-theme="dark"] .contact-pill {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.7);
  color: #BBF7D0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.84rem;
}

.form-field label {
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  padding: 0.6rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
}

html[data-theme="dark"] .form-input,
html[data-theme="dark"] .form-textarea,
html[data-theme="dark"] .form-select {
  background: rgba(4, 24, 33, 0.96);
  border-color: rgba(148, 163, 184, 0.8);
  color: #F9FAFB;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(8, 80, 109, 0.9);
  box-shadow: 0 0 0 1px rgba(8, 80, 109, 0.35);
}

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

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-strong);
  padding: 1.4rem 0 1.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] .footer {
  background: radial-gradient(circle at top, rgba(4, 24, 33, 0.98), rgba(4, 24, 33, 0.99));
  border-top-color: rgba(148, 163, 184, 0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* MOBILE CTA */
.mobile-cta {
  display: none;
}

.mobile-cta-link {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  background: radial-gradient(circle at top, #0A6E8B, #08506D);
  color: #F9FAFB;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.25);
}

/* ACCESSIBILITÉ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #0A6E8B;
  outline-offset: 2px;
}

section[id] {
  scroll-margin-top: 80px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .has-js .navbar-nav {
    display: none;
  }

  .navbar-nav-mobile {
    display: block;
  }

  .has-js .navbar-nav-mobile {
    display: none;
  }

  .has-js .navbar-nav-mobile.open {
    display: block;
  }

  .has-js .navbar-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-inner,
  .two-col,
  .pricing-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2.2rem;
  }

  .section-card {
    padding: 2.2rem 1.6rem 2.1rem;
  }

  .problem-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-line {
    display: none;
  }

  .flow-steps {
    flex-direction: column;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
  }

  .results-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }

  .section-card {
    padding-inline: 1.4rem;
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    padding: 2.1rem 1.6rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.6rem;
  }

  .testimonial-card {
    min-width: 80%;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
  }

  body {
    padding-bottom: 3.2rem;
  }

  .kpi-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bg-orb {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .logo-track {
    animation: none;
  }
}
  
