:root {
  color-scheme: light;
  --navy-950: #071934;
  --navy-900: #0b2145;
  --navy-800: #12386b;
  --navy-700: #164c8f;
  --blue-500: #23a9e8;
  --cyan-300: #73dbff;
  --ink: #13233a;
  --muted: #5b6b80;
  --line: #d9e5f0;
  --soft: #f3f8fc;
  --white: #ffffff;
  --green: #24b47e;
  --shadow: 0 20px 60px rgba(7, 25, 52, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

main,
section {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(19, 56, 107, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 34px rgba(7, 25, 52, 0.12);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  padding: 8px clamp(18px, 5vw, 72px);
  color: #d9ecff;
  background: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
}

.city-switch,
.top-links,
.header-tools,
.language-switch,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.city-switch span + span::before {
  content: "/";
  margin-right: 12px;
  color: rgba(217, 236, 255, 0.45);
}

.top-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-links a {
  color: var(--cyan-300);
}

.header-main {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 58px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.brand span {
  color: var(--navy-950);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #253b56;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  content: "";
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--navy-700);
}

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

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(19, 56, 107, 0.15);
  border-radius: 8px;
  background: #edf5fb;
}

.language-switch button {
  width: 38px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: #35516e;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.is-active {
  color: var(--white);
  background: var(--navy-800);
}

.button,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary,
.header-action {
  color: var(--white);
  background: var(--blue-500);
  box-shadow: 0 14px 32px rgba(35, 169, 232, 0.25);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: block;
  position: fixed;
  right: clamp(18px, 5vw, 72px);
  top: 50px;
  z-index: 100;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(19, 56, 107, 0.18);
  border-radius: 8px;
  background: #eef6fc;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-800);
}

@media (min-width: 1121px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 560px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: 88vh;
  padding: 150px clamp(20px, 6vw, 86px) clamp(48px, 8vw, 90px);
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-bg,
.hero-shade,
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg,
.services-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 169, 232, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(7, 25, 52, 0.96) 0%, rgba(11, 33, 69, 0.9) 52%, rgba(11, 33, 69, 0.68) 100%);
}

.hero::after,
.services-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(115, 219, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 219, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.hero-content,
.hero-panel,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.services-section .eyebrow,
.request-section .eyebrow {
  color: var(--cyan-300);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  color: #d7e8f7;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(115, 219, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-panel a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel strong {
  color: var(--white);
  font-size: 22px;
}

.hero-panel span {
  color: #d7e8f7;
  line-height: 1.45;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-self: center;
  transform: translateY(14px);
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(115, 219, 255, 0.22);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-visual-main {
  height: clamp(250px, 29vw, 390px);
}

.hero-visual-secondary {
  width: 72%;
  height: clamp(150px, 16vw, 220px);
  justify-self: end;
  margin-top: -74px;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.intro-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
}

.section-heading {
  max-width: 920px;
  min-width: 0;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.request-copy p,
.advantages-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 14px 42px rgba(7, 25, 52, 0.08);
}

.metrics-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 28px;
  background: var(--white);
}

.metrics-grid strong {
  color: var(--navy-800);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.metrics-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.services-section {
  position: relative;
  scroll-margin-top: 118px;
  padding: 48px clamp(20px, 6vw, 86px) clamp(76px, 9vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 44%, rgba(35, 169, 232, 0.2), transparent 26%),
    var(--navy-950);
  overflow: hidden;
}

.services-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 25, 52, 0.94), rgba(11, 33, 69, 0.9));
}

.services-section h2 {
  color: var(--white);
}

.services-section .section-heading,
.services-grid,
.section-anchor {
  position: relative;
  z-index: 2;
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 118px;
}

.services-section .section-heading {
  margin-bottom: 30px;
}

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

.service-card {
  display: grid;
  align-content: start;
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(115, 219, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 25, 52, 0.55);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.service-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--blue-500);
}

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

.service-icon-rack::before {
  left: 4px;
  top: 5px;
  width: 32px;
  height: 8px;
  border-radius: 8px;
  box-shadow: 0 12px 0 -3px currentColor, 0 24px 0 -3px currentColor;
}

.service-icon-rack::after {
  left: 12px;
  top: 10px;
  width: 4px;
  height: 4px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 12px 0 currentColor, 0 24px 0 currentColor;
}

.service-icon-cloud::before {
  left: 4px;
  top: 14px;
  width: 36px;
  height: 18px;
  border-radius: 18px;
}

.service-icon-cloud::after {
  left: 14px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.service-icon-platform::before {
  left: 6px;
  top: 6px;
  width: 30px;
  height: 30px;
  border-style: dashed;
  border-radius: 8px;
}

.service-icon-platform::after {
  left: 17px;
  top: 17px;
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 3px;
  background: currentColor;
  box-shadow: -14px -14px 0 -1px currentColor, 14px 14px 0 -1px currentColor;
}

.service-card h3 {
  color: var(--white);
}

.service-card p,
.service-card li {
  color: #e3eff8;
  font-size: 16px;
  line-height: 1.62;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
  padding-left: 20px;
}

.service-card li::marker {
  color: var(--cyan-300);
}

.service-card a {
  justify-self: start;
  align-self: end;
  margin-top: auto;
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 900;
}

.service-image {
  width: 100%;
  height: 180px;
  margin-bottom: 22px;
  border-radius: 8px;
  object-fit: cover;
}

.advantages-section {
  background: var(--white);
}

.catalog-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

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

.catalog-service-card {
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 25, 52, 0.07);
}

