/* ============================================================
   JKHD — jkhd.de
   Institutionelles Design-System: helles Editorial + dunkle Bänder
   ============================================================ */

:root {
  --bg: #f7f6f3;
  --bg-elev: #efede7;
  --bg-card: #fdfcfa;
  --ink: #101012;
  --muted: #605f5b;
  --border: #e2dfd8;
  --border-strong: #a9a69e;

  --dark-bg: #0b0b0c;
  --dark-elev: #121214;
  --dark-text: #f4f2ee;
  --dark-muted: #9d9d99;
  --dark-border: #242426;

  --serif: "Playfair Display", "Palatino Linotype", Georgia, serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --mono: "Cascadia Code", Consolas, monospace;
  --radius: 2px;
  --header-h: 74px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { opacity: 0.7; }

::selection { background: var(--ink); color: var(--bg); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.002em; text-wrap: balance; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 24px;
  z-index: 300;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-size: 0.85rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---------- Dunkle Bänder ---------- */

.band-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}
.band-dark a { color: var(--dark-text); }
.band-dark ::selection { background: var(--dark-text); color: var(--dark-bg); }

/* ---------- Markenzeichen ---------- */

.mark-watermark { position: absolute; pointer-events: none; z-index: 0; }
.mark-watermark svg { width: 100%; height: 100%; fill: #ffffff; opacity: 0.05; }

/* ---------- Daten-Tape (Canvas im dunklen Hero) ---------- */

.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 246, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 6px 30px rgba(16, 16, 18, 0.06); }

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand svg { width: 28px; height: 28px; fill: var(--ink); flex-shrink: 0; }
.brand-word {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  color: var(--ink);
  transform: translateX(0.18em);
}

.site-nav { display: flex; gap: 34px; }

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}

.site-nav a:hover { color: var(--ink); opacity: 1; }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--ink); }
.site-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.15rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

/* ---------- Hero (dunkles Band) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(92vh - var(--header-h)));
}

.hero .mark-watermark { top: 2%; right: -4%; height: 96%; aspect-ratio: 1; }

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}

.kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
  flex-shrink: 0;
}

.band-dark .kicker { color: var(--dark-muted); }

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  line-height: 1.14;
  max-width: 900px;
}

.hero h1 em { font-style: italic; }

.hero-sub {
  margin-top: 28px;
  font-size: 1.14rem;
  color: var(--dark-muted);
  max-width: 640px;
}

.hero-actions { margin-top: 46px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-status {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark-text);
  flex-shrink: 0;
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner > * {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.9s var(--ease) forwards;
  }
  .hero-inner > *:nth-child(2) { animation-delay: 0.1s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.2s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.3s; }
  .hero-inner > *:nth-child(5) { animation-delay: 0.42s; }
}

@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- Sektionen ---------- */

.section { padding: 116px 0; }

.section-alt { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 700px; margin-bottom: 60px; }

.section h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }

.section-head p { margin-top: 16px; color: var(--muted); }
.section-head .kicker { margin-bottom: 18px; }

.section-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--border-strong);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16, 16, 18, 0.18); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); opacity: 1; transform: translateY(-2px); }

.band-dark .btn-primary { background: var(--dark-text); color: var(--dark-bg); }
.band-dark .btn-primary:hover { box-shadow: 0 10px 36px rgba(255, 255, 255, 0.15); }
.band-dark .btn-ghost { color: var(--dark-text); border-color: rgba(244, 242, 238, 0.35); }
.band-dark .btn-ghost:hover { border-color: var(--dark-text); }

/* ---------- Kennzahlen ---------- */

.stat-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-card); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat {
  padding: 46px 36px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat:first-child { border-left: none; }

.stat-value { font-family: var(--serif); font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--ink); }
.stat-label {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Karten ---------- */

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 16, 18, 0.08);
}

.card-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.card-num::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--ink), transparent);
  margin-top: 14px;
  transition: width 0.4s var(--ease);
}

.card:hover .card-num::after { width: 72px; }

.card h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.card p { color: var(--muted); font-size: 0.96rem; }

.card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 3px;
}

/* ---------- Pipeline / Prozess ---------- */

.pipeline { border-bottom: 1px solid var(--border); }

.pipeline-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--border);
}

.step-num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--ink); opacity: 0.9; line-height: 1; padding-top: 4px; }

.pipeline-step h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pipeline-step p { color: var(--muted); max-width: 780px; }
.pipeline-step .check-list { margin-top: 16px; }

/* ---------- Timeline ---------- */

.timeline { position: relative; max-width: 780px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }

.timeline-item { position: relative; padding: 0 0 44px 48px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg);
}

.timeline-item.milestone::before { background: var(--ink); border-color: var(--ink); }

.timeline-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.timeline-item h3 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-item p { color: var(--muted); }

/* ---------- Listen ---------- */

.check-list { list-style: none; margin-top: 22px; }

.check-list li { padding-left: 30px; position: relative; margin-bottom: 13px; color: var(--muted); }
.check-list li::before { content: "—"; color: var(--ink); position: absolute; left: 0; }
.check-list strong { color: var(--ink); }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }

/* ---------- Vergleich ---------- */

.compare { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); }

.compare-head { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-elev); border-bottom: 1px solid var(--border); }

.compare-head span {
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-head span:last-child { color: var(--ink); border-left: 1px solid var(--border); }

.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--border); }

.compare-cell { padding: 22px 28px; font-size: 0.95rem; }
.compare-cell::before { content: attr(data-label); display: none; }
.compare-them { color: var(--muted); }
.compare-us { color: var(--ink); border-left: 1px solid var(--border); }

/* ---------- Zitat ---------- */

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.45;
  color: var(--ink);
  border-left: 2px solid var(--ink);
  padding-left: 30px;
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.band-dark .pull-quote { color: var(--dark-text); border-left-color: var(--dark-text); }
.band-dark .pull-quote cite { color: var(--dark-muted); }

/* ---------- Gründer / Porträt ---------- */

.founder-figure { max-width: 400px; }

.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portrait svg { width: 84px; fill: #ffffff; opacity: 0.16; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.portrait-note {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

.founder-meta {
  border: 1px solid var(--border);
  border-top: none;
  background: var(--bg-card);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.founder-role {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Seiten-Header (Unterseiten, hell) ---------- */

.page-head {
  position: relative;
  overflow: hidden;
  padding: 104px 0 72px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-head h1 em { font-style: italic; }
.page-head p { margin-top: 16px; color: var(--muted); max-width: 660px; font-size: 1.1rem; }

@media (prefers-reduced-motion: no-preference) {
  .page-head .container > * {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.85s var(--ease) forwards;
  }
  .page-head .container > *:nth-child(2) { animation-delay: 0.1s; }
  .page-head .container > *:nth-child(3) { animation-delay: 0.2s; }
}

/* ---------- Kontakt ---------- */

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 620px;
}

.contact-box .contact-mail {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin: 20px 0 14px;
  border-bottom: 1px solid var(--border-strong);
}

.note {
  border-left: 2px solid var(--ink);
  background: var(--bg-elev);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 26px;
}

.note a { border-bottom: 1px solid var(--border-strong); }

/* ---------- Fließtext ---------- */

.prose { max-width: 740px; }
.prose h2 { font-size: 1.45rem; margin: 40px 0 14px; }
.prose p { color: var(--muted); margin-bottom: 14px; }

/* ---------- CTA-Band (dunkel) ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 104px 24px;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='white'%3E%3Crect x='10' y='22' width='20' height='56'/%3E%3Crect x='40' y='8' width='20' height='84'/%3E%3Crect x='70' y='22' width='20' height='56'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}

.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin-bottom: 16px; }
.cta-band p { color: var(--dark-muted); margin-bottom: 40px; }
.cta-band .btn { margin: 0 8px 12px; }

/* ---------- Footer (dunkel) ---------- */

.site-footer { border-top: 1px solid var(--dark-border); padding: 76px 0 0; }

.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }

.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand svg { fill: var(--dark-text); width: 24px; height: 24px; }
.footer-brand .brand-word { color: var(--dark-text); font-size: 0.85rem; }
.footer-brand p { color: var(--dark-muted); font-size: 0.92rem; max-width: 340px; }

.footer-col-title {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.footer-nav, .footer-contact { display: flex; flex-direction: column; }
.footer-nav a, .footer-contact a { color: var(--dark-muted); font-size: 0.92rem; padding: 5px 0; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--dark-text); opacity: 1; }

.footer-word {
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  letter-spacing: 0.3em;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  padding-bottom: 48px;
  transform: translateX(0.15em);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { color: var(--dark-muted); font-size: 0.78rem; letter-spacing: 0.06em; }

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: var(--dark-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--dark-text); opacity: 1; }

/* ---------- Scroll-Reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .pipeline-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--border); }
  .stat:nth-child(-n+2) { border-top: none; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .compare-head { display: none; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-us { border-left: none; border-top: 1px dashed var(--border); }
  .compare-cell::before {
    display: block;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 6px;
  }

  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px 20px;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .site-nav a::after { display: none; }

  .section { padding: 76px 0; }
}

/* ---------- Handy-Feinschliff ---------- */

@media (max-width: 560px) {
  .container { padding: 0 22px; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 44px; }

  .hero-inner { padding-top: 84px; padding-bottom: 84px; }

  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }

  .cta-band { padding: 76px 22px; }
  .cta-band .btn { display: flex; width: 100%; margin: 0 0 12px; }

  .hero-status {
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-top: 38px;
  }

  .card { padding: 30px 24px; }

  .stat { padding: 28px 22px; }
  .stat-value { font-size: 1.9rem; }

  .pipeline-step { grid-template-columns: 46px 1fr; gap: 16px; padding: 30px 0; }
  .step-num { font-size: 1.3rem; }

  .timeline-item { padding: 0 0 36px 40px; }

  .compare-cell { padding: 18px 20px; }

  .pull-quote { padding-left: 20px; }

  .contact-box { padding: 30px 24px; }

  .founder-figure { max-width: none; }

  .footer-top { padding-bottom: 40px; }
  .site-footer { padding-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
