/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #5a8a3c;
  --green-btn: #5a8a3c;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --bg-white: #ffffff;
  --font: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --site-width: 1440px;
}

html {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  font-size: 16px;
}

body {
  min-width: var(--site-width);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Бургер скрыт на десктопе */
.navbar__burger {
  display: none;
}

.navbar__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 60px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* --- BRAND --- */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #d9d9d9;
}

.navbar__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar__brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.navbar__brand-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- NAV LINKS --- */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.navbar__link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--green);
}

.navbar__link--active {
  color: var(--green);
  font-weight: 500;
}

/* --- CONTACTS --- */
.navbar__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.navbar__phone-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.navbar__phone-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.5px;
}

.navbar__phone-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.4;
}

.navbar__phone-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.navbar__phone-btn:hover {
  background: #4a7330;
  transform: scale(1.05);
}

.navbar__phone-icon {
  font-size: 26px;
  color: #ffffff;
  display: block;
  line-height: 1;
}

/* ============================
   MAIN
   ============================ */
.main {
  width: 100%;
}

/* ============================
   HERO
   ============================ */
.hero {
  background: #fff;
  width: 100%;
}

.hero__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 40px 60px 48px;
  display: flex;
  gap: 20px;
  align-items: stretch;
  min-height: 480px;
}

/* --- LEFT COLUMN --- */
.hero__left {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__title {
  font-size: 92px;
  font-weight: 900;
  line-height: 0.92;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0px;
}

.hero__subtitle-black {
  color: var(--text-dark);
}

.hero__subtitle-green {
  color: var(--green);
}

.hero__img-wrap {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #c8c8c8;
  min-height: 240px;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- RIGHT COLUMN --- */
.hero__right {
  flex: 1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__right-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 20px;
  padding: 32px 36px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero__card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}

.hero__card-icon {
  color: var(--green);
  font-size: 22px;
  flex-shrink: 0;
}

.hero__card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 0.3px;
  font-family: var(--font);
}

.hero__card-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  text-align: center;
  font-family: var(--font);
}

.hero__card-desc strong {
  font-weight: 700;
  color: var(--text-dark);
}

.hero__card-btn {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.hero__card-btn:hover {
  background: #4a7330;
  transform: scale(1.05);
}

/* ============================
   SERVICES
   ============================ */
.services {
  background: #f2f2f0;
  width: 100%;
}

.services__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 56px 60px 72px;
}

.services__title {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 52px;
  line-height: 1;
}

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

/* --- SERVICE CARD --- */
.service-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: transparent;
}

.service-card__img-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #c8c8c8;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.65;
}

.service-card__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
}

.service-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.service-card__btn:hover {
  background: #4a7330;
  transform: scale(1.03);
}

/* ============================
   ABOUT
   ============================ */
.about {
  background: #fff;
  width: 100%;
}

.about__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 52px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* --- TOP ROW --- */
.about__top {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__title {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
}

.about__text {
  font-size: 13.5px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.7;
}

.about__img-wrap {
  flex: 0 0 420px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #c8c8c8;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- FEATURES ROW --- */
.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f5f5f3;
  border-radius: 16px;
  padding: 24px 28px;
}

.about__feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature-icon .material-icons {
  font-size: 28px;
  color: var(--green);
}

.about__feature-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ============================
   STEPS
   ============================ */
.steps {
  background: #fff;
  width: 100%;
}

.steps__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 56px 60px 72px;
}

.steps__title {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 52px;
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- STEP CARD --- */
.step-card {
  background: #f2f2f0;
  border-radius: 20px;
  padding: 36px 40px 42px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
}

.step-card__name {
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0px;
}

.step-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.6;
}

/* ============================
   GALLERY
   ============================ */
.gallery {
  background: #fff;
  width: 100%;
}

.gallery__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 56px 60px 72px;
}

.gallery__title {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 48px;
}

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

.gallery__item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #d0d0d0;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--placeholder {
  background: #c8c8c8;
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.lightbox__img-wrap {
  position: relative;
  z-index: 2;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 16px;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  font-family: var(--font);
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__arrow:hover {
  background: rgba(255,255,255,0.3);
}

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

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

/* ============================
   FAQ
   ============================ */
.faq {
  background: #fff;
  width: 100%;
}

.faq__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 56px 60px 72px;
}

