:root {
  --pad-x: 100px;
  --text: #111827;
  --muted: #6b7280;
  --accent: #22c55e;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.top-bar {
  background: #fff;
}

.top-bar__inner {
  width: min(1400px, 100%);
  margin-inline: auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.top-bar__logo {
  height: 110px;
  width: auto;
  display: block;
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.top-bar__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.top-bar__text {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.top-bar__label {
  font-size: 14px;
  color: var(--muted);
}

.top-bar__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.top-bar__value:hover {
  text-decoration: underline;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  background: #0f172a;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
}

.site-nav__inner {
  margin: 0 auto;
  width: min(1400px, 100%);
  padding: 10px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 9px 12px;
  text-decoration: none;
  color: rgb(255 255 255 / 0.94);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav__link:hover {
  background: rgb(34 197 94 / 0.2);
}

.site-nav__link.is-active,
.site-nav__link[aria-current="page"] {
  background: var(--accent);
  color: #052e16;
}

.site-nav__link--summary {
  cursor: pointer;
  list-style: none;
  gap: 5px;
}

.site-nav__link--summary::-webkit-details-marker {
  display: none;
}

.site-nav__link--summary::marker {
  content: "";
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown[open] > .site-nav__link--summary .site-nav__caret {
  transform: rotate(180deg);
}

.site-nav__caret {
  transition: transform 160ms ease;
}

.site-nav__submenu {
  list-style: none;
  margin: 8px 0 0;
  padding: 6px 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 0 0 10px 10px;
  border-bottom: 4px solid #3b82f6;
  box-shadow: 0 12px 24px rgb(15 23 42 / 0.22);
  z-index: 40;
}

.site-nav__submenu-link {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-top: 1px solid #e5e7eb;
}

.site-nav__submenu li:first-child .site-nav__submenu-link {
  border-top: 0;
}

.site-nav__submenu-link:hover {
  background: #e5e7eb;
}

.site-nav__quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #15803d;
  background: var(--accent);
  color: #052e16;
  text-decoration: none;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, filter 160ms ease;
}

.site-nav__quote:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.site-nav__quote:active {
  transform: translateY(0);
}

.site-nav__quote:focus-visible,
.site-nav__link:focus-visible {
  outline: 3px solid rgb(122 223 59 / 0.55);
  outline-offset: 3px;
}

.site-nav__menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgb(122 223 59 / 0.45);
  background: rgb(15 23 42 / 0.72);
  color: #f8fafc;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-nav__menu-btn:hover {
  background: rgb(15 23 42 / 0.9);
}

.site-nav__menu-btn:focus-visible {
  outline: 3px solid rgb(122 223 59 / 0.55);
  outline-offset: 3px;
}

.site-nav__sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgb(2 6 23 / 0.6);
  z-index: 80;
}

.site-nav__sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: #0b1220;
  border-left: 1px solid rgb(148 163 184 / 0.35);
  box-shadow: -10px 0 30px rgb(2 6 23 / 0.45);
  z-index: 81;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.site-nav__sidebar[hidden],
.site-nav__sidebar-backdrop[hidden] {
  display: none;
}

body.nav-sidebar-open {
  overflow: hidden;
}

body.nav-sidebar-open .site-nav__sidebar {
  transform: translateX(0);
}

.site-nav__sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__sidebar-head p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.site-nav__sidebar-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgb(148 163 184 / 0.35);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-nav__sidebar-close:focus-visible {
  outline: 3px solid rgb(122 223 59 / 0.55);
  outline-offset: 3px;
}

.site-nav__sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-nav__sidebar-links a {
  display: block;
  text-decoration: none;
  color: rgb(241 245 249 / 0.95);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav__sidebar-links a:hover {
  background: rgb(34 197 94 / 0.18);
}

.page__inner {
  padding: 40px var(--pad-x);
}

.page {
  min-height: 100%;
}

.hero {
  position: relative;
}

.hero__viewport {
  position: relative;
  overflow: hidden;
}

.hero__viewport:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.45);
  outline-offset: 4px;
}

.hero__slides {
  position: relative;
  min-height: 78vh;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(44px, 6vw, 86px) var(--pad-x);
  color: #fff;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
  isolation: isolate;
  background-color: #020617;
}

.hero__slide[hidden] {
  display: none;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide::before,
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__slide::before {
  z-index: 0;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: 70% 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 5400ms linear;
  will-change: transform;
}

.hero__slide::after {
  z-index: 1;
  background-image: radial-gradient(
      circle at 2% 50%,
      rgb(34 197 94 / 0.22) 0%,
      transparent 58%
    ),
    radial-gradient(circle at 16% 50%, rgb(34 197 94 / 0.12) 0%, transparent 62%),
    linear-gradient(
      90deg,
      rgb(2 6 23 / 0.92) 0%,
      rgb(2 6 23 / 0.72) 42%,
      rgb(2 6 23 / 0) 74%
    );
  background-repeat: no-repeat;
}

.hero__slide.is-active::before {
  transform: scale(1.08);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  opacity: 0;
  transition: opacity 380ms ease 80ms;
}

.hero__slide.is-active .hero__content {
  opacity: 1;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(24px);
}

.hero__slide.is-active .hero__badge {
  animation: hero-text-rise 540ms ease 90ms both;
}

.hero__slide.is-active .hero__title {
  animation: hero-text-rise 620ms ease 160ms both;
}

.hero__slide.is-active .hero__text {
  animation: hero-text-rise 700ms ease 230ms both;
}

.hero__slide.is-active .hero__content .btn {
  animation: hero-text-rise 760ms ease 300ms both;
}

@keyframes hero-text-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__content,
  .hero__content > * {
    transition: none !important;
    animation: none !important;
  }

  .hero__slide::before {
    transform: none !important;
    transition: none !important;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgb(34 197 94 / 0.5);
  background: rgb(34 197 94 / 0.18);
  color: rgb(255 255 255 / 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title {
  margin: 18px 0 14px;
  font-size: clamp(40px, 5.3vw, 80px);
  line-height: 1.04;
  font-weight: 950;
  text-shadow: 0 2px 14px rgb(0 0 0 / 0.35);
}

.hero__text {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: rgb(255 255 255 / 0.86);
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 160ms ease, filter 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
}

.btn:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.45);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: #052e16;
}

.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(2 6 23 / 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 160ms ease, border-color 160ms ease,
    transform 160ms ease;
}

.hero__nav:hover {
  background: rgb(2 6 23 / 0.72);
  border-color: rgb(34 197 94 / 0.6);
}

.hero__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.hero__nav:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.45);
  outline-offset: 3px;
}

