/* ---------- Переменные темы ---------- */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --text: #2d3644;
  --muted: #5b6577;
  --primary: #e8590c;
  --primary-dark: #c94a08;
  --slate: #3b4350;
  --border: #e5e9f2;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 32, 70, 0.08);
  --container: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 8px 20px rgba(232,89,12,.35); }
.btn--ghost { background: #fff; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Шапка ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.logo__mark { display: block; }
.logo__text { color: var(--text); }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--muted); font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--text); }
.header__cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------- Герой ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 500px at 80% -10%, #fdeee4 0%, transparent 60%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  padding: 80px 20px 90px;
}
.hero__eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero__subtitle { color: var(--muted); font-size: 18px; max-width: 540px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats strong { display: block; font-size: 28px; font-weight: 800; }
.hero__stats span { color: var(--muted); font-size: 14px; }

.hero__visual { position: relative; min-height: 320px; display: grid; place-items: center; }
.hero__logo {
  width: min(400px, 95%);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(45, 54, 68, .10));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Секции ---------- */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -.02em; }
.section__head p { color: var(--muted); margin-top: 10px; }

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

/* ---------- Карточки ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: #fdeee4; color: var(--primary);
  border-radius: 12px; font-size: 22px; font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); }

/* ---------- Объекты ---------- */
.object {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.object:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.object h3 { font-size: 18px; margin-bottom: 6px; }
.object p { color: var(--muted); }
.objects__note { text-align: center; color: var(--muted); margin-top: 28px; font-style: italic; }

/* ---------- Таблица цен ---------- */
.pricetable {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricetable__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
}
.pricetable__row:last-child { border-bottom: none; }
.pricetable__row:nth-child(odd) { background: #fbfcfe; }
.pricetable__name { font-weight: 500; }
.pricetable__price { font-weight: 800; font-size: 20px; white-space: nowrap; color: var(--primary); }
.pricetable__price small { color: var(--muted); font-weight: 500; font-size: 13px; }
.pricetable__cta { text-align: center; margin-top: 32px; }

/* ---------- О нас ---------- */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about__text h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 16px; }
.about__text p { color: var(--muted); margin-bottom: 22px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--primary); color: #fff;
  border-radius: 50%; font-size: 12px;
  display: grid; place-items: center;
}
.about__media {
  min-height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--slate), #555f70);
  border: 1px solid var(--border);
}

/* ---------- Цены ---------- */
.price {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.price--featured { border-color: var(--primary); box-shadow: var(--shadow); }
.price__badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}
.price h3 { font-size: 20px; margin-bottom: 8px; }
.price__amount { font-size: 34px; font-weight: 800; margin-bottom: 20px; }
.price ul { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; color: var(--muted); }
.price ul li { padding-left: 22px; position: relative; }
.price ul li::before { content: "•"; color: var(--primary); position: absolute; left: 4px; }
.price .btn { margin-top: auto; }

/* ---------- Контакты ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact__info h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.contact__info > p { color: var(--muted); margin-bottom: 24px; }
.contact__list { list-style: none; display: grid; gap: 14px; }
.contact__list a { color: var(--primary); }

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 14px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fbfcfe;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,89,12,.15);
}
.form__note { margin-top: 12px; font-size: 14px; min-height: 20px; }
.form__note.ok { color: #1b9e5a; }
.form__note.err { color: #d33; }

/* ---------- Подвал ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0 24px; color: var(--muted); background: var(--bg-alt); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.footer__brand .logo--footer { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--text); }
.footer__brand p { margin-top: 6px; }
.footer__requisites { font-size: 13px; line-height: 1.7; text-align: right; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; font-size: 14px; }
.footer__nav { display: flex; gap: 22px; }
.footer__nav a:hover { color: var(--text); }

/* ---------- Адаптив ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .footer__requisites { text-align: left; }
}
@media (max-width: 720px) {
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    gap: 16px;
    transform: translateY(-150%);
    transition: transform .3s ease;
    margin-left: 0;
  }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
}

/* ============ Страница «Проекты» ============ */
.nav a.is-active { color: var(--primary); font-weight: 600; }

