:root {
  --red: #e5272d;
  --red-dark: #bd171d;
  --black: #111318;
  --text: #30343b;
  --muted: #707783;
  --line: #e3e5e8;
  --soft: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__item--right {
  margin-left: auto;
}

.icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.socials a,
.contact-social {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-weight: 800;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.navbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

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

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

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
}

.language-switch a {
  padding: 7px 12px;
  color: var(--muted);
}

.language-switch .is-active {
  background: var(--black);
  color: var(--white);
}

.nav-phone {
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.nav-phone:hover,
.btn--primary:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, #fff 0%, #fff 46%, #f3f4f6 46%, #f3f4f6 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(17, 19, 24, 0.09) 52% 53%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(17, 19, 24, 0.12) 0 2px, transparent 2px 92px),
    repeating-linear-gradient(0deg, rgba(17, 19, 24, 0.08) 0 2px, transparent 2px 86px);
  filter: blur(0.5px);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 34px;
  padding: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--black);
  max-width: 720px;
  font-size: clamp(54px, 6.5vw, 94px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero__price {
  margin: 30px 0;
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
}

.hero__price span {
  display: block;
}

.hero__price span + span {
  margin-top: 8px;
  color: var(--black);
  font-size: 25px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 3px;
  border: 0;
  font-size: 15px;
  font-weight: 800;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(229, 39, 45, 0.24);
}

.hero__visual img {
  width: min(1180px, 145%);
  max-width: none;
  margin-left: auto;
  transform: translateX(-115px);
  filter: drop-shadow(0 22px 34px rgba(17, 19, 24, 0.2));
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.why-copy h2,
.footer h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.services-section {
  background: var(--white);
}

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

.service-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 280px;
}

.service-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.24;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.service-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.platform-cta {
  padding: 34px 0;
  background: var(--black);
  color: var(--white);
}

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

.local-seo .section-copy {
  max-width: 900px;
}

.platform-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.platform-cta .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.platform-cta h2 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}

.platform-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.platform-cta__action {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.platform-cta__action strong {
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  white-space: nowrap;
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.spec-card,
.work-item,
.area-card,
.process-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.feature-card {
  padding: 34px;
  min-height: 276px;
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: #fff1f1;
  color: var(--red);
  border-radius: 50%;
}

.feature-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.2;
}

.feature-card p,
.section-copy p,
.why-copy p,
.blog-copy p {
  color: var(--muted);
  font-size: 16px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
}

.section-copy p {
  max-width: 590px;
}

.service-area {
  background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--soft) 55%, var(--soft) 100%);
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.area-card {
  padding: 24px;
  min-height: 170px;
}

.area-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
}

.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-section {
  padding-top: 0;
}

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

.process-card {
  padding: 28px;
}