.hero__nav--prev {
  left: 18px;
}

.hero__nav--next {
  right: 18px;
}

.hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(2 6 23 / 0.38);
  backdrop-filter: blur(8px);
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

.hero__dot:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.45);
  outline-offset: 4px;
}

.services {
  padding: clamp(56px, 7vw, 88px) 0;
  background: #fff;
  --services-accent: #7adf3b;
  --services-dark: #1f4d25;
}

.about {
  background: #f8fafc;
  padding: clamp(56px, 7vw, 90px) 0;
}

.about__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.about__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #d9e6d8;
  box-shadow: 0 14px 24px rgb(15 23 42 / 0.18);
}

.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__content {
  align-self: center;
}

.about__badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgb(34 197 94 / 0.2);
  color: #14532d;
  border: 1px solid rgb(34 197 94 / 0.35);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about__title {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: clamp(31px, 4.1vw, 58px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.about__title-image {
  display: block;
  width: clamp(230px, 31vw, 420px);
  max-width: 100%;
  height: auto;
  margin: 0 0 4px;
}

.about__title-line {
  display: block;
}

.about__highlight {
  margin: 18px 0 0;
  color: #166534;
  font-size: clamp(18px, 1.65vw, 29px);
  line-height: 1.45;
  font-weight: 800;
}

.about__lead {
  margin: 14px 0 0;
  max-width: 68ch;
  color: #475569;
  line-height: 1.7;
  font-size: 18px;
}

.about__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-size: 19px;
  font-weight: 700;
}

.about__list iconify-icon {
  color: var(--accent);
  font-size: 21px;
  flex: 0 0 auto;
}

.about__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  border-radius: 11px;
  padding: 13px 20px;
  background: var(--accent);
  border: 1px solid #15803d;
  color: #052e16;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f172a;
  font-size: 19px;
  font-weight: 800;
}

