:root {
  --bg: #f6f5f1;
  --bg-soft: #fffaf2;
  --text: #262626;
  --muted: #6f6b64;
  --dark: #22211f;
  --dark-2: #303030;
  --line: #e6dfd3;
  --accent: #ef9f37;
  --accent-dark: #d8861f;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 22px 60px rgba(30, 26, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg) url("../img/backgrounds/texture.webp") center top / 100% 100vh repeat fixed;
  line-height: 1.45;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 245, 241, 0.94);
  border-bottom: 1px solid rgba(38, 38, 38, 0.08);
  backdrop-filter: blur(18px);
}

.header__top {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo img {
  width: 180px;
  height: auto;
}

.header__meta,
.header__actions,
.nav__inner,
.meta-link,
.hero__checks li,
.cta__contacts,
.form__methods {
  display: flex;
  align-items: center;
}

.header__meta {
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: var(--dark-2);
}

.meta-link {
  gap: 7px;
  white-space: nowrap;
}

.meta-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.meta-link--phones {
  align-items: flex-start;
}

.meta-link--phones span {
  display: grid;
  gap: 3px;
}

.worktime {
  color: var(--muted);
  white-space: nowrap;
}

.header__actions {
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav {
  border-top: 1px solid rgba(38, 38, 38, 0.07);
}

.nav__inner {
  min-height: 48px;
  justify-content: center;
  gap: 44px;
  font-size: 15px;
  color: var(--dark);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 5px;
}

.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--accent);
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(239, 159, 55, 0.32);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 22px 42px rgba(239, 159, 55, 0.38);
}

.btn:disabled {
  cursor: default;
}

.btn.is-loading {
  color: transparent;
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn--light {
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(30, 26, 18, 0.12);
}

.btn--light:hover {
  color: var(--white);
}

.btn--dark {
  background: var(--dark-2);
  box-shadow: 0 18px 36px rgba(30, 26, 18, 0.18);
}

.btn--dark:hover {
  background: var(--accent);
}

.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 58px 0 54px;
  background: transparent;
}

.hero__desktop-image {
  position: absolute;
  top: 0;
  right: 6vw;
  bottom: 0;
  z-index: 0;
  height: 90%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(34, 33, 31, 0.13));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(90deg, rgba(38, 38, 38, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(38, 38, 38, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 730px;
  margin-bottom: 42px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--accent);
}

h1 span,
h2 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__body {
  display: grid;
  grid-template-columns: 330px minmax(260px, 1fr);
  align-items: end;
  gap: 42px;
}

.hero__form {
  display: grid;
  gap: 13px;
  width: 100%;
  padding: 32px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 52px rgba(30, 26, 18, 0.14);
}

.hero__form h2 {
  margin-bottom: 6px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__form h2 span {
  display: inline;
  color: var(--accent);
}

.hero__form label {
  display: grid;
  gap: 6px;
}

.hero__form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero__form input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: #efeeec;
}

.hero__form input::placeholder {
  color: #9a9690;
}

.hero__form-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 4px;
}

.hero__form-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.hero__form-bottom strong {
  display: block;
  color: var(--dark);
}

.hero__checks {
  display: grid;
  gap: 14px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
  color: var(--dark);
  font-size: 16px;
}

.hero__checks li {
  gap: 9px;
}

.hero__checks img {
  width: 20px;
  height: 20px;
}

.hero__lead {
  max-width: 360px;
  margin-bottom: 22px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.hero__lead strong {
  color: var(--accent);
}

.hero__cta {
  display: grid;
  justify-items: start;
}

.hero__visual {
  display: none !important;
}

.hero__visual img {
  display: none;
}

.hero__whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1ed760;
  box-shadow: 0 14px 34px rgba(30, 215, 96, 0.35);
  animation: whatsapp-pulse 4s ease-in-out infinite;
}

.hero__whatsapp img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

@keyframes whatsapp-pulse {
  0%,
  72%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 34px rgba(30, 215, 96, 0.35);
  }

  80% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(30, 215, 96, 0.12), 0 14px 34px rgba(30, 215, 96, 0.35);
  }

  88% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(30, 215, 96, 0), 0 14px 34px rgba(30, 215, 96, 0.35);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  width: min(420px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 14px;
  color: var(--dark);
  background: #f7fff8;
  box-shadow: 0 18px 48px rgba(30, 26, 18, 0.18), 0 0 0 1px rgba(30, 215, 96, 0.18);
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.form-toast::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #1ed760;
  font-size: 15px;
}

