/*
 * Dimevs Landing — главная.
 * Референс уровня: dormakaba (спокойный premium), не копия сетки.
 */

:root {
  --dl-brand: #012059;
  --dl-brand-light: #022d6b;
  --dl-ink: #0b1220;
  --dl-ink-soft: #1a2336;
  --dl-muted: #667085;
  --dl-paper: #f6f4ef;
  --dl-paper-2: #efebe3;
  --dl-surface: #ffffff;
  --dl-accent: #012059;
  --dl-accent-hover: #023a8c;
  --dl-accent-light: #7ec8ff;
  --dl-line: rgb(1 32 89 / 12%);
  --dl-radius: 1.15rem;
  --dl-container: 74rem;
  --dl-font: "Manrope", system-ui, sans-serif;
  --dl-display: "Syne", "Manrope", sans-serif;
}

body {
  color: var(--dl-ink);
  background: var(--dl-paper);
  font-family: var(--dl-font);
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dl-container {
  width: min(100% - 2.5rem, var(--dl-container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(1 32 89 / 92%);
  backdrop-filter: blur(12px);
  color: #fff;
}

.site-header__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.site-header__brand {
  color: #fff;
  font-family: var(--dl-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
  font-size: 0.88rem;
}

.site-header__nav a {
  color: rgb(255 255 255 / 78%);
  text-decoration: none;
}

.site-header__nav a:hover {
  color: #fff;
}

.site-header__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  color: var(--dl-brand) !important;
  font-weight: 700;
}

.site-header__cta:hover {
  background: rgb(255 255 255 / 92%);
}

/* Buttons */
.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding-inline: 1.35rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.dl-btn:hover {
  transform: translateY(-1px);
}

.dl-btn--primary {
  background: var(--dl-accent);
  color: #fff;
}

.dl-btn--primary:hover {
  background: var(--dl-accent-hover);
}

.dl-hero .dl-btn--primary {
  background: #fff;
  color: var(--dl-brand);
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 20%);
}

.dl-hero .dl-btn--primary:hover {
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 28%);
}

.dl-btn--ghost {
  border: 1px solid rgb(255 255 255 / 35%);
  color: #fff;
}

.dl-btn--ghost:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 8%);
}

.dl-hero .dl-btn--ghost {
  border-color: rgb(255 255 255 / 40%);
  color: #fff;
}

.dl-hero .dl-btn--ghost:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 10%);
}

/* Home: header в тон hero (#012059) */
.home .site-header {
  background: rgb(1 32 89 / 88%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: #fff;
}

.home .site-header__brand {
  color: #fff;
}

.home .site-header__nav a {
  color: rgb(255 255 255 / 75%);
}

.home .site-header__nav a:hover {
  color: #fff;
}

/* Hero */
.dl-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(78vh, 44rem);
  overflow: hidden;
  color: #fff;
  background: var(--dl-brand);
}

.dl-hero__slider {
  position: absolute;
  inset: 0;
}

.dl-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 7s ease-out;
  will-change: opacity, transform;
}

.dl-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.dl-hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Лёгкое «живое» мерцание узлов на активном слайде */
.dl-hero__slide.is-active .dl-hero__art circle:nth-child(odd),
.dl-hero__slide.is-active .dl-hero__art circle:nth-of-type(odd) {
  animation: dl-node-pulse 3s ease-in-out infinite;
}

.dl-hero__slide.is-active .dl-hero__art path {
  animation: dl-signal-drift 8s ease-in-out infinite alternate;
}

@keyframes dl-node-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes dl-signal-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(6px); }
}

.dl-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgb(1 32 89 / 25%) 0%,
    transparent 40%,
    rgb(1 32 89 / 35%) 100%
  );
  pointer-events: none;
}

.dl-hero__inner {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, 44rem);
  margin-inline: auto;
  padding-block: clamp(4rem, 10vh, 5.5rem) clamp(3rem, 6vh, 4rem);
  text-align: center;
}

.dl-hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--dl-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: rgb(255 255 255 / 65%);
}

