/* ═══════════════════════════════════════════════
   V1 — FairPlane × Fairtrag Design Language
   Warm · Airy · Trust-first · Rounded · Light
   ═══════════════════════════════════════════════ */

:root {
  --fp-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --fp-bg: #F7F7F5;
  --fp-surface: #EEEEE9;
  --fp-white: #ffffff;
  --fp-black: #111111;
  --fp-muted: #4a4a4a;
  --fp-subtle: #767676;
  --fp-accent: #e32055;
  --fp-accent-dark: #c8194a;
  --fp-accent-soft: rgba(227,32,85,.06);
  --fp-border: rgba(17,17,17,.06);
  --fp-radius: 0.375rem;
  --fp-radius-lg: 0.5rem;
  --fp-radius-xl: 0.5rem;
  --fp-radius-pill: 9999px;
  --fp-ease: cubic-bezier(.4,0,.2,1);
  --fp-max-w: 1200px;
  --fp-gutter: 1.25rem;
  --fp-section: 5rem;
}

@media (min-width: 768px) { :root { --fp-gutter: 2rem; --fp-section: 6rem; } }
@media (min-width: 1024px) { :root { --fp-gutter: 2.5rem; } }

body[data-variant="v1"] {
  font-family: var(--fp-font);
  background: var(--fp-bg);
  color: var(--fp-black);
  -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.v1-container {
  max-width: var(--fp-max-w);
  margin-inline: auto;
  padding-inline: var(--fp-gutter);
}
.v1-container--narrow { max-width: 720px; }

/* ── Section System ── */
.v1-section-kicker {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fp-muted);
  margin-bottom: .75rem;
  text-align: center;
}
.v1-section-kicker--light { color: rgba(255,255,255,.7); }
.v1-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 3rem;
}
.v1-section-title--light { color: #fff; }
.v1-section-title em, h2 em {
  font-style: italic;
  font-weight: 400;
}

/* ════════════════════════
   HERO VIEWPORT
   ════════════════════════ */
.v1-viewport {
  display: flex;
  flex-direction: column;
}

.v1-hero {
  position: relative;
  margin: .75rem;
  border-radius: var(--fp-radius-xl);
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .v1-hero { border-radius: 0.5rem; min-height: 90vh; min-height: 90dvh; }
}

.v1-hero__media { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; }
.v1-hero__bg {
  width: 100%; height: 120%;
  object-fit: cover;
  transform: translateY(-10%);
}
.v1-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.35), transparent);
}

/* Nav */
.v1-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--fp-gutter);
  position: relative;
  z-index: 10;
}
.v1-logo { display: flex; transition: opacity .2s; }
.v1-logo:hover { opacity: .7; }
.v1-logo img { height: 24px; width: auto; }

.v1-nav__tp {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--fp-black);
  text-decoration: none;
  padding: .375rem .875rem;
  border-radius: var(--fp-radius-pill);
  background: var(--fp-white);
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  transition: all .2s;
}
.v1-nav__tp:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.v1-nav__stars { color: #00b67a; font-size: .625rem; letter-spacing: .5px; }

/* Hero Grid */
.v1-hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  padding: 0 var(--fp-gutter) 2.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .v1-hero__grid {
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: end;
    padding: 0 3rem 3rem;
  }
}

/* Hero Content */
.v1-hero__content { }
.v1-kicker {
  display: inline-block;
  color: var(--fp-accent);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.v1-hero__content h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 1.25rem;
}
.v1-hero__content h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--fp-accent);
}
.v1-hero__desc {
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 30rem;
}

/* ════════════════════════
   MARQUEE
   ════════════════════════ */
.v1-marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  background: var(--fp-bg);
  border-bottom: 1px solid var(--fp-border);
  position: relative;
}
.v1-marquee::before, .v1-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 4rem;
  z-index: 2; pointer-events: none;
}
.v1-marquee::before { left: 0; background: linear-gradient(to right, var(--fp-bg), transparent); }
.v1-marquee::after { right: 0; background: linear-gradient(to left, var(--fp-bg), transparent); }

.v1-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.v1-marquee:hover .v1-marquee__track { animation-play-state: paused; }

.v1-marquee__set {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}
.v1-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--fp-muted);
  white-space: nowrap;
}
.v1-marquee__item svg { color: var(--fp-black); opacity: .3; flex-shrink: 0; }
.v1-marquee__dot { color: rgba(17,17,17,.12); font-size: 1rem; }

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

/* ════════════════════════
   FORM (inside hero)
   ════════════════════════ */
#fp-form {
  scroll-margin-top: 140px;
}

.v1-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.v1-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--fp-black);
  padding: .375rem .875rem .375rem .625rem;
  background: rgba(17,17,17,.04);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--fp-radius-pill);
}
.v1-badge svg { color: var(--fp-accent); flex-shrink: 0; }

/* Card */
.v1-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04);
  overflow: visible;
}
@media (min-width: 768px) { .v1-card { padding: 2.5rem; } }

