/* ============================================
   MR. Clean — Gebäudereinigung
   Modernes, frisches Design — Blau/Cyan/Grün
   ============================================ */

:root {
  --primary: #1e40af;          /* Logo-Blau (MR.CLEAN Text) */
  --primary-dark: #1e3a8a;
  --primary-deep: #172554;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;           /* Sky/Water-Blau */
  --accent-2: #38bdf8;
  --accent-soft: #dbeafe;
  --success: #22c55e;          /* Logo-Grün */
  --success-soft: #dcfce7;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #eff6ff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(30, 64, 175, .08);
  --shadow-lg: 0 24px 70px rgba(30, 64, 175, .18);
  --shadow-glow: 0 0 60px rgba(14, 165, 233, .35);
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--primary-dark);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; }

p { margin: 0 0 1em; color: var(--text-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.accent { color: var(--accent); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  color: var(--primary-dark);
  font-weight: 500;
}
.logo strong { font-weight: 800; color: var(--primary); }
.logo-mark { display: inline-flex; }
.logo-text { letter-spacing: -0.02em; white-space: nowrap; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .98rem;
}
.primary-nav a:hover { color: var(--accent); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
}
.header-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 90% -10%, var(--accent-soft), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, var(--success-soft), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg-soft));
  padding: 80px 0 100px;
  overflow: hidden;
  perspective: 1400px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 { margin-bottom: 16px; }
.hero-slogan {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 12px 0 8px;
  line-height: 1.15;
  width: fit-content;
  max-width: 100%;
}
.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust li {
  font-size: .95rem;
  color: var(--muted);
}
.hero-trust strong {
  display: block;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

/* === Logo-Stage mit 3D-Tilt === */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.logo-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 8% 8% 4% 8%;
  background: radial-gradient(circle at 50% 55%, rgba(14,165,233,.45), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.logo-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(30, 64, 175, .35));
  animation: floatLogo 6s ease-in-out infinite;
  z-index: 2;
  transform: translateZ(60px);
}
@keyframes floatLogo {
  0%, 100% { transform: translateZ(60px) translateY(0) rotate(0deg); }
  50%      { transform: translateZ(60px) translateY(-14px) rotate(-1.2deg); }
}

/* === Schwebende Blasen & Sparkles === */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent-soft));
  opacity: .75;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
  box-shadow: inset -4px -8px 12px rgba(14,165,233,.25);
}
.bubble-1 { width: 90px;  height: 90px;  top: 8%;  left: -2%; }
.bubble-2 { width: 56px;  height: 56px;  top: 55%; left: 88%; animation-delay: -2s; }
.bubble-3 { width: 70px;  height: 70px;  bottom: 6%; left: 10%; animation-delay: -4s; }
.bubble-4 { width: 38px;  height: 38px;  top: 30%; left: 90%; animation-delay: -3s; }
.bubble-5 { width: 110px; height: 110px; top: -4%; left: 70%; animation-delay: -5s; opacity: .55; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-22px) translateX(10px); }
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,.4) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
  z-index: 3;
}
.sparkle::before, .sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, #fff 50%, transparent 55%);
}
.sparkle::after { transform: rotate(90deg); }
.sparkle-1 { top: 18%; left: 12%; }
.sparkle-2 { top: 30%; right: 8%; animation-delay: -1s; }
.sparkle-3 { bottom: 22%; left: 8%; animation-delay: -2s; }
@keyframes sparkle {
  0%, 100% { transform: scale(.6); opacity: .4; }
  50%      { transform: scale(1.2); opacity: 1; }
}

/* ============ SECTIONS ============ */
.section {
  padding: 90px 0;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.85); }