.page-hero {
  background: radial-gradient(1000px 400px at 80% -20%, #fdeee4 0%, transparent 60%);
  padding: 54px 0 36px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -.02em; margin: 8px 0 12px; }
.page-hero p { color: var(--muted); max-width: 620px; }
.breadcrumbs { font-size: 14px; color: var(--muted); }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

.section--tight { padding: 48px 0; }

/* ---------- Карточка проекта ---------- */
.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card.is-clickable { cursor: pointer; }
.project-card.is-clickable:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.project-card__cover {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  overflow: hidden;
}
.project-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.project-card.is-clickable:hover .project-card__cover img { transform: scale(1.05); }

.project-card__cover.is-empty {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef0f4, #e3e6ec);
}
.project-card__placeholder { width: 96px !important; height: auto !important; opacity: .8; }
.project-card__soon {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center; color: var(--muted); font-size: 14px; font-weight: 500;
}
.project-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(45, 54, 68, .9); color: #fff;
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.project-card__body { padding: 20px 22px; }
.project-card__body h3 { font-size: 19px; margin-bottom: 6px; line-height: 1.3; }
.project-card__body p { color: var(--muted); font-size: 14px; }

/* ---------- CTA-блок ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin-bottom: 10px; }
.cta p { color: var(--muted); margin-bottom: 24px; }

/* ---------- Лайтбокс ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  background: rgba(20, 26, 36, .92);
  padding: 20px;
}
.lightbox.open { display: flex; }
.lb__figure { margin: 0; max-width: 92vw; max-height: 88vh; text-align: center; }
.lb__figure img {
  max-width: 92vw; max-height: 78vh;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #1a222e;
}
.lb__figure figcaption {
  color: #fff; margin-top: 14px;
  display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap;
  font-weight: 600;
}
.lb__counter { color: rgba(255,255,255,.65); font-weight: 400; font-size: 14px; }
.lb__close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: #fff;
  font-size: 38px; line-height: 1; cursor: pointer; opacity: .8;
}
.lb__close:hover { opacity: 1; }
.lb__nav {
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 32px; line-height: 1; cursor: pointer;
  flex: 0 0 auto; transition: background .2s;
}
.lb__nav:hover { background: rgba(255,255,255,.25); }
.lb__prev { margin-right: 10px; }
.lb__next { margin-left: 10px; }

@media (max-width: 720px) {
  .lb__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
  .lb__prev { left: 12px; margin: 0; }
  .lb__next { right: 12px; margin: 0; }
}

.objects__more { text-align: center; margin-top: 30px; }

.project-card__count {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(45, 54, 68, .85); color: #fff;
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ============ Страница одного проекта ============ */
.page-hero__summary { color: var(--muted); max-width: 700px; font-size: 18px; margin-top: 4px; }

.proj-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.proj-chip {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 14px; font-size: 14px; color: var(--muted);
}
.proj-chip b { color: var(--text); font-weight: 600; }

.proj-content { display: grid; grid-template-columns: 1.6fr .9fr; gap: 40px; align-items: start; }
.proj-description p { margin-bottom: 16px; font-size: 17px; }
.proj-description p:last-child { margin-bottom: 0; }
.proj-placeholder { color: var(--muted); font-style: italic; }

.proj-details {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 28px;
}
.proj-details h2 { font-size: 20px; margin-bottom: 14px; }
.proj-details ul { list-style: none; display: grid; gap: 10px; }
.proj-details li { position: relative; padding-left: 26px; color: var(--muted); }
.proj-details li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; background: var(--primary); color: #fff;
  border-radius: 50%; font-size: 11px; display: grid; place-items: center;
}

.proj-gallery__head { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 24px; }

/* ---------- Сетка-галерея ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__empty { color: var(--muted); font-style: italic; }
.gallery__item {
  padding: 0; border: none; cursor: pointer; background: var(--border);
  border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.gallery__item:hover img { transform: scale(1.06); }

/* ссылка «Подробнее» в карточке списка */
.project-card__link { display: inline-block; margin-top: 12px; color: var(--primary); font-weight: 600; font-size: 14px; }

