:root {
  --primary: #0F4C81;
  --secondary: #17A2B8;
  --accent: #00BFA6;
  --dark: #0B1E33;
  --light: #F7FAFC;
  --text: #1E293B;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.9rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  border-radius: 0.35rem;
}

.dashboard-nav-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  color: #475569;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dashboard-nav-link:hover,
.dashboard-nav-link.active {
  background: rgba(15, 76, 129, 0.09);
  color: var(--primary);
  transform: translateX(2px);
}

.dashboard-nav-link svg {
  height: 1.12rem;
  width: 1.12rem;
  flex: 0 0 auto;
}

.dashboard-sidebar.mobile-open {
  transform: translateX(0);
}

.dashboard-sidebar nav {
  max-height: calc(100vh - 14rem);
  overflow-y: auto;
  padding-right: 0.15rem;
}

@media (min-width: 1024px) {
  .sidebar-collapsed .dashboard-sidebar {
    width: 5.6rem;
  }

  .sidebar-collapsed .dashboard-sidebar .sidebar-label,
  .sidebar-collapsed .dashboard-sidebar .rounded-xl:not(.brand-mark) {
    display: none;
  }

  .sidebar-collapsed .dashboard-nav-link {
    justify-content: center;
    padding-inline: 0.75rem;
  }
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.15);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  transition: background-color 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.scrolled {
  border-color: rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 46px rgba(11, 30, 51, 0.12);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  height: 2.8rem;
  min-width: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.22);
}

.footer-mark {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.menu-button {
  display: inline-flex;
  height: 2.7rem;
  width: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 0.9rem;
  color: var(--primary);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.16);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -0.42rem;
}

.menu-icon::after {
  position: absolute;
  top: 0.42rem;
}

.nav-link,
.mobile-nav-link {
  position: relative;
  border-radius: 0.6rem;
  color: #334155;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link {
  padding: 0.65rem 0.78rem;
}

.nav-link::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.35rem;
  left: 0.78rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  content: "";
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-nav-link {
  padding: 0.85rem 0.95rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
}

.nav-quote,
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 0.85rem;
  padding: 0.68rem 1rem;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.nav-quote {
  margin-left: 0.45rem;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 16px 34px rgba(11, 30, 51, 0.18);
}

.nav-quote:hover,
.nav-login:hover {
  transform: translateY(-2px);
}

.nav-login {
  border: 1px solid rgba(15, 76, 129, 0.22);
  color: var(--primary);
}

.nav-quote svg,
.btn-primary svg,
.btn-secondary svg,
.btn-track svg {
  height: 1rem;
  width: 1rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(11, 30, 51, 0.96), rgba(15, 76, 129, 0.88) 52%, rgba(23, 162, 184, 0.7)),
    url("../images/hero-truck.svg") center / cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  animation: float 7s ease-in-out infinite;
}

.shape-one {
  top: 12%;
  right: 10%;
  height: 8rem;
  width: 8rem;
}

.shape-two {
  bottom: 12%;
  left: 5%;
  height: 5.5rem;
  width: 15rem;
  animation-delay: 1.8s;
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 360ms ease;
}

.hero-visual:hover {
  transform: translateY(-8px) scale(1.01);
}

.hero-visual img {
  width: 100%;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
}

