/* ==========================================================================
   MERIDIAN & CO — Chartered Accountants
   Design tokens: near-black ink + soft paper, lime/indigo accent duo
   ========================================================================== */

:root {
  --ink: #0b0d12;
  --ink-2: #14171f;
  --ink-3: #1c2029;
  --paper: #f6f5f2;
  --paper-dim: #ece9e2;
  --white: #ffffff;

  --text-onpaper: #14171f;
  --text-onpaper-70: rgba(20, 23, 31, 0.7);
  --text-onpaper-50: rgba(20, 23, 31, 0.5);
  --text-onink: #f6f5f2;
  --text-onink-70: rgba(246, 245, 242, 0.68);
  --text-onink-50: rgba(246, 245, 242, 0.46);

  --lime: #cdf564;
  --lime-deep: #a8d63f;
  --indigo: #4f46e5;
  --indigo-light: #8b85f0;

  --edge-onpaper: rgba(20, 23, 31, 0.1);
  --edge-onpaper-strong: rgba(20, 23, 31, 0.18);
  --edge-onink: rgba(246, 245, 242, 0.12);
  --edge-onink-strong: rgba(246, 245, 242, 0.22);

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-onpaper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

section[id] { scroll-margin-top: 90px; }

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========================= reveal-on-scroll ========================= */

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= header ========================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 13, 18, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--edge-onink);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-onink);
}

.brand { display: flex; align-items: center; gap: 9px; }
.brand-mark { width: 24px; height: 24px; color: var(--lime); flex-shrink: 0; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.brand-word-sub { font-size: 0.95rem; font-weight: 500; opacity: 0.6; }

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-onink-70);
  transition: color 0.25s;
}
.main-nav a:hover { color: var(--text-onink); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.87rem;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--lime-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(205, 245, 100, 0.5);
}
.btn-ghost {
  border: 1.5px solid var(--edge-onink-strong);
  color: var(--text-onink);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-ghost-dark {
  border: 1.5px solid var(--edge-onink-strong);
  color: var(--text-onink);
}
.btn-ghost-dark:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 0.96rem; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 20px; height: 1.6px; background: var(--text-onink); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 82vw);
  height: 100vh;
  background: var(--ink-2);
  border-left: 1px solid var(--edge-onink);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  color: var(--text-onink);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--edge-onink);
}
.mobile-nav .mobile-cta {
  margin-top: 20px;
  border-bottom: none;
  text-align: center;
  border-radius: 9px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 901px) { .mobile-nav { display: none; } }

/* ========================= section shared ========================= */

.section-head { max-width: 620px; margin: 0 auto 48px; padding: 0 28px; text-align: center; }
.section-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo);
  margin: 0 0 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ========================= hero ========================= */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-onink);
  padding: 150px 28px 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.35), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lime);
  margin: 0 0 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.hero-title span { display: block; }
.hero-accent { color: var(--lime); }

.hero-sub {
  max-width: 460px;
  font-size: 1.08rem;
  color: var(--text-onink-70);
  margin: 0 0 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }

.dash-card {
  background: var(--ink-2);
  border: 1px solid var(--edge-onink);
  border-radius: 16px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.dash-main { padding: 22px; }
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-onink-70);
  margin-bottom: 20px;
}
.dash-pill {
  background: rgba(205, 245, 100, 0.15);
  color: var(--lime);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.72rem;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-bottom: 18px;
}
.dash-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--indigo), var(--indigo-light));
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: bar-grow 0.8s var(--ease) forwards;
}
.dash-bars span:nth-child(1) { animation-delay: 0.5s; }
.dash-bars span:nth-child(2) { animation-delay: 0.58s; }
.dash-bars span:nth-child(3) { animation-delay: 0.66s; }
.dash-bars span:nth-child(4) { animation-delay: 0.74s; }
.dash-bars span:nth-child(5) { animation-delay: 0.82s; }
.dash-bars span:nth-child(6) { animation-delay: 0.9s; }
.dash-bars span:nth-child(7) { animation-delay: 0.98s; }
@keyframes bar-grow { to { opacity: 1; transform: scaleY(1); } }

.dash-line svg { width: 100%; height: 46px; overflow: visible; }
.dash-line polyline {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: line-draw 1.4s var(--ease) 1.1s forwards;
}
@keyframes line-draw { to { stroke-dashoffset: 0; } }

.dash-mini {
  position: absolute;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-mini-label { font-size: 0.74rem; color: var(--text-onink-50); }
.dash-mini-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-onink); }
.dash-mini-num small { font-size: 0.7rem; font-weight: 500; color: var(--text-onink-50); margin-left: 3px; }

.dash-mini-a {
  top: -14px; right: -20px;
  animation: float-a 7s ease-in-out infinite;
}
.dash-mini-b {
  bottom: -18px; left: -24px;
  animation: float-b 8s ease-in-out infinite;
}
@keyframes float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.hero-stats {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 90px auto 0;
  padding: 32px 28px 0;
  border-top: 1px solid var(--edge-onink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-onink);
}
.stat-label { font-size: 0.8rem; color: var(--text-onink-50); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 40px auto 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; margin-top: 60px; }
  .dash-mini-a, .dash-mini-b { position: static; margin-top: 14px; display: inline-flex; flex-direction: row; gap: 8px; align-items: baseline; }
}

