:root {
  --ink: #0b1620;
  --ink-soft: #172736;
  --paper: #ffffff;
  --surface: #f3f6f8;
  --line: #dfe6eb;
  --muted: #5e6d79;
  --orange: #f97316;
  --orange-dark: #c94f08;
  --orange-soft: #fff1e7;
  --green: #168a55;
  --green-dark: #0f6c42;
  --green-soft: #eaf8f1;
  --shadow: 0 18px 50px rgba(11, 22, 32, 0.1);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "El Messiri", Tahoma, Arial, sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.35;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--paper);
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--surface);
}

.section--dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 15%, rgba(249, 115, 22, 0.2), transparent 26rem),
    var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 9px;
  background: currentColor;
  content: "";
}

.section__head {
  max-width: 720px;
  margin-bottom: 38px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  justify-content: center;
}

.section__head h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section__head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section__head p {
  color: #c7d1d8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 22, 32, 0.96);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand__text {
  min-width: 0;
}

.brand__name {
  display: block;
  overflow: hidden;
  font-size: 1.05rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__tagline {
  display: block;
  color: #fdba74;
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  position: relative;
  color: #e7edf1;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--orange);
  content: "";
  transition: width 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: transparent;
  color: var(--paper);
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 11px 20px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--orange);
  color: #15100d;
}

.button--primary:hover {
  background: #fb8b3e;
}

.button--whatsapp {
  background: var(--green);
  color: var(--paper);
}

.button--whatsapp:hover {
  background: var(--green-dark);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--paper);
}

.button--dark-outline {
  border-color: #aab7c1;
  background: var(--paper);
  color: var(--ink);
}

.button--small {
  min-height: 44px;
  padding: 9px 15px;
  font-size: 0.86rem;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 15, 22, 0.98) 5%, rgba(7, 15, 22, 0.82) 48%, rgba(7, 15, 22, 0.25)),
    url("/images/car-damage-4.webp") center 42% / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(transparent, rgba(11, 22, 32, 0.75));
  content: "";
}

.hero__inner {
  display: grid;
  min-height: 655px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 64px;
  padding: 76px 0 88px;
}

.hero__content {
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 7px 13px;
  color: #fed7aa;
  font-size: 0.87rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.5vw, 4.65rem);
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: #fb923c;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #d8e0e5;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: #dce5ea;
  font-size: 0.9rem;
  list-style: none;
}

.hero__note li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__note li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 138, 85, 0.9);
  color: white;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.hero-card ol {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: hero-steps;
  gap: 15px;
  list-style: none;
}

.hero-card li {
  display: grid;
  align-items: start;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  color: #e1e8ec;
  font-size: 0.92rem;
}

.hero-card li::before {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: #1b1008;
  content: counter(hero-steps);
  counter-increment: hero-steps;
  font-weight: 900;
}

.hero-card__foot {
  margin: 21px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 17px;
  color: #fed7aa;
  font-size: 0.84rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.trust-strip__inner {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 20px;
  text-align: center;
}

.trust-item + .trust-item {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.83rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 27px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #f2b68e;
  box-shadow: var(--shadow);
}

.card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 1.17rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px 23px 24px;
}

.step__number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 60px;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(11, 22, 32, 0.86);
  padding: 7px 12px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  margin: 24px 0 30px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  display: grid;
  align-items: start;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}

.feature-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.cta {
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(125deg, rgba(249, 115, 22, 0.18), transparent 45%),
    var(--ink-soft);
  padding: 46px;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.cta h2 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: #cad4da;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  display: grid;
  max-width: 850px;
  margin-inline: auto;
  gap: 13px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  padding: 0 20px;
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  content: "+";
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0 0 20px;
  color: var(--muted);
}

.page-hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.22), transparent 25rem),
    var(--ink);
  padding: 78px 0 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: #c6d0d6;
  font-size: 0.85rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-left: 8px;
  color: #fdba74;
  content: "←";
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 730px;
  margin-bottom: 0;
  color: #d3dce1;
  font-size: 1.08rem;
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 17px 19px;
}

.gallery-card strong {
  display: block;
  margin-bottom: 4px;
}

.gallery-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.notice {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 28px;
  border: 1px solid #f2c7a7;
  border-radius: 16px;
  background: var(--orange-soft);
  padding: 15px 17px;
  color: #74330c;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: 32px;
}

.form-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  padding: 30px;
  box-shadow: 0 14px 40px rgba(11, 22, 32, 0.07);
}

.form-card h2,
.contact-card h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.form-intro {
  margin-bottom: 24px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5dc;
  border-radius: 12px;
  background: #fbfcfd;
  padding: 12px 14px;
  color: var(--ink);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(249, 115, 22, 0.15);
}

.field__hint {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.form-status {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.contact-list a,
.contact-list div {
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.contact-list__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--orange-dark);
  font-weight: 900;
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.83rem;
}

.content {
  max-width: 850px;
  margin-inline: auto;
}

.content h2 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
}

.content h3 {
  margin: 26px 0 8px;
  font-size: 1.15rem;
}

.content p,
.content li {
  color: #40505c;
}

.content ul {
  padding-right: 22px;
}

.site-footer {
  background: #071018;
  color: var(--paper);
  padding: 66px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 56px;
}

.footer-about {
  max-width: 510px;
}

.footer-about p {
  margin: 18px 0 22px;
  color: #bac6cd;
}

.footer-links h2 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-links ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  color: #c4cfd5;
  list-style: none;
}

.footer-links a:hover {
  color: #fdba74;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: #9fadb6;
  font-size: 0.82rem;
}

.mobile-actions {
  display: none;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.22), transparent 26rem),
    var(--ink);
  color: var(--paper);
  text-align: center;
}

.error-page__inner {
  max-width: 650px;
  padding: 30px;
}

.error-page__code {
  display: block;
  color: #fb923c;
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.error-page h1 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.error-page p {
  margin-bottom: 28px;
  color: #c8d2d8;
}

@media (max-width: 1080px) {
  .header__actions .button--outline {
    display: none;
  }

  .nav {
    gap: 16px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
  }

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

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

@media (max-width: 860px) {
  body {
    padding-bottom: 70px;
  }

  .section {
    padding: 68px 0;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b1620;
    padding: 12px 16px 20px;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    border-radius: 11px;
    padding: 12px 14px;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.07);
  }

  .nav a::after {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .header__actions .button {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(rgba(7, 15, 22, 0.83), rgba(7, 15, 22, 0.96)),
      url("/images/car-damage-4.webp") center / cover no-repeat;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 64px 0 100px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-card {
    max-width: 540px;
  }

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

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(odd) {
    border-right: 0;
  }

  .trust-item:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .split,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .split__media {
    order: -1;
  }

  .cta {
    padding: 35px 28px;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 30px rgba(11, 22, 32, 0.12);
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    backdrop-filter: blur(12px);
  }

  .mobile-actions .button {
    min-height: 48px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header__inner {
    min-height: 70px;
  }

  .brand__tagline {
    display: none;
  }

  .brand__mark {
    width: 41px;
    height: 41px;
  }

  .hero__inner {
    padding-top: 50px;
  }

  .hero__actions,
  .hero__actions .button,
  .form-actions,
  .form-actions .button {
    width: 100%;
  }

  .trust-item {
    padding: 16px 10px;
  }

  .card-grid,
  .steps,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .form-card,
  .contact-card {
    padding: 22px;
  }

  .field--full {
    grid-column: auto;
  }

  .page-hero {
    padding: 58px 0 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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