.about__phone iconify-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  padding: 11px;
}

.about__cta:hover {
  filter: brightness(1.05);
}

.about__phone:hover span {
  text-decoration: underline;
}

.about__cta:focus-visible,
.about__phone:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.4);
  outline-offset: 3px;
}

.about__phone span {
  margin: 0;
}

.partners-home {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 96px) 0;
  background:
    radial-gradient(900px 360px at 50% -40px, rgb(34 197 94 / 0.1), transparent 62%),
    radial-gradient(520px 220px at 50% 92%, rgb(34 197 94 / 0.08), transparent 68%),
    linear-gradient(180deg, #f7fbf7 0%, #ffffff 58%, #f7faf8 100%);
  border-top: 1px solid #e2ebe3;
  border-bottom: 1px solid #e2ebe3;
}

.partners-home::before,
.partners-home::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(34 197 94 / 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.partners-home::before {
  left: -120px;
}

.partners-home::after {
  right: -120px;
}

.partners-home__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
  z-index: 1;
}

.partners-home__intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.partners-home__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  background: linear-gradient(180deg, rgb(220 252 231 / 0.92), rgb(209 250 229 / 0.84));
  border: 1px solid rgb(34 197 94 / 0.24);
  color: #166534;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgb(34 197 94 / 0.08);
}

.partners-home__title {
  margin: 16px 0 0;
  color: #14532d;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.partners-home__text {
  margin: 12px auto 0;
  max-width: 58ch;
  color: #334155;
  font-size: 18px;
  line-height: 1.75;
}

.partners-home__marquee {
  position: relative;
  margin-top: clamp(24px, 3vw, 34px);
  overflow: hidden;
  min-height: 190px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 34px;
  border: 1px solid rgb(214 229 219 / 0.92);
  background: linear-gradient(180deg, rgb(255 255 255 / 0.8), rgb(255 255 255 / 0.94));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.8), 0 28px 48px rgb(15 23 42 / 0.08);
  backdrop-filter: blur(10px);
  isolation: isolate;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.partners-home__marquee::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(200px, 20vw, 260px);
  height: clamp(120px, 13vw, 160px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgb(34 197 94 / 0.22) 0%, rgb(34 197 94 / 0.1) 42%, transparent 74%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

.partners-home__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  will-change: transform;
  position: relative;
  z-index: 2;
}

.partners-home__card {
  flex: 0 0 clamp(148px, 15vw, 184px);
  min-height: 132px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(246 250 247 / 0.88));
  border: 1px solid rgb(217 230 219 / 0.9);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.82), 0 14px 22px rgb(15 23 42 / 0.07);
  opacity: 0.34;
  filter: grayscale(0.08) saturate(0.66);
  transform: translateY(6px) scale(0.84);
  transition:
    transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 320ms ease,
    opacity 320ms ease,
    filter 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
  position: relative;
  z-index: 1;
}

.partners-home__card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-9px) scale(1.1);
  border-color: rgb(34 197 94 / 0.45);
  background: linear-gradient(180deg, rgb(255 255 255 / 1), rgb(244 251 246 / 0.96));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.95),
    0 26px 46px rgb(15 23 42 / 0.16),
    0 10px 26px rgb(34 197 94 / 0.14);
  z-index: 3;
}