.process-card span {
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.process-card h3 {
  margin: 18px 0 10px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.25;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.mini-slider {
  position: relative;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 24px;
  overflow: hidden;
}

.work-gallery {
  background: var(--soft);
}

.photo-carousel {
  position: relative;
}

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

.photo-tile {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.photo-tile.is-hidden {
  display: none;
}

.photo-tile::after {
  content: "Deschide";
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(17, 19, 24, 0.82);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

html[lang="ru"] .photo-tile::after {
  content: "Открыть";
}

.photo-tile:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-nav--prev {
  left: -23px;
}

.gallery-nav--next {
  right: -23px;
}

.gallery-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-nav:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(17, 19, 24, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox__arrow--prev {
  left: 22px;
}

.lightbox__arrow--next {
  right: 22px;
}

.lightbox__arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox__close:hover,
.lightbox__arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.mini-slider__viewport {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dfe2e7;
}

.mini-slider__viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mini-slider__viewport img.is-active {
  opacity: 1;
  transform: translateX(0);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-btn svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-btn--prev {
  left: 14px;
}

.slider-btn--next {
  right: 14px;
}

.work-types {
  background: var(--soft);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.work-item {
  min-height: 150px;
  padding: 22px;
}

.work-item__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}

.work-item p {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

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

.spec-card {
  padding: 24px;
}

.spec-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #fff1f1;
  color: var(--red);
  border-radius: 50%;
}

.spec-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.3;
}

.spec-card p {
  margin: 0;
  color: var(--red);
  font-size: 23px;
  font-weight: 900;
}

.price-section {
  background: var(--soft);
}

.section-copy strong {
  color: var(--red);
  font-weight: 900;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 38px;
}

.price-card__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

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

.price-option strong {
  display: block;
  color: var(--red);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.price-card > strong {
  display: block;
  color: var(--red);
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.price-option p {
  margin: 8px 0 24px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
}

.price-card > p {
  margin: 8px 0 24px;
  color: var(--black);
  font-size: 25px;
  font-weight: 900;
}

.price-card a {
  color: var(--red);
  font-weight: 900;
}

.price-card .btn {
  color: var(--white);
}

.price-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 600;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}

.why-section {
  padding: 94px 0;
  background: #f0f1f3;
}

.why-copy h2 span,
.why-copy strong {
  color: var(--red);
}

.why-copy a {
  color: var(--red);
  font-weight: 900;
}

.why-image img {
  width: 100%;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item.is-open {
  border-color: rgba(228, 38, 38, 0.34);
  box-shadow: 0 14px 32px rgba(17, 19, 24, 0.08);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(228, 38, 38, 0.28);
  outline-offset: -3px;
}

.faq-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 3px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 30px 26px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  max-width: 860px;
  font-size: 17px;
  line-height: 1.7;
}

.footer {
  padding: 32px 0;
  background: var(--soft);
  color: var(--black);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer h2 {
  flex: 0 0 auto;
  font-size: 26px;
  white-space: nowrap;
}

.contact-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
}

.contact-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  background: var(--white);
}

.contact-row a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

@media (max-width: 1040px) {
  .topbar__inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .topbar__item--right {
    margin-left: 0;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-menu {
    gap: 18px;
  }

  .hero__inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--soft);
  }

  .hero__visual img {
    margin: 0 auto;
    width: min(760px, 100%);
    max-width: 100%;
    transform: none;
  }

  .service-card-grid,
  .card-grid--three,
  .spec-grid,
  .photo-grid,
  .area-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .topbar__inner {
    min-height: 38px;
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 13px;
  }

  .topbar__item--right {
    display: none;
  }

  .socials {
    display: none;
  }

  .navbar__inner {
    min-height: 68px;
  }

  .logo img {
    width: 120px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    z-index: 45;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.18s ease;
  }

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

  .nav-menu a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero__inner {
    gap: 22px;
    padding: 34px 0 28px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero__price {
    margin: 22px 0;
    font-size: 25px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__visual img {
    width: min(460px, 100%);
  }

  .section,
  .why-section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section-copy h2,
  .why-copy h2,
  .footer h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .price-options,
  .card-grid--three,
  .photo-grid,
  .work-grid,
  .area-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .photo-tile {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .platform-cta__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .platform-cta__action {
    justify-items: start;
  }

  .platform-cta__action strong {
    font-size: 24px;
    white-space: normal;
  }

  .feature-card,
  .service-card,
  .work-item,
  .area-card,
  .process-card,
  .price-card {
    padding: 22px;
  }

  .service-card {
    padding: 16px;
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 16px;
    line-height: 1.22;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .service-card__link {
    margin-top: 12px;
    font-size: 14px;
  }

  .spec-card {
    padding: 16px;
  }

  .spec-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .spec-card__icon svg {
    width: 22px;
    height: 22px;
  }

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

  .spec-card p {
    font-size: 19px;
  }

  .service-card,
  .feature-card {
    min-height: auto;
  }

  .mini-slider__viewport {
    aspect-ratio: 3 / 4;
  }

  .faq-question {
    min-height: 68px;
    grid-template-columns: 1fr 36px;
    padding: 20px;
    font-size: 18px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }

  .faq-answer {
    padding: 0 20px 22px;
  }

  .faq-item p {
    font-size: 16px;
  }

  .lightbox {
    padding: 70px 14px;
  }

  .lightbox__arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .lightbox__arrow--prev {
    left: calc(50% - 58px);
  }

  .lightbox__arrow--next {
    right: calc(50% - 58px);
  }

  .gallery-nav {
    top: auto;
    bottom: -66px;
    transform: none;
  }

  .gallery-nav--prev {
    left: calc(50% - 56px);
  }

  .gallery-nav--next {
    right: calc(50% - 56px);
  }

  .work-gallery {
    padding-bottom: 116px;
  }

  .mini-slider {
    padding: 14px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .footer {
    padding: 28px 0;
  }

  .footer__inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer .logo img {
    width: 130px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .topbar__inner {
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
  }

  .topbar__item {
    gap: 6px;
  }

  .icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .navbar__inner {
    min-height: 62px;
  }

  .logo img {
    width: 108px;
  }

  .nav-menu {
    top: 70px;
  }

  .hero__inner {
    padding-top: 28px;
  }

  .hero__price {
    font-size: 23px;
  }

  .contact-row {
    display: grid;
    width: 100%;
  }

  .contact-row a {
    width: 100%;
  }
}
