:root {
  --bg: #050605;
  --section: #0b0d0b;
  --panel: rgba(13, 15, 13, 0.84);
  --card: #101310;
  --card-strong: #141814;
  --line: rgba(150, 255, 40, 0.2);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f3f5f1;
  --muted: #a9afa5;
  --soft: #d7ded1;
  --accent: #91f01e;
  --accent-strong: #6fd800;
  --accent-dark: #182508;
  --container: 1280px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 0%, rgba(145, 240, 30, 0.12), transparent 22%),
    linear-gradient(180deg, #030403 0%, #080908 42%, #050605 100%);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

section {
  scroll-margin-top: 96px;
}

:focus-visible {
  outline: 3px solid rgba(145, 240, 30, 0.42);
  outline-offset: 3px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 86px;
  margin: 18px 32px 0;
  padding: 0 28px;
  background: rgba(4, 5, 4, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 14px rgba(145, 240, 30, 0.34));
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 0.98;
}

.brand-text strong {
  font-family: Oswald, Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 7px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(145, 240, 30, 0.9);
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--accent);
  font-weight: 900;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(145, 240, 30, 0.06);
  transition: background 180ms ease, transform 180ms ease;
}

.messenger-link:hover {
  background: rgba(145, 240, 30, 0.14);
  transform: translateY(-1px);
}

.messenger-link svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-button {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: -104px;
  padding: 190px 0 48px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 3, 0.98) 0%, rgba(3, 4, 3, 0.9) 36%, rgba(3, 4, 3, 0.38) 62%, rgba(3, 4, 3, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 4, 3, 0.36) 0%, rgba(5, 6, 5, 0.18) 58%, var(--bg) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 56px;
  height: 9px;
  background: repeating-linear-gradient(120deg, var(--accent) 0 5px, transparent 5px 10px);
}

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

h1,
h2 {
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.14;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.16;
}

h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.16;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 34px;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: #071006;
  background: linear-gradient(180deg, #a8ff35, #7ee500);
  border: 0;
  box-shadow: 0 18px 42px rgba(145, 240, 30, 0.25);
}

.button-ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--accent);
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(145, 240, 30, 0.12);
  backdrop-filter: blur(16px);
}

.hero-stats article {
  min-height: 96px;
  padding: 22px 30px;
  background: rgba(7, 8, 7, 0.88);
}

.hero-stats span {
  display: block;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.hero-stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 104px 0;
}

.services-section,
.prices-section,
.contacts-section {
  background:
    linear-gradient(180deg, rgba(145, 240, 30, 0.04), transparent 44%),
    var(--section);
}

.section-head {
  max-width: 860px;
  margin-bottom: 46px;
}

.section-head p:last-child,
.about-copy p,
.prices-copy p,
.booking-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-groups {
  display: grid;
  gap: 52px;
}

.service-group {
  display: grid;
  gap: 22px;
}

.service-group > h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-group > h3::before {
  content: "";
  width: 46px;
  height: 7px;
  background: repeating-linear-gradient(120deg, var(--accent) 0 5px, transparent 5px 10px);
}

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

.services-grid-small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: calc((100% - 36px) / 2);
}

.service-card,
.case-card,
.lead-card,
.price-list,
.about-photo,
.booking-photo,
.map-wrap {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 228px 1fr;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card-text {
  grid-template-rows: 1fr;
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 240, 30, 0.12), transparent 32%),
    var(--card-strong);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
  transition: transform 300ms ease, filter 300ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(145, 240, 30, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.service-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.1);
}

.service-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: 24px;
  min-height: 100%;
}

.service-tag {
  width: max-content;
  padding: 7px 10px;
  color: #071006;
  font-size: 13px;
  font-weight: 900;
  background: var(--accent);
  border-radius: 4px;
}

.service-body p,
.case-copy p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 48px;
  margin-top: 4px;
  padding: 0 18px;
  color: var(--accent);
  font-weight: 900;
  border: 1px solid rgba(145, 240, 30, 0.42);
  border-radius: var(--radius);
  background: rgba(145, 240, 30, 0.04);
}

.about-section {
  background: var(--bg);
}

.about-grid,
.booking-grid,
.contact-grid,
.prices-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.about-points span {
  padding: 16px 18px;
  color: #fff;
  font-weight: 800;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.about-photo,
.booking-photo {
  overflow: hidden;
  margin: 0;
}

.about-photo {
  aspect-ratio: 1.38 / 1;
}

.about-photo img,
.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-section {
  background:
    radial-gradient(circle at 78% 0%, rgba(145, 240, 30, 0.1), transparent 24%),
    var(--bg);
}

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

.case-card {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(145, 240, 30, 0.48);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.38);
}

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
}