.partners-home__card:hover {
  transform: translateY(-4px) scale(0.9);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.82), 0 18px 28px rgb(15 23 42 / 0.1);
}

.partners-home__card.is-active:hover {
  transform: translateY(-9px) scale(1.1);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.95),
    0 26px 46px rgb(15 23 42 / 0.16),
    0 10px 26px rgb(34 197 94 / 0.14);
}

.partners-home__logo {
  display: block;
  width: 100%;
  max-width: 156px;
  max-height: 78px;
  object-fit: contain;
  opacity: 0.88;
  transform: scale(0.94);
  filter: drop-shadow(0 8px 16px rgb(15 23 42 / 0.06));
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 320ms ease, filter 320ms ease;
}

.partners-home__card.is-active .partners-home__logo {
  opacity: 1;
  transform: scale(1.08);
  filter: contrast(1.04) saturate(1.04) drop-shadow(0 10px 18px rgb(15 23 42 / 0.14));
}

@media (prefers-reduced-motion: reduce) {
  .partners-home__marquee {
    overflow-x: auto;
    padding-bottom: 12px;
    min-height: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners-home__marquee::before {
    display: none;
  }

  .partners-home__card {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 720px) {
  .partners-home {
    padding: clamp(52px, 10vw, 74px) 0;
  }

  .partners-home__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .partners-home__text {
    font-size: 16px;
  }

  .partners-home__marquee {
    min-height: 160px;
    padding: 14px;
    border-radius: 26px;
  }

  .partners-home__card {
    flex-basis: clamp(138px, 38vw, 164px);
    min-height: 120px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .partners-home__logo {
    max-width: 136px;
    max-height: 66px;
  }
}

.services::before {
  content: none;
}

.services__bg {
  display: none;
}

.services__inner {
  width: min(1400px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.services__title {
  margin: 0;
  text-align: center;
  color: var(--services-dark);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.services__grid {
  margin-top: clamp(18px, 2.6vw, 30px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (min-width: 1121px) {
  .services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  width: 100%;
  min-height: 280px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e3e8e1;
  padding: 18px 18px 18px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  justify-items: center;
  text-align: center;
  box-shadow: 0 6px 12px rgb(2 6 23 / 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 16px rgb(2 6 23 / 0.18);
}

.service-card__icon {
  width: 96px;
  height: 96px;
  font-size: 96px;
  line-height: 1;
  color: var(--services-dark);
  display: inline-block;
}

.service-card__title {
  margin: 0;
  color: var(--services-dark);
  font-size: 15px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
}

.service-card__text {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--services-accent);
  border: 1px solid #5fbe2d;
  color: #0b2a12;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgb(0 0 0 / 0.12);
  transition: transform 160ms ease, filter 160ms ease;
}

.service-card__btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.service-card__btn:focus-visible {
  outline: 3px solid rgb(122 223 59 / 0.45);
  outline-offset: 3px;
}

.cleaning-showcase {
  padding: clamp(56px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at top right, rgb(34 197 94 / 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 32%, #f0fdf4 100%);
}

.cleaning-showcase__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.cleaning-showcase__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.cleaning-showcase__intro,
.cleaning-showcase__mission,
.cleaning-panel,
.cleaning-products {
  background: rgb(255 255 255 / 0.94);
  border: 1px solid #d8e5da;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgb(15 23 42 / 0.08);
}

.cleaning-showcase__intro {
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  align-content: center;
  gap: 16px;
}

.cleaning-showcase__eyebrow {
  margin: 0;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cleaning-showcase__title {
  margin: 0;
  color: #14532d;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
}

.cleaning-showcase__lead {
  margin: 0;
  max-width: 64ch;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.cleaning-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cleaning-showcase__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.cleaning-showcase__action:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.cleaning-showcase__action--primary {
  background: #15803d;
  color: #fff;
  border: 1px solid #166534;
}

.cleaning-showcase__action--secondary {
  background: #f8fafc;
  color: #14532d;
  border: 1px solid #bbf7d0;
}

.cleaning-showcase__mission {
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(160deg, #134e4a 0%, #14532d 100%);
  border-color: #166534;
  color: #f7fee7;
  display: grid;
  gap: 18px;
}

.cleaning-showcase__subhead {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
}

.cleaning-showcase__mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cleaning-showcase__mission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
  line-height: 1.5;
}

.cleaning-showcase__mission-item iconify-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  flex: 0 0 auto;
}

.cleaning-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cleaning-panel,
.cleaning-products {
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  gap: 18px;
}

.cleaning-panel__head,
.cleaning-products__head {
  display: grid;
  gap: 10px;
}

.cleaning-panel__title {
  margin: 0;
  color: #14532d;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

.cleaning-panel__lead {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.cleaning-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cleaning-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.55;
}

.cleaning-list li iconify-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  flex: 0 0 auto;
  color: #16a34a;
  margin-top: 1px;
}

.cleaning-panel--method {
  gap: 20px;
}

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

.cleaning-step {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #d8e5da;
  background: linear-gradient(180deg, #f8fafc 0%, #eefbf1 100%);
  display: grid;
  gap: 14px;
}

.cleaning-step__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cleaning-step__title strong {
  color: #14532d;
  font-size: 18px;
  line-height: 1.3;
}

.cleaning-step__number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #14532d;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  flex: 0 0 auto;
}

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

.cleaning-step__list li {
  position: relative;
  padding-left: 16px;
  color: #334155;
  line-height: 1.55;
}

.cleaning-step__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  transform: translateY(-50%);
}

.cleaning-step__note {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.cleaning-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cleaning-type-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #d8e5da;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  display: grid;
  gap: 10px;
}

.cleaning-type-card iconify-icon {
  width: 26px;
  height: 26px;
  font-size: 26px;
  color: #15803d;
}

.cleaning-type-card h4,
.cleaning-product-card h4 {
  margin: 0;
  color: #14532d;
  font-size: 18px;
  line-height: 1.35;
}

.cleaning-type-card p,
.cleaning-product-card__desc {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

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

.cleaning-product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 20px rgb(15 23 42 / 0.06);
}

.cleaning-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.cleaning-product-card__tag {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cleaning-product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #22c55e;
  color: #052e16;
  border: 1px solid #16a34a;
  transition: transform 160ms ease, filter 160ms ease;
}

.cleaning-product-card__btn:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.products-shop {
  padding: clamp(56px, 7vw, 88px) 0;
  background: #f8fafc;
}

.products-shop__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.products-shop__title {
  margin: 0;
  text-align: center;
  color: #14532d;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
}

.products-shop__lead {
  margin: 12px auto 0;
  max-width: 64ch;
  text-align: center;
  color: #475569;
  line-height: 1.6;
}

.products-shop__carousel {
  margin-top: clamp(18px, 2.8vw, 30px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.products-shop__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 18px;
}

.products-shop__viewport::-webkit-scrollbar {
  display: none;
}

.products-shop__viewport:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.35);
  outline-offset: 4px;
}

.products-shop__track {
  display: flex;
  gap: 18px;
}

.products-shop__nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #08131f;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 24px rgb(15 23 42 / 0.16);
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease,
    border-color 160ms ease;
}

.products-shop__nav:hover:not(:disabled) {
  background: #0f1d2e;
  border-color: #22c55e;
}

.products-shop__nav:active:not(:disabled) {
  transform: scale(0.96);
}

.products-shop__nav:focus-visible {
  outline: 3px solid rgb(34 197 94 / 0.4);
  outline-offset: 3px;
}

.products-shop__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-shop-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 16px rgb(15 23 42 / 0.08);
}

.product-shop-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.product-shop-card__service {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-shop-card h3 {
  margin: 0;
  color: #1e293b;
  font-size: 16px;
  line-height: 1.35;
}

.product-shop-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: auto;
  border-radius: 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #22c55e;
  color: #052e16;
  border: 1px solid #16a34a;
}

.product-shop-card__btn:hover {
  filter: brightness(0.98);
}

.faqs {
  padding: clamp(56px, 7vw, 88px) 0;
  background: #fff;
}

.faqs__inner {
  width: min(1000px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.faqs__title {
  margin: 0;
  text-align: center;
  color: #14532d;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
}

.faqs__list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #dbe5df;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0 14px;
}

.faq-item summary {
  cursor: pointer;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.faq-item p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.6;
}

.contact {
  padding: clamp(72px, 8vw, 112px) 0;
  background: #1f4d25;
  color: #fff;
  --contact-accent: #7adf3b;
}

.contact__inner {
  width: min(1280px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.contact__title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  text-wrap: balance;
}

.contact__subtitle {
  margin: 12px auto 0;
  text-align: center;
  max-width: 60ch;
  color: rgb(255 255 255 / 0.85);
  line-height: 1.6;
}

.contact__grid {
  margin-top: clamp(22px, 3.4vw, 34px);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.contact-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgb(15 23 18 / 0.12);
  box-shadow: 0 14px 26px rgb(2 6 23 / 0.18);
  color: #14532d;
  padding: 18px 18px 20px;
}

.contact-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.contact-card__title {
  margin: 0 0 14px;
  color: #14532d;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 950;
}

.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-card__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgb(34 197 94 / 0.16);
  color: #14532d;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.contact-card__icon iconify-icon {
  width: 22px;
  height: 22px;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card span {
  line-height: 1.45;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field__label {
  font-weight: 600;
  font-size: 12px;
  color: rgb(255 255 255 / 0.92);
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #d7e2d3;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 8px 10px;
  box-shadow: none;
}

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

.contact-form__submit {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--contact-accent);
  color: #0b2a12;
  transition: transform 160ms ease, filter 160ms ease;
}

.contact-form__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.contact-form__submit:active {
  transform: translateY(0);
}

.contact-form__submit:focus-visible {
  outline: 3px solid rgb(122 223 59 / 0.55);
  outline-offset: 3px;
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.contact .form-status--success {
  color: #bbf7d0;
}

.contact .form-status--error {
  color: #fecaca;
}

.contact input:focus-visible,
.contact select:focus-visible,
.contact textarea:focus-visible {
  outline: 3px solid rgb(122 223 59 / 0.55);
  outline-offset: 3px;
}

.contact--simple .contact__grid {
  grid-template-columns: 1fr;
}

.contact--simple .contact-card {
  display: none;
}

.contact--simple .contact-form {
  justify-self: center;
  width: 100%;
  max-width: 980px;
}

.contact--simple .contact-form__grid {
  grid-template-areas:
    "name email"
    "phone message"
    "type message"
    "location message";
}

.contact--simple .contact-field--full {
  grid-column: auto;
}

.contact--simple .contact-field--name {
  grid-area: name;
}

.contact--simple .contact-field--email {
  grid-area: email;
}

.contact--simple .contact-field--phone {
  grid-area: phone;
}

.contact--simple .contact-field--type {
  grid-area: type;
}

.contact--simple .contact-field--location {
  grid-area: location;
}

.contact--simple .contact-field--message {
  grid-area: message;
}

.contact--simple .contact-field--message textarea {
  height: 100%;
  min-height: 160px;
  resize: none;
}

.home-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #0b1220 55%, #111827 100%);
  color: #f8fafc;
}

.home-footer__inner {
  width: min(1400px, 100%);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 60px) var(--pad-x) 24px;
}

.home-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.home-footer__col {
  min-width: 0;
}

.home-footer__heading {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.home-footer__heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin-top: 12px;
  background: var(--accent);
}

.home-footer__about-text {
  margin: 18px 0 12px;
  font-size: 17px;
  line-height: 1.6;
  color: rgb(241 245 249 / 0.92);
}

.home-footer__card-image {
  display: block;
  width: min(340px, 100%);
  border-radius: 16px;
  border: 1px solid rgb(255 255 255 / 0.22);
  box-shadow: 0 12px 22px rgb(2 6 23 / 0.28);
}

.home-footer__contact-list,
.home-footer__link-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.home-footer__contact-list {
  display: grid;
  gap: 14px;
}

.home-footer__contact-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.home-footer__contact-list iconify-icon {
  margin-top: 2px;
  font-size: 24px;
  color: var(--accent);
}

.home-footer__contact-list span {
  display: grid;
  gap: 2px;
  font-size: 15px;
  line-height: 1.5;
  color: rgb(241 245 249 / 0.94);
}

.home-footer__contact-list strong {
  color: #fff;
  font-size: 16px;
}

.home-footer__contact-list a {
  color: rgb(241 245 249 / 0.95);
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.home-footer__contact-list a:hover {
  text-decoration: underline;
}

.home-footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-footer__link-list li {
  display: flex;
  align-items: center;
}

.home-footer__link-list li::before {
  content: "\279C";
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
  line-height: 1;
}

.home-footer__link-list a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.home-footer__link-list a:hover {
  color: #8de56a;
}

.home-footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 4vw, 42px);
  padding-top: 20px;
  border-top: 1px solid rgb(148 163 184 / 0.25);
}

.home-footer__bottom p {
  margin: 0;
  text-align: center;
  color: rgb(241 245 249 / 0.9);
  font-size: 16px;
}

@media (max-width: 1280px) {
  :root {
    --pad-x: 64px;
  }
}

@media (max-width: 1200px) {
  .about__inner {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
    gap: 28px;
  }

  .about__media {
    max-width: 500px;
  }

  .about__title {
    font-size: clamp(30px, 3.7vw, 48px);
  }

  .about__title-image {
    width: clamp(220px, 27vw, 360px);
  }

  .about__highlight {
    margin-top: 14px;
    font-size: clamp(17px, 1.5vw, 23px);
  }

  .about__lead {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.65;
  }

  .about__list {
    margin-top: 16px;
    gap: 10px;
  }

  .about__list li {
    font-size: 17px;
  }

  .about__actions {
    margin-top: 20px;
    gap: 10px;
  }

  .about__cta {
    min-width: 200px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .about__phone {
    font-size: 17px;
  }

  .about__phone iconify-icon {
    width: 42px;
    height: 42px;
    padding: 10px;
  }
}

@media (max-width: 1120px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .cleaning-showcase__hero,
  .cleaning-showcase__grid,
  .cleaning-steps {
    grid-template-columns: 1fr;
  }

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

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about__media {
    width: min(720px, 100%);
    justify-self: center;
  }

  .home-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }
}

@media (max-width: 960px) {
  :root {
    --pad-x: 40px;
  }

  .top-bar__inner {
    justify-content: center;
    align-items: center;
    padding-block: 8px;
    gap: 0;
  }

  .top-bar__logo {
    height: 100px;
  }

  .top-bar__contacts {
    display: none;
  }

  .site-nav__inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .site-nav__links {
    width: auto;
    flex: 0 0 auto;
    justify-content: center;
    gap: 8px;
    order: 1;
  }

  .site-nav__item--in-sidebar {
    display: none;
  }

  .site-nav__menu-btn {
    display: inline-flex;
    order: 3;
  }

  .site-nav__quote {
    align-self: center;
    order: 2;
  }

  .hero__slides {
    min-height: 72vh;
  }

  .hero__content {
    margin-inline: auto;
    text-align: center;
  }

  .hero__badge {
    margin-inline: auto;
  }

  .hero__text {
    margin-inline: auto;
    margin-bottom: 28px;
  }

  .hero__content .btn {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --pad-x: 22px;
  }

  .top-bar__inner {
    align-items: center;
    margin: 0;
  }

  .top-bar__logo {
    height: 90px;
  }

  .top-bar__brand {
    align-self: center;
  }

  .top-bar__contacts {
    display: none;
  }

  .site-nav__inner {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .site-nav__links {
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .site-nav__item {
    width: auto;
    display: list-item;
  }

  .site-nav__link,
  .site-nav__link--summary {
    width: auto;
    justify-content: center;
  }

  .site-nav__menu-btn {
    display: inline-flex;
  }

  .site-nav__quote {
    align-self: center;
  }

  .home-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-footer__col {
    text-align: center;
  }

  .home-footer__heading {
    font-size: clamp(22px, 6vw, 30px);
  }

  .home-footer__heading::after {
    margin-inline: auto;
  }

  .home-footer__about-text {
    font-size: 16px;
    max-width: 34ch;
    margin-inline: auto;
  }

  .home-footer__card-image {
    width: min(320px, 100%);
    margin-inline: auto;
  }

  .home-footer__contact-list {
    justify-items: center;
  }

  .home-footer__contact-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-footer__contact-list strong {
    font-size: 15px;
  }

  .home-footer__contact-list span,
  .home-footer__link-list a {
    font-size: 16px;
  }

  .home-footer__link-list li {
    justify-content: center;
  }

  .home-footer__bottom p {
    font-size: 15px;
  }

  .hero__slide::before {
    background-position: 62% 50%;
  }

  .hero__slide::after {
    background-image: linear-gradient(
      90deg,
      rgb(2 6 23 / 0.92) 0%,
      rgb(2 6 23 / 0.82) 55%,
      rgb(2 6 23 / 0.14) 90%
    );
  }

  .hero__nav--prev {
    left: 10px;
  }

  .hero__nav--next {
    right: 10px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cleaning-showcase__mission-grid,
  .cleaning-types,
  .cleaning-products__grid {
    grid-template-columns: 1fr;
  }

  .products-shop__carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "viewport viewport"
      "prev next";
    gap: 12px;
  }

  .products-shop__viewport {
    grid-area: viewport;
  }

  .products-shop__nav {
    display: grid;
    width: 46px;
    height: 46px;
  }

  .products-shop__nav--prev {
    grid-area: prev;
    justify-self: start;
  }

  .products-shop__nav--next {
    grid-area: next;
    justify-self: end;
  }

  .product-shop-card {
    flex-basis: 100%;
  }

  .cleaning-showcase__actions {
    flex-direction: column;
  }

  .cleaning-showcase__action {
    width: 100%;
  }

  .cleaning-showcase__intro,
  .cleaning-showcase__mission,
  .cleaning-panel,
  .cleaning-products {
    border-radius: 20px;
  }

  .about__title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .about__title-image {
    width: clamp(220px, 66vw, 360px);
  }

  .about__highlight {
    font-size: clamp(17px, 5.4vw, 26px);
  }

  .about__lead {
    font-size: 17px;
  }

  .about__list li {
    font-size: 17px;
  }

  .about__cta {
    width: 100%;
    font-size: 15px;
  }

  .about__actions {
    justify-content: center;
  }

  .about__phone {
    justify-content: center;
    font-size: 17px;
  }

  .contact--simple .contact-form__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "email"
      "phone"
      "type"
      "location"
      "message";
  }

  .contact--simple .contact-field--message textarea {
    min-height: 140px;
  }
}

@media (max-width: 560px) {
  .top-bar__logo {
    height: 78px;
  }

  .top-bar__value {
    font-size: 18px;
  }

  .hero__badge {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 8px 14px;
  }

  .hero__title {
    font-size: clamp(32px, 11vw, 46px);
  }

  .hero__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__nav {
    width: 42px;
    height: 42px;
  }

  .about__phone {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .about__phone iconify-icon {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .about__title-image {
    width: clamp(200px, 72vw, 320px);
  }

  .home-footer__heading::after {
    width: 44px;
  }
}
