:root {
  --bg: #02070f;
  --bg-soft: #06111d;
  --blue: #1479d6;
  --blue-2: #2ea8ff;
  --cyan: #74d7ff;
  --green: #35ff69;
  --text: #f3f7fb;
  --muted: #9cabb8;
  --muted-2: #c9d4dc;
  --card: rgba(217, 232, 242, 0.08);
  --card-strong: rgba(218, 235, 248, 0.16);
  --line: rgba(132, 190, 231, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --container: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(2, 7, 15, 0.9), rgba(2, 7, 15, 0.58));
  border-bottom: 1px solid rgba(132, 190, 231, 0.12);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-logo img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(234, 246, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  transition: color 0.22s ease, background 0.22s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(46, 168, 255, 0.13);
}

.nav-contact,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #062412;
  background: linear-gradient(135deg, #35ff69, #91ffab);
  box-shadow: 0 0 24px rgba(53, 255, 105, 0.42), 0 16px 46px rgba(53, 255, 105, 0.16);
  font-weight: 900;
}

.nav-contact {
  min-height: 42px;
  padding: 0 16px 0 18px;
  font-size: 0.84rem;
}

.nav-contact svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #eaf6ff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.topbar.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 19;
  min-height: 54px;
  width: 54px;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 32px rgba(53, 255, 105, 0.56), 0 18px 50px rgba(53, 255, 105, 0.2);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 121, 214, 0.34), transparent 26%),
    radial-gradient(circle at 92% 44%, rgba(19, 111, 169, 0.34), transparent 29%),
    linear-gradient(105deg, #051624 0%, #010408 44%, #03131f 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 30%, rgba(0, 0, 0, 0.36)),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.54) 72%);
}

.glow {
  position: absolute;
  width: 36vw;
  height: 70vh;
  filter: blur(58px);
  opacity: 0.55;
  border-radius: 999px;
  background: rgba(24, 144, 255, 0.38);
}

.glow-left {
  left: -20vw;
  top: 18vh;
}

.glow-right {
  right: -22vw;
  top: 28vh;
}

