:root {
  --red: #d71920;
  --red-2: #a80f15;
  --black: #111217;
  --black-2: #1b1d24;
  --text: #171a20;
  --muted: #626a76;
  --line: #dfe3e8;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --container: 1180px;
  --shadow: 0 18px 48px rgba(17, 18, 23, .13);
  --shadow-sm: 0 10px 28px rgba(17, 18, 23, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(17, 18, 23, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 23, .035) 1px, transparent 1px),
    var(--soft);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--red);
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 999;
  padding: 9px 12px;
  color: #fff;
  background: var(--red);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  background: rgba(17, 18, 23, .95);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 35px rgba(0, 0, 0, .24);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.3;
  background: #0a0b0e;
}

.nav-wrap {
  width: min(var(--container), calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(215, 25, 32, .95);
}

.brand img {
  width: 164px;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex-wrap: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 9px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  flex: 0 0 auto;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid var(--black);
  color: var(--black);
  background: #fff;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 5px 5px 0 rgba(17, 18, 23, .14);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(17, 18, 23, .18);
  outline: none;
}

.btn.primary {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  box-shadow: 5px 5px 0 rgba(168, 15, 21, .35);
}

.btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, .82);
  background: transparent;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, .14);
}

.btn.small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px;
}

.btn.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .78);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 740px);
  display: grid;
  align-items: stretch;
  color: #fff;
  background: var(--black);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 18, 23, .96) 0%, rgba(17, 18, 23, .86) 42%, rgba(17, 18, 23, .38) 100%),
    url("../img/hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .36;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, .055) 22px 24px),
    linear-gradient(120deg, transparent 0 56%, rgba(215, 25, 32, .75) 56% 61%, transparent 61%);
}

.hero-content {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0 58px;
  display: grid;
  align-content: center;
}

.hero-content > * {
  max-width: 780px;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
}

.eyebrow.dark {
  color: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 11, 14, .62);
}

.hero-stats div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.35;
}

.trust-strip {
  width: min(var(--container), calc(100% - 36px));
  margin: -32px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 10px 10px 0 rgba(215, 25, 32, .20);
}

.trust-strip div {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  color: var(--black);
  font-weight: 950;
}

.trust-strip div:last-child {
  border-right: 0;
}

.section {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 8vw, 106px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.split > div {
  position: relative;
}

.split > img,
.service-hero img {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
  border: 2px solid var(--black);
  box-shadow: 10px 10px 0 rgba(17, 18, 23, .14);
}

.section h2,
.page-hero h1,
.article-layout h2 {
  margin: 12px 0 14px;
  color: var(--black);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section p,
.article-layout p,
.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--black);
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.text-link,
.service-card a {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-weight: 950;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(17, 18, 23, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 7px;
  height: 100%;
  background: var(--red);
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 rgba(215, 25, 32, .16);
}

.service-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  border-bottom: 2px solid var(--black);
  filter: saturate(.92) contrast(1.04);
}

.service-card div {
  padding: 22px 22px 24px 28px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card.large img {
  height: 218px;
}

.seo-band {
  width: min(var(--container), calc(100% - 36px));
  margin-top: 10px;
  padding: clamp(32px, 5.6vw, 56px);
  border: 2px solid var(--black);
  color: #fff;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, .045) 18px 20px),
    linear-gradient(135deg, #13151b, #07080a);
  box-shadow: 10px 10px 0 rgba(215, 25, 32, .20);
}

.seo-band h2,
.seo-band p {
  color: #fff;
}

.seo-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, .70);
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-pills a,
.mini-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .20);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
  transition: background .18s ease, transform .18s ease;
}

