:root {
  --cream: #f7f5ef;
  --paper: #fffdf8;
  --pine: #4e6044;
  --pine-dark: #334131;
  --sage: #879277;
  --sand: #d4bf9d;
  --line: #e9e2d7;
  --graphite: #262b29;
  --muted: #6f746e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

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

a:not(.btn):not(.logo):not(.outline-small)::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

a:not(.btn):not(.logo):not(.outline-small)::after {
  height: 2px;
  right: 0;
  bottom: -5px;
  left: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}

a:not(.btn):not(.logo):not(.outline-small):hover::after {
  transform: scaleX(1);
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

main {
  overflow: hidden;
}

.page-pad {
  width: min(100% - 128px, 1260px);
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--graphite);
}

.logo img {
  display: block;
  width: 250px;
  height: auto;
}

.logo--light img {
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.18));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  border: 1px solid var(--pine);
  border-radius: 6px;
  background: var(--pine);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 0 28px;
  background:
    linear-gradient(90deg, var(--pine-dark), var(--pine-dark)) left / 0 100% no-repeat,
    var(--pine);
  transition: background-size 280ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover {
  background-size: 100% 100%, auto;
}

.btn--small {
  min-height: 42px;
  padding-inline: 22px;
}

.btn--ghost,
.btn--outline {
  background:
    linear-gradient(90deg, var(--pine), var(--pine)) left / 0 100% no-repeat,
    rgba(255, 255, 255, 0.72);
  border-color: rgba(38, 43, 41, 0.28);
  color: var(--graphite);
}

.btn--ghost:hover,
.btn--outline:hover {
  border-color: var(--pine);
  color: #fff;
}

.outline-small {
  position: relative;
  border: 1px solid rgba(38, 43, 41, 0.22);
  border-radius: 6px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 600;
  padding: 11px 18px;
}

.hero {
  min-height: 690px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.9) 27%, rgba(247, 245, 239, 0.35) 52%, rgba(247, 245, 239, 0) 74%),
    url("images/hero-lake-cabin.png");
  background-position: center;
  background-size: cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 100px;
  right: 0;
  bottom: -12%;
  left: 60%;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  background-image:
    radial-gradient(circle at 14% 20%, rgba(250, 185, 93, 0.5) 0 1.6px, transparent 3.8px),
    radial-gradient(circle at 38% 72%, rgba(255, 226, 157, 0.42) 0 1.3px, transparent 3.4px),
    radial-gradient(circle at 64% 36%, rgba(240, 165, 71, 0.38) 0 1.4px, transparent 3.6px),
    radial-gradient(circle at 86% 68%, rgba(255, 235, 180, 0.46) 0 1.8px, transparent 4px),
    radial-gradient(circle at 24% 86%, rgba(229, 143, 61, 0.34) 0 1.1px, transparent 3.2px),
    radial-gradient(circle at 76% 18%, rgba(255, 244, 199, 0.38) 0 1px, transparent 3px);
  background-size: 140px 140px, 190px 190px, 165px 165px, 230px 230px, 120px 120px, 210px 210px;
  filter: blur(0.15px);
  opacity: 0.72;
  animation: summer-dust-drift 22s linear infinite;
}

.hero::after {
  background:
    radial-gradient(ellipse at 22% 36%, rgba(255, 205, 128, 0.18), transparent 42%),
    radial-gradient(circle at 18% 32%, rgba(255, 224, 151, 0.42) 0 1.1px, transparent 3.1px),
    radial-gradient(circle at 52% 18%, rgba(255, 246, 209, 0.34) 0 0.9px, transparent 2.8px),
    radial-gradient(circle at 78% 58%, rgba(236, 170, 83, 0.34) 0 1.2px, transparent 3px),
    radial-gradient(circle at 90% 30%, rgba(255, 231, 171, 0.38) 0 1px, transparent 3px);
  background-size: auto, 110px 110px, 150px 150px, 135px 135px, 180px 180px;
  opacity: 0.55;
  animation: summer-dust-float 30s ease-in-out infinite alternate;
}