.hero-panel {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  background: rgba(11, 30, 51, 0.82);
  padding: 0.9rem 1rem;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-panel p {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-panel strong {
  display: block;
  font-size: 0.95rem;
}

.panel-dot {
  height: 0.72rem;
  width: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(0, 191, 166, 0.15);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.85rem;
  backdrop-filter: blur(14px);
}

.trust-chip svg {
  height: 1rem;
  width: 1rem;
  color: #67e8f9;
}

.btn-primary,
.btn-secondary,
.btn-track {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.9rem;
  padding: 0.9rem 1.2rem;
  font-weight: 850;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn-primary {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 76, 129, 0.24);
}

.btn-light {
  background: linear-gradient(135deg, #fff, #dff7fb);
  color: var(--dark);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(15, 76, 129, 0.22);
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary);
}

.btn-ghost,
.btn-track {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-track:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 62px rgba(15, 76, 129, 0.26);
}

.section {
  margin-inline: auto;
  max-width: 80rem;
  padding: 5.5rem 1rem;
}

.section-band {
  max-width: none;
  background:
    radial-gradient(circle at top right, rgba(23, 162, 184, 0.12), transparent 30rem),
    linear-gradient(180deg, #fff, #f6fbfd);
}

.section-band > * {
  max-width: 80rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .section {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-inline: 2rem;
  }
}

.section-heading {
  margin: 0 auto 2.8rem;
  max-width: 52rem;
  text-align: center;
}

.section-heading h2,
.section-title {
  color: var(--dark);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-heading p:last-child {
  margin-top: 1rem;
  color: #64748b;
  line-height: 1.75;
}

.eyebrow {
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.glass-card,
.feature-card,
.service-card,
.fleet-card,
.testimonial,
.logo-placeholder,
.industry-pill,
.form-shell {
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(15, 76, 129, 0.1);
  backdrop-filter: blur(16px);
}

.feature-card,
.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.feature-card::before,
.service-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  content: "";
}

.feature-card:hover,
.service-card:hover,
.fleet-card:hover,
.fleet-preview-card:hover,
.logo-placeholder:hover,
.industry-pill:hover {
  border-color: rgba(0, 191, 166, 0.46);
  box-shadow: 0 26px 70px rgba(15, 76, 129, 0.18), 0 0 34px rgba(0, 191, 166, 0.12);
  transform: translateY(-7px) scale(1.02);
}

.feature-card > svg,
.service-card > svg,
.premium-service > svg {
  height: 2.4rem;
  width: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.14), rgba(0, 191, 166, 0.14));
  color: var(--primary);
  padding: 0.55rem;
}

.feature-card h3,
.service-card h2,
.service-card h3,
.fleet-card h2,
.fleet-preview-card h3 {
  color: var(--dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.feature-card p,
.service-card p,
.fleet-card p {
  margin-top: 0.72rem;
  color: #64748b;
  line-height: 1.7;
}

.premium-stat {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.88);
  color: var(--dark);
  box-shadow: 0 20px 60px rgba(11, 30, 51, 0.12);
}

.stat-card {
  border-radius: 1rem;
  padding: 1.45rem;
  text-align: center;
}

.stat-card svg {
  height: 2.2rem;
  width: 2.2rem;
  margin: 0 auto 0.8rem;
  color: var(--accent);
}

.stat-card strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 950;
  line-height: 1;
}

.stat-card span {
  margin-top: 0.55rem;
  display: block;
  color: #64748b;
  font-weight: 700;
}

.stat-card strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-weight: inherit;
}

.stats-ribbon {
  background: linear-gradient(135deg, var(--dark), var(--primary));
}

.stats-ribbon .stat-card {
  background: rgba(255, 255, 255, 0.09);
}

.stats-ribbon .stat-card span {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(23, 162, 184, 0.16), transparent 24rem),
    linear-gradient(135deg, #fff 0%, #eef7fb 100%);
  padding: 6rem 1rem 5rem;
  text-align: center;
}

.page-hero::after {
  position: absolute;
  right: -6rem;
  bottom: -5rem;
  height: 15rem;
  width: 24rem;
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  transform: rotate(-8deg);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 1rem auto 0;
  max-width: 58rem;
  color: var(--dark);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 950;
  line-height: 1.06;
}

.page-hero p:last-child {
  position: relative;
  z-index: 1;
  margin: 1.4rem auto 0;
  max-width: 45rem;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.8;
}

.fleet-preview-card,
.fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 76, 129, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.fleet-preview-card img,
.fleet-card img {
  width: 100%;
  background: linear-gradient(135deg, #f8fafc, #eaf6f9);
  transition: transform 360ms ease;
}

.fleet-preview-card {
  min-height: 18rem;
}

.fleet-preview-card img {
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  padding: 1rem;
}

.fleet-preview-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(11, 30, 51, 0.86));
  content: "";
}