@media (prefers-reduced-motion: reduce) {
  .dash-mini-a, .dash-mini-b { animation: none; }
  .dash-bars span, .dash-line polyline { animation: none; opacity: 1; transform: none; stroke-dashoffset: 0; }
}

/* ========================= ticker ========================= */

.ticker-section {
  background: var(--paper-dim);
  border-bottom: 1px solid var(--edge-onpaper);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-onpaper-70);
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track .dot { color: var(--indigo); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ========================= bento services ========================= */

.services { padding: 100px 0; }

.bento {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--edge-onpaper);
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  grid-column: span 1;
}
.bento-lg { grid-column: span 2; }
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -35px rgba(11,13,18,0.3);
  border-color: var(--indigo);
}
.bento-icon { width: 30px; height: 30px; color: var(--indigo); margin-bottom: 18px; flex-shrink: 0; }
.bento-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.bento-card p {
  font-size: 0.9rem;
  color: var(--text-onpaper-70);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; }
}

/* ========================= approach ========================= */

.approach { background: var(--paper-dim); padding: 100px 28px; }
.approach-inner { max-width: 1280px; margin: 0 auto; }
.approach-copy { max-width: 640px; margin-bottom: 56px; }
.approach-lead { font-size: 1.05rem; color: var(--text-onpaper-70); margin-top: 18px; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.approach-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--edge-onpaper);
}
.approach-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--indigo);
  display: block;
  margin-bottom: 14px;
}
.approach-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.approach-card p { font-size: 0.87rem; color: var(--text-onpaper-70); margin: 0; line-height: 1.5; }

@media (max-width: 900px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .approach-grid { grid-template-columns: 1fr; } }

/* ========================= process ========================= */

.process { padding: 100px 28px; }
.process-row {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--edge-onpaper-strong);
}
.process-step { position: relative; text-align: center; }
.process-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.process-step h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.process-step p { font-size: 0.87rem; color: var(--text-onpaper-70); max-width: 220px; margin: 0 auto; }

@media (max-width: 760px) {
  .process-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-row::before { display: none; }
}

/* ========================= about ========================= */

.about { padding: 40px 28px 110px; }
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/4.7;
  filter: grayscale(0.15);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  left: -18px; bottom: 28px;
  background: var(--ink);
  color: var(--text-onink);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 30px 50px -20px rgba(11,13,18,0.5);
}
.about-badge-num { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--lime); }
.about-badge span:last-child { font-size: 0.78rem; color: var(--text-onink-70); max-width: 130px; }

.about-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 8px 0 4px; }
.about-cred { color: var(--indigo); font-weight: 600; font-size: 0.92rem; margin: 0 0 20px; }
.about-bio { color: var(--text-onpaper-70); font-size: 1.02rem; max-width: 560px; margin: 0 0 24px; }
.about-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-onpaper);
  border-left: 3px solid var(--lime-deep);
  padding-left: 20px;
  margin: 0 0 30px;
  max-width: 480px;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 320px; margin: 0 auto; }
}

/* ========================= reviews ========================= */

.reviews { padding: 100px 28px; background: var(--paper-dim); }
.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--edge-onpaper);
}
.reviews-lg { grid-column: span 1; background: var(--ink); border-color: var(--ink); }
.reviews-lg .review-quote { color: var(--text-onink); }
.reviews-lg .review-name { color: var(--lime); }
.review-quote { font-family: var(--font-display); font-size: 1rem; line-height: 1.5; margin: 0 0 18px; }
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--indigo); margin: 0; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ========================= FAQ ========================= */

.faq { padding: 100px 28px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--edge-onpaper); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-q svg { flex-shrink: 0; color: var(--indigo); transition: transform 0.35s var(--ease); }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-a p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding-right: 34px;
  font-size: 0.93rem;
  color: var(--text-onpaper-70);
  line-height: 1.6;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > p { grid-row: 1 / 2; }
.faq-item.is-open .faq-a p { padding-bottom: 22px; }
.faq-a { display: grid; }

/* ========================= final CTA ========================= */

.final-cta {
  position: relative;
  background: var(--ink);
  color: var(--text-onink);
  padding: 120px 28px;
  text-align: center;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  margin: -400px 0 0 -400px;
  background: radial-gradient(circle, rgba(205,245,100,0.12), rgba(79,70,229,0.1) 45%, transparent 70%);
  filter: blur(60px);
}
.final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin: 10px 0 20px;
}
.final-sub { color: var(--text-onink-70); font-size: 1.05rem; margin: 0 0 40px; }
.final-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ========================= footer ========================= */

.site-footer { background: var(--ink); color: var(--text-onink-70); padding: 70px 28px 28px; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--edge-onink);
}
.footer-brand .brand { color: var(--text-onink); margin-bottom: 14px; }
.footer-tag { font-size: 0.87rem; max-width: 280px; line-height: 1.5; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 0.9rem; transition: color 0.25s; }
.footer-nav a:hover { color: var(--text-onink); }
.footer-contact p { margin: 0 0 10px; font-size: 0.9rem; line-height: 1.5; }
.footer-contact a:hover { color: var(--text-onink); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { margin: 0; font-size: 0.78rem; max-width: 560px; }
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 0.85rem; transition: color 0.25s; }
.footer-social a:hover { color: var(--text-onink); }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ========================= reduced motion ========================= */

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