/* ==========================================================================
   ETSY MÉTHODE — Landing Page
   Theme : dark + Etsy orange
   ========================================================================== */

:root {
  --bg-0: #08090F;
  --bg-1: #0D0F18;
  --bg-2: #11141F;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #F4F5F8;
  --text-dim: #A8ADBD;
  --text-muted: #6B7185;

  --primary: #F1641E;        /* Etsy orange */
  --primary-2: #FF8C42;
  --primary-3: #FFB070;
  --primary-glow: rgba(241, 100, 30, 0.45);
  --primary-soft: rgba(241, 100, 30, 0.12);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(241, 100, 30, 0.35);

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BACKGROUND DECOR
   ========================================================================== */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hex-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1' d='M28 1l24 14v32L28 61 4 47V15z'/></svg>");
  background-size: 56px 64px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.glow-left {
  top: -200px;
  left: -250px;
  background: radial-gradient(circle, rgba(241, 100, 30, 0.55), transparent 70%);
}
.glow-right {
  bottom: -250px;
  right: -250px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.4), transparent 70%);
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  padding: 26px 0 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 190px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(241, 100, 30, 0.2), rgba(255, 140, 66, 0.08));
  border: 1px solid rgba(241, 100, 30, 0.35);
  box-shadow: 0 0 30px -8px rgba(241, 100, 30, 0.6);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}
.logo-text strong {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 8px 0 80px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 32px;
}

.gradient-text {
  background: linear-gradient(110deg, #FFB070 0%, #FF8C42 35%, #F1641E 75%, #FFB070 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.vsl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(241, 100, 30, 0.12);
  border: 1px solid rgba(241, 100, 30, 0.35);
  color: var(--primary-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.play-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 140, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 140, 66, 0); }
}

/* VSL */
.vsl-wrapper {
  width: 100%;
  max-width: 820px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(241, 100, 30, 0.4), rgba(255, 255, 255, 0.06));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  position: relative;
}
.vsl-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), transparent 60%);
  filter: blur(30px);
  opacity: 0.35;
  z-index: -1;
}
/* Border beam autour du cadre VSL */
.vsl-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--beam-angle) at 50% 50%,
    transparent 0%,
    transparent 72%,
    rgba(255, 176, 112, 0.5) 84%,
    var(--primary-2) 92%,
    #fff 98%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: beam-spin 4.5s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .vsl-wrapper::after { animation: none; }
}
.vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
}
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(241, 100, 30, 0.18), transparent 60%),
    linear-gradient(180deg, #14161F 0%, #0A0B12 100%);
}
.vsl-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px -8px rgba(241, 100, 30, 0.8), 0 0 0 8px rgba(241, 100, 30, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vsl-play:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 50px -4px rgba(241, 100, 30, 0.95), 0 0 0 14px rgba(241, 100, 30, 0.12);
}
.vsl-caption {
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-undertext {
  max-width: 640px;
  margin: 36px 0 0;
  color: var(--text-dim);
  font-size: 15.5px;
}
.hero-undertext strong {
  color: var(--primary-3);
  font-weight: 700;
}
.hero-undertext strong {
  color: #ff8c3a;
  text-shadow: 0 0 18px rgba(255, 140, 58, 0.55);
}

/* SOCIAL PROOF BAR */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sp-avatars {
  display: flex;
  align-items: center;
}
.sp-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--bg-0);
  margin-left: -16px;
  overflow: hidden;
  background: #20242f;
  box-shadow: 0 2px 10px -2px rgba(0,0,0,0.6);
}
.sp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-avatar:first-child { margin-left: 0; }
.sp-stats {
  text-align: left;
  line-height: 1.32;
}
.sp-stats p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.sp-num { color: var(--primary-2); font-weight: 800; }

@media (max-width: 760px) {
  .social-proof { gap: 16px; }
  .sp-stats { text-align: center; }
}

/* ==========================================================================
   ICLOSED FORM
   ========================================================================== */
