/* ==========================================================================
   LAROO — Site vitrine
   Design clair, épuré, base #273f5d (couleur du logo)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --brand: #273f5d;        /* bleu logo */
  --brand-deep: #1b2c44;
  --brand-2: #3b6db3;      /* bleu vif (gradients, liens) */
  --ink: #1a2b42;          /* texte principal */
  --muted: #5c6f88;        /* texte secondaire */
  --mist: #f5f8fb;         /* fond de section alterné */
  --sky: #e8f0f9;          /* surfaces teintées */
  --line: rgba(39, 63, 93, .12);
  --pop: #ff8552;          /* accent chaleureux, usage parcimonieux */
  --success: #1f9d6b;
  --white: #ffffff;

  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-soft: 0 8px 30px rgba(39, 63, 93, .08);
  --shadow-lift: 0 18px 50px rgba(39, 63, 93, .14);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg, video, iframe { display: block; max-width: 100%; }

a { color: var(--brand-2); text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid rgba(59, 109, 179, .55);
  outline-offset: 2px;
  border-radius: 6px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

/* ---------- Typographie de section ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--pop));
}

.section { padding: 104px 0; }
.section-alt { background: var(--mist); }

.section-head { max-width: 720px; margin-bottom: 56px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--brand);
  text-wrap: balance;
}

.section-sub {
  margin-top: 18px;
  font-size: 17.5px;
  color: var(--muted);
}
.section-sub strong { color: var(--brand); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
              background-color .25s, border-color .25s, color .25s;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-lg { padding: 15px 28px; font-size: 16px; }

.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #34537c, var(--brand) 60%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(39, 63, 93, .32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(39, 63, 93, .38);
}

.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--brand);
  background: rgba(255, 255, 255, .6);
}
.btn-ghost:hover {
  border-color: rgba(39, 63, 93, .32);
  background: var(--sky);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(39, 63, 93, .35);
  color: var(--brand);
  background: transparent;
}
.btn-outline:hover { background: var(--brand); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 14px 30px rgba(10, 20, 34, .28);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: -6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex: none;
}
.btn-chip svg { width: 13px; height: 13px; }
.btn-chip-navy { background: var(--brand); color: #fff; }

.btn-arrow { width: 15px; height: 15px; transition: transform .25s var(--ease-out); }
.btn-ghost:hover .btn-arrow { transform: translateY(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: padding .3s var(--ease-out);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled { padding: 8px 0; }
.site-header.scrolled::before {
  background: rgba(255, 255, 255, .88);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(39, 63, 93, .06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { height: 34px; width: auto; }

.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.main-nav a:hover { color: var(--brand); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn-header { padding: 11px 20px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand);
  transition: background-color .2s;
}
.menu-toggle:hover { background: var(--sky); }
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--brand);
}
.mobile-menu a:hover { background: var(--sky); }
.mobile-menu .btn { margin-top: 8px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none; }
}
@media (max-width: 640px) {
  .btn-header { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 148px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(560px 380px at 12% 4%, rgba(59, 109, 179, .14), transparent 65%),
    radial-gradient(640px 420px at 88% 12%, rgba(39, 63, 93, .12), transparent 65%),
    radial-gradient(520px 420px at 55% 96%, rgba(255, 133, 82, .07), transparent 60%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(39, 63, 93, .13) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
}

.hero-inner { text-align: center; }

/* Sur grand écran : texte à gauche, vidéo entièrement visible à droite */
@media (min-width: 1080px) {
  .hero { padding: 158px 0 96px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 64px;
    text-align: left;
  }
  .hero-title { font-size: clamp(2.4rem, 3.6vw, 3.35rem); }
  .hero-sub { margin-left: 0; }
  .hero-cta { justify-content: flex-start; }
  .video-wrap { margin: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand);
  box-shadow: var(--shadow-soft);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pop);
  box-shadow: 0 0 0 0 rgba(255, 133, 82, .5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 133, 82, .45); }
  70% { box-shadow: 0 0 0 9px rgba(255, 133, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 133, 82, 0); }
}

.hero-title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--brand);
}
.hero-title .grad {
  background: linear-gradient(100deg, var(--brand-2) 10%, var(--brand) 55%, #5a83b8 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--muted);
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(92, 111, 136, .85);
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .hero { padding: 118px 0 64px; }
  .hero-badge { font-size: 12px; padding: 7px 14px; }
  .badge-extra { display: none; }
  .hero-title { font-size: 2.1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; margin-inline: auto; max-width: 340px; }
}

/* --- Vidéo (première visibilité) --- */
.video-wrap {
  position: relative;
  max-width: 920px;
  margin: 42px auto 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--brand-deep);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, .6) inset,
    0 30px 80px rgba(39, 63, 93, .30);
}
.video-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(120deg, rgba(59, 109, 179, .40), rgba(39, 63, 93, .12) 45%, rgba(255, 133, 82, .28));
  filter: blur(26px);
  opacity: .8;
}