.v1-card__legal {
  text-align: center;
  font-size: .6875rem;
  color: var(--fp-subtle);
  margin-top: .75rem;
}

/* Form */
.v1-field { margin-bottom: .75rem; position: relative; }
.v1-field:last-of-type { margin-bottom: 1.25rem; }
.v1-label {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--fp-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .375rem;
}
.v1-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background: var(--fp-bg);
  border: 1px solid var(--fp-border);
  border-radius: .75rem;
  font-family: var(--fp-font);
  font-size: .875rem;
  font-weight: 500;
  color: var(--fp-black);
  transition: all .2s var(--fp-ease);
}
.v1-input::placeholder { color: var(--fp-subtle); font-weight: 400; }
.v1-input:focus {
  outline: none;
  border-color: var(--fp-accent);
  background: var(--fp-white);
  box-shadow: 0 0 0 3px rgba(227,32,85,.08);
}

/* CTA */
.v1-cta {
  width: 100%;
  height: 3.25rem;
  border: none;
  border-radius: var(--fp-radius-pill);
  background: var(--fp-accent);
  color: #fff;
  font-family: var(--fp-font);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: all .25s var(--fp-ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(227,32,85,.25);
}
.v1-cta:hover {
  background: #f03068;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,32,85,.35);
}
.v1-cta__icon {
  font-size: 1.125rem;
  transition: transform .2s;
}
.v1-cta:hover .v1-cta__icon { transform: translateX(3px); }

.v1-cta--loading .v1-cta__text,
.v1-cta--loading .v1-cta__icon { opacity: 0; }
.v1-cta--loading .v1-cta__spinner { display: block; }
.v1-cta__spinner {
  display: none;
  position: absolute;
  inset: 0; margin: auto;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════
   STATS
   ════════════════════════ */
.v1-stats {
  padding: var(--fp-section) 0;
}
.v1-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .v1-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .v1-stat:not(:last-child) {
    border-right: 1px solid var(--fp-border);
    padding-right: 2.5rem;
  }
}
.v1-stat__value {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .25rem;
}
.v1-stat__label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fp-muted);
}

/* ════════════════════════
   STEPS (Awwwards Modern UX)
   ════════════════════════ */
.v1-steps-section {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(227, 32, 85, 0.03) 0%, transparent 70%);
  border-top: 1px solid var(--fp-border);
  position: relative;
  overflow: hidden;
}

.v1-steps__header {
  text-align: center;
  margin-bottom: 5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--fp-primary), #ff6b8b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

/* Grid layout */
.v1-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .v1-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Background Animated Line (Desktop only) */
.v1-steps__line {
  display: none;
}
@media (min-width: 768px) {
  .v1-steps__line {
    display: block;
    position: absolute;
    top: 3.5rem; /* center of icons */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fp-border) 10%, var(--fp-border) 90%, transparent);
    z-index: 0;
  }
  .v1-steps__line-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--fp-primary), #ff6b8b);
    animation: flowLine 3s ease-in-out infinite alternate;
  }
}
@keyframes flowLine {
  0% { width: 0%; opacity: 0; }
  50% { opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

/* Step Card (Glassmorphism) */
.v1-step {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
a.v1-step {
  cursor: pointer;
}

.v1-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(227, 32, 85, 0.1);
}

.v1-step__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.v1-step__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.v1-step:hover .v1-step__icon {
  color: var(--fp-primary);
  border-color: rgba(227, 32, 85, 0.2);
  transform: scale(1.05);
}

/* Subtle glow inside icon on hover */
.v1-step__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(227,32,85,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.v1-step:hover .v1-step__icon::after {
  opacity: 1;
}

.v1-step__num {
  margin-left: auto;
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.08);
  font-variant-numeric: tabular-nums;
  transition: all 0.4s ease;
  line-height: 1;
  user-select: none;
}
.v1-step:hover .v1-step__num {
  -webkit-text-stroke: 1px rgba(227, 32, 85, 0.2);
  transform: translateX(-4px);
}

.v1-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.v1-step__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fp-muted);
  margin: 0;
}