.area-pills a:hover,
.mini-service:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.faq-preview {
  padding-top: clamp(56px, 7vw, 84px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list.wide {
  max-width: 900px;
}

.faq-list details {
  overflow: hidden;
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 5px 5px 0 rgba(17, 18, 23, .08);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--black);
  font-weight: 950;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.page-hero {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0 clamp(28px, 5vw, 54px);
}

.page-hero p {
  max-width: 820px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .84fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
  padding-top: 38px;
}

.article-layout article {
  max-width: 820px;
}

.article-layout h2 {
  font-size: clamp(26px, 3vw, 38px);
}

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

.check-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border: 2px solid var(--black);
  background: #fff;
  color: var(--black);
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(17, 18, 23, .08);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 12px;
  color: var(--red);
  font-weight: 950;
}

.quote-card {
  position: sticky;
  top: 110px;
  padding: 24px;
  border: 2px solid var(--black);
  color: #fff;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, .045) 18px 20px),
    linear-gradient(145deg, #161820, #07080a);
  box-shadow: 8px 8px 0 rgba(215, 25, 32, .25);
}

.quote-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.quote-card p {
  color: rgba(255, 255, 255, .70);
}

.quote-card .btn {
  margin-top: 10px;
}

.service-grid.mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.mini-service {
  color: var(--black);
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 4px 4px 0 rgba(17, 18, 23, .08);
}

.mini-service:hover {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 36px);
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(17, 18, 23, .10);
}

.contact-card h2,
.contact-form h2 {
  margin-top: 0;
  color: var(--black);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.035em;
}

.contact-card p {
  margin: 10px 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--black);
  padding: 14px 15px;
  color: var(--text);
  background: #f9fafb;
  outline: none;
  transition: box-shadow .18s ease, background .18s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  box-shadow: 5px 5px 0 rgba(215, 25, 32, .18);
}

.cta {
  width: min(var(--container), calc(100% - 36px));
  margin: clamp(44px, 6vw, 74px) auto 0;
  padding: clamp(28px, 5vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid var(--black);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 18, 23, .88), rgba(168, 15, 21, .84)),
    url("../img/hero-2.jpg") center / cover no-repeat;
  box-shadow: 10px 10px 0 rgba(17, 18, 23, .16);
}

.cta h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.site-footer {
  margin-top: 52px;
  color: rgba(255, 255, 255, .74);
  background: #0b0c10;
}

.footer-grid {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr .9fr;
  gap: 28px;
}

.footer-grid img {
  width: 160px;
  max-height: 58px;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 8px;
  background: #fff;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin: 0 0 12px;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, .76);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

.floating-call:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
}

.floating-call {
  bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  background: var(--red);
}

.floating-whatsapp {
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  background: #25d366;
}

.floating-call svg,
.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: currentColor;
  transform: translateZ(0);
}

@media (max-width: 1240px) {
  .nav-wrap {
    min-height: 74px;
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 154px;
  }

  .main-nav {
    position: fixed;
    inset: 98px 18px auto;
    z-index: 60;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 2px solid var(--black);
    background: #fff;
    box-shadow: 8px 8px 0 rgba(215, 25, 32, .20);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

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

  .main-nav a {
    justify-content: center;
    color: var(--black);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    min-height: 44px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-actions .btn.small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

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

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .nav-wrap,
  .hero-content,
  .trust-strip,
  .section,
  .page-hero,
  .seo-band,
  .cta,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    padding: 7px 9px;
    box-shadow: 5px 5px 0 rgba(215, 25, 32, .95);
  }

  .brand img {
    width: 144px;
    max-height: 50px;
  }

  .main-nav {
    inset: 82px 14px auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 44px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.5vw, 56px);
    letter-spacing: -.05em;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
    box-shadow: 6px 6px 0 rgba(215, 25, 32, .16);
  }

  .trust-strip div {
    border-bottom: 0;
  }

  .split,
  .service-hero,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split > img,
  .service-hero img {
    min-height: 250px;
  }

  .section-head {
    display: block;
  }

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

  .service-card img,
  .service-card.large img {
    height: 205px;
  }

  .article-layout {
    padding-top: 16px;
  }

  .quote-card {
    position: static;
  }

  .service-grid.mini {
    grid-template-columns: 1fr;
  }

  .cta {
    display: grid;
  }

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

  .footer-bottom {
    display: grid;
  }

  .floating-call,
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
  }

  .floating-call svg,
  .floating-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 680px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 72px;
    border-right: 0;
  }

  .section {
    padding: 56px 0;
  }

  .section h2,
  .page-hero h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .service-card h3 {
    font-size: 21px;
  }

  .seo-band {
    padding: 24px;
  }

  .page-hero {
    padding-top: 42px;
  }

  .floating-call {
    bottom: 78px;
  }
}

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