/* Coiff&Moi — Shared design tokens & base styles
   Palette : vert sauge + or + crème (identité corrigée) */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=DM+Mono:wght@400;500&family=Dancing+Script:wght@500;600&display=swap');

:root {
  /* Brand — Sage palette (corrigée) */
  --sage: #7A9B7A;
  --sage-deep: #2D4A2D;
  --sage-dark: #1A2A1A;
  --sage-soft: #E8EFE8;
  --sage-tint: rgba(122,155,122,0.12);
  --sage-glow: rgba(122,155,122,0.28);
  --sage-mid: #5A7A5A;

  /* Gold */
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-deep: #9E8451;
  --gold-warm: #B89456;

  /* Neutrals */
  --ink: #1A1A1A;
  --ink-soft: #2E2A2C;
  --paper: #F9F6F0;
  --paper-warm: #F4EFE5;
  --paper-cream: #FAFAF5;
  --line: #E8E4DE;
  --line-strong: #D8D2C8;
  --mute: #8A8A8A;
  --mute-deep: #5A5A5A;

  /* Typo */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'JetBrains Mono', ui-monospace, monospace;
  --font-script: 'Dancing Script', cursive;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04), 0 1px 1px rgba(26, 26, 26, 0.03);
  --shadow-md: 0 8px 24px -8px rgba(45, 74, 45, 0.14), 0 4px 8px -4px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 24px 48px -16px rgba(45, 74, 45, 0.22), 0 8px 16px -8px rgba(26, 26, 26, 0.08);
  --shadow-sage: 0 16px 40px -12px rgba(122, 155, 122, 0.45);

  /* Legacy alias — toutes les anciennes refs --rose-* pointent maintenant vers sage */
  --rose: var(--sage);
  --rose-deep: var(--sage-deep);
  --rose-soft: var(--sage-soft);
  --rose-tint: var(--sage-tint);
  --rose-glow: var(--sage-glow);
  --shadow-rose: var(--shadow-sage);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea { font-family: inherit; }

::selection { background: var(--sage); color: white; }

/* === Type system === */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage-deep);
  font-weight: 500;
}
.muted { color: var(--mute); }

/* === Layout === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) {
  .container { padding: 0 32px; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 20px -8px rgba(26, 26, 26, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); background: #000; }
.btn-sage {
  background: var(--sage);
  color: white;
  box-shadow: var(--shadow-sage);
}
.btn-sage:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: white;
  box-shadow: 0 12px 28px -8px rgba(201, 169, 110, 0.5);
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: white; }
.btn-light {
  background: white;
  color: var(--sage-deep);
}
.btn-light:hover { background: var(--paper-cream); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #1FB658; transform: translateY(-2px); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }

/* Legacy aliases — pas mal de markup ancien utilise btn-rose, on le redirige */
.btn-rose { background: var(--sage); color: white; box-shadow: var(--shadow-sage); }
.btn-rose:hover { background: var(--sage-deep); transform: translateY(-2px); }

/* === Pills & badges === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(122, 155, 122, 0.20);
}
.pill-gold {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold-deep);
  border-color: rgba(201, 169, 110, 0.25);
}
.pill-ink {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.pill-light {
  background: rgba(255,255,255,0.92);
  color: var(--sage-deep);
  border-color: transparent;
  backdrop-filter: blur(8px);
}

/* === Cards === */
.card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* === Nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(249, 246, 240, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}
.nav.nav-overlay {
  background: transparent;
  border-bottom: 0;
  position: absolute;
  left: 0; right: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
}
.brand .amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  margin: 0 3px;
}
.brand .tagline {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  margin-top: 2px;
  font-weight: 500;
}
.brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.brand-stack .brand { font-size: 22px; }
.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
  color: var(--mute-deep);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
@media (min-width: 760px) {
  .nav-links { display: flex; }
}

/* === Bottom bar (mobile) === */
.bottom-bar {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 70;
  display: flex;
  background: rgba(26, 42, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.4);
}
.bottom-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 999px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 500;
  transition: background .18s, color .18s;
}
.bottom-bar a.active {
  background: var(--sage);
  color: white;
}
.bottom-bar svg { width: 18px; height: 18px; }
@media (min-width: 760px) {
  .bottom-bar { display: none; }
}