@keyframes summer-dust-drift {
  0% {
    transform: translate3d(-2%, 1%, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(2%, -2%, 0) rotate(0.4deg);
  }
  100% {
    transform: translate3d(5%, -5%, 0) rotate(0.8deg);
  }
}

@keyframes summer-dust-float {
  0% {
    transform: translate3d(2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(-3%, 2%, 0) scale(1.03);
  }
}

.topbar {
  width: min(100% - 128px, 1260px);
  height: 104px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 44px;
  color: #171c1b;
  font-size: 14px;
  font-weight: 600;
}

.topbar nav a {
  width: fit-content;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--graphite);
  padding: 0;
}

.mobile-nav {
  display: none;
}

.hero__content {
  width: min(100% - 128px, 1260px);
  margin-inline: auto;
  padding-top: 85px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero h1 span {
  color: #768566;
}

.hero p {
  width: 440px;
  margin: 32px 0 0;
  color: #363d39;
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: 24px;
  margin-top: 34px;
}

.geo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: #6b716a;
  font-size: 14px;
}

.stats-strip {
  padding-block: 42px 36px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 136px;
  border: 1px solid rgba(233, 226, 215, 0.82);
  border-radius: 12px;
  background: rgba(250, 247, 241, 0.78);
  box-shadow: 0 18px 45px rgba(72, 70, 64, 0.07);
}

.stats-card article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 34px;
  border-right: 1px solid rgba(49, 53, 48, 0.11);
}

.stats-card article:last-child {
  border-right: 0;
}

.stats-card svg {
  color: #7c866f;
}

.stats-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.stats-card strong span {
  font-size: 25px;
}

.stats-card p {
  max-width: 150px;
  margin: 8px 0 0;
  color: #373d38;
  font-size: 14px;
  line-height: 1.7;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.platforms h2,
.process h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
}

.services {
  padding-block: 12px 55px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(38, 43, 41, 0.08);
  border-radius: 8px;
  background: #fbf8f2;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.72, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.service-card__image {
  height: 178px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.service-card__image span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  left: 22px;
  bottom: -22px;
}

.service-card__body {
  padding: 37px 24px 25px;
}

.service-card h3 {
  margin: 0 0 17px;
  font-size: 17px;
  font-weight: 700;
}

.service-card ul {
  margin: 0;
  padding-left: 17px;
  color: #303633;
  font-size: 15px;
  line-height: 1.95;
}

.case {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 5px 48px;
  position: relative;
}

.case__intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.12;
}

.case__intro p {
  margin: 30px 0 32px;
  color: #303633;
  font-size: 15px;
  line-height: 1.9;
}

.case-card {
  min-height: 460px;
  position: relative;
  --case-parallax: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #101714;
  color: #fff;
  padding: 0 36px 38px;
}

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

.case-card::before {
  inset: -9% 0;
  z-index: 0;
  background: url("images/case-biserovo-club.png") center / cover no-repeat;
  transform: translate3d(0, var(--case-parallax), 0) scale(1.04);
  will-change: transform;
}

.case-card::after {
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05));
}

.case-card > div {
  position: relative;
  z-index: 1;
}

.case-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.case-card span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  line-height: 1.4;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 9px;
}

.dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d1c8;
}

.dots span:first-child {
  background: var(--pine);
}

.platforms {
  padding-block: 35px 52px;
  border-top: 1px solid rgba(38, 43, 41, 0.08);
}

.platforms__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.platforms__head div {
  display: flex;
  gap: 18px;
}

.platforms__head button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(38, 43, 41, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #8a8d86;
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 30px;
}

.platform-logo {
  min-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #202827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  white-space: pre-line;
}

.logo-yandex::before,
.logo-sutochno::before,
.logo-avito::before,
.logo-bronevik::before,
.logo-hotels::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: -15px;
  margin-left: -18px;
  background: #f28b24;
}

.logo-ostrovok {
  color: #173c7a;
  font-size: 21px;
}

.logo-sutochno::before {
  background: #ee4056;
}

.logo-avito::before {
  background: linear-gradient(90deg, #7cc242 0 25%, #44bde6 25% 50%, #a255a4 50% 75%, #f7bf2a 75%);
}

.logo-bronevik::before {
  background: #e6422e;
}

.logo-hotels::before {
  background: #263e74;
}

.audit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 365px;
  align-items: stretch;
  padding-bottom: 66px;
  overflow: hidden;
}

.audit__media {
  min-height: 365px;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(90deg, rgba(24, 36, 25, 0.84), rgba(24, 36, 25, 0.32)),
    url("images/audit-growth-cabins.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 42px 46px;
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 780ms ease, transform 860ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.audit__media h2 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.12;
}

.audit__media p {
  max-width: 380px;
  margin: 26px 0 134px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.audit-list {
  width: 300px;
  display: grid;
  gap: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.93);
  color: #394038;
  padding: 30px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.2, 0.72, 0.24, 1);
  transition-delay: 620ms;
}