.form-section { width: 100%; margin-top: 56px; }
.form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.7;
}
.form-card-head {
  text-align: center;
  margin-bottom: 28px;
}
.form-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 12px;
}
.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.form-sub {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}

.iclosed-embed {
  border-radius: var(--radius);
  overflow: hidden;
}
.iclosed-embed .iclosed-widget { border-radius: var(--radius); }
.iclosed-fallback {
  text-align: center;
  color: var(--text-dim);
  padding: 32px;
}
.iclosed-icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(241, 100, 30, 0.1);
  color: var(--primary-2);
  margin-bottom: 16px;
}
.iclosed-fallback strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  margin-bottom: 6px;
}
.iclosed-hint {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   DIVIDER
   ========================================================================== */
.divider {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
}
.hex-icon {
  width: 46px;
  height: 52px;
  display: grid;
  place-items: center;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 96px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 16px;
}

/* ==========================================================================
   YOUTUBE GRID
   ========================================================================== */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.yt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.yt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 100, 30, 0.4);
  box-shadow: 0 16px 40px -16px rgba(241, 100, 30, 0.35);
}
.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.yt-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(241, 100, 30, 0.15), transparent 60%),
    linear-gradient(180deg, #14161F 0%, #0A0B12 100%);
  color: var(--text-dim);
  font-size: 13px;
  pointer-events: none;
}
.yt-fallback[hidden] { display: none; }
.yt-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -4px rgba(241, 100, 30, 0.6);
}
.yt-meta {
  padding: 18px 20px 22px;
}
.yt-meta h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.yt-meta p {
  color: var(--text-dim);
  font-size: 14px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-xl { padding: 22px 40px; font-size: 17px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  box-shadow:
    0 14px 40px -10px rgba(241, 100, 30, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px -8px rgba(241, 100, 30, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section { padding: 60px 0; }
.cta-card {
  background: linear-gradient(135deg, rgba(241, 100, 30, 0.12), rgba(255, 140, 66, 0.04));
  border: 1px solid rgba(241, 100, 30, 0.22);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(241, 100, 30, 0.4), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Border beam — faisceau lumineux qui parcourt le contour */
@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--beam-angle) at 50% 50%,
    transparent 0%,
    transparent 72%,
    rgba(255, 176, 112, 0.5) 84%,
    var(--primary-2) 92%,
    #fff 98%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: beam-spin 4.5s linear infinite;
}
@keyframes beam-spin {
  to { --beam-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-card::after { animation: none; }
}
.cta-text { flex: 1 1 380px; position: relative; }
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
  line-height: 1.15;
}
.cta-text p { color: var(--text-dim); font-size: 15px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 100, 30, 0.35);
  box-shadow: 0 16px 40px -16px rgba(241, 100, 30, 0.3);
}
.testi-quote {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(241, 100, 30, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.testi-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: #DDE0EA;
  margin-bottom: 22px;
  flex: 1;
}
.testi-text strong { color: var(--primary-3); font-weight: 700; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14.5px; }
.testi-author span { color: var(--text-muted); font-size: 12.5px; }
.niche-scramble {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--primary-3);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.testi-result {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(241, 100, 30, 0.15);
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(241, 100, 30, 0.3);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final { padding: 90px 0 110px; }
.cta-final-card {
  text-align: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-final-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(241, 100, 30, 0.5), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.cta-final-card > * { position: relative; }
.cta-final-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 26px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 140, 66, 0.55);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.1), 0 18px 40px -12px rgba(0,0,0,0.7);
}
.cta-final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}
.cta-final-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
  line-height: 1.15;
}
.cta-final-card > p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 30px;
}
.cta-bullets {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer-nav { display: flex; gap: 22px; }
.footer-nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--primary-2); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .form-card { padding: 32px 22px; }
  .cta-card { padding: 32px 24px; }
  .cta-final-card { padding: 44px 24px; }
  .cta-bullets { gap: 14px; flex-direction: column; align-items: center; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