.particles {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    radial-gradient(circle, rgba(255, 143, 31, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(87, 191, 255, 0.5) 0 1px, transparent 2px);
  background-size: 170px 190px, 230px 260px;
  background-position: 20px 40px, 110px 20px;
  animation: drift 28s linear infinite;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section-pad {
  padding: 92px 0;
}

.hero {
  min-height: 780px;
  padding-top: 115px;
  padding-bottom: 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 1px;
  height: 220px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.42), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 250px;
  color: #eaf6ff;
}

.brand img {
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker {
  margin: 52px 0 16px;
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.eyebrow {
  margin-top: 0;
}

.hero h1,
.institution h2,
.section-head h2,
.glass-panel h2,
.partners-title h2,
.reasons h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(1.65rem, 3.36vw, 3.36rem);
  line-height: 1.05;
}

.hero h1 span,
.institution h2 span,
.cta-band h2,
.partners-title h2,
.reasons h2 span {
  color: var(--blue);
}

.hero-text {
  max-width: 520px;
  margin: 28px 0 36px;
  color: var(--muted-2);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.btn-whatsapp {
  color: #062412;
  background: linear-gradient(135deg, #35ff69, #91ffab);
  box-shadow: 0 0 24px rgba(53, 255, 105, 0.62), 0 16px 46px rgba(53, 255, 105, 0.2);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-visual {
  min-height: 640px;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 14% 8% 5%;
  background: radial-gradient(circle, rgba(46, 168, 255, 0.36), transparent 62%);
  filter: blur(20px);
  z-index: -1;
}

.portrait-wrap {
  position: absolute;
  inset: -80px 0 0 70px;
  overflow: hidden;
  border-radius: 0 0 44% 44%;
  mask-image: radial-gradient(ellipse at 58% 32%, black 0 46%, transparent 69%);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  transform: scale(1.02);
}

.metric-card {
  position: absolute;
  right: 5%;
  width: min(360px, 56%);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 12px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(194, 212, 223, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: float 6s ease-in-out infinite;
}

.metric-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #dff4ff;
  border: 3px solid rgba(46, 168, 255, 0.9);
  background: rgba(10, 54, 89, 0.8);
}

.metric-card strong {
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 0.95;
}

.metric-card small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 0.76rem;
}

.metric-one {
  top: 47%;
}

.metric-two {
  top: 58%;
  animation-delay: -1.8s;
}

.metric-three {
  top: 69%;
  animation-delay: -3.2s;
}

.institution {
  text-align: center;
  padding-top: 40px;
}

.institution .section-kicker {
  margin-top: 0;
}

.institution h2,
.section-head h2,
.reasons h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.institution p {
  color: var(--muted-2);
  line-height: 1.64;
}

.quote-card {
  width: min(560px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
}

.quote-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 74% 9%;
  border: 7px solid rgba(20, 121, 214, 0.38);
  box-shadow: 0 0 0 8px rgba(20, 121, 214, 0.13);
}

.quote-card p {
  margin: 0;
  padding: 20px 24px;
  text-align: left;
  border-radius: var(--radius);
  color: #d8e3ea;
  background: rgba(217, 232, 242, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.solutions {
  padding-top: 54px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card {
  position: relative;
  min-height: 230px;
  padding: 28px 26px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #263642;
  background: rgba(238, 247, 252, 0.95);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(20, 121, 214, 0.28);
}

.solution-card.active,
.solution-card:hover {
  color: #f5fbff;
  background: linear-gradient(145deg, #1479d6, #0b5cae);
}

.solution-card h3 {
  margin: 20px 0 10px;
  max-width: 210px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.solution-card p {
  margin: 0;
  color: currentColor;
  opacity: 0.7;
  font-size: 0.86rem;
  line-height: 1.42;
}

.icon {
  display: block;
  width: 54px;
  height: 54px;
  color: var(--blue);
  border: 2px solid currentColor;
  border-radius: var(--radius);
  opacity: 0.92;
  position: relative;
}

.active .icon,
.solution-card:hover .icon {
  color: #dff5ff;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.icon-cap::before {
  width: 30px;
  height: 16px;
  transform: rotate(28deg);
  left: 10px;
  top: 13px;
}

.icon-cap::after {
  width: 18px;
  height: 10px;
  border-top: 0;
  left: 17px;
  top: 29px;
}

.icon-field::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: 8px;
  top: 9px;
}

.icon-field::after {
  width: 30px;
  height: 18px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  right: 8px;
  bottom: 12px;
}

.icon-buildings::before {
  width: 12px;
  height: 30px;
  left: 10px;
  bottom: 10px;
}

.icon-buildings::after {
  width: 18px;
  height: 38px;
  right: 10px;
  bottom: 10px;
}

.icon-board::before {
  width: 28px;
  height: 18px;
  left: 11px;
  top: 11px;
}

.icon-board::after {
  width: 14px;
  height: 2px;
  left: 18px;
  top: 36px;
}

.card-check {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.active .card-check {
  color: var(--blue);
  background: #d9f4ff;
}

.cta-band {
  padding: 18px 0 66px;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(5, 17, 29, 0.86), rgba(0, 0, 0, 0.45));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted-2);
}

.differential-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
  gap: 0;
}

.differential-image {
  min-height: 520px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.differential-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 50%;
}

.glass-panel {
  margin-left: -120px;
  padding: 54px 64px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.19);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-panel .section-kicker {
  margin: 0 0 18px;
}

.glass-panel h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1;
}

.glass-panel p {
  color: #d4e0e7;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li,
.reason-list span {
  position: relative;
  padding-left: 30px;
  color: #eaf3f8;
}

.check-list li::before,
.reason-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.72rem;
  box-shadow: 0 0 20px rgba(53, 255, 105, 0.45);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.partner-logo {
  width: 190px;
  height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  text-align: center;
  border-radius: var(--radius);
  color: #27333e;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.partner-logo:hover {
  transform: translateY(-7px);
  filter: brightness(1.06);
}

.partner-logo strong {
  font-size: 1.3rem;
}

.partner-logo small {
  color: #7d8790;
  font-weight: 700;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.partners-title h2 {
  max-width: 460px;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 0.95;
}

.partners-title h2::first-line {
  color: var(--blue-2);
}

.reasons {
  text-align: center;
  padding-top: 30px;
}

.reason-list {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 42px;
}

.reason-list span {
  font-weight: 700;
  color: #f3f8fc;
}

.faq-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 54px 70px;
  border-radius: 18px;
  background: rgba(2, 5, 17, 0.9);
  border: 1px solid rgba(46, 168, 255, 0.08);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
}

.faq-panel h2 {
  margin: 0 0 32px;
  color: rgba(227, 239, 248, 0.86);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.03em;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item button {
  width: 100%;
  padding: 21px 34px 21px 0;
  border: 0;
  color: #dbe7ef;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  position: relative;
}

.faq-item button::after {
  content: "⌄";
  position: absolute;
  right: 4px;
  color: var(--blue-2);
  transition: transform 0.25s ease;
}

.faq-item.open button::after {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  border-top: 2px solid rgba(20, 121, 214, 0.8);
  background: rgba(4, 15, 25, 0.92);
  text-align: center;
}

.footer .container {
  padding: 58px 0 28px;
}

.footer-brand {
  justify-content: center;
  margin: 0 auto;
}

.footer-info {
  margin: 42px auto 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
  color: #d4e2eb;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
  color: rgba(212, 226, 235, 0.55);
  font-size: 0.82rem;
}

.footer p strong {
  color: #2ea8ff;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.scale-in {
  transform: translateY(32px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes drift {
  to {
    background-position: 220px 260px, -40px 320px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

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

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: 190px auto auto;
  }

  .nav-logo img {
    width: 190px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(132, 190, 231, 0.18);
    border-radius: 14px;
    background: rgba(2, 7, 15, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .topbar.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 14px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-grid,
  .differential-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 560px;
    order: 0;
    margin-top: 42px;
  }

  .portrait-wrap {
    inset: 0;
  }

  .hero-content {
    text-align: center;
  }

  .brand,
  .hero-text,
  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass-panel {
    margin: -80px auto 0;
    width: calc(100% - 32px);
  }

  .partners-title {
    text-align: center;
  }

  .partners-title h2 {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar {
    padding: 13px 0;
  }

  .topbar-inner {
    grid-template-columns: minmax(150px, 1fr) 44px;
    gap: 12px;
  }

  .nav-logo img {
    width: 178px;
  }

  .nav-contact {
    display: none;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    width: 50px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero::after {
    display: none;
  }

  .hero-visual {
    min-height: 500px;
    order: 0;
  }

  .portrait-wrap {
    inset: 0 -90px 0 -70px;
  }

  .metric-card {
    right: 4px;
    width: min(310px, 72vw);
    grid-template-columns: 38px 1fr;
    padding: 12px;
  }

  .metric-card span {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .metric-one {
    top: 48%;
  }

  .metric-two {
    top: 60%;
  }

  .metric-three {
    top: 72%;
  }

  .quote-card {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .quote-card p {
    text-align: center;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 190px;
  }

  .cta-band .container {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .differential-image,
  .differential-image img {
    min-height: 360px;
    height: 360px;
  }

  .glass-panel {
    padding: 32px 24px;
  }

  .partners-grid {
    gap: 34px;
  }

  .partner-logo {
    width: 160px;
    height: 142px;
  }

  .reason-list {
    justify-content: flex-start;
    text-align: left;
  }

  .faq-panel {
    padding: 34px 22px;
  }

  .footer-info {
    display: grid;
    gap: 14px;
  }
}

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