@media (max-width: 900px) {
  .proj-content { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Новые блоки (для солидности) ============ */
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Как мы работаем (этапы) --- */
.steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.step {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px 24px;
}
.step__num {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* --- Нам доверяют (партнёры) --- */
.partners {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.partner {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 30px; font-weight: 700; font-size: 18px; color: var(--text);
  letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.partner:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }

/* --- Цифры (счётчики) в «О компании» --- */
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat {
  background: linear-gradient(160deg, var(--slate), #4a5462);
  color: #fff; border-radius: var(--radius); padding: 26px 24px;
  text-align: center;
}
.stat__num { display: block; font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stat__label { display: block; margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.8); }

/* --- Реквизиты компании --- */
.requisites {
  max-width: 860px; margin: 0 auto; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.req-grid { margin: 0; }
.req-row {
  display: grid; grid-template-columns: 280px 1fr; gap: 16px;
  padding: 16px 26px; border-bottom: 1px solid var(--border);
}
.req-row:last-child { border-bottom: none; }
.req-row:nth-child(odd) { background: #fbfcfe; }
.req-row dt { color: var(--muted); font-size: 14px; }
.req-row dd { margin: 0; font-weight: 600; }

/* --- Появление при скролле --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .req-row { grid-template-columns: 1fr; gap: 4px; }
}

/* --- Блок СРО --- */
.sro {
  display: flex; gap: 28px; align-items: flex-start;
  background: linear-gradient(135deg, var(--slate), #4a5462);
  color: #fff; border-radius: var(--radius); padding: 36px 40px;
  box-shadow: var(--shadow);
}
.sro__badge {
  flex: 0 0 auto; width: 84px; height: 84px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 24px;
  letter-spacing: .02em;
}
.sro__body h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; margin-bottom: 10px; }
.sro__body > p { color: rgba(255,255,255,.85); max-width: 760px; margin-bottom: 20px; }
.sro__facts { display: flex; flex-wrap: wrap; gap: 14px; }
.sro__facts > div {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 12px 16px;
}
.sro__facts b { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.sro__facts span { font-weight: 700; font-size: 15px; }

.requisites__download { text-align: center; margin-top: 28px; }

@media (max-width: 720px) {
  .sro { flex-direction: column; gap: 18px; padding: 28px 24px; }
  .sro__badge { width: 64px; height: 64px; font-size: 20px; }
}

/* ============ Попап-форма заявки ============ */
.modal { position: fixed; inset: 0; z-index: 120; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(20,26,36,.6); backdrop-filter: blur(3px); }
.modal__dialog {
  position: relative; z-index: 1; width: min(480px, calc(100% - 32px));
  margin: 7vh auto 0; background: #fff; border-radius: 16px;
  padding: 32px 30px; box-shadow: 0 30px 80px rgba(0,0,0,.35);
  max-height: 86vh; overflow-y: auto;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.modal__dialog h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.modal__sub { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.modal__close {
  position: absolute; top: 14px; right: 16px; border: none; background: none;
  font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer;
}
.modal__close:hover { color: var(--text); }
.modal__privacy { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

/* загрузка файла */
.filedrop {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1.5px dashed var(--border); border-radius: 10px; padding: 14px 16px;
  background: #fbfcfe; transition: border-color .2s, background .2s;
}
.filedrop:hover { border-color: var(--primary); background: #fff; }
.filedrop__icon { font-size: 18px; }
.filedrop__text { font-size: 14px; color: var(--muted); word-break: break-word; }

/* ============ Кнопки-группы ============ */
.services__actions, .page-hero__actions, .cta__actions, .contact__actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px;
}
.services__actions { justify-content: center; margin-top: 40px; }
.cta__actions { justify-content: center; margin-top: 24px; }

/* ============ Производство ============ */
.production__note {
  margin-top: 30px; text-align: center; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

/* ============ Страница цен ============ */
.price-group { max-width: 820px; margin: 0 auto 36px; }
.price-group__title {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: 20px; font-weight: 800; margin-bottom: 14px; flex-wrap: wrap;
}
.price-group__title span { font-size: 14px; font-weight: 600; color: var(--primary); }
.price-note {
  max-width: 820px; margin: 8px auto 0; color: var(--muted); font-size: 14px;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px;
}
.page-hero__actions { margin-top: 22px; }

/* ============ Страница «О компании» ============ */
.about-page { display: grid; grid-template-columns: 1.5fr .9fr; gap: 44px; align-items: start; }
.about-page__text h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; margin-bottom: 16px; }
.about-page__text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.logo-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; display: grid; place-items: center;
}
.about-stats--wide { grid-template-columns: repeat(4, 1fr); }
.about-page__docs { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.about-lead__text { max-width: 760px; }
.about-lead__text h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; margin-bottom: 14px; }
.about-lead__text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.about-lead__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

@media (max-width: 860px) {
  .about-page { grid-template-columns: 1fr; }
  .about-stats--wide { grid-template-columns: repeat(2, 1fr); }
}