.catalog-service-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue-500);
  font-weight: 900;
}

.catalog-service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.advantages-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.advantages-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue-500);
  font-weight: 900;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.64fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 16%, rgba(35, 169, 232, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.request-copy h2 {
  color: var(--white);
}

.request-copy p {
  max-width: 720px;
  color: #dcebf8;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #e8f4ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
  padding: 12px 14px;
}

.request-form textarea {
  resize: vertical;
}

.request-form select option {
  color: var(--ink);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--cyan-300);
  box-shadow: 0 0 0 3px rgba(115, 219, 255, 0.18);
}

.form-note {
  margin: 0;
  color: #c6ddf0;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: 42px clamp(20px, 6vw, 86px) 28px;
  color: #d7e8f7;
  background: var(--navy-950);
}

.site-footer img {
  width: 150px;
  height: 52px;
  margin-bottom: 16px;
  object-fit: contain;
  border-radius: 4px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.site-footer a {
  color: #eaf6ff;
  font-weight: 800;
}

.site-footer strong {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb8d2;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .header-main {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .header-tools {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    top: 50%;
    transform: translateY(-50%);
  }

  .site-header.menu-visible .main-nav,
  .site-header.menu-visible .header-tools {
    display: flex;
  }

  .site-header.menu-visible .main-nav {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    z-index: 42;
    flex-direction: column;
    gap: 2px;
    padding: 18px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 22px 42px rgba(7, 25, 52, 0.13);
  }

  .site-header.menu-visible .main-nav a {
    padding: 16px 0;
    color: var(--ink);
    font-size: 18px;
  }

  .site-header.menu-visible .header-tools {
    position: fixed;
    top: 348px;
    left: 0;
    right: 0;
    z-index: 43;
    justify-content: space-between;
    padding: 14px clamp(18px, 5vw, 72px) 22px;
    background: rgba(255, 255, 255, 0.99);
  }

  .hero,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
  }

  .hero-panel,
  .hero-visual {
    max-width: 720px;
  }

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

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

  .service-card {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .top-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .top-links {
    justify-content: flex-start;
  }

  .header-main {
    min-height: 70px;
  }

  .nav-toggle {
    top: 67px;
    right: auto;
    left: min(calc(100vw - 62px), 326px);
  }

  .brand img {
    width: 52px;
    height: 46px;
  }

  .site-header.menu-visible .main-nav {
    top: 132px;
  }

  .site-header.menu-visible .header-tools {
    top: 370px;
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding: 190px 28px 56px;
  }

  .hero-content,
  .hero-panel,
  .hero-visual,
  .section-heading {
    width: 100%;
    max-width: 334px;
  }

  .hero-visual-main {
    height: 220px;
  }

  .hero-visual-secondary {
    width: 82%;
    height: 150px;
    margin-top: -48px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.1;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .request-copy p,
  .advantages-grid p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-action {
    width: 100%;
  }

  .metrics-grid,
  .catalog-service-grid,
  .advantages-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section,
  .services-section,
  .request-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .service-card,
  .catalog-service-card,
  .advantages-grid article,
  .metrics-grid article {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .top-strip {
    font-size: 12px;
  }

  .brand img {
    width: 48px;
  }

  .brand span {
    font-size: 17px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-panel a {
    padding: 15px;
  }

  .request-form {
    padding: 20px;
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    transform: translateY(34px) scale(0.97);
  }

  to {
    transform: translateY(14px) scale(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-content {
  animation: heroContentIn 760ms ease both;
}

.hero-visual {
  opacity: 1;
  animation: heroVisualIn 860ms 120ms ease both;
}

.hero-visual-main,
.hero-visual-secondary {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-visual:hover .hero-visual-main {
  transform: translateY(-4px);
}

.hero-visual:hover .hero-visual-secondary {
  transform: translateY(4px);
}

.service-card,
.catalog-service-card,
.advantages-grid article,
.metrics-grid article,
.request-form {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.catalog-service-card:hover,
.advantages-grid article:hover,
.metrics-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(7, 25, 52, 0.16);
}

.service-card:hover {
  border-color: rgba(115, 219, 255, 0.46);
  background: rgba(7, 25, 52, 0.72);
}

.button,
.header-action,
.service-card a {
  position: relative;
  overflow: hidden;
}

.button::after,
.header-action::after,
.service-card a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.32), transparent 90%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::after,
.header-action:hover::after,
.service-card a:hover::after {
  transform: translateX(120%);
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (min-width: 1121px) {
  .hero-visual-main {
    animation: softFloat 7s ease-in-out 1.2s infinite;
  }

  .hero-visual-secondary {
    animation: softFloat 8s ease-in-out 1.7s infinite reverse;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