.stats {
  padding: 42px 0;
  background: var(--dark);
  color: var(--white);
}

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

.stats__grid div {
  min-height: 140px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.stats strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--accent);
  color: var(--white);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 0 36px;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 100px 0;
}

.section__head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section__head--left {
  margin-left: 0;
  text-align: left;
}

.section__head p:not(.eyebrow),
.about p,
.seo p,
.cta p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.price {
  display: block;
  margin-bottom: 14px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  font-weight: 800;
}

.service-card p {
  min-height: 74px;
  color: var(--muted);
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--accent);
  font-weight: 700;
}

.link-button::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/icons/circle-arrow.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.process {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 56%, rgba(239, 159, 55, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
}

.process__inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(260px, 0.76fr) minmax(220px, 0.46fr);
  align-items: end;
  gap: 18px;
}

.process__steps {
  align-self: start;
  padding-top: 8px;
}

.process__steps h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.about__grid,
.faq__grid,
.cta__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
}

.steps article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px 145px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(30, 26, 18, 0.07);
}

.steps span {
  display: block;
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.steps h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.process__worker {
  position: relative;
  min-height: 610px;
}

.process__worker img {
  position: absolute;
  right: -44px;
  bottom: -2px;
  width: min(410px, 46vw);
  max-width: none;
  filter: drop-shadow(0 30px 30px rgba(30, 26, 18, 0.13));
}

.process__trust {
  align-self: start;
  padding-top: 76px;
}

.process__trust h3 {
  max-width: 180px;
  margin-bottom: 58px;
  font-size: 22px;
  line-height: 1.08;
  text-transform: uppercase;
}

.process__trust article {
  position: relative;
  overflow: visible;
  min-height: 86px;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(30, 26, 18, 0.08);
}

.process__trust span {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 86px;
  padding: 18px 92px 18px 18px;
  color: var(--dark-2);
  font-size: 17px;
  line-height: 1.16;
}

.process__trust img {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: auto;
  height: 100px;
  object-fit: contain;
}

.about {
  overflow: hidden;
  background: transparent;
}

.about__grid {
  max-width: 900px;
  grid-template-columns: 1fr;
  align-items: center;
}

.works {
  background: var(--white);
}

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

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.cta {
  padding: 88px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(239, 159, 55, 0.28), transparent 32%),
    var(--dark);
}

.cta__grid {
  align-items: center;
}

.cta h2 {
  max-width: 620px;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
}