.audit-list span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.audit-list svg {
  color: #7d8b6f;
}

.lead-form {
  display: grid;
  align-content: center;
  gap: 12px;
  border-radius: 0 8px 8px 0;
  background: #fff;
  padding: 28px 34px;
  box-shadow: 0 18px 45px rgba(72, 70, 64, 0.07);
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 780ms ease, transform 860ms cubic-bezier(0.2, 0.72, 0.24, 1);
  transition-delay: 140ms;
}

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

.lead-form__wide {
  grid-column: 1 / -1;
}

.audit.is-assembled .audit__media,
.audit.is-assembled .lead-form,
.audit.is-assembled .audit-list {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lead-form label {
  display: grid;
  gap: 5px;
  color: #555d55;
  font-size: 12px;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #e7e1d8;
  border-radius: 4px;
  background: #fff;
  color: #6c716b;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
}

.lead-form input,
.lead-form select {
  height: 36px;
}

.lead-form textarea {
  min-height: 54px;
  padding-block: 9px;
  resize: vertical;
}

.lead-form__consents {
  display: grid;
  gap: 7px;
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555d55;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.lead-form .consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--pine);
}

.lead-form .consent a {
  color: var(--pine-dark);
  font-weight: 600;
}

.lead-form .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 0;
}

.form-status {
  display: none;
  color: var(--pine-dark);
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-error {
  color: #9a3728;
}

.lead-form p {
  width: 350px;
  justify-self: center;
  margin: 0;
  color: #81867f;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
}

.process {
  padding-bottom: 76px;
}

.process h2 {
  margin-bottom: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) 320px;
  gap: 38px;
  align-items: start;
}

.process-grid article {
  position: relative;
  min-width: 0;
  padding-top: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 660ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.24, 1);
  transition-delay: var(--process-delay, 0ms);
}

.process-grid article.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.process-grid article:not(:last-of-type)::after {
  content: "";
  width: calc(100% - 64px);
  height: 1px;
  background: #d4cdc2;
  position: absolute;
  top: 24px;
  left: 64px;
}

.process-grid article:not(:last-of-type)::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 20.5px;
  right: -3px;
  border-top: 1px solid #d4cdc2;
  border-right: 1px solid #d4cdc2;
  transform: rotate(45deg);
}

.process-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d1c7;
  border-radius: 50%;
  color: var(--pine);
  margin-bottom: 24px;
}

.process-grid article > span {
  color: #6e746d;
  font-size: 13px;
}