.faq__title {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 52px;
}

.faq__list {
  list-style: none;
}

.faq__item {
  border-top: 1px solid #e0e0e0;
}

.faq__item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}

.faq__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
}

.faq__text {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.faq__arrow {
  flex-shrink: 0;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.4s ease;
}

.faq__item--open .faq__arrow {
  transform: rotate(90deg);
  color: var(--text-dark);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 84px;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding: 0 0 28px 84px;
}

.faq__answer p {
  font-size: 13.5px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

/* ============================
   CTA
   ============================ */
.cta {
  background: #f2f2f0;
  width: 100%;
}

.cta__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}

.cta__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.cta__desc {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.65;
}

.cta__btn {
  flex-shrink: 0;
  padding: 16px 48px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cta__btn:hover {
  background: #4a7330;
  transform: scale(1.03);
}

/* ============================
   MODAL
   ============================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  animation: modalFadeIn 0.3s ease;
}

.modal__box {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font);
}

.modal__close:hover {
  color: var(--text-dark);
}

.modal__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.modal__subtitle {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin-top: -8px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal__label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal__input {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  background: #f5f5f3;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.modal__input:focus {
  border-color: var(--green);
  background: #fff;
}

.modal__textarea {
  resize: vertical;
  min-height: 110px;
}

.modal__submit {
  margin-top: 4px;
  padding: 14px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.modal__submit:hover {
  background: #4a7330;
  transform: scale(1.02);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--green);
  width: 100%;
}

.footer__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 40px 60px 28px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* --- TOP --- */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer__brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.footer__call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #fff;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.footer__call-btn:hover {
  background: rgba(255,255,255,0.88);
}

/* --- CONTACTS --- */
.footer__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-icon .material-icons {
  font-size: 26px;
  color: #fff;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__contact-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}

.footer__contact-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
}

.footer__contact-value--upper {
  text-transform: uppercase;
  font-size: 18px;
}

/* --- DIVIDER --- */
.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0;
}

/* --- BOTTOM --- */
.footer__bottom {
  padding-bottom: 8px;
}