.cta__contacts {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta__contacts a {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form h3 {
  margin-bottom: 4px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.form input[type="text"],
.form input[type="tel"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: var(--text);
  background: #faf8f4;
}

.form input:focus {
  border-color: var(--accent);
}

.form__methods {
  flex-wrap: wrap;
  gap: 10px;
}

.form__methods label {
  position: relative;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

.form__methods input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form__methods span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark);
  background: #faf8f4;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.form__methods input:checked + span {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.form__method-title,
.cta .form__method-title {
  margin: 2px 0 -4px;
  color: #9a9690;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.form__note,
.cta .form__note {
  margin: 0;
  color: #9a9690;
  font-size: 14px;
  text-align: center;
}

.faq {
  background: var(--bg-soft);
}

.faq .section__head {
  margin-bottom: 18px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--accent);
  font-size: 28px;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -4px 24px 22px;
  color: var(--muted);
}

.faq__content {
  overflow: hidden;
  height: 0;
  transition: height 0.28s ease;
}

details[open] .faq__content {
  height: auto;
}

.seo {
  background: var(--white);
}

.seo__content {
  max-width: 940px;
}

.seo h2 {
  max-width: 780px;
}

.seo h2 span {
  color: var(--accent);
}

.footer {
  padding: 56px 0;
  color: var(--white);
  background: #1d1c1a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer__logo {
  width: 210px;
  margin-bottom: 24px;
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 18px;
}

.footer a,
.footer span,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
  color: var(--accent);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal__panel {
  position: relative;
  width: min(460px, 100%);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.form--modal {
  padding-top: 30px;
}

.form--modal h3,
.form--modal > p:not(.form__method-title),
.form--modal .form__note {
  text-align: center;
}

@media (max-width: 1100px) {
  .header__top {
    grid-template-columns: 160px 1fr auto;
  }

  .header__meta {
    gap: 10px;
    font-size: 13px;
  }

  .nav__inner {
    gap: 24px;
  }

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

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

  .hero__body {
    grid-template-columns: 310px minmax(250px, 1fr);
    gap: 32px;
  }

}

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .header__top {
    min-height: 68px;
    grid-template-columns: 160px 1fr;
  }

  .header__meta,
  .header__actions .social-link {
    display: none;
  }

  .header__actions {
    gap: 6px;
    justify-content: end;
  }

  .header__actions .social-link[aria-label="Instagram"] {
    width: 38px;
    height: 38px;
    display: grid;
  }

  .header__actions .social-link[aria-label="Instagram"] img {
    width: 24px;
    height: 24px;
  }

  .header__actions .btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1em;
  }

  .menu-toggle {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    margin: 3px auto;
    background: var(--dark);
  }

  .nav {
    position: fixed;
    inset: 68px 0 auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    border-top: 0;
    background: var(--white);
    box-shadow: 0 24px 48px rgba(30, 26, 18, 0.13);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__inner {
    min-height: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 6px 0;
  }

  .nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding: 58px 0 44px;
  }

  .hero__desktop-image {
    display: none;
  }

  .hero__grid,
  .about__grid,
  .faq__grid,
  .cta__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: 0;
  }

  .hero__body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__info {
    display: contents;
  }

  .hero__checks {
    order: 1;
    width: 100%;
    justify-items: start;
    align-items: start;
    text-align: left;
    margin-bottom: 24px;
  }

  .hero__checks li {
    justify-content: flex-start;
    text-align: left;
  }

  .hero__form {
    order: 2;
  }

  .process__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process__steps {
    padding-top: 0;
  }

  .process__worker {
    min-height: 480px;
    order: 2;
  }

  .process__worker img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 78vw);
    margin: 0 auto;
    transform: none;
  }

  .process__trust {
    order: 3;
    padding-top: 0;
  }

  .process__trust h3 {
    max-width: none;
    margin-bottom: 20px;
  }

  .process__trust article {
    max-width: 480px;
  }

  .hero__visual {
    display: block !important;
    order: 3;
    width: 100%;
    min-height: 0;
    margin-top: 0;
  }

  .hero__visual img {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(430px, 100%);
    height: auto;
    margin: 0 auto;
    transform: none;
  }

  .hero__cta {
    order: 4;
    justify-items: center;
    width: 100%;
    margin-top: 18px;
    text-align: center;
  }

  .hero__lead {
    text-align: center;
  }

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

  .section {
    padding: 76px 0;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 480px);
  }

  .logo img {
    width: 128px;
  }

  .header__top {
    grid-template-columns: 128px 1fr;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero__lead,
  .section__head p:not(.eyebrow),
  .about p,
  .seo p,
  .cta p {
    font-size: 16px;
  }

  .hero__checks,
  .stats__grid,
  .services__grid,
  .video-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    margin-bottom: 28px;
    font-size: 42px;
  }

  .hero__form {
    padding: 24px 22px;
  }

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

  .hero__form-bottom .btn {
    width: 100%;
  }

  .hero__lead {
    max-width: none;
  }

  .hero__visual {
    min-height: 0;
  }

  .hero__visual img {
    width: min(390px, 100%);
    height: auto;
  }

  .hero__whatsapp {
    right: 20px;
    bottom: 20px;
    width: 62px;
    height: 62px;
  }

  .hero__whatsapp img {
    width: 30px;
    height: 30px;
  }

  .stats__grid div {
    min-height: auto;
  }

  .stats strong {
    font-size: 36px;
  }

  .service-card img {
    height: 220px;
  }

  .service-card p {
    min-height: auto;
  }

  .steps article {
    grid-template-columns: 46px 1fr;
    gap: 12px 16px;
    padding: 18px;
  }

  .steps p {
    grid-column: 2;
  }

  .process__worker {
    min-height: 390px;
  }

  .process__trust span {
    padding-right: 84px;
  }

  .video-card {
  }

  .form {
    padding: 22px;
  }

  summary {
    padding: 18px 52px 18px 18px;
    font-size: 18px;
  }

  details p {
    margin: -2px 18px 18px;
  }
}