.dl-hero__title {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--dl-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.dl-hero__lead {
  margin: 1.15rem auto 0;
  max-width: 36rem;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.dl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.dl-hero__controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dl-hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 30%);
  cursor: pointer;
  transition: width 280ms ease, background 280ms ease;
}

.dl-hero__dot.is-active {
  width: 1.45rem;
  background: #fff;
}

.dl-hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Facts */
.dl-facts {
  border-block: 1px solid var(--dl-line);
  background: var(--dl-paper-2);
}

.dl-facts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin: 0;
  padding-block: 1.15rem;
  list-style: none;
  color: var(--dl-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.dl-facts__list li {
  position: relative;
}

.dl-facts__list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -1.05rem;
  color: rgb(14 20 36 / 35%);
}

/* Sections */
.dl-section {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}

.dl-section__head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.dl-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--dl-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dl-section h2 {
  margin: 0;
  font-family: var(--dl-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.dl-section__lead {
  margin: 0.85rem 0 0;
  color: var(--dl-muted);
}

/* Services */
.dl-services {
  background: var(--dl-surface);
}

.dl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-services__item {
  padding: 1.5rem;
  border: 1px solid var(--dl-line);
  border-radius: var(--dl-radius);
  background: var(--dl-paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.dl-services__item:hover {
  box-shadow: 0 1rem 2.5rem rgb(14 20 36 / 8%);
  transform: translateY(-3px);
}

.dl-services__item h3 {
  margin: 0;
  font-family: var(--dl-display);
  font-size: 1.2rem;
}

.dl-services__item p {
  margin: 0.65rem 0 0;
  color: var(--dl-muted);
  font-size: 0.95rem;
}

.dl-services__item:nth-child(4),
.dl-services__item:nth-child(5) {
  grid-column: span 1;
}

/* Capabilities — что могу сделать для лендинга */
.dl-capabilities {
  background: var(--dl-paper-2);
}

.dl-capabilities__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.dl-capabilities__intro {
  margin-bottom: 0;
  position: sticky;
  top: 5.5rem;
}

.dl-capabilities__cta {
  margin-top: 1.75rem;
}

.dl-capabilities__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dl-line);
}

.dl-capabilities__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--dl-line);
}