/* === Anim utilities === */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* === Footer === */
.footer {
  margin-top: 100px;
  padding: 60px 0 120px;
  background: var(--sage-dark);
  color: rgba(255,255,255,0.78);
}
.footer a:hover { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .footer { padding: 80px 0 60px; }
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer .brand { color: white; }
.footer .brand .amp { color: var(--gold); }
.footer .tagline { color: rgba(232, 213, 168, 0.7); }
.residual-sig {
  text-align: center;
  padding: 18px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.residual-sig a {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  transition: color .2s;
}
.residual-sig a:hover { color: rgba(255,255,255,0.7); }

/* === Section header === */
.section-h {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
  text-align: center;
}
.section-h h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-h h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.section-h p {
  color: var(--mute-deep);
  font-size: 17px;
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.55;
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
::-webkit-scrollbar-track { background: transparent; }

/* === Brand logotype (for hero/footer big version) === */
.brand-logo-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand-logo-block .lg-line {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--gold);
  line-height: 1;
}
.brand-logo-block .lg-line .amp {
  font-style: italic;
  font-weight: 400;
  margin: 0 4px;
}
.brand-logo-block .lg-rule {
  width: 60%;
  height: 1px;
  background: rgba(201, 169, 110, 0.5);
  margin: 4px 0 6px;
}
.brand-logo-block .lg-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}

/* ============================================================
   Polish layer — animations & details (final pass)
   ============================================================ */

html { scroll-behavior: smooth; }

/* Refined selection */
::selection { background: var(--gold-light); color: var(--sage-dark); }

/* Polished focus ring */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Top scroll progress bar (modern browsers — Chrome/Edge/Safari TP) */
@supports (animation-timeline: scroll()) {
  body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 100;
    pointer-events: none;
    animation: scrollFill linear both;
    animation-timeline: scroll(root);
  }
  @keyframes scrollFill { to { transform: scaleX(1); } }
}

/* Button sheen sweep on hover */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 75%);
  transform: skewX(-18deg);
  transition: left .65s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::after { left: 130%; }
.btn > * { position: relative; z-index: 2; }

/* Bottom-bar active item — slow breath halo */
.bottom-bar a.active {
  animation: pillBreath 3.5s ease-in-out infinite;
}
@keyframes pillBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,155,122,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(122,155,122,0); }
}