.video-facade {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.video-facade:hover img { transform: scale(1.03); }

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 33, 51, .62), transparent 42%),
    radial-gradient(closest-side at 50% 50%, rgba(20, 33, 51, .10), transparent);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--brand);
  box-shadow: 0 18px 40px rgba(10, 20, 34, .4);
  transition: transform .3s var(--ease-out);
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  animation: play-pulse 2.2s var(--ease-out) infinite;
}
@keyframes play-pulse {
  0% { transform: scale(.86); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scale(1.22); opacity: 0; }
}
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-facade:hover .play-btn { transform: scale(1.08); }

.video-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  text-align: left;
  color: #fff;
}
.video-caption-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.video-caption-sub {
  display: block;
  font-size: 13.5px;
  opacity: .85;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Puces flottantes autour de la vidéo */
.video-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-lift);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  animation: float 5.5s ease-in-out infinite;
}
.video-chip strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand);
  margin-right: 2px;
}
.chip-1 { top: -20px; left: -26px; }
.chip-2 { top: 46%; right: -24px; animation-delay: -1.8s; }
.chip-3 { bottom: -20px; left: 9%; animation-delay: -3.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1080px) {
  .video-chip { display: none; }
}

/* ---------- Clients / marquee ---------- */
.clients { padding: 34px 0 72px; }

.clients-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.marquee {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee[data-direction="right"] .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track li {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: rgba(39, 63, 93, .45);
  white-space: nowrap;
  transition: color .25s;
}
.marquee-track li:hover { color: var(--brand); }
.marquee-track li::after {
  content: "";
  width: 11px;
  height: 11px;
  border: 2.5px solid rgba(39, 63, 93, .22);
  border-radius: 50%;
  flex: none;
}

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

/* ---------- Fonctionnalités ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.feature-card:nth-child(4),
.feature-card:nth-child(5) { grid-column: span 3; }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(39, 63, 93, .22);
}

.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--sky);
  color: var(--brand);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: rgba(39, 63, 93, .14);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand);
  letter-spacing: -.01em;
}

.feature-card p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-2);
}
.feature-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.feature-link:hover svg { transform: translate(2px, -2px); }

.feature-card-accent {
  background: linear-gradient(140deg, #2e4a6e, var(--brand) 55%, var(--brand-deep));
  border-color: transparent;
}
.feature-card-accent h3 { color: #fff; }
.feature-card-accent p { color: rgba(255, 255, 255, .78); }
.feature-card-accent .feature-icon { background: rgba(255, 255, 255, .14); color: #fff; }
.feature-card-accent .feature-num { color: rgba(255, 255, 255, .22); }

@media (max-width: 980px) {
  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) { grid-column: span 3; }
}
@media (max-width: 640px) {
  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) { grid-column: span 6; }
}

/* ---------- Fonctionnement ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step { position: relative; padding-top: 8px; }

.step::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 56px;
  right: -28px;
  border-top: 2px dashed rgba(39, 63, 93, .18);
}
.step:last-child::before { display: none; }

.step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(39, 63, 93, .12);
}

.step h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 700;
  color: var(--brand);
}

.step p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }

.step-tags { display: flex; gap: 8px; margin-top: 12px; }
.step-tags span {
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .step:nth-child(even)::before { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step::before { display: none; }
}

.motto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
}

.motto-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--brand);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.motto-pill svg { width: 21px; height: 21px; color: var(--brand-2); }
.motto-pill:nth-child(1) { rotate: -1.6deg; }
.motto-pill:nth-child(2) { rotate: 1.2deg; }
.motto-pill:nth-child(3) { rotate: -1deg; }
.motto-pill:hover { rotate: 0deg; transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 12px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}

.stat-note { margin-top: 4px; font-size: 13.5px; color: var(--muted); }

@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ---------- Simulateur ---------- */
.simulator {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(480px 300px at 90% -20%, rgba(120, 165, 220, .35), transparent 60%),
    linear-gradient(135deg, #31507a, var(--brand) 55%, var(--brand-deep));
  color: #fff;
  padding: 52px;
  box-shadow: 0 30px 70px rgba(39, 63, 93, .35);
  overflow: hidden;
  position: relative;
}
.simulator::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 44px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  pointer-events: none;
}

.simulator-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -.01em;
}
.simulator-head p { margin-top: 8px; color: rgba(255, 255, 255, .78); }