.process-grid h3 {
  margin: 8px 0 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.process-grid p {
  margin: 0;
  color: #4c534d;
  font-size: 12px;
  line-height: 1.75;
}

.quote-card {
  min-height: 250px;
  border-radius: 8px;
  background: #f4f1eb;
  padding: 34px 36px;
}

.quote-card div {
  color: #9b9f96;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.8;
}

.quote-card p {
  margin: 18px 0 24px;
  color: #3f453f;
  font-size: 13px;
  line-height: 1.75;
}

.quote-card strong,
.quote-card span {
  display: block;
  font-size: 12px;
}

.quote-card span {
  margin-top: 3px;
  color: #7f847d;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --footer-parallax: 0px;
  background-color: #3a483c;
  color: rgba(255, 255, 255, 0.78);
}

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

.site-footer::before {
  inset: -18% 0;
  z-index: 0;
  background: url("images/footer-lake-flipped.png") right center / auto 132% no-repeat;
  transform: translate3d(0, var(--footer-parallax), 0);
  will-change: transform;
}

.site-footer::after {
  z-index: 0;
  background:
    linear-gradient(90deg, #3a483c 0%, #3a483c 39%, rgba(58, 72, 60, 0.98) 47%, rgba(58, 72, 60, 0.82) 56%, rgba(58, 72, 60, 0.42) 70%, rgba(58, 72, 60, 0.16) 100%),
    linear-gradient(90deg, rgba(58, 72, 60, 0.98) 0%, rgba(58, 72, 60, 0.9) 28%, rgba(58, 72, 60, 0.62) 43%, rgba(58, 72, 60, 0.16) 60%, rgba(58, 72, 60, 0) 74%),
    linear-gradient(180deg, rgba(34, 43, 35, 0.08), rgba(34, 43, 35, 0.2));
}

.footer-inner {
  width: min(100% - 128px, 1260px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 2.42fr 1.35fr;
  gap: 74px;
  margin-inline: auto;
  padding: 118px 0 84px;
}

.footer-inner p {
  max-width: 280px;
  margin: 38px 0 34px;
  font-size: 16px;
  line-height: 1.9;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials svg {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  padding: 10px;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 26px 78px;
  align-content: start;
}

.footer-col,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 20px;
  font-size: 16px;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
}

.footer-col a {
  width: fit-content;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact span svg {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  padding: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact .btn {
  justify-self: start;
  min-width: 166px;
  min-height: 58px;
  margin-top: 18px;
  border-color: rgba(126, 139, 90, 0.86);
  background: rgba(126, 139, 90, 0.78);
  font-size: 15px;
}

.footer-bottom {
  width: min(100% - 128px, 1260px);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 34px 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 900px) {
  .page-pad,
  .topbar,
  .hero__content,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 40px, 430px);
  }

  .hero {
    min-height: 688px;
    background:
      linear-gradient(180deg, rgba(247, 245, 239, 0.96) 0%, rgba(247, 245, 239, 0.88) 43%, rgba(247, 245, 239, 0.08) 76%),
      url("images/hero-lake-cabin.png");
    background-position: center bottom;
    background-size: auto 49%;
    background-repeat: no-repeat;
  }

  .topbar {
    height: 88px;
  }

  .topbar nav,
  .topbar > .btn {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    width: min(100% - 40px, 430px);
    display: grid;
    position: absolute;
    top: 82px;
    left: 50%;
    z-index: 4;
    border: 1px solid rgba(38, 43, 41, 0.08);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 18px 44px rgba(54, 57, 52, 0.12);
    padding: 12px 18px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(38, 43, 41, 0.08);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .logo img {
    width: 188px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 33px;
    line-height: 1.12;
  }

  .hero p {
    width: 286px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .geo {
    display: none;
  }

  .stats-strip {
    padding-block: 22px 36px;
  }

  .stats-card {
    grid-template-columns: 1fr;
    gap: 0;
    background: #fbf8f2;
    padding: 8px 0;
  }

  .stats-card article {
    border-right: 0;
    grid-template-columns: 38px 1fr;
    padding: 20px 24px;
  }

  .stats-card strong {
    font-size: 26px;
  }

  .stats-card strong span {
    font-size: 14px;
  }

  .stats-card p {
    font-size: 12px;
  }

  .section-head {
    align-items: center;
    margin-bottom: 18px;
  }

  .section-head h2,
  .platforms h2,
  .process h2 {
    font-size: 20px;
  }

  .outline-small {
    display: none;
  }

  .services {
    padding-bottom: 36px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: start;
    padding: 18px;
  }

  .service-card__image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
  }

  .service-card__image span {
    inset: 0;
    width: 52px;
    height: 52px;
    background: rgba(78, 96, 68, 0.9);
  }

  .service-card__body {
    padding: 0;
  }

  .service-card h3 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .service-card ul {
    padding-left: 0;
    list-style: none;
    font-size: 12px;
    line-height: 1.55;
  }

  .case {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 34px;
  }

  .case__intro h2 {
    font-size: 24px;
  }

  .case__intro p {
    display: none;
  }

  .case__intro .btn {
    display: none;
  }

  .case-card {
    min-height: 245px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 20px 28px;
  }

  .case-card strong {
    font-size: 24px;
  }

  .case-card span {
    font-size: 11px;
  }

  .dots {
    display: none;
  }

  .platforms {
    padding-block: 26px 35px;
  }

  .platform-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
  }

  .platform-logo {
    min-height: 36px;
    font-size: 14px;
  }

  .logo-ostrovok {
    font-size: 16px;
  }

  .audit {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .audit__media {
    display: none;
  }

  .lead-form {
    border-radius: 8px;
    padding: 24px;
    opacity: 1;
    transform: none;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-form p {
    width: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .process-grid article:not(:last-of-type)::after,
  .process-grid article:not(:last-of-type)::before {
    display: none;
  }

  .quote-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 64px 0 42px;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    padding: 24px 0 30px;
  }

  .footer-inner p {
    margin: 26px 0 24px;
  }

  .footer-contact .btn {
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .service-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .audit__media,
  .lead-form,
  .audit-list {
    opacity: 1 !important;
    transform: none !important;
  }
}
