*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1A1F36;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,74,138,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,74,138,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}
.bg-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.bg-glow-1 {
  top: -20vw; left: -20vw;
  background: radial-gradient(circle, rgba(46,74,138,0.18), transparent 70%);
}
.bg-glow-2 {
  bottom: -25vw; right: -20vw;
  background: radial-gradient(circle, rgba(30,58,111,0.14), transparent 70%);
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46,74,138,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; }
.logo-svg { display: block; width: auto; height: 30px; }
.phone-link {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1A2C5B;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.phone-icon {
  display: inline-flex;
  background: #EFF3FC;
  padding: 8px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.phone-link:hover .phone-icon { transform: scale(1.08); }
.phone-svg { width: 16px; height: 16px; color: #1A2C5B; }
.phone-link:hover { color: #4066b3; }

.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(46,74,138,0.08);
  z-index: 60;
  pointer-events: none;
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, #1E3A6F, #2E4A8A);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.deck {
  position: relative;
  width: 100%;
  height: 100dvh;
  z-index: 1;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px) scale(0.98);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.9s;
  padding: 110px 0 60px;
  overflow: hidden;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  z-index: 2;
}
.slide.is-prev {
  transform: translateY(-60px) scale(0.98);
  opacity: 0;
}
.slide.is-next {
  transform: translateY(60px) scale(0.98);
  opacity: 0;
}
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 720px) {
  .slide.is-active .slide-bg {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 0;
  }
  .slide.is-active .slide-content {
    position: relative;
    z-index: 2;
  }
  .deco-wave {
    bottom: 0;
    height: 40vh;
  }
}
.slide-deco { position: absolute; }
.deco-chart { bottom: 0; left: 0; width: 100%; height: 60%; }
.deco-rings { top: 50%; right: -150px; width: 700px; height: 700px; transform: translateY(-50%); }
.deco-dots { inset: 0; width: 100%; height: 100%; }
.deco-wave { bottom: 0; left: 0; width: 100%; height: 50%; }
.deco-cta { inset: 0; width: 100%; height: 100%; }
.deco-phrases { inset: 0; width: 100%; height: 100%; }

.kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2E4A8A;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.is-active .kicker { opacity: 1; transform: translateY(0); }

.mega-title {
  font-size: clamp(2.6rem, 7.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #0F2B4F;
  margin-bottom: 28px;
}
.mega-title.small {
  font-size: clamp(2rem, 5vw, 4.6rem);
  margin-bottom: 40px;
}
.mega-title .line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-active .mega-title .line:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.is-active .mega-title .line:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.is-active .mega-title .line:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.is-active .mega-title .line:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }

.mega-title .accent {
  background: linear-gradient(120deg, #1E3A6F 0%, #2E4A8A 50%, #4A6FB8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mega-sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #4A5B7A;
  font-weight: 500;
  max-width: 640px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s;
}
.is-active .mega-sub { opacity: 1; transform: translateY(0); }

.hero-note {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #5A6C8A;
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
.is-active .hero-note { opacity: 1; transform: translateY(0); }

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}
.is-active .cta-group { opacity: 1; transform: translateY(0); }
.cta-group.center { justify-content: center; }

.btn-primary {
  background: #1E3A6F;
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 24px -8px rgba(30,58,111,0.4);
}
.btn-primary:hover {
  background: #0F2A4F;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(30,58,111,0.5);
}
.btn-primary.large { padding: 20px 44px; font-size: 1.1rem; }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(30,58,111,0.35);
  color: #1E3A6F;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.25s;
}
.btn-outline:hover {
  background: #1E3A6F;
  color: #fff;
  border-color: #1E3A6F;
}
.btn-outline.large { padding: 20px 40px; font-size: 1.1rem; }

.slide-phrases-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
}
.phrase-stage {
  position: relative;
  width: 100%;
  min-height: clamp(180px, 26vw, 340px);
  display: flex;
  align-items: center;
}
.phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-size: clamp(2rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #0F2B4F;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.phrase.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.phrase:nth-child(2) { color: #2E4A8A; }
.phrase:nth-child(3) { color: #0F2B4F; }
.phrase:nth-child(4) {
  background: linear-gradient(120deg, #1E3A6F 0%, #4A6FB8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phrase-note {
  margin-top: 32px;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6C8A;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.is-active .phrase-note { opacity: 1; transform: translateY(0); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.number-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-active .number-block:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.is-active .number-block:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }
.is-active .number-block:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.85s; }
.is-active .number-block:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 1.10s; }

.num {
  font-size: clamp(2.2rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #1E3A6F 0%, #2E4A8A 60%, #4A6FB8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.number-block p {
  color: #4A5B7A;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.35;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  padding: 28px 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46,74,138,0.10);
  border-radius: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-active .service:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.is-active .service:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.is-active .service:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.50s; }
.is-active .service:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }
.is-active .service:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.70s; }
.is-active .service:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.80s; }