.footer__policy {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__policy:hover {
  color: #fff;
}

/* ======================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ====================================================== */
@media (max-width: 1024px) {
  /* Navbar */
  .navbar__inner {
    padding: 0 32px;
    gap: 20px;
  }
  .navbar__nav {
    gap: 20px;
  }
  .navbar__phone-number {
    font-size: 22px;
  }

  /* Hero */
  .hero__inner {
    padding: 32px 32px 40px;
    flex-direction: column;
    min-height: auto;
  }
  .hero__left {
    flex: none;
  }
  .hero__title {
    font-size: 64px;
  }
  .hero__subtitle {
    font-size: 30px;
  }
  .hero__right {
    min-height: 340px;
  }

  /* Services */
  .services__inner {
    padding: 40px 32px 56px;
  }
  .services__title,
  .about__title,
  .steps__title,
  .gallery__title,
  .faq__title {
    font-size: 52px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* About */
  .about__inner {
    padding: 40px 32px 56px;
  }
  .about__top {
    flex-direction: column;
  }
  .about__img-wrap {
    flex: none;
    width: 100%;
    height: 300px;
  }
  .about__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Steps */
  .steps__inner {
    padding: 40px 32px 56px;
  }
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Gallery */
  .gallery__inner {
    padding: 40px 32px 56px;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* FAQ */
  .faq__inner {
    padding: 40px 32px 56px;
  }

  /* Footer */
  .footer__inner {
    padding: 32px 32px 24px;
    gap: 32px;
  }
  .footer__contacts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__contact-value {
    font-size: 18px;
  }
  .footer__contact-value--upper {
    font-size: 15px;
  }
}

/* ======================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ====================================================== */
@media (max-width: 768px) {
  body {
    min-width: 375px;
  }

  /* --- NAVBAR --- */
  .navbar__inner {
    padding: 0 20px;
    height: 68px;
    position: relative;
  }
  .navbar__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    z-index: 99;
    /* Закрытое состояние */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity    0.35s ease,
      transform  0.35s ease,
      padding    0.4s ease;
  }
  .navbar__nav.is-open {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 8px 20px 16px;
  }
  .navbar__link {
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
  }
  .navbar__nav.is-open .navbar__link {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar__nav.is-open .navbar__link:nth-child(1) { transition-delay: 0.08s; }
  .navbar__nav.is-open .navbar__link:nth-child(2) { transition-delay: 0.14s; }
  .navbar__nav.is-open .navbar__link:nth-child(3) { transition-delay: 0.20s; }
  .navbar__nav.is-open .navbar__link:nth-child(4) { transition-delay: 0.26s; }
  .navbar__link:last-child {
    border-bottom: none;
  }
  .navbar__phone-info {
    display: flex;
    align-items: flex-end;
  }
  .navbar__phone-number {
    font-size: 18px;
  }
  .navbar__phone-sub {
    display: block;
    font-size: 7px;
    text-align: right;
  }
  .navbar__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }
  .navbar__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .navbar__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navbar__burger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .navbar__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .navbar__phone-btn {
    width: 42px;
    height: 42px;
  }
  .navbar__phone-icon {
    font-size: 20px;
  }
  .navbar__brand-sub {
    display: none;
  }
  .navbar__brand-name {
    font-size: 16px;
  }
  .navbar__logo {
    width: 44px;
    height: 44px;
  }

  /* --- HERO --- */
  .hero__inner {
    padding: 24px 20px 32px;
    flex-direction: column;
    gap: 20px;
  }
  .hero__title {
    font-size: 44px;
  }
  .hero__subtitle {
    font-size: 22px;
  }
  .hero__img-wrap {
    min-height: 200px;
  }
  .hero__right {
    min-height: 280px;
    border-radius: 16px;
  }
  .hero__card {
    width: 260px;
    padding: 24px 24px;
    gap: 16px;
    margin: 30px;
  }
  .hero__card-btn {
    width: 100px;
    height: 100px;
    font-size: 13px;
  }

  /* --- SERVICES --- */
  .services__inner {
    padding: 32px 20px 48px;
  }
  .services__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-card {
    flex-direction: column;
    gap: 16px;
  }
  .service-card__img-wrap {
    width: 100%;
    height: 200px;
  }

  /* --- ABOUT --- */
  .about__inner {
    padding: 32px 20px 48px;
    gap: 32px;
  }
  .about__title {
    font-size: 36px;
  }
  .about__top {
    flex-direction: column;
    gap: 20px;
  }
  .about__img-wrap {
    flex: none;
    width: 100%;
    height: 240px;
  }
  .about__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about__feature {
    padding: 16px 20px;
  }
  .about__feature-text {
    font-size: 15px;
  }

  /* --- STEPS --- */
  .steps__inner {
    padding: 32px 20px 48px;
  }
  .steps__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-card {
    padding: 24px 24px 28px;
    gap: 12px;
  }
  .step-card__name {
    font-size: 20px;
  }

  /* --- GALLERY --- */
  .gallery__inner {
    padding: 32px 20px 48px;
  }
  .gallery__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* --- FAQ --- */
  .faq__inner {
    padding: 32px 20px 48px;
  }
  .faq__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .faq__num {
    font-size: 20px;
    width: 36px;
  }
  .faq__text {
    font-size: 13px;
  }
  .faq__question {
    gap: 16px;
    padding: 20px 0;
  }
  .faq__answer {
    padding-left: 52px;
  }
  .faq__item--open .faq__answer {
    padding: 0 0 20px 52px;
  }

  /* --- CTA --- */
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 20px 40px;
    gap: 24px;
  }
  .cta__title {
    font-size: 24px;
  }
  .cta__btn {
    align-self: stretch;
    text-align: center;
  }

  /* --- MODAL --- */
  .modal__box {
    margin: 0 16px;
    padding: 32px 24px;
    border-radius: 20px;
  }
  .modal__title {
    font-size: 20px;
  }

  /* --- FOOTER --- */
  .footer__inner {
    padding: 28px 20px 20px;
    gap: 28px;
  }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer__call-btn {
    align-self: stretch;
    text-align: center;
  }
  .footer__contacts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__contact-value {
    font-size: 16px;
  }
  .footer__contact-value--upper {
    font-size: 14px;
  }
}