/* Gold flowing gradient on emphasized headlines */
.section-h h2 em,
.steps-h h2 em,
.salon-info-block h2 em,
.lien-card h2 em,
.bon-head h1 em,
.page-head h1 em,
.closing h2 em,
.hero h1 .accent {
  background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 35%, var(--gold) 65%, var(--gold-light) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldFlow 9s linear infinite;
}
@keyframes goldFlow {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

/* Closing script tagline — slow horizontal shimmer */
.closing .script {
  background-image: linear-gradient(90deg, var(--gold-light) 0%, white 50%, var(--gold-light) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scriptShine 7s ease-in-out infinite;
}
@keyframes scriptShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Animated underline on inline content links */
.lien-message a,
.salon-info-block a:not(.btn):not(.map-link),
.footer ul a,
.preview-row a,
.bon-card .actions a:not(.btn) {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .4s cubic-bezier(.2,.7,.2,1);
}
.lien-message a:hover,
.salon-info-block a:not(.btn):not(.map-link):hover,
.footer ul a:hover,
.preview-row a:hover {
  background-size: 100% 1.2px;
}

/* Gold dot leader before each .eyebrow */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.5;
}
/* but exempt these where it would clash visually */
.hero .eyebrow::before,
.closing .eyebrow::before,
.lien-card .eyebrow::before { display: none; }

/* Card transitions — refined uniform feel */
@media (hover: hover) {
  .card, .step, .temoignage, .stat, .filleule, .kpi, .panel, .service {
    transition:
      transform .35s cubic-bezier(.2,.7,.2,1),
      box-shadow .35s ease,
      border-color .25s ease,
      background .2s ease;
  }
}

/* Header brand whisper — fade-in on load */
.nav .brand,
.nav .brand-stack {
  animation: brandIn .8s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes brandIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reduced-motion override */
@media (prefers-reduced-motion: reduce) {
  body::after,
  .btn::after,
  .section-h h2 em,
  .steps-h h2 em,
  .salon-info-block h2 em,
  .lien-card h2 em,
  .bon-head h1 em,
  .page-head h1 em,
  .closing h2 em,
  .hero h1 .accent,
  .closing .script,
  .bottom-bar a.active,
  .nav .brand,
  .nav .brand-stack {
    animation: none !important;
  }
  .btn::after { display: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Expert layer — signature details
   ============================================================ */

/* Page-load fade — first impression */
body {
  animation: pageReveal .9s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Custom scrollbar in sage/gold */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--sage), var(--sage-deep));
  border-radius: 999px;
  border: 3px solid var(--paper);
  background-clip: padding-box;
  transition: background .2s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  background-clip: padding-box;
  border: 3px solid var(--paper);
}
/* Dark surfaces */
.footer ::-webkit-scrollbar-thumb,
.salon-section ::-webkit-scrollbar-thumb,
.lien-card ::-webkit-scrollbar-thumb {
  border-color: var(--sage-dark);
}
/* Firefox */
html { scrollbar-width: thin; scrollbar-color: var(--sage) transparent; }

/* CTA arrow micro-slide on hover */
.btn svg:last-child {
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}

/* Pill — refined glass morphism */
.pill,
.pill-gold,
.pill-light,
.hero .pill,
.closing .pill {
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.pill:hover, .pill-gold:hover {
  transform: translateY(-1px);
}

/* Conic-gradient animated border on premium cards (KPI, stat, ticket) — appears on hover */
.kpi, .stat {
  position: relative;
}
.kpi::before, .stat::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    var(--gold) 90deg,
    transparent 180deg,
    var(--sage) 270deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.kpi:hover::before, .stat:hover::before {
  opacity: 1;
  animation: spinBorder 4s linear infinite;
}
@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spinBorder {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}

/* Sparkle decorations on the closing CTA — pure CSS, no SVG asset */
.closing { isolation: isolate; }
.closing::before,
.closing::after {
  content: "✦";
  position: absolute;
  color: var(--gold-light);
  font-size: 18px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  text-shadow: 0 0 12px rgba(232,213,168,0.7);
  animation: sparkle 4s ease-in-out infinite;
}
.closing::before {
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}
.closing::after {
  bottom: 22%;
  right: 14%;
  font-size: 14px;
  animation-delay: 2s;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  40%, 60% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Hero stars overlay — extra sparkle dots */
.hero { isolation: isolate; }
.hero .container::before {
  content: "✦";
  position: absolute;
  top: 22%;
  right: 14%;
  color: var(--gold-light);
  font-size: 12px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(232,213,168,0.6);
  animation: sparkle 5s ease-in-out 1s infinite;
}

/* Section header — animated gold dot drift before eyebrow */
.section-h .eyebrow,
.steps-h .eyebrow,
.parrainages .eyebrow,
.salon-info-block .eyebrow,
.services .eyebrow {
  display: inline-flex;
  align-items: center;
}

/* Refined card hover — subtle dual-axis lift */
@media (hover: hover) {
  .step:hover { transform: translateY(-4px) rotate(-0.2deg); }
  .temoignage:hover { transform: translateY(-4px) rotate(0.2deg); }
  .filleule:hover { transform: translateX(2px); }
}

/* Smooth interactive states on form inputs */
input, textarea, select, button {
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px rgba(122,155,122,0.18);
}

/* Lien-card input — refined glow */
.lien-input:focus-within {
  background: rgba(255,255,255,0.10);
  border-color: rgba(232,213,168,0.45);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.16);
}

/* Stat number — premium ticker drop-in on view */
.stat .num { display: inline-block; }
.stat .num::before {
  content: "";
  display: block;
}

/* Subtle gold underline on h1 closing (decorative) */
.closing h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 24px auto 0;
}

/* Reduced-motion (extras) */
@media (prefers-reduced-motion: reduce) {
  body { animation: none !important; }
  .closing::before, .closing::after, .hero .container::before { animation: none !important; opacity: 0 !important; }
  .kpi::before, .stat::before { animation: none !important; }
}