.simulator-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.simulator-body-impact { align-items: stretch; }

.sim-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.simulator-form {
  display: grid;
  gap: 20px;
}

.sim-field {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
}

.sim-field-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.sim-field label,
.sim-plan legend {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.sim-field output {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.sim-label { display: block; margin-bottom: 16px; }
.sim-label output {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
  outline-offset: 6px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--pop);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  transition: transform .2s var(--ease-out);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--pop);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
input[type="range"]::-moz-range-track {
  height: 8px;
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.sim-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-inline: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
}

.sim-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border: 0;
  padding: 0;
}

.sim-plan legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.sim-plan label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  cursor: pointer;
}

.sim-plan input {
  flex: none;
  margin-top: 4px;
  accent-color: var(--pop);
}

.sim-plan span {
  display: grid;
  gap: 3px;
  font-weight: 800;
  line-height: 1.25;
}

.sim-plan small {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 700;
}

.simulator-results { text-align: center; }

.impact-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 50px rgba(10, 20, 34, .18);
}

.impact-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

.sim-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.sim-big-label { margin-top: 6px; color: rgba(255, 255, 255, .78); font-weight: 600; }

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
  text-align: left;
}

.impact-grid div {
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}

.impact-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .62);
}

.impact-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.1;
  color: #fff;
  overflow-wrap: anywhere;
}

.sim-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.sim-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sim-chip strong { font-family: var(--font-display); }

.simulator-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.sim-note {
  max-width: 560px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
}
.sim-note strong { color: #fff; }

.simulator-foot .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
  flex: none;
}

@media (max-width: 900px) {
  .simulator { padding: 36px 28px; }
  .simulator-body { grid-template-columns: 1fr; gap: 36px; }
  .simulator-foot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .simulator { padding: 30px 20px; }
  .sim-field-top { align-items: flex-start; flex-direction: column; gap: 4px; }
  .sim-plan,
  .impact-grid { grid-template-columns: 1fr; }
  .impact-results { padding: 22px; }
}

/* ---------- À propos ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}

.about-text p { margin-top: 16px; color: var(--muted); }
.about-text p strong { color: var(--brand); }
.about-text .section-title { margin-bottom: 6px; }

.about-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-lift);
}

.about-founders { display: flex; margin-bottom: 18px; }

.founder-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3c5f8d, var(--brand));
  border: 3px solid #fff;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(39, 63, 93, .25);
}
.founder-avatar-2 {
  margin-left: -14px;
  background: linear-gradient(135deg, var(--brand-2), #2d5286);
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--brand);
}
.about-card-sub { font-size: 14px; color: var(--muted); }

.about-sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0;
}

.about-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 7px 0;
}
.about-points svg {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--success);
  flex: none;
}

.about-os { display: flex; gap: 10px; margin-top: 20px; }
.os-chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sky);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ---------- Témoignages ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: .6;
  color: var(--brand-2);
  opacity: .25;
  margin-bottom: 16px;
}

.quote-card blockquote {
  flex: 1;
  font-size: 16px;
  color: var(--ink);
  text-wrap: pretty;
}

.quote-card figcaption {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.quote-card figcaption strong { color: var(--brand); }

@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; } }

.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.ref-card {
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--radius-md);
  background: var(--mist);
  border: 1px dashed rgba(39, 63, 93, .2);
  transition: border-color .3s, background-color .3s;
}
.ref-card:hover { border-color: rgba(39, 63, 93, .45); background: var(--sky); }

.ref-shops {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.ref-name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 700;
  color: var(--brand);
}

.ref-team { margin-top: 2px; font-size: 13.5px; color: var(--muted); }

@media (max-width: 900px) { .refs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .refs-grid { grid-template-columns: 1fr; } }

/* ---------- Tarifs ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.price-flag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(100deg, var(--pop), #ffa15c);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 133, 82, .35);
  margin-bottom: 22px;
}
.price-flag-soft {
  background: var(--sky);
  color: var(--brand);
  box-shadow: none;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--muted);
}

.price-value {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--brand);
}
.price-unit { font-size: 17px; font-weight: 600; color: var(--muted); letter-spacing: 0; }

.price-detail { margin-top: 8px; font-size: 14px; color: var(--muted); }

.price-points { margin: 26px 0 30px; flex: 1; }
.price-points li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 15px;
  color: var(--ink);
}
.price-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23273f5d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.price-card-featured {
  background: linear-gradient(150deg, #31507a, var(--brand) 55%, var(--brand-deep));
  border-color: transparent;
  box-shadow: 0 30px 70px rgba(39, 63, 93, .38);
}
.price-card-featured h3 { color: rgba(255, 255, 255, .75); }
.price-card-featured .price-value { color: #fff; }
.price-card-featured .price-unit,
.price-card-featured .price-detail { color: rgba(255, 255, 255, .7); }
.price-card-featured .price-points li { color: rgba(255, 255, 255, .92); }
.price-card-featured .price-points li::before {
  background-color: rgba(255, 255, 255, .16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.price-card-featured .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
}

.pricing-roi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 15px;
  color: var(--muted);
}
.pricing-roi svg { width: 20px; height: 20px; color: var(--brand-2); }
.pricing-roi strong { color: var(--brand); }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: minmax(0, 460px); }
}

/* ---------- CTA final ---------- */
.cta-final { padding: 40px 0 110px; }