.dl-capabilities__n {
  font-family: var(--dl-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dl-brand);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.dl-capabilities__body h3 {
  margin: 0;
  font-family: var(--dl-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.dl-capabilities__body p {
  margin: 0.45rem 0 0;
  color: var(--dl-muted);
  font-size: 0.95rem;
}

/* Shop */
.dl-shop {
  background: linear-gradient(145deg, var(--dl-brand) 0%, var(--dl-brand-light) 52%, #011845 100%);
  color: #fff;
}

.dl-shop .dl-eyebrow {
  color: var(--dl-accent-light);
}

.dl-shop .dl-section__lead {
  color: rgb(255 255 255 / 68%);
}

.dl-shop__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.dl-shop__points {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
  color: rgb(255 255 255 / 78%);
}

.dl-shop__points li {
  position: relative;
  padding-left: 1.1rem;
}

.dl-shop__points li + li {
  margin-top: 0.45rem;
}

.dl-shop__points li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--dl-accent);
}

.dl-shop__visual {
  position: relative;
  min-height: 18rem;
}

.dl-shop__shot {
  display: block;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 1.1rem;
  background: #0a0e18;
  box-shadow: 0 1.75rem 3.5rem rgb(0 0 0 / 40%);
  text-decoration: none;
  transition: transform 220ms ease;
}

.dl-shop__shot:hover {
  transform: translateY(-4px);
}

.dl-shop__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.dl-shop__shot-label {
  display: block;
  padding: 0.65rem 1rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 75%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dl-shop__shot--main {
  width: 100%;
}

.dl-shop__shot--side {
  position: absolute;
  right: -0.5rem;
  bottom: -1.25rem;
  width: min(58%, 18rem);
  box-shadow: 0 1.25rem 2.5rem rgb(0 0 0 / 45%);
}

/* Insights cards as links */
.dl-insights__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: var(--dl-radius);
  background: var(--dl-surface);
  border: 1px solid var(--dl-line);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.dl-insights__card:hover {
  border-color: rgb(1 32 89 / 28%);
  transform: translateY(-3px);
}

.dl-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-insights__grid li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.dl-insights__card time {
  color: var(--dl-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.dl-insights__card h3 {
  margin: 0.75rem 0 0;
  font-family: var(--dl-display);
  font-size: 1.15rem;
  line-height: 1.25;
}

.dl-insights__card p {
  margin: 0.65rem 0 0;
  color: var(--dl-muted);
  font-size: 0.92rem;
  flex: 1;
}

.dl-insights__more {
  margin-top: 1.1rem;
  color: var(--dl-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.dl-lead__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Article */
.dl-article {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--dl-surface);
}

.dl-article__inner {
  max-width: 42rem;
}

.dl-article h1 {
  margin: 0;
  font-family: var(--dl-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
}

.dl-article__meta {
  margin: 1rem 0 0;
  color: var(--dl-muted);
  font-size: 0.9rem;
}

.dl-article__content {
  margin-top: 2rem;
  color: var(--dl-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.dl-article__content p,
.dl-article__content ul,
.dl-article__content ol {
  margin-block: 1rem;
}

.dl-article__content a {
  color: var(--dl-accent);
}

.dl-article__cta {
  margin-top: 2.5rem;
}

.dl-article .dl-eyebrow a {
  color: var(--dl-accent);
  text-decoration: none;
}
.dl-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-portfolio__item {
  padding: 1.5rem;
  border-radius: var(--dl-radius);
  background: var(--dl-surface);
  border: 1px solid var(--dl-line);
}

.dl-portfolio__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dl-portfolio__link h3 {
  margin: 0;
  font-family: var(--dl-display);
  font-size: 1.35rem;
}

.dl-portfolio__link p {
  margin: 0.65rem 0 0;
  color: var(--dl-muted);
}

.dl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.dl-tags li {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--dl-paper-2);
  color: var(--dl-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Process */
.dl-process {
  background: var(--dl-surface);
}

.dl-process__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.dl-process__list li {
  padding: 1.25rem 1rem 1.25rem 0;
  border-top: 2px solid var(--dl-brand);
}

.dl-process__n {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--dl-accent);
  font-family: var(--dl-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.dl-process__list h3 {
  margin: 0;
  font-size: 1.05rem;
}

.dl-process__list p {
  margin: 0.45rem 0 0;
  color: var(--dl-muted);
  font-size: 0.9rem;
}

/* About */
.dl-about {
  background: var(--dl-paper-2);
}

.dl-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(14rem, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.dl-about__note {
  margin-top: 1.25rem;
  color: var(--dl-muted);
  font-size: 0.95rem;
}

.dl-about__card {
  display: grid;
  align-content: end;
  min-height: 14rem;
  padding: 1.75rem;
  border-radius: var(--dl-radius);
  background: var(--dl-brand);
  color: #fff;
}

.dl-about__mark {
  font-family: var(--dl-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.dl-about__card p {
  margin: 0.75rem 0 0;
  color: rgb(255 255 255 / 65%);
}

/* Lead */
.dl-lead {
  background: var(--dl-brand);
  color: #fff;
}

.dl-lead .dl-eyebrow {
  color: var(--dl-accent-light);
}

.dl-lead .dl-section__lead,
.dl-lead a {
  color: rgb(255 255 255 / 72%);
}

.dl-lead__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.dl-lead__mail {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.dl-lead__form-wrap {
  padding: 1.5rem;
  border-radius: var(--dl-radius);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 12%);
}

.dl-lead__form {
  display: grid;
  gap: 1rem;
}

.dl-lead__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.dl-lead__form input,
.dl-lead__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--dl-ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.dl-lead__form input:focus,
.dl-lead__form textarea:focus {
  outline: none;
  border-color: var(--dl-accent-light);
  box-shadow: 0 0 0 3px rgb(126 200 255 / 25%);
}

/* Современная кнопка отправки */
.dl-btn--submit {
  width: 100%;
  min-height: 3.35rem;
  margin-top: 0.25rem;
  padding-inline: 1.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #fff 0%, #eef3fa 100%);
  color: var(--dl-brand);
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 0.35rem 1.25rem rgb(0 0 0 / 22%),
    0 0 0 1px rgb(255 255 255 / 20%) inset;
}

.dl-btn--submit:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow:
    0 0.65rem 1.75rem rgb(0 0 0 / 28%),
    0 0 0 1px rgb(255 255 255 / 30%) inset;
}

.dl-btn--submit:active {
  transform: translateY(0);
}

.dl-btn--submit svg {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 200ms ease;
}

.dl-btn--submit:hover svg {
  transform: translateX(4px);
}

.dl-btn--submit:focus-visible {
  outline: 2px solid var(--dl-accent-light);
  outline-offset: 3px;
}

.dl-lead__notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
}

.dl-lead__notice--ok {
  background: rgb(60 160 100 / 25%);
}

.dl-lead__notice--fail {
  background: rgb(200 70 60 / 25%);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--dl-line);
  background: var(--dl-paper-2);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-block: 3rem 1.5rem;
}

.site-footer__logo {
  font-family: var(--dl-display);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-footer__brand p {
  margin: 0.65rem 0 0;
  max-width: 22rem;
  color: var(--dl-muted);
  font-size: 0.92rem;
}

.site-footer__nav {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer__nav a,
.site-footer__contacts a {
  color: var(--dl-muted);
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover {
  color: var(--dl-ink);
}

.site-footer__copy {
  padding-block: 1rem 2rem;
  border-top: 1px solid var(--dl-line);
  color: var(--dl-muted);
  font-size: 0.82rem;
}

.site-footer__copy p {
  margin: 0;
}

/* Reveal — выезд текста снизу вверх (как dormakaba) */
.dl-reveal-item {
  opacity: 0;
  transform: translate3d(0, 3.25rem, 0);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--dl-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.dl-reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Заголовки секций — чуть сильнее ход */
.dl-section__head > .dl-reveal-item,
.dl-section h2.dl-reveal-item,
.dl-eyebrow.dl-reveal-item {
  transform: translate3d(0, 2.75rem, 0);
}

.dl-section__head > .dl-reveal-item.is-visible,
.dl-section h2.dl-reveal-item.is-visible,
.dl-eyebrow.dl-reveal-item.is-visible {
  transform: translate3d(0, 0, 0);
}

/* Hero — быстрый старт, короткий ход */
.dl-reveal-item--hero {
  transform: translate3d(0, 1rem, 0);
  transition-duration: 280ms;
}

.dl-reveal-item--hero.is-visible {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .dl-reveal-item,
  .dl-btn,
  .dl-services__item,
  .dl-hero__slide {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto;
  }

  .dl-hero__slide {
    opacity: 0 !important;
  }

  .dl-hero__slide.is-active {
    opacity: 1 !important;
  }

  .dl-hero__slide.is-active .dl-hero__art circle,
  .dl-hero__slide.is-active .dl-hero__art path {
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 64rem) {
  .dl-services__grid,
  .dl-insights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dl-capabilities__layout {
    grid-template-columns: 1fr;
  }

  .dl-capabilities__intro {
    position: static;
  }

  .dl-process__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dl-shop__shot--side {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .dl-shop__visual {
    min-height: 0;
  }
}

@media (max-width: 48rem) {
  .site-header__nav a:not(.site-header__cta) {
    display: none;
  }

  .dl-hero {
    min-height: min(72vh, 38rem);
  }

  .dl-hero__inner {
    padding-block: 3.5rem 3rem;
  }

  .dl-hero__controls {
    bottom: 1rem;
  }

  .dl-services__grid,
  .dl-portfolio__grid,
  .dl-insights__grid,
  .dl-process__list {
    grid-template-columns: 1fr;
  }

  .dl-facts__list li:not(:last-child)::after {
    display: none;
  }

  .dl-about__layout,
  .dl-lead__layout {
    grid-template-columns: 1fr;
  }

  .dl-about__card {
    min-height: 10rem;
  }
}