/* Accent Card (Step 3) */
.v1-step--accent {
  background: var(--fp-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--fp-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.v1-step--accent:hover {
  background: #232935;
  border-color: rgba(227, 32, 85, 0.3);
  box-shadow: 0 16px 40px rgba(227, 32, 85, 0.15);
}
.v1-step--accent .v1-step__title,
.v1-step--accent .v1-step__desc {
  color: var(--fp-white);
}
.v1-step--accent .v1-step__desc {
  opacity: 0.8;
}
.v1-step--accent .v1-step__icon {
  background: var(--fp-primary);
  border-color: var(--fp-primary);
  color: var(--fp-white);
}
.v1-step--accent:hover .v1-step__icon {
  color: var(--fp-white);
  background: #f03068;
  transform: scale(1.05);
}
.v1-step--accent .v1-step__num {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}
.v1-step--accent:hover .v1-step__num {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

/* Guarantee Badge tweak */
.v1-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  margin-top: 4rem;
  padding: .75rem 1.5rem;
  background: var(--fp-white);
  border: 1px solid transparent;
  border-radius: var(--fp-radius-pill);
  width: fit-content;
  margin-inline: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v1-guarantee:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227,32,85,0.08);
}
.v1-guarantee__icon {
  color: var(--fp-accent);
  flex-shrink: 0;
}
.v1-guarantee__text {
  font-size: .875rem;
  color: var(--fp-muted);
  line-height: 1.4;
}
.v1-guarantee__text strong {
  color: var(--fp-black);
  font-weight: 700;
}

/* ════════════════════════
   REVIEWS
   ════════════════════════ */
.v1-reviews-section {
  padding: var(--fp-section) 0;
  border-top: 1px solid var(--fp-border);
  text-align: center;
}
.v1-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .v1-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.v1-review {
  background: var(--fp-white);
  border-radius: var(--fp-radius);
  padding: 2rem;
  transition: all .3s var(--fp-ease);
}
.v1-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.v1-review__stars { color: #00b67a; font-size: .75rem; letter-spacing: 1px; margin-bottom: .75rem; }
.v1-review p {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--fp-muted);
  margin: 0 0 1rem;
  font-style: italic;
}
.v1-review cite {
  font-size: .75rem;
  font-weight: 700;
  font-style: normal;
  color: var(--fp-black);
}

.v1-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 2rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--fp-accent-dark);
  text-decoration: none;
  transition: gap .2s;
}
.v1-link-arrow:hover { gap: .75rem; }

/* ════════════════════════
   COMPENSATION
   ════════════════════════ */
.v1-comp-section {
  padding: var(--fp-section) 0;
  background: var(--fp-black);
  color: #fff;
}
.v1-comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .v1-comp-grid { grid-template-columns: repeat(3, 1fr); }
}
.v1-comp-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--fp-radius);
  transition: all .3s var(--fp-ease);
}
.v1-comp-card:hover {
  border-color: rgba(255,255,255,.15);
  transform: translateY(-3px);
}
.v1-comp-card--accent {
  border-color: var(--fp-accent);
  background: rgba(227,32,85,.1);
}
.v1-comp-card__amount {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .25rem;
}
.v1-comp-card--accent .v1-comp-card__amount { color: var(--fp-accent); }
.v1-comp-card__route {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.v1-comp-card__km {
  display: block;
  font-size: .6875rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.v1-comp-note {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: 1.5rem;
}

/* ════════════════════════
   FAQ
   ════════════════════════ */
.v1-faq-section {
  padding: var(--fp-section) 0;
  border-top: 1px solid var(--fp-border);
}
.v1-faq {
  border-bottom: 1px solid var(--fp-border);
}
.v1-faq:first-of-type { border-top: 1px solid var(--fp-border); }
.v1-faq summary {
  padding: 1.25rem 0;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .15s;
}
.v1-faq summary::-webkit-details-marker { display: none; }
.v1-faq summary::marker { content: ''; }
.v1-faq summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--fp-subtle);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.v1-faq[open] summary::after { transform: rotate(45deg); }
.v1-faq summary:hover { color: var(--fp-accent); }
.v1-faq__body {
  padding: 0 0 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--fp-muted);
}
.v1-faq__body p { margin: 0; }
.v1-faq__body strong { color: var(--fp-black); }

/* ════════════════════════
   FINAL CTA
   ════════════════════════ */
.v1-final {
  text-align: center;
  padding: var(--fp-section) 0;
  background: var(--fp-surface);
  border-radius: var(--fp-radius-xl) var(--fp-radius-xl) 0 0;
}
.v1-final h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 .75rem;
}
.v1-final p {
  font-size: .9375rem;
  color: var(--fp-muted);
  margin: 0 0 2rem;
}
.v1-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  background: var(--fp-black);
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: var(--fp-radius-pill);
  text-decoration: none;
  transition: all .25s var(--fp-ease);
}
.v1-cta-pill:hover {
  background: var(--fp-muted);
  transform: translateY(-2px);
}
.v1-cta-pill__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--fp-accent);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform .2s;
}
.v1-cta-pill:hover .v1-cta-pill__icon { transform: scale(1.1); }

/* ════════════════════════
   FOOTER
   ════════════════════════ */
.v1-footer {
  text-align: center;
  padding: 2rem 0 3rem;
  background: var(--fp-surface);
}
.v1-footer__logo {
  height: 20px; width: auto;
  opacity: .2;
  margin-bottom: .75rem;
}
.v1-footer p {
  font-size: .6875rem;
  color: var(--fp-muted);
  line-height: 1.6;
}
.v1-footer a {
  color: var(--fp-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.v1-footer a:hover { color: var(--fp-accent); }

/* ════════════════════════
   REDUCED MOTION
   ════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