.cta-inner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 40px;
  border-radius: 36px;
  background:
    radial-gradient(600px 320px at 85% 0%, rgba(120, 165, 220, .32), transparent 60%),
    linear-gradient(140deg, #31507a, var(--brand) 55%, var(--brand-deep));
  color: #fff;
  box-shadow: 0 36px 80px rgba(39, 63, 93, .4);
}

.cta-rings {
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 320px;
  color: rgba(255, 255, 255, .07);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.cta-inner h2 em { font-style: italic; color: #a8c4e6; }

.cta-inner > p {
  max-width: 520px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 15px;
  transition: color .2s;
}
.cta-phone svg { width: 17px; height: 17px; }
.cta-phone:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, .72);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-brand p { margin-top: 16px; font-size: 15px; max-width: 260px; }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  transition: background-color .25s, transform .25s var(--ease-out);
}
.footer-social a:hover { background: rgba(255, 255, 255, .1); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-col a,
.footer-link-btn {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .72);
  transition: color .2s;
  text-align: left;
  padding: 0;
}
.footer-col a:hover,
.footer-link-btn:hover { color: #fff; }

.footer-address { font-size: 14.5px; line-height: 1.6; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Modal démo ---------- */
.demo-modal {
  border: 0;
  padding: 24px;
  background: transparent;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100%;
}
.demo-modal[open] { display: grid; place-items: center; }

.demo-modal::backdrop {
  background: rgba(20, 33, 51, .5);
  backdrop-filter: blur(10px);
  animation: backdrop-in .3s ease forwards;
}
@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  position: relative;
  width: min(600px, 100%);
  max-height: min(88dvh, 780px);
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 40px 100px rgba(10, 20, 34, .45);
  animation: modal-in .4s var(--ease-out);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(26px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--brand);
  transition: background-color .2s, transform .2s var(--ease-out);
}
.modal-close:hover { background: var(--sky); transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }

.modal-body { padding: 40px 40px 32px; }

.modal-rings { width: 46px; color: var(--brand); margin-bottom: 18px; }

.modal-body h2 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--brand);
}

.modal-sub { margin-top: 6px; font-size: 15px; color: var(--muted); }

.demo-form { margin-top: 26px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 14px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.label-opt { font-weight: 500; color: var(--muted); }

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(92, 111, 136, .55); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(39, 63, 93, .12);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #d64545; background: #fff7f7; }

.form-error {
  margin: 2px 0 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #c03535;
}

.demo-form .btn { margin-top: 6px; }

/* Écran de succès */
.demo-success { text-align: center; padding: 18px 0 8px; }

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(31, 157, 107, .12);
  color: var(--success);
  animation: success-pop .5s var(--ease-out);
}
.success-icon svg { width: 34px; height: 34px; }
@keyframes success-pop {
  0% { transform: scale(.4); opacity: 0; }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

.demo-success h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
}
.demo-success p { margin-top: 10px; font-size: 15px; color: var(--muted); }
.success-alt { font-size: 14px; }
.demo-success .btn { margin-top: 22px; }

.modal-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.modal-alt svg { width: 15px; height: 15px; color: var(--brand-2); }
.modal-alt a { font-weight: 700; color: var(--brand); }
.modal-alt a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .demo-modal { padding: 12px; }
  .modal-body { padding: 30px 22px 24px; }
}

/* ---------- Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