.section-accent {
  background: linear-gradient(135deg, var(--accent-soft), #ecfdf5);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head-light .eyebrow {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1200px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .25s;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(14,165,233,.12), transparent 40%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
}
.service-card-highlight h3 { color: #fff; }
.service-card-highlight p { color: rgba(255,255,255,.9); }
.service-card-highlight .service-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.service-card-highlight .service-list li::before { color: var(--accent); }

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.service-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: .95rem;
  color: inherit;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}
.service-card-highlight .service-list li { color: rgba(255,255,255,.95); }

.service-card-cta {
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border-color: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta .btn { align-self: flex-start; margin-top: 12px; }

/* ============ STATS ============ */
.stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  flex: 1;
  min-width: 140px;
}
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat span { font-size: .9rem; color: var(--muted); }

.quote-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
}
.quote-card::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  color: rgba(255,255,255,.2);
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-card blockquote {
  margin: 0 0 16px;
  font-size: 1.25rem;
  line-height: 1.5;
  position: relative;
}
.quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: .95rem;
  opacity: .8;
}

/* ============ STEPS ============ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .95rem; margin: 0; }

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: rgba(255,255,255,.08);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.feature-icon {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 12px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .95rem; margin: 0; }

/* ============ BENEFITS (Karriere) ============ */
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.benefits li {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.benefits strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.benefits span { font-size: .92rem; color: var(--text-soft); }

/* ============ CONTACT ============ */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .98rem;
}
.contact-list li > span:first-child {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 2px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block;
  margin-bottom: 14px;
}
.contact-form label > span {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-alt);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, .15);
  background: #fff;
}
.checkbox {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text-soft);
  cursor: pointer;
}
.checkbox input { width: auto !important; margin-top: 4px; }
.form-note {
  margin: 14px 0 0;
  font-size: .9rem;
  text-align: center;
}
.form-note.ok { color: var(--success); }
.form-note.err { color: #dc2626; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  padding: 64px 0 24px;
  font-size: .95rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: .85rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.site-footer a {
  color: rgba(255,255,255,.7);
}
.site-footer a:hover { color: var(--accent); }
.logo-footer,
.logo-footer .logo-text { color: #fff; }
.logo-footer strong { color: var(--accent-2); }
.site-footer p { color: rgba(255,255,255,.85); }
.site-footer em { color: var(--accent-2); font-style: italic; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ RESPONSIVE ============ */

/* === Tablet & schmale Desktops: Hamburger-Nav === */
@media (max-width: 1024px) {
  .header-inner { padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .primary-nav a:last-child { border-bottom: 0; }

  /* Hero stackt: Logo oben, Text unten */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: auto; order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .logo-stage { max-width: 360px; margin: 0 auto; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .hero-content { text-align: left; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === Mobile === */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
  .hero-visual { max-width: 320px; }
  .logo-stage { max-width: 280px; }
  .header-cta {
    padding: 9px 14px;
    font-size: .9rem;
  }
  .header-cta span[aria-hidden] { display: inline; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 18px; }
  .hero-trust strong { font-size: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 12px; }
  .stat { padding: 14px 18px; }
  .stat strong { font-size: 1.5rem; }
  .quote-card { padding: 32px 24px; }
  .quote-card blockquote { font-size: 1.1rem; }
  .contact-form { padding: 22px; }
  .section-head { margin-bottom: 36px; }
  .service-card { padding: 26px 22px; }
  .step { padding: 24px 20px; }
  .container { padding: 0 18px; }
  .logo-img { height: 36px; }
  .logo-text { font-size: 1.1rem; }
}

/* === Sehr kleine Geräte === */
@media (max-width: 380px) {
  .header-cta span[aria-hidden] { display: none; }
  .header-cta { padding: 9px 12px; }
  .logo-text { display: none; }
  h1 { font-size: 1.7rem; }
  .hero-slogan { font-size: 1.3rem; }
}

/* ============ SCROLL REVEAL & EXTRAS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Animierter Wellenstreifen unten am Hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,60 400,0 600,30 C800,60 1000,0 1200,30 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom/cover;
  pointer-events: none;
}

/* Step / Feature 3D-Hover */
.step, .feature {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  transform-style: preserve-3d;
}
.step:hover {
  transform: translateY(-8px) rotateX(3deg);
  box-shadow: var(--shadow-lg);
}
.feature:hover {
  transform: translateY(-6px) rotateY(-3deg);
  background: rgba(255,255,255,.14);
}

/* Logo im Header */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* ============ MOTION REDUCED ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