.fleet-preview-card div {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  color: #fff;
}

.fleet-preview-card span,
.capacity-badge,
.fleet-type {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.16);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.38rem 0.68rem;
}

.fleet-preview-card h3 {
  margin-top: 0.65rem;
  color: #fff;
}

.fleet-preview-card:hover img,
.fleet-card:hover img {
  transform: scale(1.07);
}

.fleet-image-wrap {
  position: relative;
  overflow: hidden;
}

.fleet-card img {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid #e2e8f0;
  object-fit: cover;
  padding: 1rem;
}

.capacity-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 30, 51, 0.82);
  color: #fff;
  backdrop-filter: blur(12px);
}

.fleet-card div:last-child {
  padding: 1.4rem;
}

.fleet-type {
  margin-bottom: 0.8rem;
  background: rgba(23, 162, 184, 0.12);
  color: var(--primary);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.testimonial-track {
  position: relative;
  min-height: 17rem;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 2rem;
  text-align: center;
  color: #475569;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial p {
  max-width: 44rem;
  font-size: 1.05rem;
}

.testimonial span {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 900;
}

.avatar {
  margin-bottom: 1rem;
  display: inline-flex;
  height: 3.4rem;
  width: 3.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
}

.carousel-btn {
  display: inline-flex;
  height: 2.8rem;
  width: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.carousel-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 48px rgba(15, 76, 129, 0.16);
}

.logo-placeholder,
.industry-pill {
  display: flex;
  min-height: 6.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  text-align: center;
  color: #64748b;
  filter: grayscale(1);
  font-weight: 900;
  transition: transform 260ms ease, filter 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.logo-placeholder:hover,
.industry-pill:hover {
  color: var(--primary);
  filter: grayscale(0);
}

.logo-placeholder svg,
.industry-pill svg {
  height: 1.4rem;
  width: 1.4rem;
  color: var(--secondary);
}

.industry-pill {
  min-height: 4.9rem;
}

.mini-metric {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 14px 36px rgba(15, 76, 129, 0.08);
}

.mini-metric strong {
  display: block;
  color: var(--dark);
  font-size: 1.55rem;
  font-weight: 950;
}

.mini-metric span {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 166, 0.18), transparent 16rem),
    linear-gradient(135deg, var(--dark), var(--primary));
  padding: 2rem;
  color: #fff;
  box-shadow: 0 26px 70px rgba(11, 30, 51, 0.22);
}

.contact-line {
  display: flex;
  gap: 0.85rem;
}

.contact-line svg {
  margin-top: 0.25rem;
  height: 1.1rem;
  width: 1.1rem;
  flex: 0 0 auto;
  color: #67e8f9;
}

.contact-line strong {
  display: block;
  color: #fff;
}

.form-shell {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .form-shell {
    padding: 2rem;
  }
}

.cta-band {
  background:
    radial-gradient(circle at 12% 15%, rgba(23, 162, 184, 0.22), transparent 20rem),
    linear-gradient(135deg, var(--dark), var(--primary));
  padding: 4.5rem 0;
}

.premium-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(23, 162, 184, 0.18), transparent 24rem),
    linear-gradient(135deg, #06101d, var(--dark));
}

.premium-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
  content: "";
}

.footer-heading {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 900;
}

.footer-link {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link:hover {
  color: #67e8f9;
  transform: translateX(3px);
}

.social-link {
  display: inline-flex;
  height: 2.35rem;
  width: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.social-link svg {
  height: 1rem;
  width: 1rem;
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.footer-input {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.footer-input::placeholder {
  color: #94a3b8;
}

.footer-input:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-submit {
  display: inline-flex;
  width: 3.2rem;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--dark);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(3deg);
  }
}

@media (max-width: 767px) {
  .brand-lockup span.leading-tight {
    display: none;
  }

  .hero-panel {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    min-height: 21rem;
  }

  .carousel-btn {
    display: none;
  }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