.service:hover {
  box-shadow: 0 24px 48px -20px rgba(30,58,111,0.25);
  border-color: rgba(46,74,138,0.25);
}
.service-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2E4A8A;
  margin-bottom: 16px;
  opacity: 0.7;
}
.service h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #0F2B4F;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service p {
  color: #4A5B7A;
  font-size: 0.92rem;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.feature {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-active .feature:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.is-active .feature:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
.is-active .feature:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }
.is-active .feature:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.66s; }

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #EFF3FC;
  color: #1E3A6F;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F2B4F;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p {
  color: #4A5B7A;
  font-size: 0.9rem;
  line-height: 1.5;
}

.platform-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  border-radius: 28px;
  background: linear-gradient(110deg, #1E3A6F 0%, #11223B 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 24px 48px -20px rgba(30,58,111,0.5);
}
.is-active .platform-banner { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.platform-text .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
}
.platform-text h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.platform-text p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 560px;
}
.platform-banner .btn-primary {
  background: #fff;
  color: #1E3A6F;
  box-shadow: none;
  flex-shrink: 0;
}
.platform-banner .btn-primary:hover {
  background: #EEF3FF;
  color: #0F2A4F;
}

.slide-cta-content { text-align: center; }
.slide-cta-content .kicker { text-align: center; }
.slide-cta-content .mega-title { margin-left: auto; margin-right: auto; }
.slide-cta-content .mega-sub { margin-left: auto; margin-right: auto; text-align: center; }

.footer-mini {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(46,74,138,0.12);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}
.is-active .footer-mini { opacity: 1; transform: translateY(0); }

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo-footer-svg {
  display: block;
  width: auto;
  height: 64px;
}

.footer-contacts,
.footer-requisites {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contacts strong,
.footer-requisites strong {
  font-size: 1rem;
  color: #0F2B4F;
  font-weight: 700;
}
.footer-contacts span,
.footer-requisites span {
  font-size: 0.85rem;
  color: #5A6C8A;
}
.footer-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E3A6F;
  text-decoration: none;
  width: fit-content;
  position: relative;
  transition: color 0.25s ease;
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #1E3A6F, #4A6FB8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-link:hover {
  color: #2E4A8A;
}
.footer-link:hover::after {
  transform: scaleX(1);
}
.footer-link-phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F2B4F;
}
.footer-link-phone::after {
  height: 2px;
}

.dots-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dot {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46,74,138,0.25);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.dot:hover span {
  background: rgba(46,74,138,0.55);
  transform: scale(1.3);
}
.dot.active span {
  width: 10px;
  height: 10px;
  background: #1E3A6F;
  box-shadow: 0 0 0 4px rgba(46,74,138,0.15);
}
.dot::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1A2C5B;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.15);
}
.dot:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #5A6C8A;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease 1.4s;
}
.is-active .scroll-hint { opacity: 0.7; }
.scroll-hint svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1100px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-banner { flex-direction: column; text-align: center; }
  .platform-text p { margin: 0 auto; }
  .footer-mini {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-logo-wrap { justify-content: center; }
  .footer-contacts, .footer-requisites { align-items: center; }
  .footer-link { text-align: center; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .slide { padding: 90px 0 50px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .features-grid { grid-template-columns: 1fr; gap: 18px; }
  .num { font-size: clamp(1.6rem, 9vw, 3rem); }
  .mega-title { font-size: clamp(2rem, 10vw, 3rem); }
  .mega-title.small { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .phrase { font-size: clamp(1.6rem, 9vw, 2.6rem); }
  .dots-nav { right: 12px; gap: 12px; }
  .dot::after { display: none; }
  .phone-link .phone-text { display: none; }
  .logo-svg { height: 24px; }
  .logo-footer-svg { height: 44px; }
  .platform-banner { padding: 22px 22px; border-radius: 22px; }
  .scroll-hint {
    display: flex;
    bottom: 16px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    opacity: 0;
  }
  .is-active .scroll-hint { opacity: 0.6; }
  .scroll-hint svg { width: 14px; height: 20px; }
  .hero-note { font-size: 0.9rem; }
}

@media (max-width: 420px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num { font-size: 2.4rem; }
}

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

@media (max-width: 720px) {
  .slide {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .slide::-webkit-scrollbar {
    width: 3px;
  }
  .slide::-webkit-scrollbar-track {
    background: transparent;
  }
  .slide::-webkit-scrollbar-thumb {
    background: rgba(46, 74, 138, 0.25);
    border-radius: 3px;
  }
  .slide::-webkit-scrollbar-thumb:hover {
    background: rgba(46, 74, 138, 0.45);
  }

  .slide {
    scrollbar-width: thin;
    scrollbar-color: rgba(46, 74, 138, 0.25) transparent;
  }

  .slide-1,
  .slide-phrases {
    overflow: hidden;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 50px;
  }
}

@media (max-width: 720px) {
  .slide.is-active,
  .slide.is-prev,
  .slide.is-next {
    transform: none;
  }

  .slide.is-active .slide-bg {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 0;
  }

  .deco-wave {
    bottom: 0;
    height: 40vh;
  }
}