.compare figure {
  position: relative;
  height: 188px;
  margin: 0;
  overflow: hidden;
  background: #070807;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  color: #071006;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  border-radius: 4px;
}

.case-copy {
  padding: 26px;
}

.case-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(145, 240, 30, 0.04), transparent 46%),
    var(--section);
}

.reviews-head {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.reviews-head > div:first-child {
  max-width: 860px;
}

.review-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.review-controls button {
  width: 52px;
  height: 52px;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.review-controls button:hover {
  transform: translateY(-1px);
  border-color: rgba(145, 240, 30, 0.5);
  background: rgba(145, 240, 30, 0.06);
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 240ms ease;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 18px;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 292px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card strong {
  display: block;
  align-self: end;
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.review-dots button.is-active {
  width: 34px;
  background: var(--accent);
}

.prices-grid {
  align-items: start;
}

.prices-copy {
  position: sticky;
  top: 124px;
}

.price-list {
  overflow: hidden;
}

.price-group {
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.price-group:last-child {
  border-bottom: 0;
}

.price-group h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Oswald, Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-group div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.price-group div:last-child {
  border-bottom: 0;
}

.price-group-service {
  background:
    linear-gradient(90deg, rgba(145, 240, 30, 0.08), transparent 64%),
    rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--accent);
}

.price-list span {
  color: var(--soft);
  line-height: 1.4;
}

.price-list strong {
  color: var(--accent);
  white-space: nowrap;
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(145, 240, 30, 0.07), transparent 48%),
    var(--bg);
}

.booking-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.booking-photo {
  aspect-ratio: 16 / 9;
  margin-top: 32px;
}

.lead-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: rgba(13, 15, 13, 0.92);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.form-title {
  margin-bottom: 6px;
  color: #fff;
  font-family: Oswald, Inter, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
}

.lead-card label {
  display: grid;
  gap: 8px;
}

.lead-card label span {
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.lead-card input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  outline: 0;
}

.lead-card input::placeholder {
  color: #6f756c;
}

.lead-card small {
  color: var(--muted);
  line-height: 1.5;
}

.contact-grid {
  align-items: stretch;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-lines a,
.contact-lines span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.contact-lines a {
  color: var(--accent);
}

.map-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(0.84) contrast(1.08) brightness(0.78);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #071006;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 18px 52px rgba(145, 240, 30, 0.28);
}

.footer {
  padding: 34px 0;
  color: var(--muted);
  background: #020302;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: var(--accent);
  font-weight: 900;
}

.footer-legal {
  margin-top: 12px;
  max-width: 760px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.footer-legal span {
  margin: 0 6px;
}

.footer-legal p {
  margin: 8px 0 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto auto;
    margin: 14px 18px 0;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: 104px 18px auto;
    display: grid;
    gap: 0;
    padding: 8px 24px 20px;
    background: rgba(4, 5, 4, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
  }

  body.nav-open .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  body.nav-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 170px;
  }

  .hero-stats,
  .services-grid,
  .services-grid-small,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid-small {
    max-width: none;
  }

  .reviews-head {
    display: grid;
    align-items: start;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .about-grid,
  .booking-grid,
  .contact-grid,
  .prices-grid {
    grid-template-columns: 1fr;
  }

  .prices-copy {
    position: static;
  }

  .lead-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .topbar {
    min-height: 74px;
    margin: 10px 10px 0;
    padding: 0 14px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 11px;
    letter-spacing: 2.2px;
  }

  body.nav-open .site-nav {
    inset: 88px 10px auto;
  }

  .hero {
    margin-top: -84px;
    padding: 132px 0 36px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 4, 3, 0.8) 0%, rgba(3, 4, 3, 0.88) 48%, var(--bg) 100%),
      linear-gradient(90deg, rgba(3, 4, 3, 0.88), rgba(3, 4, 3, 0.36));
  }

  .kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .kicker::before {
    width: 38px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lead,
  .section-head p:last-child,
  .about-copy p,
  .prices-copy p,
  .booking-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-stats,
  .services-grid,
  .services-grid-small,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-stats article {
    min-height: auto;
    padding: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .service-card {
    grid-template-rows: 220px 1fr;
  }

  .compare figure {
    height: 202px;
  }

  .price-group {
    padding: 18px;
  }

  .price-group div {
    display: grid;
    gap: 8px;
    padding: 14px 0;
  }

  .price-list strong {
    white-space: normal;
  }

  .review-card {
    flex-basis: 88%;
    min-height: 330px;
  }

  .booking-photo {
    aspect-ratio: 4 / 3;
  }

  .lead-card {
    padding: 22px;
  }

  .form-title {
    font-size: 29px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 32px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .service-body,
  .case-copy {
    padding: 20px;
  }

  .contact-lines a,
  .contact-lines span {
    font-size: 16px;
  }
}

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

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